diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index c4de781a23..f099682b6a 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -24,6 +24,11 @@ /Content.*/Forensics/ @ficcialfaint +/Content.*/Trigger/ @slarticodefast + +/Content.*/Stunnable/ @Princess-Cheeseballs +/Content.*/Nutrition/ @Princess-Cheeseballs + # SKREEEE /Content.*.Database/ @PJB3005 @DrSmugleaf /Content.Shared.Database/Log*.cs @PJB3005 @DrSmugleaf @crazybrain23 @@ -37,3 +42,5 @@ /Content.*/NPC @metalgearsloth /Content.*/Shuttles @metalgearsloth /Content.*/Weapons @metalgearsloth + +/Content.Server/Discord/ @Simyon264 diff --git a/.github/workflows/publish-testing.yml b/.github/workflows/publish-testing.yml index 6dacef1324..7a792ed2df 100644 --- a/.github/workflows/publish-testing.yml +++ b/.github/workflows/publish-testing.yml @@ -34,7 +34,7 @@ jobs: 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 + run: dotnet run --project Content.Packaging server --platform win-x64 --platform win-arm64 --platform linux-x64 --platform linux-arm64 --platform osx-x64 --platform osx-arm64 - name: Package client run: dotnet run --project Content.Packaging client --no-wipe-release diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3ce5901841..3d54fef530 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -41,7 +41,7 @@ jobs: 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 + run: dotnet run --project Content.Packaging server --platform win-x64 --platform win-arm64 --platform linux-x64 --platform linux-arm64 --platform osx-x64 --platform osx-arm64 - name: Package client run: dotnet run --project Content.Packaging client --no-wipe-release diff --git a/.github/workflows/test-packaging.yml b/.github/workflows/test-packaging.yml index ed137a19d0..325d8d04d9 100644 --- a/.github/workflows/test-packaging.yml +++ b/.github/workflows/test-packaging.yml @@ -60,7 +60,7 @@ jobs: 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 + run: dotnet run --project Content.Packaging server --platform win-x64 --platform win-arm64 --platform linux-x64 --platform linux-arm64 --platform osx-x64 --platform osx-arm64 - name: Package client run: dotnet run --project Content.Packaging client --no-wipe-release diff --git a/BuildChecker/git_helper.py b/BuildChecker/git_helper.py index 96a7bdae2a..66d2463669 100644 --- a/BuildChecker/git_helper.py +++ b/BuildChecker/git_helper.py @@ -1,17 +1,19 @@ #!/usr/bin/env python3 -# Installs git hooks, updates them, updates submodules, that kind of thing. +""" +Installs git hooks, updates them, updates submodules, that kind of thing. +""" -import subprocess -import sys import os import shutil +import subprocess +import sys import time from pathlib import Path from typing import List SOLUTION_PATH = Path("..") / "SpaceStation14.sln" # If this doesn't match the saved version we overwrite them all. -CURRENT_HOOKS_VERSION = "2" +CURRENT_HOOKS_VERSION = "3" QUIET = len(sys.argv) == 2 and sys.argv[1] == "--quiet" @@ -25,12 +27,10 @@ def run_command(command: List[str], capture: bool = False) -> subprocess.Complet sys.stdout.flush() - completed = None - if capture: - completed = subprocess.run(command, cwd="..", stdout=subprocess.PIPE) + completed = subprocess.run(command, stdout=subprocess.PIPE, text=True) else: - completed = subprocess.run(command, cwd="..") + completed = subprocess.run(command) if completed.returncode != 0: print("Error: command exited with code {}!".format(completed.returncode)) @@ -43,7 +43,7 @@ def update_submodules(): Updates all submodules. """ - if ('GITHUB_ACTIONS' in os.environ): + if 'GITHUB_ACTIONS' in os.environ: return if os.path.isfile("DISABLE_SUBMODULE_AUTOUPDATE"): @@ -76,22 +76,21 @@ def install_hooks(): print("No hooks change detected.") return - with open("INSTALLED_HOOKS_VERSION", "w") as f: - f.write(CURRENT_HOOKS_VERSION) - print("Hooks need updating.") - hooks_target_dir = Path("..")/".git"/"hooks" + hooks_target_dir = Path(run_command(["git", "rev-parse", "--git-path", "hooks"], True).stdout.strip()) hooks_source_dir = Path("hooks") # Clear entire tree since we need to kill deleted files too. - for filename in os.listdir(str(hooks_target_dir)): - os.remove(str(hooks_target_dir/filename)) + for filename in os.listdir(hooks_target_dir): + os.remove(hooks_target_dir / filename) - for filename in os.listdir(str(hooks_source_dir)): + for filename in os.listdir(hooks_source_dir): print("Copying hook {}".format(filename)) - shutil.copy2(str(hooks_source_dir/filename), - str(hooks_target_dir/filename)) + shutil.copy2(hooks_source_dir / filename, hooks_target_dir / filename) + + with open("INSTALLED_HOOKS_VERSION", "w") as f: + f.write(CURRENT_HOOKS_VERSION) def reset_solution(): @@ -107,8 +106,7 @@ def reset_solution(): def check_for_zip_download(): # Check if .git exists, - cur_dir = os.path.dirname(os.path.dirname(os.path.realpath(__file__))) - if not os.path.isdir(os.path.join(cur_dir, ".git")): + if run_command(["git", "rev-parse"]).returncode != 0: print("It appears that you downloaded this repository directly from GitHub. (Using the .zip download option) \n" "When downloading straight from GitHub, it leaves out important information that git needs to function. " "Such as information to download the engine or even the ability to even be able to create contributions. \n" diff --git a/BuildChecker/hooks/post-checkout b/BuildChecker/hooks/post-checkout index c5662445c2..ee4309de1d 100755 --- a/BuildChecker/hooks/post-checkout +++ b/BuildChecker/hooks/post-checkout @@ -1,10 +1,10 @@ #!/bin/bash -gitroot=`git rev-parse --show-toplevel` +gitroot=$(git rev-parse --show-toplevel) -cd "$gitroot/BuildChecker" +cd "$gitroot/BuildChecker" || exit -if [[ `uname` == MINGW* || `uname` == CYGWIN* ]]; then +if [[ $(uname) == MINGW* || $(uname) == CYGWIN* ]]; then # Windows py -3 git_helper.py --quiet else diff --git a/BuildChecker/hooks/post-merge b/BuildChecker/hooks/post-merge index 85fe61d966..5cf3d91120 100755 --- a/BuildChecker/hooks/post-merge +++ b/BuildChecker/hooks/post-merge @@ -1,5 +1,5 @@ #!/bin/bash # Just call post-checkout since it does the same thing. -gitroot=`git rev-parse --show-toplevel` -bash "$gitroot/.git/hooks/post-checkout" +gitroot=$(git rev-parse --git-path hooks) +bash "$gitroot/post-checkout" diff --git a/Content.Benchmarks/DeltaPressureBenchmark.cs b/Content.Benchmarks/DeltaPressureBenchmark.cs new file mode 100644 index 0000000000..b31b3ed1a2 --- /dev/null +++ b/Content.Benchmarks/DeltaPressureBenchmark.cs @@ -0,0 +1,174 @@ +using System.Threading.Tasks; +using BenchmarkDotNet.Attributes; +using BenchmarkDotNet.Diagnosers; +using Content.IntegrationTests; +using Content.IntegrationTests.Pair; +using Content.Server.Atmos.Components; +using Content.Server.Atmos.EntitySystems; +using Content.Shared.Atmos.Components; +using Content.Shared.CCVar; +using Robust.Shared; +using Robust.Shared.Analyzers; +using Robust.Shared.Configuration; +using Robust.Shared.GameObjects; +using Robust.Shared.Map; +using Robust.Shared.Map.Components; +using Robust.Shared.Maths; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; + +namespace Content.Benchmarks; + +/// +/// Spawns N number of entities with a and +/// simulates them for a number of ticks M. +/// +[Virtual] +[GcServer(true)] +//[MemoryDiagnoser] +//[ThreadingDiagnoser] +public class DeltaPressureBenchmark +{ + /// + /// Number of entities (windows, really) to spawn with a . + /// + [Params(1, 10, 100, 1000, 5000, 10000, 50000, 100000)] + public int EntityCount; + + /// + /// Number of entities that each parallel processing job will handle. + /// + // [Params(1, 10, 100, 1000, 5000, 10000)] For testing how multithreading parameters affect performance (THESE TESTS TAKE 16+ HOURS TO RUN) + [Params(10)] + public int BatchSize; + + /// + /// Number of entities to process per iteration in the DeltaPressure + /// processing loop. + /// + // [Params(100, 1000, 5000, 10000, 50000)] + [Params(1000)] + public int EntitiesPerIteration; + + private readonly EntProtoId _windowProtoId = "Window"; + private readonly EntProtoId _wallProtoId = "WallPlastitaniumIndestructible"; + + private TestPair _pair = default!; + private IEntityManager _entMan = default!; + private SharedMapSystem _map = default!; + private IRobustRandom _random = default!; + private IConfigurationManager _cvar = default!; + private ITileDefinitionManager _tileDefMan = default!; + private AtmosphereSystem _atmospereSystem = default!; + + private Entity + _testEnt; + + [GlobalSetup] + public async Task SetupAsync() + { + ProgramShared.PathOffset = "../../../../"; + PoolManager.Startup(); + _pair = await PoolManager.GetServerClient(); + var server = _pair.Server; + + var mapdata = await _pair.CreateTestMap(); + + _entMan = server.ResolveDependency(); + _map = _entMan.System(); + _random = server.ResolveDependency(); + _cvar = server.ResolveDependency(); + _tileDefMan = server.ResolveDependency(); + _atmospereSystem = _entMan.System(); + + _random.SetSeed(69420); // Randomness needs to be deterministic for benchmarking. + + _cvar.SetCVar(CCVars.DeltaPressureParallelToProcessPerIteration, EntitiesPerIteration); + _cvar.SetCVar(CCVars.DeltaPressureParallelBatchSize, BatchSize); + + var plating = _tileDefMan["Plating"].TileId; + + /* + Basically, we want to have a 5-wide grid of tiles. + Edges are walled, and the length of the grid is determined by N + 2. + Windows should only touch the top and bottom walls, and each other. + */ + + var length = EntityCount + 2; // ensures we can spawn exactly N windows between side walls + const int height = 5; + + await server.WaitPost(() => + { + // Fill required tiles (extend grid) with plating + for (var x = 0; x < length; x++) + { + for (var y = 0; y < height; y++) + { + _map.SetTile(mapdata.Grid, mapdata.Grid, new Vector2i(x, y), new Tile(plating)); + } + } + + // Spawn perimeter walls and windows row in the middle (y = 2) + const int midY = height / 2; + for (var x = 0; x < length; x++) + { + for (var y = 0; y < height; y++) + { + var coords = new EntityCoordinates(mapdata.Grid, x + 0.5f, y + 0.5f); + + var isPerimeter = x == 0 || x == length - 1 || y == 0 || y == height - 1; + if (isPerimeter) + { + _entMan.SpawnEntity(_wallProtoId, coords); + continue; + } + + // Spawn windows only on the middle row, spanning interior (excluding side walls) + if (y == midY) + { + _entMan.SpawnEntity(_windowProtoId, coords); + } + } + } + }); + + // Next we run the fixgridatmos command to ensure that we have some air on our grid. + // Wait a little bit as well. + // TODO: Unhardcode command magic string when fixgridatmos is an actual command we can ref and not just + // a stamp-on in AtmosphereSystem. + await _pair.WaitCommand("fixgridatmos " + mapdata.Grid.Owner, 1); + + var uid = mapdata.Grid.Owner; + _testEnt = new Entity( + uid, + _entMan.GetComponent(uid), + _entMan.GetComponent(uid), + _entMan.GetComponent(uid), + _entMan.GetComponent(uid)); + } + + [Benchmark] + public async Task PerformFullProcess() + { + await _pair.Server.WaitPost(() => + { + while (!_atmospereSystem.RunProcessingStage(_testEnt, AtmosphereProcessingState.DeltaPressure)) { } + }); + } + + [Benchmark] + public async Task PerformSingleRunProcess() + { + await _pair.Server.WaitPost(() => + { + _atmospereSystem.RunProcessingStage(_testEnt, AtmosphereProcessingState.DeltaPressure); + }); + } + + [GlobalCleanup] + public async Task CleanupAsync() + { + await _pair.DisposeAsync(); + PoolManager.Shutdown(); + } +} diff --git a/Content.Benchmarks/MapLoadBenchmark.cs b/Content.Benchmarks/MapLoadBenchmark.cs index de788234e5..3d527953b8 100644 --- a/Content.Benchmarks/MapLoadBenchmark.cs +++ b/Content.Benchmarks/MapLoadBenchmark.cs @@ -47,7 +47,7 @@ public class MapLoadBenchmark PoolManager.Shutdown(); } - public static readonly string[] MapsSource = { "Empty", "Saltern", "Box", "Bagel", "Dev", "CentComm", "Core", "TestTeg", "Packed", "Omega", "Reach", "Meta", "Marathon", "MeteorArena", "Fland", "Oasis", "Convex"}; + public static string[] MapsSource { get; } = { "Empty", "Saltern", "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.Client/Actions/UI/ActionAlertTooltip.cs b/Content.Client/Actions/UI/ActionAlertTooltip.cs index 2425cdefb9..664a67b406 100644 --- a/Content.Client/Actions/UI/ActionAlertTooltip.cs +++ b/Content.Client/Actions/UI/ActionAlertTooltip.cs @@ -21,7 +21,7 @@ namespace Content.Client.Actions.UI /// public (TimeSpan Start, TimeSpan End)? Cooldown { get; set; } - public ActionAlertTooltip(FormattedMessage name, FormattedMessage? desc, string? requires = null, FormattedMessage? charges = null) + public ActionAlertTooltip(FormattedMessage name, FormattedMessage? desc, string? requires = null) { _gameTiming = IoCManager.Resolve(); @@ -52,17 +52,6 @@ namespace Content.Client.Actions.UI vbox.AddChild(description); } - if (charges != null && !string.IsNullOrWhiteSpace(charges.ToString())) - { - var chargesLabel = new RichTextLabel - { - MaxWidth = TooltipTextMaxWidth, - StyleClasses = { StyleNano.StyleClassTooltipActionCharges } - }; - chargesLabel.SetMessage(charges); - vbox.AddChild(chargesLabel); - } - vbox.AddChild(_cooldownLabel = new RichTextLabel { MaxWidth = TooltipTextMaxWidth, diff --git a/Content.Client/Administration/Managers/ClientAdminManager.cs b/Content.Client/Administration/Managers/ClientAdminManager.cs index 0f740c8104..3f072691de 100644 --- a/Content.Client/Administration/Managers/ClientAdminManager.cs +++ b/Content.Client/Administration/Managers/ClientAdminManager.cs @@ -15,6 +15,7 @@ namespace Content.Client.Administration.Managers [Dependency] private readonly IPlayerManager _player = default!; [Dependency] private readonly IClientNetManager _netMgr = default!; [Dependency] private readonly IClientConGroupController _conGroup = default!; + [Dependency] private readonly IClientConsoleHost _host = default!; [Dependency] private readonly IResourceManager _res = default!; [Dependency] private readonly ILogManager _logManager = default!; [Dependency] private readonly IUserInterfaceManager _userInterface = default!; @@ -86,12 +87,12 @@ namespace Content.Client.Administration.Managers private void UpdateMessageRx(MsgUpdateAdminStatus message) { _availableCommands.Clear(); - var host = IoCManager.Resolve(); // Anything marked as Any we'll just add even if the server doesn't know about it. - foreach (var (command, instance) in host.AvailableCommands) + foreach (var (command, instance) in _host.AvailableCommands) { - if (Attribute.GetCustomAttribute(instance.GetType(), typeof(AnyCommandAttribute)) == null) continue; + if (Attribute.GetCustomAttribute(instance.GetType(), typeof(AnyCommandAttribute)) == null) + continue; _availableCommands.Add(command); } diff --git a/Content.Client/Administration/Systems/AdminFrozenSystem.cs b/Content.Client/Administration/Systems/AdminFrozenSystem.cs deleted file mode 100644 index 885585f985..0000000000 --- a/Content.Client/Administration/Systems/AdminFrozenSystem.cs +++ /dev/null @@ -1,7 +0,0 @@ -using Content.Shared.Administration; - -namespace Content.Client.Administration.Systems; - -public sealed class AdminFrozenSystem : SharedAdminFrozenSystem -{ -} diff --git a/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTab.xaml.cs b/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTab.xaml.cs index de9ccbbf50..fa92a3e18f 100644 --- a/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTab.xaml.cs +++ b/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTab.xaml.cs @@ -57,12 +57,43 @@ public sealed partial class ObjectsTab : Control private void TeleportTo(NetEntity nent) { - _console.ExecuteCommand($"tpto {nent}"); + var selection = _selections[ObjectTypeOptions.SelectedId]; + switch (selection) + { + case ObjectsTabSelection.Grids: + { + // directly teleport to the entity + _console.ExecuteCommand($"tpto {nent}"); + } + break; + case ObjectsTabSelection.Maps: + { + // teleport to the map, not to the map entity (which is in nullspace) + if (!_entityManager.TryGetEntity(nent, out var map) || !_entityManager.TryGetComponent(map, out var mapComp)) + break; + _console.ExecuteCommand($"tp 0 0 {mapComp.MapId}"); + break; + } + case ObjectsTabSelection.Stations: + { + // teleport to the station's largest grid, not to the station entity (which is in nullspace) + if (!_entityManager.TryGetEntity(nent, out var station)) + break; + var largestGrid = _entityManager.EntitySysManager.GetEntitySystem().GetLargestGrid(station.Value); + if (largestGrid == null) + break; + _console.ExecuteCommand($"tpto {largestGrid.Value}"); + break; + } + default: + throw new NotImplementedException(); + } } private void Delete(NetEntity nent) { _console.ExecuteCommand($"delete {nent}"); + RefreshObjectList(); } public void RefreshObjectList() @@ -79,25 +110,21 @@ public sealed partial class ObjectsTab : Control entities.AddRange(_entityManager.EntitySysManager.GetEntitySystem().GetStationNames()); break; case ObjectsTabSelection.Grids: - { - var query = _entityManager.AllEntityQueryEnumerator(); - while (query.MoveNext(out var uid, out _, out var metadata)) { - entities.Add((metadata.EntityName, _entityManager.GetNetEntity(uid))); - } + var query = _entityManager.AllEntityQueryEnumerator(); + while (query.MoveNext(out var uid, out _, out var metadata)) + entities.Add((metadata.EntityName, _entityManager.GetNetEntity(uid))); - break; - } + break; + } case ObjectsTabSelection.Maps: - { - var query = _entityManager.AllEntityQueryEnumerator(); - while (query.MoveNext(out var uid, out _, out var metadata)) { - entities.Add((metadata.EntityName, _entityManager.GetNetEntity(uid))); - } + var query = _entityManager.AllEntityQueryEnumerator(); + while (query.MoveNext(out var uid, out _, out var metadata)) + entities.Add((metadata.EntityName, _entityManager.GetNetEntity(uid))); - break; - } + break; + } default: throw new ArgumentOutOfRangeException(nameof(selection), selection, null); } diff --git a/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTabEntry.xaml b/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTabEntry.xaml index c561125a30..7c9dde79b5 100644 --- a/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTabEntry.xaml +++ b/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTabEntry.xaml @@ -1,5 +1,6 @@  - diff --git a/Content.Client/Lathe/UI/LatheMenu.xaml.cs b/Content.Client/Lathe/UI/LatheMenu.xaml.cs index 66d875b0f2..a0dc241c29 100644 --- a/Content.Client/Lathe/UI/LatheMenu.xaml.cs +++ b/Content.Client/Lathe/UI/LatheMenu.xaml.cs @@ -11,6 +11,7 @@ using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.CustomControls; using Robust.Client.UserInterface.XAML; using Robust.Shared.Prototypes; +using Robust.Shared.Utility; namespace Content.Client.Lathe.UI; @@ -26,6 +27,10 @@ public sealed partial class LatheMenu : DefaultWindow public event Action? OnServerListButtonPressed; public event Action? RecipeQueueAction; + public event Action? QueueDeleteAction; + public event Action? QueueMoveUpAction; + public event Action? QueueMoveDownAction; + public event Action? DeleteFabricatingAction; public List> Recipes = new(); @@ -50,12 +55,21 @@ public sealed partial class LatheMenu : DefaultWindow }; AmountLineEdit.OnTextChanged += _ => { + if (int.TryParse(AmountLineEdit.Text, out var amount)) + { + if (amount > LatheSystem.MaxItemsPerRequest) + AmountLineEdit.Text = LatheSystem.MaxItemsPerRequest.ToString(); + else if (amount < 0) + AmountLineEdit.Text = "0"; + } + PopulateRecipes(); }; FilterOption.OnItemSelected += OnItemSelected; ServerListButton.OnPressed += a => OnServerListButtonPressed?.Invoke(a); + DeleteFabricating.OnPressed += _ => DeleteFabricatingAction?.Invoke(); } public void SetEntity(EntityUid uid) @@ -115,21 +129,50 @@ public sealed partial class LatheMenu : DefaultWindow RecipeCount.Text = Loc.GetString("lathe-menu-recipe-count", ("count", recipesToShow.Count)); var sortedRecipesToShow = recipesToShow.OrderBy(_lathe.GetRecipeName); - RecipeList.Children.Clear(); + + // Get the existing list of queue controls + var oldChildCount = RecipeList.ChildCount; _entityManager.TryGetComponent(Entity, out LatheComponent? lathe); + int idx = 0; foreach (var prototype in sortedRecipesToShow) { var canProduce = _lathe.CanProduce(Entity, prototype, quantity, component: lathe); + var tooltipFunction = () => GenerateTooltipText(prototype); - var control = new RecipeControl(_lathe, prototype, () => GenerateTooltipText(prototype), canProduce, GetRecipeDisplayControl(prototype)); - control.OnButtonPressed += s => + if (idx >= oldChildCount) { - if (!int.TryParse(AmountLineEdit.Text, out var amount) || amount <= 0) - amount = 1; - RecipeQueueAction?.Invoke(s, amount); - }; - RecipeList.AddChild(control); + var control = new RecipeControl(_lathe, prototype, tooltipFunction, canProduce, GetRecipeDisplayControl(prototype)); + control.OnButtonPressed += s => + { + if (!int.TryParse(AmountLineEdit.Text, out var amount) || amount <= 0) + amount = 1; + RecipeQueueAction?.Invoke(s, amount); + }; + RecipeList.AddChild(control); + } + else + { + var child = RecipeList.GetChild(idx) as RecipeControl; + + if (child == null) + { + DebugTools.Assert($"Lathe menu recipe control at {idx} is not of type RecipeControl"); // Something's gone terribly wrong. + continue; + } + + child.SetRecipe(prototype); + child.SetTooltipSupplier(tooltipFunction); + child.SetCanProduce(canProduce); + child.SetDisplayControl(GetRecipeDisplayControl(prototype)); + } + idx++; + } + + // Shrink list if new list is shorter than old list. + for (var childIdx = oldChildCount - 1; idx <= childIdx; childIdx--) + { + RecipeList.RemoveChild(childIdx); } } @@ -223,25 +266,53 @@ public sealed partial class LatheMenu : DefaultWindow /// Populates the build queue list with all queued items /// /// - public void PopulateQueueList(IReadOnlyCollection> queue) + public void PopulateQueueList(IReadOnlyCollection queue) { - QueueList.DisposeAllChildren(); + // Get the existing list of queue controls + var oldChildCount = QueueList.ChildCount; - var idx = 1; - foreach (var recipeProto in queue) + var idx = 0; + foreach (var batch in queue) { - var recipe = _prototypeManager.Index(recipeProto); - var queuedRecipeBox = new BoxContainer(); - queuedRecipeBox.Orientation = BoxContainer.LayoutOrientation.Horizontal; + var recipe = _prototypeManager.Index(batch.Recipe); - queuedRecipeBox.AddChild(GetRecipeDisplayControl(recipe)); + var itemName = _lathe.GetRecipeName(batch.Recipe); + string displayText; + if (batch.ItemsRequested > 1) + displayText = Loc.GetString("lathe-menu-item-batch", ("index", idx + 1), ("name", itemName), ("printed", batch.ItemsPrinted), ("total", batch.ItemsRequested)); + else + displayText = Loc.GetString("lathe-menu-item-single", ("index", idx + 1), ("name", itemName)); - var queuedRecipeLabel = new Label(); - queuedRecipeLabel.Text = $"{idx}. {_lathe.GetRecipeName(recipe)}"; - queuedRecipeBox.AddChild(queuedRecipeLabel); - QueueList.AddChild(queuedRecipeBox); + if (idx >= oldChildCount) + { + var queuedRecipeBox = new QueuedRecipeControl(displayText, idx, GetRecipeDisplayControl(recipe)); + queuedRecipeBox.OnDeletePressed += s => QueueDeleteAction?.Invoke(s); + queuedRecipeBox.OnMoveUpPressed += s => QueueMoveUpAction?.Invoke(s); + queuedRecipeBox.OnMoveDownPressed += s => QueueMoveDownAction?.Invoke(s); + QueueList.AddChild(queuedRecipeBox); + } + else + { + var child = QueueList.GetChild(idx) as QueuedRecipeControl; + + if (child == null) + { + DebugTools.Assert($"Lathe menu queued recipe control at {idx} is not of type QueuedRecipeControl"); // Something's gone terribly wrong. + continue; + } + + child.SetDisplayText(displayText); + child.SetIndex(idx); + child.SetDisplayControl(GetRecipeDisplayControl(recipe)); + } idx++; } + + // Shrink list if new list is shorter than old list. + for (var childIdx = oldChildCount - 1; idx <= childIdx; childIdx--) + { + QueueList.RemoveChild(childIdx); + } } public void SetQueueInfo(ProtoId? recipeProto) diff --git a/Content.Client/Lathe/UI/QueuedRecipeControl.xaml b/Content.Client/Lathe/UI/QueuedRecipeControl.xaml new file mode 100644 index 0000000000..b1d4b496a1 --- /dev/null +++ b/Content.Client/Lathe/UI/QueuedRecipeControl.xaml @@ -0,0 +1,35 @@ + + + + + diff --git a/Content.Client/Lathe/UI/QueuedRecipeControl.xaml.cs b/Content.Client/Lathe/UI/QueuedRecipeControl.xaml.cs new file mode 100644 index 0000000000..69c8da6d7b --- /dev/null +++ b/Content.Client/Lathe/UI/QueuedRecipeControl.xaml.cs @@ -0,0 +1,56 @@ +using Robust.Client.AutoGenerated; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.XAML; + +namespace Content.Client.Lathe.UI; + +[GenerateTypedNameReferences] +public sealed partial class QueuedRecipeControl : Control +{ + public Action? OnDeletePressed; + public Action? OnMoveUpPressed; + public Action? OnMoveDownPressed; + + private int _index; + + public QueuedRecipeControl(string displayText, int index, Control displayControl) + { + RobustXamlLoader.Load(this); + + SetDisplayText(displayText); + SetDisplayControl(displayControl); + SetIndex(index); + _index = index; + + MoveUp.OnPressed += (_) => + { + OnMoveUpPressed?.Invoke(_index); + }; + + MoveDown.OnPressed += (_) => + { + OnMoveDownPressed?.Invoke(_index); + }; + + Delete.OnPressed += (_) => + { + OnDeletePressed?.Invoke(_index); + }; + } + + public void SetDisplayText(string displayText) + { + RecipeName.Text = displayText; + } + + public void SetDisplayControl(Control displayControl) + { + RecipeDisplayContainer.Children.Clear(); + RecipeDisplayContainer.AddChild(displayControl); + } + + public void SetIndex(int index) + { + _index = index; + } +} diff --git a/Content.Client/Lathe/UI/RecipeControl.xaml.cs b/Content.Client/Lathe/UI/RecipeControl.xaml.cs index 4f438c8a8e..277fe12c04 100644 --- a/Content.Client/Lathe/UI/RecipeControl.xaml.cs +++ b/Content.Client/Lathe/UI/RecipeControl.xaml.cs @@ -2,6 +2,7 @@ using Content.Shared.Research.Prototypes; using Robust.Client.AutoGenerated; using Robust.Client.UserInterface; using Robust.Client.UserInterface.XAML; +using Robust.Shared.Prototypes; namespace Content.Client.Lathe.UI; @@ -11,20 +12,47 @@ public sealed partial class RecipeControl : Control public Action? OnButtonPressed; public Func TooltipTextSupplier; + private ProtoId _recipeId; + private LatheSystem _latheSystem; + public RecipeControl(LatheSystem latheSystem, LatheRecipePrototype recipe, Func tooltipTextSupplier, bool canProduce, Control displayControl) { RobustXamlLoader.Load(this); - RecipeName.Text = latheSystem.GetRecipeName(recipe); - RecipeDisplayContainer.AddChild(displayControl); - Button.Disabled = !canProduce; + _latheSystem = latheSystem; + _recipeId = recipe.ID; TooltipTextSupplier = tooltipTextSupplier; - Button.TooltipSupplier = SupplyTooltip; + SetRecipe(recipe); + SetCanProduce(canProduce); + SetDisplayControl(displayControl); Button.OnPressed += (_) => { - OnButtonPressed?.Invoke(recipe.ID); + OnButtonPressed?.Invoke(_recipeId); }; + Button.TooltipSupplier = SupplyTooltip; + } + + public void SetRecipe(LatheRecipePrototype recipe) + { + RecipeName.Text = _latheSystem.GetRecipeName(recipe); + _recipeId = recipe.ID; + } + + public void SetTooltipSupplier(Func tooltipTextSupplier) + { + TooltipTextSupplier = tooltipTextSupplier; + } + + public void SetCanProduce(bool canProduce) + { + Button.Disabled = !canProduce; + } + + public void SetDisplayControl(Control displayControl) + { + RecipeDisplayContainer.Children.Clear(); + RecipeDisplayContainer.AddChild(displayControl); } private Control? SupplyTooltip(Control sender) diff --git a/Content.Client/Light/EntitySystems/LightBulbSystem.cs b/Content.Client/Light/EntitySystems/LightBulbSystem.cs index c028cc64c6..a3698fc199 100644 --- a/Content.Client/Light/EntitySystems/LightBulbSystem.cs +++ b/Content.Client/Light/EntitySystems/LightBulbSystem.cs @@ -1,36 +1,46 @@ using Content.Shared.Light.Components; +using Content.Shared.Light.EntitySystems; using Robust.Client.GameObjects; -namespace Content.Client.Light.Visualizers; +namespace Content.Client.Light.EntitySystems; -public sealed class LightBulbSystem : VisualizerSystem +public sealed class LightBulbSystem : SharedLightBulbSystem { - protected override void OnAppearanceChange(EntityUid uid, LightBulbComponent comp, ref AppearanceChangeEvent args) + [Dependency] private readonly AppearanceSystem _appearance = default!; + [Dependency] private readonly SpriteSystem _sprite = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnAppearanceChange); + } + + private void OnAppearanceChange(EntityUid uid, LightBulbComponent comp, ref AppearanceChangeEvent args) { if (args.Sprite == null) return; // update sprite state - if (AppearanceSystem.TryGetData(uid, LightBulbVisuals.State, out var state, args.Component)) + if (_appearance.TryGetData(uid, LightBulbVisuals.State, out var state, args.Component)) { switch (state) { case LightBulbState.Normal: - SpriteSystem.LayerSetRsiState((uid, args.Sprite), LightBulbVisualLayers.Base, comp.NormalSpriteState); + _sprite.LayerSetRsiState((uid, args.Sprite), LightBulbVisualLayers.Base, comp.NormalSpriteState); break; case LightBulbState.Broken: - SpriteSystem.LayerSetRsiState((uid, args.Sprite), LightBulbVisualLayers.Base, comp.BrokenSpriteState); + _sprite.LayerSetRsiState((uid, args.Sprite), LightBulbVisualLayers.Base, comp.BrokenSpriteState); break; case LightBulbState.Burned: - SpriteSystem.LayerSetRsiState((uid, args.Sprite), LightBulbVisualLayers.Base, comp.BurnedSpriteState); + _sprite.LayerSetRsiState((uid, args.Sprite), LightBulbVisualLayers.Base, comp.BurnedSpriteState); break; } } // also update sprites color - if (AppearanceSystem.TryGetData(uid, LightBulbVisuals.Color, out var color, args.Component)) + if (_appearance.TryGetData(uid, LightBulbVisuals.Color, out var color, args.Component)) { - SpriteSystem.SetColor((uid, args.Sprite), color); + _sprite.SetColor((uid, args.Sprite), color); } } } diff --git a/Content.Client/Light/EntitySystems/PoweredLightSystem.cs b/Content.Client/Light/EntitySystems/PoweredLightSystem.cs new file mode 100644 index 0000000000..b8a6b16da4 --- /dev/null +++ b/Content.Client/Light/EntitySystems/PoweredLightSystem.cs @@ -0,0 +1,5 @@ +using Content.Shared.Light.EntitySystems; + +namespace Content.Client.Light.EntitySystems; + +public sealed class PoweredLightSystem : SharedPoweredLightSystem; diff --git a/Content.Client/Lobby/LobbyUIController.cs b/Content.Client/Lobby/LobbyUIController.cs index 121e8dbe71..ec052adea5 100644 --- a/Content.Client/Lobby/LobbyUIController.cs +++ b/Content.Client/Lobby/LobbyUIController.cs @@ -72,6 +72,7 @@ public sealed class LobbyUIController : UIController, IOnStateEntered RefreshProfileEditor()); + _configurationManager.OnValueChanged(CCVars.GameRoleLoadoutTimers, _ => RefreshProfileEditor()); _configurationManager.OnValueChanged(CCVars.GameRoleWhitelist, _ => RefreshProfileEditor()); } diff --git a/Content.Client/Medical/SuitSensors/SuitSensorSystem.cs b/Content.Client/Medical/SuitSensors/SuitSensorSystem.cs new file mode 100644 index 0000000000..75868e08d9 --- /dev/null +++ b/Content.Client/Medical/SuitSensors/SuitSensorSystem.cs @@ -0,0 +1,5 @@ +using Content.Shared.Medical.SuitSensors; + +namespace Content.Client.Medical.SuitSensors; + +public sealed class SuitSensorSystem : SharedSuitSensorSystem; diff --git a/Content.Client/Morgue/CrematoriumSystem.cs b/Content.Client/Morgue/CrematoriumSystem.cs new file mode 100644 index 0000000000..66eac263c2 --- /dev/null +++ b/Content.Client/Morgue/CrematoriumSystem.cs @@ -0,0 +1,5 @@ +using Content.Shared.Morgue; + +namespace Content.Client.Morgue; + +public sealed class CrematoriumSystem : SharedCrematoriumSystem; diff --git a/Content.Client/Morgue/MorgueSystem.cs b/Content.Client/Morgue/MorgueSystem.cs new file mode 100644 index 0000000000..b8d2f109fb --- /dev/null +++ b/Content.Client/Morgue/MorgueSystem.cs @@ -0,0 +1,5 @@ +using Content.Shared.Morgue; + +namespace Content.Client.Morgue; + +public sealed class MorgueSystem : SharedMorgueSystem; diff --git a/Content.Client/Movement/Systems/ContentEyeSystem.cs b/Content.Client/Movement/Systems/ContentEyeSystem.cs index 518a4a1bd4..a332d25f9a 100644 --- a/Content.Client/Movement/Systems/ContentEyeSystem.cs +++ b/Content.Client/Movement/Systems/ContentEyeSystem.cs @@ -1,7 +1,6 @@ using System.Numerics; using Content.Shared.Movement.Components; using Content.Shared.Movement.Systems; -using Robust.Client.GameObjects; using Robust.Client.Player; namespace Content.Client.Movement.Systems; @@ -63,4 +62,15 @@ public sealed class ContentEyeSystem : SharedContentEyeSystem UpdateEyeOffset((entity, eyeComponent)); } } + + public override void Update(float frameTime) + { + base.Update(frameTime); + // TODO: Ideally we wouldn't want this to run in both FrameUpdate and Update, but we kind of have to since the visual update happens in FrameUpdate, but interaction update happens in Update. It's a workaround and a better solution should be found. + var eyeEntities = AllEntityQuery(); + while (eyeEntities.MoveNext(out var entity, out ContentEyeComponent? contentComponent, out EyeComponent? eyeComponent)) + { + UpdateEyeOffset((entity, eyeComponent)); + } + } } diff --git a/Content.Client/Movement/Systems/EyeCursorOffsetSystem.cs b/Content.Client/Movement/Systems/EyeCursorOffsetSystem.cs index eb524cf4ee..174ae2dd97 100644 --- a/Content.Client/Movement/Systems/EyeCursorOffsetSystem.cs +++ b/Content.Client/Movement/Systems/EyeCursorOffsetSystem.cs @@ -1,10 +1,10 @@ using System.Numerics; using Content.Client.Movement.Components; +using Content.Client.Viewport; using Content.Shared.Camera; using Robust.Client.Graphics; using Robust.Client.Input; using Robust.Shared.Map; -using Robust.Client.Player; namespace Content.Client.Movement.Systems; @@ -12,13 +12,10 @@ public sealed partial class EyeCursorOffsetSystem : EntitySystem { [Dependency] private readonly IEyeManager _eyeManager = default!; [Dependency] private readonly IInputManager _inputManager = default!; - [Dependency] private readonly IPlayerManager _player = default!; - [Dependency] private readonly SharedTransformSystem _transform = default!; - [Dependency] private readonly IClyde _clyde = default!; // This value is here to make sure the user doesn't have to move their mouse // all the way out to the edge of the screen to get the full offset. - static private float _edgeOffset = 0.9f; + private static float _edgeOffset = 0.8f; public override void Initialize() { @@ -38,25 +35,29 @@ public sealed partial class EyeCursorOffsetSystem : EntitySystem public Vector2? OffsetAfterMouse(EntityUid uid, EyeCursorOffsetComponent? component) { - var localPlayer = _player.LocalEntity; - var mousePos = _inputManager.MouseScreenPosition; - var screenSize = _clyde.MainWindow.Size; - var minValue = MathF.Min(screenSize.X / 2, screenSize.Y / 2) * _edgeOffset; - - var mouseNormalizedPos = new Vector2(-(mousePos.X - screenSize.X / 2) / minValue, (mousePos.Y - screenSize.Y / 2) / minValue); // X needs to be inverted here for some reason, otherwise it ends up flipped. - - if (localPlayer == null) + // We need the main viewport where the game content is displayed, as certain UI layouts (e.g. Separated HUD) can make it a different size to the game window. + if (_eyeManager.MainViewport is not ScalingViewport vp) return null; - var playerPos = _transform.GetWorldPosition(localPlayer.Value); + var mousePos = _inputManager.MouseScreenPosition.Position; // TODO: If we ever get a right-aligned Separated HUD setting, this might need to be adjusted for that. + + var viewportSize = vp.PixelSize; // The size of the game viewport, including black bars - does not include the chatbox in Separated HUD view. + var scalingViewportSize = vp.ViewportSize * vp.CurrentRenderScale; // The size of the viewport in which the game is rendered (i.e. not including black bars). Note! Can extend outside the game window with certain zoom settings! + var visibleViewportSize = Vector2.Min(viewportSize, scalingViewportSize); // The size of the game viewport that is "actually visible" to the player, cutting off over-extensions and not counting black bar padding. + + Matrix3x2.Invert(_eyeManager.MainViewport.GetLocalToScreenMatrix(), out var matrix); + var mouseCoords = Vector2.Transform(mousePos, matrix); // Gives the mouse position inside of the *scaling viewport*, i.e. 0,0 is inside the black bars. Note! 0,0 can be outside the game window with certain zoom settings! + + var boundedMousePos = Vector2.Clamp(Vector2.Min(mouseCoords, mousePos), Vector2.Zero, visibleViewportSize); // Mouse position inside the visible game viewport's bounds. + + var offsetRadius = MathF.Min(visibleViewportSize.X / 2f, visibleViewportSize.Y / 2f) * _edgeOffset; + var mouseNormalizedPos = new Vector2(-(boundedMousePos.X - visibleViewportSize.X / 2f) / offsetRadius, (boundedMousePos.Y - visibleViewportSize.Y / 2f) / offsetRadius); if (component == null) - { component = EnsureComp(uid); - } // Doesn't move the offset if the mouse has left the game window! - if (mousePos.Window != WindowId.Invalid) + if (_inputManager.MouseScreenPosition.Window != WindowId.Invalid) { // The offset must account for the in-world rotation. var eyeRotation = _eyeManager.CurrentEye.Rotation; @@ -77,7 +78,7 @@ public sealed partial class EyeCursorOffsetSystem : EntitySystem Vector2 vectorOffset = component.TargetPosition - component.CurrentPosition; if (vectorOffset.Length() > component.OffsetSpeed) { - vectorOffset = vectorOffset.Normalized() * component.OffsetSpeed; + vectorOffset = vectorOffset.Normalized() * component.OffsetSpeed; // TODO: Probably needs to properly account for time delta or something. } component.CurrentPosition += vectorOffset; } diff --git a/Content.Client/NPC/PathfindingSystem.cs b/Content.Client/NPC/PathfindingSystem.cs index 0c72a8f99f..dc8fd98433 100644 --- a/Content.Client/NPC/PathfindingSystem.cs +++ b/Content.Client/NPC/PathfindingSystem.cs @@ -20,6 +20,7 @@ namespace Content.Client.NPC [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IInputManager _inputManager = default!; [Dependency] private readonly IMapManager _mapManager = default!; + [Dependency] private readonly IOverlayManager _overlayManager = default!; [Dependency] private readonly IResourceCache _cache = default!; [Dependency] private readonly NPCSteeringSystem _steering = default!; [Dependency] private readonly MapSystem _mapSystem = default!; @@ -30,17 +31,15 @@ namespace Content.Client.NPC get => _modes; set { - var overlayManager = IoCManager.Resolve(); - if (value == PathfindingDebugMode.None) { Breadcrumbs.Clear(); Polys.Clear(); - overlayManager.RemoveOverlay(); + _overlayManager.RemoveOverlay(); } - else if (!overlayManager.HasOverlay()) + else if (!_overlayManager.HasOverlay()) { - overlayManager.AddOverlay(new PathfindingOverlay(EntityManager, _eyeManager, _inputManager, _mapManager, _cache, this, _mapSystem, _transformSystem)); + _overlayManager.AddOverlay(new PathfindingOverlay(EntityManager, _eyeManager, _inputManager, _mapManager, _cache, this, _mapSystem, _transformSystem)); } if ((value & PathfindingDebugMode.Steering) != 0x0) diff --git a/Content.Client/Physics/Controllers/MoverController.cs b/Content.Client/Physics/Controllers/MoverController.cs index 2fe5c18fe0..0f95a817c9 100644 --- a/Content.Client/Physics/Controllers/MoverController.cs +++ b/Content.Client/Physics/Controllers/MoverController.cs @@ -120,8 +120,8 @@ public sealed class MoverController : SharedMoverController base.SetSprinting(entity, subTick, walking); if (walking && _cfg.GetCVar(CCVars.ToggleWalk)) - _alerts.ShowAlert(entity, WalkingAlert, showCooldown: false, autoRemove: false); + _alerts.ShowAlert(entity.Owner, WalkingAlert, showCooldown: false, autoRemove: false); else - _alerts.ClearAlert(entity, WalkingAlert); + _alerts.ClearAlert(entity.Owner, WalkingAlert); } } diff --git a/Content.Client/Power/Components/ApcPowerReceiverComponent.cs b/Content.Client/Power/Components/ApcPowerReceiverComponent.cs index fbebcb7cf8..ead686189e 100644 --- a/Content.Client/Power/Components/ApcPowerReceiverComponent.cs +++ b/Content.Client/Power/Components/ApcPowerReceiverComponent.cs @@ -5,4 +5,5 @@ namespace Content.Client.Power.Components; [RegisterComponent] public sealed partial class ApcPowerReceiverComponent : SharedApcPowerReceiverComponent { + public override float Load { get; set; } } diff --git a/Content.Client/Radiation/Overlays/RadiationDebugOverlay.cs b/Content.Client/Radiation/Overlays/RadiationDebugOverlay.cs index 784c39a6ce..1f060e532d 100644 --- a/Content.Client/Radiation/Overlays/RadiationDebugOverlay.cs +++ b/Content.Client/Radiation/Overlays/RadiationDebugOverlay.cs @@ -11,6 +11,8 @@ namespace Content.Client.Radiation.Overlays; public sealed class RadiationDebugOverlay : Overlay { [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly IResourceCache _cache = default!; + private readonly SharedMapSystem _mapSystem; private readonly RadiationSystem _radiation; @@ -24,8 +26,7 @@ public sealed class RadiationDebugOverlay : Overlay _radiation = _entityManager.System(); _mapSystem = _entityManager.System(); - var cache = IoCManager.Resolve(); - _font = new VectorFont(cache.GetResource("/Fonts/NotoSans/NotoSans-Regular.ttf"), 8); + _font = new VectorFont(_cache.GetResource("/Fonts/NotoSans/NotoSans-Regular.ttf"), 8); } protected override void Draw(in OverlayDrawArgs args) diff --git a/Content.Client/Robotics/UI/RoboticsConsoleWindow.xaml.cs b/Content.Client/Robotics/UI/RoboticsConsoleWindow.xaml.cs index 06e5674d9c..24583d2776 100644 --- a/Content.Client/Robotics/UI/RoboticsConsoleWindow.xaml.cs +++ b/Content.Client/Robotics/UI/RoboticsConsoleWindow.xaml.cs @@ -28,6 +28,8 @@ public sealed partial class RoboticsConsoleWindow : FancyWindow public EntityUid Entity; + private bool _allowBorgControl = true; + public RoboticsConsoleWindow() { RobustXamlLoader.Load(this); @@ -72,6 +74,7 @@ public sealed partial class RoboticsConsoleWindow : FancyWindow public void UpdateState(RoboticsConsoleState state) { _cyborgs = state.Cyborgs; + _allowBorgControl = state.AllowBorgControl; // clear invalid selection if (_selected is {} selected && !_cyborgs.ContainsKey(selected)) @@ -85,8 +88,8 @@ public sealed partial class RoboticsConsoleWindow : FancyWindow PopulateData(); var locked = _lock.IsLocked(Entity); - DangerZone.Visible = !locked; - LockedMessage.Visible = locked; + DangerZone.Visible = !locked && _allowBorgControl; + LockedMessage.Visible = locked && _allowBorgControl; // Only show if locked AND control is allowed } private void PopulateCyborgs() @@ -120,11 +123,19 @@ public sealed partial class RoboticsConsoleWindow : FancyWindow BorgSprite.Texture = _sprite.Frame0(data.ChassisSprite!); var batteryColor = data.Charge switch { - < 0.2f => "red", - < 0.4f => "orange", - < 0.6f => "yellow", - < 0.8f => "green", - _ => "blue" + < 0.2f => "#FF6C7F", // red + < 0.4f => "#EF973C", // orange + < 0.6f => "#E8CB2D", // yellow + < 0.8f => "#30CC19", // green + _ => "#00D3B8" // cyan + }; + + var hpPercentColor = data.HpPercent switch { + < 0.2f => "#FF6C7F", // red + < 0.4f => "#EF973C", // orange + < 0.6f => "#E8CB2D", // yellow + < 0.8f => "#30CC19", // green + _ => "#00D3B8" // cyan }; var text = new FormattedMessage(); @@ -132,12 +143,14 @@ public sealed partial class RoboticsConsoleWindow : FancyWindow text.AddMarkupOrThrow(Loc.GetString("robotics-console-designation")); text.AddText($" {data.Name}\n"); // prevent players trolling by naming borg [color=red]satan[/color] text.AddMarkupOrThrow($"{Loc.GetString("robotics-console-battery", ("charge", (int)(data.Charge * 100f)), ("color", batteryColor))}\n"); + text.AddMarkupOrThrow($"{Loc.GetString("robotics-console-hp", ("hp", (int)(data.HpPercent * 100f)), ("color", hpPercentColor))}\n"); text.AddMarkupOrThrow($"{Loc.GetString("robotics-console-brain", ("brain", data.HasBrain))}\n"); text.AddMarkupOrThrow(Loc.GetString("robotics-console-modules", ("count", data.ModuleCount))); BorgInfo.SetMessage(text); // how the turntables - DisableButton.Disabled = !(data.HasBrain && data.CanDisable); + DisableButton.Disabled = !_allowBorgControl || !(data.HasBrain && data.CanDisable); + DestroyButton.Disabled = !_allowBorgControl; } protected override void FrameUpdate(FrameEventArgs args) diff --git a/Content.Client/Shuttles/Systems/ShuttleSystem.EmergencyConsole.cs b/Content.Client/Shuttles/Systems/ShuttleSystem.EmergencyConsole.cs index 56b54c176a..f6e6594af5 100644 --- a/Content.Client/Shuttles/Systems/ShuttleSystem.EmergencyConsole.cs +++ b/Content.Client/Shuttles/Systems/ShuttleSystem.EmergencyConsole.cs @@ -16,20 +16,20 @@ public sealed partial class ShuttleSystem : SharedShuttleSystem get => _enableShuttlePosition; set { - if (_enableShuttlePosition == value) return; + if (_enableShuttlePosition == value) + return; _enableShuttlePosition = value; - var overlayManager = IoCManager.Resolve(); if (_enableShuttlePosition) { _overlay = new EmergencyShuttleOverlay(EntityManager.TransformQuery, XformSystem); - overlayManager.AddOverlay(_overlay); + _overlays.AddOverlay(_overlay); RaiseNetworkEvent(new EmergencyShuttleRequestPositionMessage()); } else { - overlayManager.RemoveOverlay(_overlay!); + _overlays.RemoveOverlay(_overlay!); _overlay = null; } } diff --git a/Content.Client/Shuttles/UI/ShuttleDockControl.xaml.cs b/Content.Client/Shuttles/UI/ShuttleDockControl.xaml.cs index 2b575b4805..449323c746 100644 --- a/Content.Client/Shuttles/UI/ShuttleDockControl.xaml.cs +++ b/Content.Client/Shuttles/UI/ShuttleDockControl.xaml.cs @@ -40,6 +40,8 @@ public sealed partial class ShuttleDockControl : BaseShuttleControl private readonly HashSet _drawnDocks = new(); private readonly Dictionary _dockButtons = new(); + private readonly Color _fallbackHighlightedColor = Color.Magenta; + /// /// Store buttons for every other dock /// @@ -213,11 +215,11 @@ public sealed partial class ShuttleDockControl : BaseShuttleControl if (HighlightedDock == dock.Entity) { - otherDockColor = Color.ToSrgb(Color.Magenta); + otherDockColor = Color.ToSrgb(dock.HighlightedColor); } else { - otherDockColor = Color.ToSrgb(Color.Purple); + otherDockColor = Color.ToSrgb(dock.Color); } /* @@ -311,7 +313,7 @@ public sealed partial class ShuttleDockControl : BaseShuttleControl ScalePosition(Vector2.Transform(new Vector2(-0.5f, 0.5f), rotation)), ScalePosition(Vector2.Transform(new Vector2(0.5f, -0.5f), rotation))); - var dockColor = Color.Magenta; + var dockColor = _viewedState?.HighlightedColor ?? _fallbackHighlightedColor; var connectionColor = Color.Pink; handle.DrawRect(ourDockConnection, connectionColor.WithAlpha(0.2f)); diff --git a/Content.Client/Shuttles/UI/ShuttleNavControl.xaml.cs b/Content.Client/Shuttles/UI/ShuttleNavControl.xaml.cs index 2dcec6b44a..7899a5ef3e 100644 --- a/Content.Client/Shuttles/UI/ShuttleNavControl.xaml.cs +++ b/Content.Client/Shuttles/UI/ShuttleNavControl.xaml.cs @@ -308,7 +308,7 @@ public sealed partial class ShuttleNavControl : BaseShuttleControl -dockRadius * UIScale, (Size.X + dockRadius) * UIScale, (Size.Y + dockRadius) * UIScale); - + if (_docks.TryGetValue(nent, out var docks)) { foreach (var state in docks) @@ -321,7 +321,7 @@ public sealed partial class ShuttleNavControl : BaseShuttleControl continue; } - var color = Color.ToSrgb(Color.Magenta); + var color = Color.ToSrgb(state.HighlightedColor); var verts = new[] { diff --git a/Content.Client/Stack/StackSystem.cs b/Content.Client/Stack/StackSystem.cs index d12e9900a6..182daa73a5 100644 --- a/Content.Client/Stack/StackSystem.cs +++ b/Content.Client/Stack/StackSystem.cs @@ -12,7 +12,6 @@ namespace Content.Client.Stack { [Dependency] private readonly AppearanceSystem _appearanceSystem = default!; [Dependency] private readonly ItemCounterSystem _counterSystem = default!; - [Dependency] private readonly SpriteSystem _sprite = default!; public override void Initialize() { @@ -28,22 +27,8 @@ namespace Content.Client.Stack base.SetCount(uid, amount, component); - if (component.Lingering && - TryComp(uid, out var sprite)) - { - // tint the stack gray and make it transparent if it's lingering. - var color = component.Count == 0 && component.Lingering - ? Color.DarkGray.WithAlpha(0.65f) - : Color.White; - - for (var i = 0; i < sprite.AllLayers.Count(); i++) - { - _sprite.LayerSetColor((uid, sprite), i, color); - } - } - // TODO PREDICT ENTITY DELETION: This should really just be a normal entity deletion call. - if (component.Count <= 0 && !component.Lingering) + if (component.Count <= 0) { Xform.DetachEntity(uid, Transform(uid)); return; diff --git a/Content.Client/Storage/Components/EntityStorageComponent.cs b/Content.Client/Storage/Components/EntityStorageComponent.cs deleted file mode 100644 index 514d5d6595..0000000000 --- a/Content.Client/Storage/Components/EntityStorageComponent.cs +++ /dev/null @@ -1,10 +0,0 @@ -using Content.Shared.Storage.Components; -using Robust.Shared.GameStates; - -namespace Content.Client.Storage.Components; - -[RegisterComponent] -public sealed partial class EntityStorageComponent : SharedEntityStorageComponent -{ - -} diff --git a/Content.Client/Storage/Systems/EntityStorageSystem.cs b/Content.Client/Storage/Systems/EntityStorageSystem.cs index dd3f8d3860..ca2b986667 100644 --- a/Content.Client/Storage/Systems/EntityStorageSystem.cs +++ b/Content.Client/Storage/Systems/EntityStorageSystem.cs @@ -31,7 +31,7 @@ public sealed class EntityStorageSystem : SharedEntityStorageSystem SubscribeLocalEvent(OnHandleState); } - public override bool ResolveStorage(EntityUid uid, [NotNullWhen(true)] ref SharedEntityStorageComponent? component) + public override bool ResolveStorage(EntityUid uid, [NotNullWhen(true)] ref EntityStorageComponent? component) { if (component != null) return true; diff --git a/Content.Client/UserInterface/Controls/MenuButton.cs b/Content.Client/UserInterface/Controls/MenuButton.cs index 540a8ecb57..a0ba21da74 100644 --- a/Content.Client/UserInterface/Controls/MenuButton.cs +++ b/Content.Client/UserInterface/Controls/MenuButton.cs @@ -25,7 +25,7 @@ public sealed class MenuButton : ContainerButton private Color NormalColor => HasStyleClass(StyleClassRedTopButton) ? ColorRedNormal : ColorNormal; private Color HoveredColor => HasStyleClass(StyleClassRedTopButton) ? ColorRedHovered : ColorHovered; - private BoundKeyFunction _function; + private BoundKeyFunction? _function; private readonly BoxContainer _root; private readonly TextureRect? _buttonIcon; private readonly Label? _buttonLabel; @@ -33,13 +33,13 @@ public sealed class MenuButton : ContainerButton public string AppendStyleClass { set => AddStyleClass(value); } public Texture? Icon { get => _buttonIcon!.Texture; set => _buttonIcon!.Texture = value; } - public BoundKeyFunction BoundKey + public BoundKeyFunction? BoundKey { get => _function; set { _function = value; - _buttonLabel!.Text = BoundKeyHelper.ShortKeyName(value); + _buttonLabel!.Text = _function == null ? "" : BoundKeyHelper.ShortKeyName(_function.Value); } } @@ -95,12 +95,12 @@ public sealed class MenuButton : ContainerButton private void OnKeyBindingChanged(IKeyBinding obj) { - _buttonLabel!.Text = BoundKeyHelper.ShortKeyName(_function); + _buttonLabel!.Text = _function == null ? "" : BoundKeyHelper.ShortKeyName(_function.Value); } private void OnKeyBindingChanged() { - _buttonLabel!.Text = BoundKeyHelper.ShortKeyName(_function); + _buttonLabel!.Text = _function == null ? "" : BoundKeyHelper.ShortKeyName(_function.Value); } protected override void StylePropertiesChanged() diff --git a/Content.Client/UserInterface/Controls/SlotControl.cs b/Content.Client/UserInterface/Controls/SlotControl.cs index a684bb05ef..2b43f2397d 100644 --- a/Content.Client/UserInterface/Controls/SlotControl.cs +++ b/Content.Client/UserInterface/Controls/SlotControl.cs @@ -1,9 +1,11 @@ using System.Numerics; using Content.Client.Cooldown; using Content.Client.UserInterface.Systems.Inventory.Controls; +using Robust.Client.GameObjects; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Shared.Input; +using Robust.Shared.Prototypes; namespace Content.Client.UserInterface.Controls { @@ -20,6 +22,7 @@ namespace Content.Client.UserInterface.Controls public CooldownGraphic CooldownDisplay { get; } private SpriteView SpriteView { get; } + private EntityPrototypeView ProtoView { get; } public EntityUid? Entity => SpriteView.Entity; @@ -141,6 +144,13 @@ namespace Content.Client.UserInterface.Controls SetSize = new Vector2(DefaultButtonSize, DefaultButtonSize), OverrideDirection = Direction.South }); + AddChild(ProtoView = new EntityPrototypeView + { + Visible = false, + Scale = new Vector2(2, 2), + SetSize = new Vector2(DefaultButtonSize, DefaultButtonSize), + OverrideDirection = Direction.South + }); AddChild(HoverSpriteView = new SpriteView { @@ -209,12 +219,35 @@ namespace Content.Client.UserInterface.Controls HoverSpriteView.SetEntity(null); } + /// + /// Causes the control to display a placeholder prototype, optionally faded + /// public void SetEntity(EntityUid? ent) { SpriteView.SetEntity(ent); + SpriteView.Visible = true; + ProtoView.Visible = false; UpdateButtonTexture(); } + /// + /// Causes the control to display a placeholder prototype, optionally faded + /// + public void SetPrototype(EntProtoId? proto, bool fade) + { + ProtoView.SetPrototype(proto); + SpriteView.Visible = false; + ProtoView.Visible = true; + + UpdateButtonTexture(); + + if (ProtoView.Entity is not { } ent || !fade) + return; + + var sprites = IoCManager.Resolve().GetEntitySystem(); + sprites.SetColor((ent.Owner, ent.Comp1), Color.DarkGray.WithAlpha(0.65f)); + } + private void UpdateButtonTexture() { var fullTexture = Theme.ResolveTextureOrNull(_fullButtonTexturePath); diff --git a/Content.Client/UserInterface/Systems/Actions/Controls/ActionButton.cs b/Content.Client/UserInterface/Systems/Actions/Controls/ActionButton.cs index cad9045fa8..be3af28b15 100644 --- a/Content.Client/UserInterface/Systems/Actions/Controls/ActionButton.cs +++ b/Content.Client/UserInterface/Systems/Actions/Controls/ActionButton.cs @@ -3,12 +3,12 @@ using Content.Client.Actions; using Content.Client.Actions.UI; using Content.Client.Cooldown; using Content.Client.Stylesheets; -using Content.Shared.Actions; using Content.Shared.Actions.Components; -using Content.Shared.Charges.Components; using Content.Shared.Charges.Systems; +using Content.Shared.Examine; using Robust.Client.GameObjects; using Robust.Client.Graphics; +using Robust.Client.Player; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Shared.Input; @@ -23,9 +23,9 @@ namespace Content.Client.UserInterface.Systems.Actions.Controls; public sealed class ActionButton : Control, IEntityControl { private IEntityManager _entities; + private IPlayerManager _player; private SpriteSystem? _spriteSys; private ActionUIController? _controller; - private SharedChargesSystem _sharedChargesSys; private bool _beingHovered; private bool _depressed; private bool _toggled; @@ -67,8 +67,8 @@ public sealed class ActionButton : Control, IEntityControl // TODO why is this constructor so slooooow. The rest of the code is fine _entities = entities; + _player = IoCManager.Resolve(); _spriteSys = spriteSys; - _sharedChargesSys = _entities.System(); _controller = controller; MouseFilter = MouseFilterMode.Pass; @@ -197,23 +197,17 @@ public sealed class ActionButton : Control, IEntityControl return null; var name = FormattedMessage.FromMarkupPermissive(Loc.GetString(metadata.EntityName)); - var decr = FormattedMessage.FromMarkupPermissive(Loc.GetString(metadata.EntityDescription)); - FormattedMessage? chargesText = null; + var desc = FormattedMessage.FromMarkupPermissive(Loc.GetString(metadata.EntityDescription)); - // TODO: Don't touch this use an event make callers able to add their own shit for actions or I kill you. - if (_entities.TryGetComponent(Action, out LimitedChargesComponent? actionCharges)) - { - var charges = _sharedChargesSys.GetCurrentCharges((Action.Value, actionCharges, null)); - chargesText = FormattedMessage.FromMarkupPermissive(Loc.GetString($"Charges: {charges.ToString()}/{actionCharges.MaxCharges}")); + if (_player.LocalEntity is null) + return null; - if (_entities.TryGetComponent(Action, out AutoRechargeComponent? autoRecharge)) - { - var chargeTimeRemaining = _sharedChargesSys.GetNextRechargeTime((Action.Value, actionCharges, autoRecharge)); - chargesText.AddText(Loc.GetString($"{Environment.NewLine}Time Til Recharge: {chargeTimeRemaining}")); - } - } + var ev = new ExaminedEvent(desc, Action.Value, _player.LocalEntity.Value, true, !desc.IsEmpty); + _entities.EventBus.RaiseLocalEvent(Action.Value.Owner, ev); - return new ActionAlertTooltip(name, decr, charges: chargesText); + var newDesc = ev.GetTotalMessage(); + + return new ActionAlertTooltip(name, newDesc); } protected override void ControlFocusExited() diff --git a/Content.Client/UserInterface/Systems/Bwoink/AHelpUIController.cs b/Content.Client/UserInterface/Systems/Bwoink/AHelpUIController.cs index 1b22f9460a..17cbcc38ac 100644 --- a/Content.Client/UserInterface/Systems/Bwoink/AHelpUIController.cs +++ b/Content.Client/UserInterface/Systems/Bwoink/AHelpUIController.cs @@ -16,6 +16,7 @@ using Content.Shared.Input; using JetBrains.Annotations; using Robust.Client.Audio; using Robust.Client.Graphics; +using Robust.Client.Input; using Robust.Client.Player; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controllers; @@ -37,6 +38,7 @@ public sealed class AHelpUIController: UIController, IOnSystemChanged ToggleWindow())) - .Register(); + _input.SetInputCommand(ContentKeyFunctions.OpenAHelp, + InputCmdHandler.FromDelegate(_ => ToggleWindow())); } public void OnSystemUnloaded(BwoinkSystem system) { - CommandBinds.Unregister(); + _input.SetInputCommand(ContentKeyFunctions.OpenAHelp, null); DebugTools.Assert(_bwoinkSystem != null); _bwoinkSystem!.OnBwoinkTextMessageRecieved -= ReceivedBwoink; diff --git a/Content.Client/UserInterface/Systems/Chat/ChatUIController.Highlighting.cs b/Content.Client/UserInterface/Systems/Chat/ChatUIController.Highlighting.cs index 1670823aab..46e06865cf 100644 --- a/Content.Client/UserInterface/Systems/Chat/ChatUIController.Highlighting.cs +++ b/Content.Client/UserInterface/Systems/Chat/ChatUIController.Highlighting.cs @@ -116,8 +116,9 @@ public sealed partial class ChatUIController : IOnSystemChanged entity, string name) @@ -139,7 +141,7 @@ public sealed class HandsUIController : UIController, IOnStateEntered(_entity, out var meta) || meta.Deleted) { - Update(null); + Update(null, hand); return; } diff --git a/Content.Client/Weapons/Ranged/Systems/GunSystem.cs b/Content.Client/Weapons/Ranged/Systems/GunSystem.cs index 6abebda6ee..c27e81b5c7 100644 --- a/Content.Client/Weapons/Ranged/Systems/GunSystem.cs +++ b/Content.Client/Weapons/Ranged/Systems/GunSystem.cs @@ -30,6 +30,7 @@ public sealed partial class GunSystem : SharedGunSystem { [Dependency] private readonly IEyeManager _eyeManager = default!; [Dependency] private readonly IInputManager _inputManager = default!; + [Dependency] private readonly IOverlayManager _overlayManager = default!; [Dependency] private readonly IPlayerManager _player = default!; [Dependency] private readonly IStateManager _state = default!; [Dependency] private readonly AnimationPlayerSystem _animPlayer = default!; @@ -50,11 +51,10 @@ public sealed partial class GunSystem : SharedGunSystem return; _spreadOverlay = value; - var overlayManager = IoCManager.Resolve(); if (_spreadOverlay) { - overlayManager.AddOverlay(new GunSpreadOverlay( + _overlayManager.AddOverlay(new GunSpreadOverlay( EntityManager, _eyeManager, Timing, @@ -65,7 +65,7 @@ public sealed partial class GunSystem : SharedGunSystem } else { - overlayManager.RemoveOverlay(); + _overlayManager.RemoveOverlay(); } } } diff --git a/Content.Client/Wieldable/WieldableSystem.cs b/Content.Client/Wieldable/WieldableSystem.cs index 2de837923c..e40544e39d 100644 --- a/Content.Client/Wieldable/WieldableSystem.cs +++ b/Content.Client/Wieldable/WieldableSystem.cs @@ -29,7 +29,10 @@ public sealed class WieldableSystem : SharedWieldableSystem return; if (_gameTiming.IsFirstTimePredicted) + { cursorOffsetComp.CurrentPosition = Vector2.Zero; + cursorOffsetComp.TargetPosition = Vector2.Zero; + } } public void OnGetEyeOffset(Entity entity, ref HeldRelayedEvent args) diff --git a/Content.IntegrationTests/AssemblyInfo.cs b/Content.IntegrationTests/AssemblyInfo.cs index 76fc42f3a9..b8a88e2623 100644 --- a/Content.IntegrationTests/AssemblyInfo.cs +++ b/Content.IntegrationTests/AssemblyInfo.cs @@ -5,4 +5,4 @@ // https://github.com/dotnet/runtime/issues/107197 // So we can't really parallelize integration tests harder either until the runtime fixes that, // *or* we fix serv3 to not spam expression trees. -[assembly: LevelOfParallelism(3)] +[assembly: LevelOfParallelism(2)] diff --git a/Content.IntegrationTests/PoolManager.Cvars.cs b/Content.IntegrationTests/PoolManager.Cvars.cs index 2c51bdbc3a..8cf2b626dc 100644 --- a/Content.IntegrationTests/PoolManager.Cvars.cs +++ b/Content.IntegrationTests/PoolManager.Cvars.cs @@ -21,6 +21,7 @@ public static partial class PoolManager (CCVars.NPCMaxUpdates.Name, "999999"), (CVars.ThreadParallelCount.Name, "1"), (CCVars.GameRoleTimers.Name, "false"), + (CCVars.GameRoleLoadoutTimers.Name, "false"), (CCVars.GameRoleWhitelist.Name, "false"), (CCVars.GridFill.Name, "false"), (CCVars.PreloadGrids.Name, "false"), diff --git a/Content.IntegrationTests/Tests/Atmos/DeltaPressureTest.cs b/Content.IntegrationTests/Tests/Atmos/DeltaPressureTest.cs new file mode 100644 index 0000000000..9dda130847 --- /dev/null +++ b/Content.IntegrationTests/Tests/Atmos/DeltaPressureTest.cs @@ -0,0 +1,417 @@ +using System.Linq; +using System.Numerics; +using Content.Server.Atmos; +using Content.Server.Atmos.Components; +using Content.Server.Atmos.EntitySystems; +using Content.Shared.Atmos; +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.Utility; + +namespace Content.IntegrationTests.Tests.Atmos; + +/// +/// Tests for AtmosphereSystem.DeltaPressure and surrounding systems +/// handling the DeltaPressureComponent. +/// +[TestFixture] +[TestOf(typeof(DeltaPressureSystem))] +public sealed class DeltaPressureTest +{ + #region Prototypes + + [TestPrototypes] + private const string Prototypes = @" +- type: entity + parent: BaseStructure + id: DeltaPressureSolidTest + placement: + mode: SnapgridCenter + snap: + - Wall + components: + - type: Physics + bodyType: Static + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: ""-0.5,-0.5,0.5,0.5"" + mask: + - FullTileMask + layer: + - WallLayer + density: 1000 + - type: Airtight + - type: DeltaPressure + minPressure: 15000 + minPressureDelta: 10000 + scalingType: Threshold + baseDamage: + types: + Structural: 1000 + - type: Damageable + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 300 + behaviors: + - !type:SpawnEntitiesBehavior + spawn: + Girder: + min: 1 + max: 1 + - !type:DoActsBehavior + acts: [ ""Destruction"" ] + +- type: entity + parent: DeltaPressureSolidTest + id: DeltaPressureSolidTestNoAutoJoin + components: + - type: DeltaPressure + autoJoinProcessingList: false + +- type: entity + parent: DeltaPressureSolidTest + id: DeltaPressureSolidTestAbsolute + components: + - type: DeltaPressure + minPressure: 10000 + minPressureDelta: 15000 + scalingType: Threshold + baseDamage: + types: + Structural: 1000 +"; + + #endregion + + private readonly ResPath _testMap = new("Maps/Test/Atmospherics/DeltaPressure/deltapressuretest.yml"); + + /// + /// Asserts that an entity with a DeltaPressureComponent with autoJoinProcessingList + /// set to true is automatically added to the DeltaPressure processing list + /// on the grid's GridAtmosphereComponent. + /// + /// Also asserts that an entity with a DeltaPressureComponent with autoJoinProcessingList + /// set to false is not automatically added to the DeltaPressure processing list. + /// + [Test] + public async Task ProcessingListAutoJoinTest() + { + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; + + var entMan = server.EntMan; + var mapLoader = entMan.System(); + var atmosphereSystem = entMan.System(); + var deserializationOptions = DeserializationOptions.Default with { InitializeMaps = true }; + + Entity grid = default; + Entity dpEnt; + + // Load our test map in and assert that it exists. + await server.WaitPost(() => + { +#pragma warning disable NUnit2045 + Assert.That(mapLoader.TryLoadMap(_testMap, out _, out var gridSet, deserializationOptions), + $"Failed to load map {_testMap}."); + Assert.That(gridSet, Is.Not.Null, "There were no grids loaded from the map!"); +#pragma warning restore NUnit2045 + + grid = gridSet.First(); + }); + + await server.WaitAssertion(() => + { + var uid = entMan.SpawnAtPosition("DeltaPressureSolidTest", new EntityCoordinates(grid.Owner, Vector2.Zero)); + dpEnt = new Entity(uid, entMan.GetComponent(uid)); + + Assert.That(atmosphereSystem.IsDeltaPressureEntityInList(grid.Owner, dpEnt), "Entity was not in processing list when it should have automatically joined!"); + entMan.DeleteEntity(uid); + Assert.That(!atmosphereSystem.IsDeltaPressureEntityInList(grid.Owner, dpEnt), "Entity was still in processing list after deletion!"); + }); + + await pair.CleanReturnAsync(); + } + + /// + /// Asserts that an entity that doesn't need to be damaged by DeltaPressure + /// is not damaged by DeltaPressure. + /// + [Test] + public async Task ProcessingDeltaStandbyTest() + { + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; + + var entMan = server.EntMan; + var mapLoader = entMan.System(); + var atmosphereSystem = entMan.System(); + var transformSystem = entMan.System(); + var deserializationOptions = DeserializationOptions.Default with { InitializeMaps = true }; + + Entity grid = default; + Entity dpEnt = default; + TileAtmosphere tile = null!; + AtmosDirection direction = default; + + // Load our test map in and assert that it exists. + await server.WaitPost(() => + { +#pragma warning disable NUnit2045 + Assert.That(mapLoader.TryLoadMap(_testMap, out _, out var gridSet, deserializationOptions), + $"Failed to load map {_testMap}."); + Assert.That(gridSet, Is.Not.Null, "There were no grids loaded from the map!"); +#pragma warning restore NUnit2045 + + grid = gridSet.First(); + var uid = entMan.SpawnAtPosition("DeltaPressureSolidTest", new EntityCoordinates(grid.Owner, Vector2.Zero)); + dpEnt = new Entity(uid, entMan.GetComponent(uid)); + Assert.That(atmosphereSystem.IsDeltaPressureEntityInList(grid.Owner, dpEnt), "Entity was not in processing list when it should have been added!"); + }); + + for (var i = 0; i < Atmospherics.Directions; i++) + { + await server.WaitPost(() => + { + var indices = transformSystem.GetGridOrMapTilePosition(dpEnt); + var gridAtmosComp = entMan.GetComponent(grid); + + direction = (AtmosDirection)(1 << i); + var offsetIndices = indices.Offset(direction); + tile = gridAtmosComp.Tiles[offsetIndices]; + + Assert.That(tile.Air, Is.Not.Null, $"Tile at {offsetIndices} should have air!"); + + var toPressurize = dpEnt.Comp!.MinPressureDelta - 10; + var moles = (toPressurize * tile.Air.Volume) / (Atmospherics.R * Atmospherics.T20C); + + tile.Air!.AdjustMoles(Gas.Nitrogen, moles); + }); + + await server.WaitRunTicks(30); + + // Entity should exist, if it took one tick of damage then it should be instantly destroyed. + await server.WaitAssertion(() => + { + Assert.That(!entMan.Deleted(dpEnt), $"{dpEnt} should still exist after experiencing non-threshold pressure from {direction} side!"); + tile.Air!.Clear(); + }); + + await server.WaitRunTicks(30); + } + + await pair.CleanReturnAsync(); + } + + /// + /// Asserts that an entity that needs to be damaged by DeltaPressure + /// is damaged by DeltaPressure when the pressure is above the threshold. + /// + [Test] + public async Task ProcessingDeltaDamageTest() + { + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; + + var entMan = server.EntMan; + var mapLoader = entMan.System(); + var atmosphereSystem = entMan.System(); + var transformSystem = entMan.System(); + var deserializationOptions = DeserializationOptions.Default with { InitializeMaps = true }; + + Entity grid = default; + Entity dpEnt = default; + TileAtmosphere tile = null!; + AtmosDirection direction = default; + + // Load our test map in and assert that it exists. + await server.WaitPost(() => + { +#pragma warning disable NUnit2045 + Assert.That(mapLoader.TryLoadMap(_testMap, out _, out var gridSet, deserializationOptions), + $"Failed to load map {_testMap}."); + Assert.That(gridSet, Is.Not.Null, "There were no grids loaded from the map!"); +#pragma warning restore NUnit2045 + + grid = gridSet.First(); + }); + + for (var i = 0; i < Atmospherics.Directions; i++) + { + await server.WaitPost(() => + { + // Need to spawn an entity each run to ensure it works for all directions. + var uid = entMan.SpawnAtPosition("DeltaPressureSolidTest", new EntityCoordinates(grid.Owner, Vector2.Zero)); + dpEnt = new Entity(uid, entMan.GetComponent(uid)); + Assert.That(atmosphereSystem.IsDeltaPressureEntityInList(grid.Owner, dpEnt), "Entity was not in processing list when it should have been added!"); + + var indices = transformSystem.GetGridOrMapTilePosition(dpEnt); + var gridAtmosComp = entMan.GetComponent(grid); + + direction = (AtmosDirection)(1 << i); + var offsetIndices = indices.Offset(direction); + tile = gridAtmosComp.Tiles[offsetIndices]; + + Assert.That(tile.Air, Is.Not.Null, $"Tile at {offsetIndices} should have air!"); + + var toPressurize = dpEnt.Comp!.MinPressureDelta + 10; + var moles = (toPressurize * tile.Air.Volume) / (Atmospherics.R * Atmospherics.T20C); + + tile.Air!.AdjustMoles(Gas.Nitrogen, moles); + }); + + await server.WaitRunTicks(30); + + // Entity should exist, if it took one tick of damage then it should be instantly destroyed. + await server.WaitAssertion(() => + { + Assert.That(entMan.Deleted(dpEnt), $"{dpEnt} still exists after experiencing threshold pressure from {direction} side!"); + tile.Air!.Clear(); + }); + + await server.WaitRunTicks(30); + } + + await pair.CleanReturnAsync(); + } + + /// + /// Asserts that an entity that doesn't need to be damaged by DeltaPressure + /// is not damaged by DeltaPressure when using absolute pressure thresholds. + /// + [Test] + public async Task ProcessingAbsoluteStandbyTest() + { + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; + + var entMan = server.EntMan; + var mapLoader = entMan.System(); + var atmosphereSystem = entMan.System(); + var transformSystem = entMan.System(); + var deserializationOptions = DeserializationOptions.Default with { InitializeMaps = true }; + + Entity grid = default; + Entity dpEnt = default; + TileAtmosphere tile = null!; + AtmosDirection direction = default; + + await server.WaitPost(() => + { +#pragma warning disable NUnit2045 + Assert.That(mapLoader.TryLoadMap(_testMap, out _, out var gridSet, deserializationOptions), + $"Failed to load map {_testMap}."); + Assert.That(gridSet, Is.Not.Null, "There were no grids loaded from the map!"); +#pragma warning restore NUnit2045 + grid = gridSet.First(); + var uid = entMan.SpawnAtPosition("DeltaPressureSolidTestAbsolute", new EntityCoordinates(grid.Owner, Vector2.Zero)); + dpEnt = new Entity(uid, entMan.GetComponent(uid)); + Assert.That(atmosphereSystem.IsDeltaPressureEntityInList(grid.Owner, dpEnt), "Entity was not in processing list when it should have been added!"); + }); + + for (var i = 0; i < Atmospherics.Directions; i++) + { + await server.WaitPost(() => + { + var indices = transformSystem.GetGridOrMapTilePosition(dpEnt); + var gridAtmosComp = entMan.GetComponent(grid); + + direction = (AtmosDirection)(1 << i); + var offsetIndices = indices.Offset(direction); + tile = gridAtmosComp.Tiles[offsetIndices]; + Assert.That(tile.Air, Is.Not.Null, $"Tile at {offsetIndices} should have air!"); + + var toPressurize = dpEnt.Comp!.MinPressure - 10; // just below absolute threshold + var moles = (toPressurize * tile.Air.Volume) / (Atmospherics.R * Atmospherics.T20C); + tile.Air!.AdjustMoles(Gas.Nitrogen, moles); + }); + + await server.WaitRunTicks(30); + + await server.WaitAssertion(() => + { + Assert.That(!entMan.Deleted(dpEnt), $"{dpEnt} should still exist after experiencing non-threshold absolute pressure from {direction} side!"); + tile.Air!.Clear(); + }); + + await server.WaitRunTicks(30); + } + + await pair.CleanReturnAsync(); + } + + /// + /// Asserts that an entity that needs to be damaged by DeltaPressure + /// is damaged by DeltaPressure when the pressure is above the absolute threshold. + /// + [Test] + public async Task ProcessingAbsoluteDamageTest() + { + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; + + var entMan = server.EntMan; + var mapLoader = entMan.System(); + var atmosphereSystem = entMan.System(); + var transformSystem = entMan.System(); + var deserializationOptions = DeserializationOptions.Default with { InitializeMaps = true }; + + Entity grid = default; + Entity dpEnt = default; + TileAtmosphere tile = null!; + AtmosDirection direction = default; + + await server.WaitPost(() => + { +#pragma warning disable NUnit2045 + Assert.That(mapLoader.TryLoadMap(_testMap, out _, out var gridSet, deserializationOptions), + $"Failed to load map {_testMap}."); + Assert.That(gridSet, Is.Not.Null, "There were no grids loaded from the map!"); +#pragma warning restore NUnit2045 + grid = gridSet.First(); + }); + + for (var i = 0; i < Atmospherics.Directions; i++) + { + await server.WaitPost(() => + { + // Spawn fresh entity each iteration to verify all directions work + var uid = entMan.SpawnAtPosition("DeltaPressureSolidTestAbsolute", new EntityCoordinates(grid.Owner, Vector2.Zero)); + dpEnt = new Entity(uid, entMan.GetComponent(uid)); + Assert.That(atmosphereSystem.IsDeltaPressureEntityInList(grid.Owner, dpEnt), "Entity was not in processing list when it should have been added!"); + + var indices = transformSystem.GetGridOrMapTilePosition(dpEnt); + var gridAtmosComp = entMan.GetComponent(grid); + + direction = (AtmosDirection)(1 << i); + var offsetIndices = indices.Offset(direction); + tile = gridAtmosComp.Tiles[offsetIndices]; + Assert.That(tile.Air, Is.Not.Null, $"Tile at {offsetIndices} should have air!"); + + // Above absolute threshold but below delta threshold to ensure absolute alone causes damage + var toPressurize = dpEnt.Comp!.MinPressure + 10; + var moles = (toPressurize * tile.Air.Volume) / (Atmospherics.R * Atmospherics.T20C); + tile.Air!.AdjustMoles(Gas.Nitrogen, moles); + }); + + await server.WaitRunTicks(30); + + await server.WaitAssertion(() => + { + Assert.That(entMan.Deleted(dpEnt), $"{dpEnt} still exists after experiencing threshold absolute pressure from {direction} side!"); + tile.Air!.Clear(); + }); + + await server.WaitRunTicks(30); + } + + await pair.CleanReturnAsync(); + } +} diff --git a/Content.IntegrationTests/Tests/Atmos/GasArrayTest.cs b/Content.IntegrationTests/Tests/Atmos/GasArrayTest.cs new file mode 100644 index 0000000000..07caf447bd --- /dev/null +++ b/Content.IntegrationTests/Tests/Atmos/GasArrayTest.cs @@ -0,0 +1,85 @@ +using System.Linq; +using Content.Shared.Atmos; +using Content.Shared.Atmos.Components; +using Robust.Shared.GameObjects; +using Robust.Shared.Prototypes; + +namespace Content.IntegrationTests.Tests.Atmos; + +[TestFixture] +[TestOf(typeof(Atmospherics))] +public sealed class GasArrayTest +{ + private const string GasTankTestDummyId = "GasTankTestDummy"; + + private const string GasTankLegacyTestDummyId = "GasTankLegacyTestDummy"; + + [TestPrototypes] + private const string Prototypes = $@" +- type: entity + id: {GasTankTestDummyId} + components: + - type: GasTank + air: + volume: 5 + moles: + Frezon: 20 + Oxygen: 10 + +- type: entity + id: {GasTankLegacyTestDummyId} + components: + - type: GasTank + air: + volume: 5 + moles: + - 0 + - 0 + - 0 + - 10 +"; + + [Test] + public async Task TestGasArrayDeserialization() + { + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; + + var compFactory = server.ResolveDependency(); + var prototypeManager = server.ResolveDependency(); + + await server.WaitAssertion(() => + { + var gasTank = prototypeManager.Index(GasTankTestDummyId); + Assert.Multiple(() => + { + Assert.That(gasTank.TryGetComponent(out var gasTankComponent, compFactory)); + + Assert.That(gasTankComponent!.Air.GetMoles(Gas.Oxygen), Is.EqualTo(10)); + Assert.That(gasTankComponent!.Air.GetMoles(Gas.Frezon), Is.EqualTo(20)); + foreach (var gas in Enum.GetValues().Where(p => p != Gas.Oxygen && p != Gas.Frezon)) + { + Assert.That(gasTankComponent!.Air.GetMoles(gas), Is.EqualTo(0)); + } + }); + + var legacyGasTank = prototypeManager.Index(GasTankLegacyTestDummyId); + Assert.Multiple(() => + { + Assert.That(legacyGasTank.TryGetComponent(out var gasTankComponent, compFactory)); + + Assert.That(gasTankComponent!.Air.GetMoles(3), Is.EqualTo(10)); + + // Iterate through all other gases: check for 0 values + for (var i = 0; i < Atmospherics.AdjustedNumberOfGases; i++) + { + if (i == 3) // our case with a value. + continue; + + Assert.That(gasTankComponent!.Air.GetMoles(i), Is.EqualTo(0)); + } + }); + }); + await pair.CleanReturnAsync(); + } +} diff --git a/Content.IntegrationTests/Tests/CargoTest.cs b/Content.IntegrationTests/Tests/CargoTest.cs index e5f9fa1e81..aad87b711a 100644 --- a/Content.IntegrationTests/Tests/CargoTest.cs +++ b/Content.IntegrationTests/Tests/CargoTest.cs @@ -6,6 +6,7 @@ using Content.Server.Cargo.Systems; using Content.Server.Nutrition.Components; using Content.Server.Nutrition.EntitySystems; using Content.Shared.Cargo.Prototypes; +using Content.Shared.Mobs.Components; using Content.Shared.Prototypes; using Content.Shared.Stacks; using Content.Shared.Whitelist; @@ -250,4 +251,25 @@ public sealed class CargoTest await pair.CleanReturnAsync(); } + + [Test] + public async Task MobPrice() + { + await using var pair = await PoolManager.GetServerClient(); + + var componentFactory = pair.Server.ResolveDependency(); + + await pair.Server.WaitAssertion(() => + { + Assert.Multiple(() => + { + foreach (var (proto, comp) in pair.GetPrototypesWithComponent()) + { + Assert.That(proto.TryGetComponent(out _, componentFactory), $"Found MobPriceComponent on {proto.ID}, but no MobStateComponent!"); + } + }); + }); + + await pair.CleanReturnAsync(); + } } diff --git a/Content.IntegrationTests/Tests/Construction/Interaction/EdgeClobbering.cs b/Content.IntegrationTests/Tests/Construction/Interaction/EdgeClobbering.cs new file mode 100644 index 0000000000..9f578148cf --- /dev/null +++ b/Content.IntegrationTests/Tests/Construction/Interaction/EdgeClobbering.cs @@ -0,0 +1,49 @@ +using Content.IntegrationTests.Tests.Interaction; +using Content.Server.Construction.Components; +using Content.Shared.Temperature; + +namespace Content.IntegrationTests.Tests.Construction.Interaction; + +public sealed class EdgeClobbering : InteractionTest +{ + [TestPrototypes] + private const string Prototypes = @" +- type: constructionGraph + id: ExampleGraph + start: A + graph: + - node: A + edges: + - to: B + steps: + - tool: Anchoring + doAfter: 1 + - to: C + steps: + - tool: Screwing + doAfter: 1 + - node: B + - node: C + +- type: entity + id: ExampleEntity + components: + - type: Construction + graph: ExampleGraph + node: A + + "; + + [Test] + public async Task EnsureNoEdgeClobbering() + { + await SpawnTarget("ExampleEntity"); + var sTarget = SEntMan.GetEntity(Target!.Value); + + await InteractUsing(Screw, false); + SEntMan.EventBus.RaiseLocalEvent(sTarget, new OnTemperatureChangeEvent(0f, 0f, 0f)); + await AwaitDoAfters(); + + Assert.That(SEntMan.GetComponent(sTarget).Node, Is.EqualTo("C")); + } +} diff --git a/Content.IntegrationTests/Tests/Disposal/DisposalUnitInteractionTest.cs b/Content.IntegrationTests/Tests/Disposal/DisposalUnitInteractionTest.cs new file mode 100644 index 0000000000..d4b20a55a8 --- /dev/null +++ b/Content.IntegrationTests/Tests/Disposal/DisposalUnitInteractionTest.cs @@ -0,0 +1,54 @@ +using Content.IntegrationTests.Tests.Interaction; +using Content.Server.Containers; +using Robust.Shared.Containers; +using Robust.Shared.Prototypes; + +namespace Content.IntegrationTests.Tests.Disposal; + +public sealed class DisposalUnitInteractionTest : InteractionTest +{ + private static readonly EntProtoId DisposalUnit = "DisposalUnit"; + private static readonly EntProtoId TrashItem = "BrokenBottle"; + + private const string TestDisposalUnitId = "TestDisposalUnit"; + + [TestPrototypes] + private static readonly string TestPrototypes = $@" +# A modified disposal unit with a 100% chance of a thrown item being inserted +- type: entity + parent: {DisposalUnit.Id} + id: {TestDisposalUnitId} + components: + - type: ThrowInsertContainer + probability: 1 +"; + + /// + /// Spawns a disposal unit, gives the player a trash item, and makes the + /// player throw the item at the disposal unit. + /// After a short delay, verifies that the thrown item is contained inside + /// the disposal unit. + /// + [Test] + public async Task ThrowItemIntoDisposalUnitTest() + { + var containerSys = Server.System(); + + // Spawn the target disposal unit + var disposalUnit = await SpawnTarget(TestDisposalUnitId); + + // Give the player some trash to throw + var trash = await PlaceInHands(TrashItem); + + // Throw the item at the disposal unit + await ThrowItem(); + + // Wait a moment + await RunTicks(10); + + // Make sure the trash is in the disposal unit + var throwInsertComp = Comp(); + var container = containerSys.GetContainer(ToServer(disposalUnit), throwInsertComp.ContainerId); + Assert.That(container.ContainedEntities, Contains.Item(ToServer(trash))); + } +} diff --git a/Content.IntegrationTests/Tests/Doors/AirlockTest.cs b/Content.IntegrationTests/Tests/Doors/AirlockTest.cs index e47c73611a..69fe66039b 100644 --- a/Content.IntegrationTests/Tests/Doors/AirlockTest.cs +++ b/Content.IntegrationTests/Tests/Doors/AirlockTest.cs @@ -21,6 +21,7 @@ namespace Content.IntegrationTests.Tests.Doors components: - type: Physics bodyType: Dynamic + - type: GravityAffected - type: Fixtures fixtures: fix1: diff --git a/Content.IntegrationTests/Tests/Engineering/InflatablesDeflateTest.cs b/Content.IntegrationTests/Tests/Engineering/InflatablesDeflateTest.cs new file mode 100644 index 0000000000..a7203d9259 --- /dev/null +++ b/Content.IntegrationTests/Tests/Engineering/InflatablesDeflateTest.cs @@ -0,0 +1,20 @@ +using Content.IntegrationTests.Tests.Interaction; +using Content.Shared.Engineering.Systems; + +namespace Content.IntegrationTests.Tests.Engineering; + +[TestFixture] +[TestOf(typeof(InflatableSafeDisassemblySystem))] +public sealed class InflatablesDeflateTest : InteractionTest +{ + [Test] + public async Task Test() + { + await SpawnTarget(InflatableWall); + + await InteractUsing(Needle); + + AssertDeleted(); + await AssertEntityLookup(new EntitySpecifier(InflatableWallStack.Id, 1)); + } +} diff --git a/Content.IntegrationTests/Tests/GameRules/NukeOpsTest.cs b/Content.IntegrationTests/Tests/GameRules/NukeOpsTest.cs index cf16617479..4f92fd4e55 100644 --- a/Content.IntegrationTests/Tests/GameRules/NukeOpsTest.cs +++ b/Content.IntegrationTests/Tests/GameRules/NukeOpsTest.cs @@ -9,7 +9,6 @@ using Content.Server.Mind; using Content.Server.Roles; using Content.Server.RoundEnd; using Content.Server.Shuttles.Components; -using Content.Server.Station.Components; using Content.Shared.CCVar; using Content.Shared.Damage; using Content.Shared.FixedPoint; @@ -20,6 +19,7 @@ using Content.Shared.NPC.Prototypes; using Content.Shared.NPC.Systems; using Content.Shared.NukeOps; using Content.Shared.Pinpointer; +using Content.Shared.Roles.Components; using Content.Shared.Station.Components; using Robust.Server.GameObjects; using Robust.Shared.GameObjects; diff --git a/Content.IntegrationTests/Tests/Gravity/WeightlessStatusTests.cs b/Content.IntegrationTests/Tests/Gravity/WeightlessStatusTests.cs index 6aa2763888..0951e7e260 100644 --- a/Content.IntegrationTests/Tests/Gravity/WeightlessStatusTests.cs +++ b/Content.IntegrationTests/Tests/Gravity/WeightlessStatusTests.cs @@ -19,6 +19,7 @@ namespace Content.IntegrationTests.Tests.Gravity - type: Alerts - type: Physics bodyType: Dynamic + - type: GravityAffected - type: entity name: WeightlessGravityGeneratorDummy diff --git a/Content.IntegrationTests/Tests/GravityGridTest.cs b/Content.IntegrationTests/Tests/GravityGridTest.cs index b32d6c2b8d..8257035de6 100644 --- a/Content.IntegrationTests/Tests/GravityGridTest.cs +++ b/Content.IntegrationTests/Tests/GravityGridTest.cs @@ -76,8 +76,8 @@ namespace Content.IntegrationTests.Tests Assert.Multiple(() => { Assert.That(generatorComponent.GravityActive, Is.True); - Assert.That(!entityMan.GetComponent(grid1).EnabledVV); - Assert.That(entityMan.GetComponent(grid2).EnabledVV); + Assert.That(!entityMan.GetComponent(grid1).Enabled); + Assert.That(entityMan.GetComponent(grid2).Enabled); }); // Re-enable needs power so it turns off again. @@ -94,7 +94,7 @@ namespace Content.IntegrationTests.Tests Assert.Multiple(() => { Assert.That(generatorComponent.GravityActive, Is.False); - Assert.That(entityMan.GetComponent(grid2).EnabledVV, Is.False); + Assert.That(entityMan.GetComponent(grid2).Enabled, Is.False); }); }); diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Constants.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Constants.cs index 5db5d91d0d..8917ba7ead 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Constants.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Constants.cs @@ -1,3 +1,6 @@ +using Content.Shared.Stacks; +using Robust.Shared.Prototypes; + namespace Content.IntegrationTests.Tests.Interaction; // This partial class contains various constant prototype IDs common to interaction tests. @@ -32,4 +35,9 @@ public abstract partial class InteractionTest protected const string Manipulator1 = "MicroManipulatorStockPart"; protected const string Battery1 = "PowerCellSmall"; protected const string Battery4 = "PowerCellHyper"; + + // Inflatables & Needle used to pop them + protected static readonly EntProtoId InflatableWall = "InflatableWall"; + protected static readonly EntProtoId Needle = "WeaponMeleeNeedle"; + protected static readonly ProtoId InflatableWallStack = "InflatableWall"; } diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs index 3302b1bafc..8a5859fe06 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs @@ -264,9 +264,10 @@ public abstract partial class InteractionTest /// The entity or stack prototype to spawn and place into the users hand /// The number of entities to spawn. If the prototype is a stack, this sets the stack count. /// Whether or not to wait for any do-afters to complete - protected async Task InteractUsing(string id, int quantity = 1, bool awaitDoAfters = true) + /// If true, perform an alternate interaction instead of a standard one. + protected async Task InteractUsing(string id, int quantity = 1, bool awaitDoAfters = true, bool altInteract = false) { - await InteractUsing((id, quantity), awaitDoAfters); + await InteractUsing((id, quantity), awaitDoAfters, altInteract); } /// @@ -274,7 +275,8 @@ public abstract partial class InteractionTest /// /// The entity type & quantity to spawn and place into the users hand /// Whether or not to wait for any do-afters to complete - protected async Task InteractUsing(EntitySpecifier entity, bool awaitDoAfters = true) + /// If true, perform an alternate interaction instead of a standard one. + protected async Task InteractUsing(EntitySpecifier entity, bool awaitDoAfters = true, bool altInteract = false) { // For every interaction, we will also examine the entity, just in case this breaks something, somehow. // (e.g., servers attempt to assemble construction examine hints). @@ -284,18 +286,19 @@ public abstract partial class InteractionTest } await PlaceInHands(entity); - await Interact(awaitDoAfters); + await Interact(awaitDoAfters, altInteract); } /// /// Interact with an entity using the currently held entity. /// /// Whether or not to wait for any do-afters to complete - protected async Task Interact(bool awaitDoAfters = true) + /// If true, performs an alternate interaction instead of a standard one. + protected async Task Interact(bool awaitDoAfters = true, bool altInteract = false) { if (Target == null || !Target.Value.IsClientSide()) { - await Interact(Target, TargetCoords, awaitDoAfters); + await Interact(Target, TargetCoords, awaitDoAfters, altInteract); return; } @@ -311,23 +314,23 @@ public abstract partial class InteractionTest await CheckTargetChange(); } - /// - protected async Task Interact(NetEntity? target, NetCoordinates coordinates, bool awaitDoAfters = true) + /// + protected async Task Interact(NetEntity? target, NetCoordinates coordinates, bool awaitDoAfters = true, bool altInteract = false) { Assert.That(SEntMan.TryGetEntity(target, out var sTarget) || target == null); var coords = SEntMan.GetCoordinates(coordinates); Assert.That(coords.IsValid(SEntMan)); - await Interact(sTarget, coords, awaitDoAfters); + await Interact(sTarget, coords, awaitDoAfters, altInteract); } /// /// Interact with an entity using the currently held entity. /// - protected async Task Interact(EntityUid? target, EntityCoordinates coordinates, bool awaitDoAfters = true) + protected async Task Interact(EntityUid? target, EntityCoordinates coordinates, bool awaitDoAfters = true, bool altInteract = false) { Assert.That(SEntMan.TryGetEntity(Player, out var player)); - await Server.WaitPost(() => InteractSys.UserInteraction(player!.Value, coordinates, target)); + await Server.WaitPost(() => InteractSys.UserInteraction(player!.Value, coordinates, target, altInteract: altInteract)); await RunTicks(1); if (awaitDoAfters) diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs index 79756ea5b4..0ed42d3476 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs @@ -144,6 +144,7 @@ public abstract partial class InteractionTest - type: Stripping - type: Puller - type: Physics + - type: GravityAffected - type: Tag tags: - CanPilot diff --git a/Content.IntegrationTests/Tests/Minds/MindTests.cs b/Content.IntegrationTests/Tests/Minds/MindTests.cs index 48e11e4648..2f77519829 100644 --- a/Content.IntegrationTests/Tests/Minds/MindTests.cs +++ b/Content.IntegrationTests/Tests/Minds/MindTests.cs @@ -3,7 +3,6 @@ using System.Linq; using Content.Server.Ghost.Roles; using Content.Server.Ghost.Roles.Components; using Content.Server.Mind; -using Content.Server.Roles; using Content.Shared.Damage; using Content.Shared.Damage.Prototypes; using Content.Shared.FixedPoint; @@ -11,7 +10,7 @@ using Content.Shared.Mind; using Content.Shared.Mind.Components; using Content.Shared.Players; using Content.Shared.Roles; -using Content.Shared.Roles.Jobs; +using Content.Shared.Roles.Components; using Robust.Server.Console; using Robust.Server.GameObjects; using Robust.Server.Player; diff --git a/Content.IntegrationTests/Tests/Minds/RoleTests.cs b/Content.IntegrationTests/Tests/Minds/RoleTests.cs index 8acfff3fb9..f0a7268a3d 100644 --- a/Content.IntegrationTests/Tests/Minds/RoleTests.cs +++ b/Content.IntegrationTests/Tests/Minds/RoleTests.cs @@ -1,7 +1,5 @@ using System.Linq; -using Content.Server.Roles; -using Content.Shared.Roles; -using Content.Shared.Roles.Jobs; +using Content.Shared.Roles.Components; using Robust.Shared.GameObjects; using Robust.Shared.Reflection; diff --git a/Content.IntegrationTests/Tests/Nutrition/WaterCoolerInteractionTest.cs b/Content.IntegrationTests/Tests/Nutrition/WaterCoolerInteractionTest.cs new file mode 100644 index 0000000000..c15de639de --- /dev/null +++ b/Content.IntegrationTests/Tests/Nutrition/WaterCoolerInteractionTest.cs @@ -0,0 +1,99 @@ +using Content.IntegrationTests.Tests.Interaction; +using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Chemistry.Reagent; +using Content.Shared.FixedPoint; +using Content.Shared.Storage.Components; +using Robust.Shared.Prototypes; + +namespace Content.IntegrationTests.Tests.Nutrition; + +public sealed class WaterCoolerInteractionTest : InteractionTest +{ + /// + /// ProtoId of the water cooler entity. + /// + private static readonly EntProtoId WaterCooler = "WaterCooler"; + + /// + /// ProtoId of the paper cup entity dispensed by the water cooler. + /// + private static readonly EntProtoId PaperCup = "DrinkWaterCup"; + + /// + /// ProtoId of the water reagent that is stored in the water cooler. + /// + private static readonly ProtoId Water = "Water"; + + /// + /// Spawns a water cooler and tests that the player can retrieve a paper cup + /// by interacting with it, and can return the paper cup by alt-interacting with it. + /// + [Test] + public async Task GetAndReturnCup() + { + // Spawn the water cooler + var cooler = await SpawnTarget(WaterCooler); + + // Record how many paper cups are in the cooler + var binComp = Comp(cooler); + var initialCount = binComp.Items.Count; + Assert.That(binComp.Items, Is.Not.Empty, "Water cooler didn't start with any cups"); + + // Interact with the water cooler using an empty hand to grab a paper cup + await Interact(); + + var cup = HandSys.GetActiveItem((SPlayer, Hands)); + + Assert.Multiple(() => + { + // Make sure the player is now holding a cup + Assert.That(cup, Is.Not.Null, "Player's hand is empty"); + AssertPrototype(PaperCup, SEntMan.GetNetEntity(cup)); + + // Make sure the number of cups in the cooler has decreased by one + Assert.That(binComp.Items, Has.Count.EqualTo(initialCount - 1), "Number of cups in cooler bin did not decrease by one"); + + // Make sure the cup isn't somehow still in the cooler too + Assert.That(binComp.Items, Does.Not.Contain(cup)); + }); + + // Alt-interact with the water cooler while holding the cup to put it back + await Interact(altInteract: true); + + Assert.Multiple(() => + { + // Make sure the player's hand is empty + Assert.That(HandSys.ActiveHandIsEmpty((SPlayer, Hands)), "Player's hand is not empty"); + + // Make sure the count has gone back up by one + Assert.That(binComp.Items, Has.Count.EqualTo(initialCount), "Number of cups in cooler bin did not return to initial count"); + + // Make sure the cup is in the cooler + Assert.That(binComp.Items, Contains.Item(cup), "Cup was not returned to cooler"); + }); + } + + /// + /// Spawns a water cooler and gives the player an empty paper cup. + /// Tests that the player can put water into the cup by interacting + /// with the water cooler while holding the cup. + /// + [Test] + public async Task FillCup() + { + var solutionSys = Server.System(); + + // Spawn the water cooler + await SpawnTarget(WaterCooler); + + // Give the player a cup + var cup = await PlaceInHands(PaperCup); + + // Make the player interact with the water cooler using the held cup + await Interact(); + + // Make sure the cup now contains water + Assert.That(solutionSys.GetTotalPrototypeQuantity(ToServer(cup), Water), Is.GreaterThan(FixedPoint2.Zero), + "Cup does not contain any water"); + } +} diff --git a/Content.Packaging/ClientPackaging.cs b/Content.Packaging/ClientPackaging.cs index 6d0a462790..21215d3bcb 100644 --- a/Content.Packaging/ClientPackaging.cs +++ b/Content.Packaging/ClientPackaging.cs @@ -78,7 +78,11 @@ public static class ClientPackaging new[] { "Content.Client", "Content.Shared", "Content.Shared.Database" }, cancel: cancel); - await RobustClientPackaging.WriteClientResources(contentDir, inputPass, cancel); + await RobustClientPackaging.WriteClientResources( + contentDir, + inputPass, + SharedPackaging.AdditionalIgnoredResources, + cancel); inputPass.InjectFinished(); } diff --git a/Content.Packaging/ServerPackaging.cs b/Content.Packaging/ServerPackaging.cs index 91ebc41226..a15dc7244f 100644 --- a/Content.Packaging/ServerPackaging.cs +++ b/Content.Packaging/ServerPackaging.cs @@ -25,6 +25,12 @@ public static class ServerPackaging new PlatformReg("freebsd-x64", "FreeBSD", false), }; + private static IReadOnlySet ServerContentIgnoresResources { get; } = new HashSet + { + "ServerInfo", + "Changelog", + }; + private static List PlatformRids => Platforms .Select(o => o.Rid) .ToList(); @@ -211,7 +217,11 @@ public static class ServerPackaging contentAssemblies, cancel: cancel); - await RobustServerPackaging.WriteServerResources(contentDir, inputPassResources, cancel); + await RobustServerPackaging.WriteServerResources( + contentDir, + inputPassResources, + ServerContentIgnoresResources.Concat(SharedPackaging.AdditionalIgnoredResources).ToHashSet(), + cancel); if (hybridAcz) { diff --git a/Content.Packaging/SharedPackaging.cs b/Content.Packaging/SharedPackaging.cs new file mode 100644 index 0000000000..5888845588 --- /dev/null +++ b/Content.Packaging/SharedPackaging.cs @@ -0,0 +1,10 @@ +namespace Content.Packaging; + +public sealed class SharedPackaging +{ + public static readonly IReadOnlySet AdditionalIgnoredResources = new HashSet + { + // MapRenderer outputs into Resources. Avoid these getting included in packaging. + "MapImages", + }; +} diff --git a/Content.Server/Access/Systems/AgentIDCardSystem.cs b/Content.Server/Access/Systems/AgentIDCardSystem.cs index 6385274336..0df760baef 100644 --- a/Content.Server/Access/Systems/AgentIDCardSystem.cs +++ b/Content.Server/Access/Systems/AgentIDCardSystem.cs @@ -13,6 +13,7 @@ using Content.Server.Clothing.Systems; using Content.Server.Implants; using Content.Shared.Implants; using Content.Shared.Inventory; +using Content.Shared.Lock; using Content.Shared.PDA; namespace Content.Server.Access.Systems @@ -25,6 +26,7 @@ namespace Content.Server.Access.Systems [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly ChameleonClothingSystem _chameleon = default!; [Dependency] private readonly ChameleonControllerSystem _chamController = default!; + [Dependency] private readonly LockSystem _lock = default!; public override void Initialize() { @@ -79,7 +81,8 @@ namespace Content.Server.Access.Systems private void OnAfterInteract(EntityUid uid, AgentIDCardComponent component, AfterInteractEvent args) { - if (args.Target == null || !args.CanReach || !TryComp(args.Target, out var targetAccess) || !HasComp(args.Target)) + if (args.Target == null || !args.CanReach || _lock.IsLocked(uid) || + !TryComp(args.Target, out var targetAccess) || !HasComp(args.Target)) return; if (!TryComp(uid, out var access) || !HasComp(uid)) diff --git a/Content.Server/Administration/Commands/AddEntityStorageCommand.cs b/Content.Server/Administration/Commands/AddEntityStorageCommand.cs index 4c562d606d..b7b6ad89e9 100644 --- a/Content.Server/Administration/Commands/AddEntityStorageCommand.cs +++ b/Content.Server/Administration/Commands/AddEntityStorageCommand.cs @@ -1,4 +1,4 @@ -using Content.Server.Storage.Components; +using Content.Shared.Storage.Components; using Content.Server.Storage.EntitySystems; using Content.Shared.Administration; using Robust.Shared.Console; diff --git a/Content.Server/Administration/Commands/AddPolymorphActionCommand.cs b/Content.Server/Administration/Commands/AddPolymorphActionCommand.cs index b92cbfc0de..f089268bea 100644 --- a/Content.Server/Administration/Commands/AddPolymorphActionCommand.cs +++ b/Content.Server/Administration/Commands/AddPolymorphActionCommand.cs @@ -6,17 +6,13 @@ using Robust.Shared.Console; namespace Content.Server.Administration.Commands; [AdminCommand(AdminFlags.Fun)] -public sealed class AddPolymorphActionCommand : IConsoleCommand +public sealed class AddPolymorphActionCommand : LocalizedEntityCommands { - [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly PolymorphSystem _polySystem = default!; - public string Command => "addpolymorphaction"; + public override string Command => "addpolymorphaction"; - public string Description => Loc.GetString("add-polymorph-action-command-description"); - - public string Help => Loc.GetString("add-polymorph-action-command-help-text"); - - public void Execute(IConsoleShell shell, string argStr, string[] args) + public override void Execute(IConsoleShell shell, string argStr, string[] args) { if (args.Length != 2) { @@ -24,15 +20,13 @@ public sealed class AddPolymorphActionCommand : IConsoleCommand return; } - if (!NetEntity.TryParse(args[0], out var entityUidNet) || !_entityManager.TryGetEntity(entityUidNet, out var entityUid)) + if (!NetEntity.TryParse(args[0], out var entityUidNet) || !EntityManager.TryGetEntity(entityUidNet, out var entityUid)) { - shell.WriteError(Loc.GetString("shell-entity-uid-must-be-number")); + shell.WriteError(Loc.GetString("shell-could-not-find-entity-with-uid", ("uid", args[0]))); return; } - var polySystem = _entityManager.EntitySysManager.GetEntitySystem(); - - var polymorphable = _entityManager.EnsureComponent(entityUid.Value); - polySystem.CreatePolymorphAction(args[1], (entityUid.Value, polymorphable)); + var polymorphable = EntityManager.EnsureComponent(entityUid.Value); + _polySystem.CreatePolymorphAction(args[1], (entityUid.Value, polymorphable)); } } diff --git a/Content.Server/Administration/Commands/LinkBluespaceLocker.cs b/Content.Server/Administration/Commands/LinkBluespaceLocker.cs index 9fac72664b..47d87565d2 100644 --- a/Content.Server/Administration/Commands/LinkBluespaceLocker.cs +++ b/Content.Server/Administration/Commands/LinkBluespaceLocker.cs @@ -1,5 +1,6 @@ using Content.Server.Storage.Components; using Content.Shared.Administration; +using Content.Shared.Storage.Components; using Robust.Shared.Console; namespace Content.Server.Administration.Commands; diff --git a/Content.Server/Administration/Commands/RemoveEntityStorageCommand.cs b/Content.Server/Administration/Commands/RemoveEntityStorageCommand.cs index 858e48a71e..f267cd28cb 100644 --- a/Content.Server/Administration/Commands/RemoveEntityStorageCommand.cs +++ b/Content.Server/Administration/Commands/RemoveEntityStorageCommand.cs @@ -1,4 +1,4 @@ -using Content.Server.Storage.Components; +using Content.Shared.Storage.Components; using Content.Server.Storage.EntitySystems; using Content.Shared.Administration; using Robust.Shared.Console; diff --git a/Content.Server/Administration/Logs/AdminLogManager.Json.cs b/Content.Server/Administration/Logs/AdminLogManager.Json.cs index 9e6274a493..a0a3b920bd 100644 --- a/Content.Server/Administration/Logs/AdminLogManager.Json.cs +++ b/Content.Server/Administration/Logs/AdminLogManager.Json.cs @@ -2,9 +2,7 @@ using System.Text.Json; using System.Text.Json.Serialization; using Content.Server.Administration.Logs.Converters; -using Robust.Server.GameObjects; -using Robust.Shared.Map; -using Robust.Shared.Player; +using Robust.Shared.Collections; namespace Content.Server.Administration.Logs; @@ -22,55 +20,25 @@ public sealed partial class AdminLogManager PropertyNamingPolicy = NamingPolicy }; + var interfaces = new ValueList(); + foreach (var converter in _reflection.FindTypesWithAttribute()) { var instance = _typeFactory.CreateInstance(converter); - (instance as IAdminLogConverter)?.Init(_dependencies); + if (instance is IAdminLogConverter converterInterface) + { + interfaces.Add(converterInterface); + converterInterface.Init(_dependencies); + } _jsonOptions.Converters.Add(instance); } + foreach (var @interface in interfaces) + { + @interface.Init2(_jsonOptions); + } + var converterNames = _jsonOptions.Converters.Select(converter => converter.GetType().Name); _sawmill.Debug($"Admin log converters found: {string.Join(" ", converterNames)}"); } - - private (JsonDocument Json, HashSet Players) ToJson( - Dictionary properties) - { - var players = new HashSet(); - var parsed = new Dictionary(); - - foreach (var key in properties.Keys) - { - var value = properties[key]; - value = value switch - { - ICommonSession player => new SerializablePlayer(player), - EntityCoordinates entityCoordinates => new SerializableEntityCoordinates(_entityManager, entityCoordinates), - _ => value - }; - - var parsedKey = NamingPolicy.ConvertName(key); - parsed.Add(parsedKey, value); - - var entityId = properties[key] switch - { - EntityUid id => id, - EntityStringRepresentation rep => rep.Uid, - ICommonSession {AttachedEntity: {Valid: true}} session => session.AttachedEntity, - IComponent component => component.Owner, - _ => null - }; - - if (_entityManager.TryGetComponent(entityId, out ActorComponent? actor)) - { - players.Add(actor.PlayerSession.UserId.UserId); - } - else if (value is SerializablePlayer player) - { - players.Add(player.Player.UserId.UserId); - } - } - - return (JsonSerializer.SerializeToDocument(parsed, _jsonOptions), players); - } } diff --git a/Content.Server/Administration/Logs/AdminLogManager.cs b/Content.Server/Administration/Logs/AdminLogManager.cs index 600311a651..e7682cf559 100644 --- a/Content.Server/Administration/Logs/AdminLogManager.cs +++ b/Content.Server/Administration/Logs/AdminLogManager.cs @@ -25,7 +25,6 @@ namespace Content.Server.Administration.Logs; public sealed partial class AdminLogManager : SharedAdminLogManager, IAdminLogManager { [Dependency] private readonly IConfigurationManager _configuration = default!; - [Dependency] private readonly IEntityManager _entityManager = default!; [Dependency] private readonly ILogManager _logManager = default!; [Dependency] private readonly IServerDbManager _db = default!; [Dependency] private readonly IGameTiming _timing = default!; @@ -72,7 +71,6 @@ public sealed partial class AdminLogManager : SharedAdminLogManager, IAdminLogMa // CVars private bool _metricsEnabled; - private bool _enabled; private TimeSpan _queueSendDelay; private int _queueMax; private int _preRoundQueueMax; @@ -103,7 +101,7 @@ public sealed partial class AdminLogManager : SharedAdminLogManager, IAdminLogMa _configuration.OnValueChanged(CVars.MetricsEnabled, value => _metricsEnabled = value, true); _configuration.OnValueChanged(CCVars.AdminLogsEnabled, - value => _enabled = value, true); + value => Enabled = value, true); _configuration.OnValueChanged(CCVars.AdminLogsQueueSendDelay, value => _queueSendDelay = TimeSpan.FromSeconds(value), true); _configuration.OnValueChanged(CCVars.AdminLogsQueueMax, @@ -123,6 +121,12 @@ public sealed partial class AdminLogManager : SharedAdminLogManager, IAdminLogMa } } + public override string ConvertName(string name) + { + // JsonNamingPolicy is not whitelisted by the sandbox. + return NamingPolicy.ConvertName(name); + } + public async Task Shutdown() { if (!_logQueue.IsEmpty) @@ -292,8 +296,17 @@ public sealed partial class AdminLogManager : SharedAdminLogManager, IAdminLogMa } } - private void Add(LogType type, LogImpact impact, string message, JsonDocument json, HashSet players) + public override void Add(LogType type, [System.Runtime.CompilerServices.InterpolatedStringHandlerArgument("")] ref LogStringHandler handler) { + Add(type, LogImpact.Medium, ref handler); + } + + public override void Add(LogType type, LogImpact impact, [System.Runtime.CompilerServices.InterpolatedStringHandlerArgument("")] ref LogStringHandler handler) + { + var message = handler.ToStringAndClear(); + if (!Enabled) + return; + var preRound = _runLevel == GameRunLevel.PreRoundLobby; var count = preRound ? _preRoundLogQueue.Count : _logQueue.Count; if (count >= _dropThreshold) @@ -302,6 +315,10 @@ public sealed partial class AdminLogManager : SharedAdminLogManager, IAdminLogMa return; } + var json = JsonSerializer.SerializeToDocument(handler.Values, _jsonOptions); + var id = NextLogId; + var players = GetPlayers(handler.Values, id); + // PostgreSQL does not support storing null chars in text values. if (message.Contains('\0')) { @@ -311,31 +328,85 @@ public sealed partial class AdminLogManager : SharedAdminLogManager, IAdminLogMa var log = new AdminLog { - Id = NextLogId, + Id = id, RoundId = _currentRoundId, Type = type, Impact = impact, Date = DateTime.UtcNow, Message = message, Json = json, - Players = new List(players.Count) + Players = players, }; + DoAdminAlerts(players, message, impact); + + if (preRound) + { + _preRoundLogQueue.Enqueue(log); + } + else + { + _logQueue.Enqueue(log); + CacheLog(log); + } + } + + private List GetPlayers(Dictionary values, int logId) + { + List players = new(); + foreach (var value in values.Values) + { + switch (value) + { + case SerializablePlayer player: + AddPlayer(players, player.UserId, logId); + continue; + + case EntityStringRepresentation rep: + if (rep.Session is {} session) + AddPlayer(players, session.UserId.UserId, logId); + continue; + + case IAdminLogsPlayerValue playerValue: + foreach (var player in playerValue.Players) + { + AddPlayer(players, player, logId); + } + + break; + } + } + + return players; + } + + private void AddPlayer(List players, Guid user, int logId) + { + // The majority of logs have a single player, or maybe two. Instead of allocating a List and + // HashSet, we just iterate over the list to check for duplicates. + foreach (var player in players) + { + if (player.PlayerUserId == user) + return; + } + + players.Add(new AdminLogPlayer + { + LogId = logId, + PlayerUserId = user + }); + } + + private void DoAdminAlerts(List players, string message, LogImpact impact) + { var adminLog = false; - var adminSys = _entityManager.SystemOrNull(); var logMessage = message; - foreach (var id in players) + foreach (var player in players) { - var player = new AdminLogPlayer - { - LogId = log.Id, - PlayerUserId = id - }; + var id = player.PlayerUserId; - log.Players.Add(player); - - if (adminSys != null) + if (EntityManager.TrySystem(out AdminSystem? adminSys)) { var cachedInfo = adminSys.GetCachedPlayerInfo(new NetUserId(id)); if (cachedInfo != null && cachedInfo.Antag) @@ -372,35 +443,6 @@ public sealed partial class AdminLogManager : SharedAdminLogManager, IAdminLogMa if (adminLog) _chat.SendAdminAlert(logMessage); - - if (preRound) - { - _preRoundLogQueue.Enqueue(log); - } - else - { - _logQueue.Enqueue(log); - CacheLog(log); - } - } - - public override void Add(LogType type, LogImpact impact, ref LogStringHandler handler) - { - if (!_enabled) - { - handler.ToStringAndClear(); - return; - } - - var (json, players) = ToJson(handler.Values); - var message = handler.ToStringAndClear(); - - Add(type, impact, message, json, players); - } - - public override void Add(LogType type, ref LogStringHandler handler) - { - Add(type, LogImpact.Medium, ref handler); } public async Task> All(LogFilter? filter = null, Func>? listProvider = null) diff --git a/Content.Server/Administration/Logs/Converters/AdminLogConverter.cs b/Content.Server/Administration/Logs/Converters/AdminLogConverter.cs index 7eaab9ba28..778f84c1ac 100644 --- a/Content.Server/Administration/Logs/Converters/AdminLogConverter.cs +++ b/Content.Server/Administration/Logs/Converters/AdminLogConverter.cs @@ -6,6 +6,13 @@ namespace Content.Server.Administration.Logs.Converters; public interface IAdminLogConverter { void Init(IDependencyCollection dependencies); + + /// + /// Called after all converters have been added to the . + /// + void Init2(JsonSerializerOptions options) + { + } } public abstract class AdminLogConverter : JsonConverter, IAdminLogConverter @@ -14,6 +21,10 @@ public abstract class AdminLogConverter : JsonConverter, IAdminLogConverte { } + public virtual void Init2(JsonSerializerOptions options) + { + } + public override T Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) { throw new NotSupportedException(); diff --git a/Content.Server/Administration/Logs/Converters/EntityCoordinatesConverter.cs b/Content.Server/Administration/Logs/Converters/EntityCoordinatesConverter.cs index fb5c6a6fe5..3a0ffeb758 100644 --- a/Content.Server/Administration/Logs/Converters/EntityCoordinatesConverter.cs +++ b/Content.Server/Administration/Logs/Converters/EntityCoordinatesConverter.cs @@ -6,7 +6,7 @@ using Robust.Shared.Map.Components; namespace Content.Server.Administration.Logs.Converters; [AdminLogConverter] -public sealed class EntityCoordinatesConverter : AdminLogConverter +public sealed class EntityCoordinatesConverter : AdminLogConverter { // System.Text.Json actually keeps hold of your JsonSerializerOption instances in a cache on .NET 7. // Use a weak reference to avoid holding server instances live too long in integration tests. @@ -17,15 +17,16 @@ public sealed class EntityCoordinatesConverter : AdminLogConverter(dependencies.Resolve()); } - public void Write(Utf8JsonWriter writer, SerializableEntityCoordinates value, JsonSerializerOptions options, IEntityManager entities) + public void Write(Utf8JsonWriter writer, EntityCoordinates value, JsonSerializerOptions options, IEntityManager entities) { writer.WriteStartObject(); - WriteEntityInfo(writer, value.EntityUid, entities, "parent"); + WriteEntityInfo(writer, value.EntityId, entities, "parent"); writer.WriteNumber("x", value.X); writer.WriteNumber("y", value.Y); - if (value.MapUid.HasValue) + var mapUid = value.GetMapUid(entities); + if (mapUid.HasValue) { - WriteEntityInfo(writer, value.MapUid.Value, entities, "map"); + WriteEntityInfo(writer, mapUid.Value, entities, "map"); } writer.WriteEndObject(); } @@ -33,7 +34,7 @@ public sealed class EntityCoordinatesConverter : AdminLogConverter().GetMap(coordinates); - } -} diff --git a/Content.Server/Administration/Logs/Converters/EntityStringRepresentationConverter.cs b/Content.Server/Administration/Logs/Converters/EntityStringRepresentationConverter.cs index 39d34e5f18..9a92a2cb46 100644 --- a/Content.Server/Administration/Logs/Converters/EntityStringRepresentationConverter.cs +++ b/Content.Server/Administration/Logs/Converters/EntityStringRepresentationConverter.cs @@ -1,6 +1,5 @@ using System.Text.Json; using Content.Server.Administration.Managers; -using Robust.Server.Player; namespace Content.Server.Administration.Logs.Converters; @@ -24,7 +23,7 @@ public sealed class EntityStringRepresentationConverter : AdminLogConverter +{ + private JsonConverter _converter = null!; + + public override void Init2(JsonSerializerOptions options) + { + base.Init2(options); + + _converter = (JsonConverter) + options.GetConverter(typeof(EntityStringRepresentation)); + } + + public override void Write(Utf8JsonWriter writer, MindStringRepresentation value, JsonSerializerOptions options) + { + writer.WriteStartObject(); + + if (value.OwnedEntity is { } owned) + { + writer.WritePropertyName("owned"); + _converter.Write(writer, owned, options); + } + + if (value.Player is { } player) + { + writer.WriteString("player", player); + writer.WriteBoolean("present", value.PlayerPresent); + } + + writer.WriteEndObject(); + } +} diff --git a/Content.Server/Administration/Logs/Converters/PlayerSessionConverter.cs b/Content.Server/Administration/Logs/Converters/PlayerSessionConverter.cs index c1567448cc..d1a009b8cd 100644 --- a/Content.Server/Administration/Logs/Converters/PlayerSessionConverter.cs +++ b/Content.Server/Administration/Logs/Converters/PlayerSessionConverter.cs @@ -1,45 +1,23 @@ using System.Text.Json; -using Robust.Shared.Player; +using Content.Shared.Administration.Logs; namespace Content.Server.Administration.Logs.Converters; [AdminLogConverter] public sealed class PlayerSessionConverter : AdminLogConverter { - // System.Text.Json actually keeps hold of your JsonSerializerOption instances in a cache on .NET 7. - // Use a weak reference to avoid holding server instances live too long in integration tests. - private WeakReference _entityManager = default!; - - public override void Init(IDependencyCollection dependencies) - { - _entityManager = new WeakReference(dependencies.Resolve()); - } - public override void Write(Utf8JsonWriter writer, SerializablePlayer value, JsonSerializerOptions options) { writer.WriteStartObject(); - if (value.Player.AttachedEntity is {Valid: true} playerEntity) + if (value.Uid is {Valid: true} playerEntity) { - if (!_entityManager.TryGetTarget(out var entityManager)) - throw new InvalidOperationException("EntityManager got garbage collected!"); - - writer.WriteNumber("id", (int) value.Player.AttachedEntity); - writer.WriteString("name", entityManager.GetComponent(playerEntity).EntityName); + writer.WriteNumber("id", playerEntity.Id); + writer.WriteString("name", value.Name); } - writer.WriteString("player", value.Player.UserId.UserId); + writer.WriteString("player", value.UserId); writer.WriteEndObject(); } } - -public readonly struct SerializablePlayer -{ - public readonly ICommonSession Player; - - public SerializablePlayer(ICommonSession player) - { - Player = player; - } -} diff --git a/Content.Server/Administration/Systems/AdminFrozenSystem.cs b/Content.Server/Administration/Systems/AdminFrozenSystem.cs deleted file mode 100644 index baf7b682b8..0000000000 --- a/Content.Server/Administration/Systems/AdminFrozenSystem.cs +++ /dev/null @@ -1,16 +0,0 @@ -using Content.Shared.Administration; - -namespace Content.Server.Administration.Systems; - -public sealed class AdminFrozenSystem : SharedAdminFrozenSystem -{ - /// - /// Freezes and mutes the given entity. - /// - public void FreezeAndMute(EntityUid uid) - { - var comp = EnsureComp(uid); - comp.Muted = true; - Dirty(uid, comp); - } -} diff --git a/Content.Server/Administration/Systems/AdminSystem.cs b/Content.Server/Administration/Systems/AdminSystem.cs index 78433db129..677522a83b 100644 --- a/Content.Server/Administration/Systems/AdminSystem.cs +++ b/Content.Server/Administration/Systems/AdminSystem.cs @@ -1,7 +1,6 @@ using System.Linq; using Content.Server.Administration.Managers; using Content.Server.Chat.Managers; -using Content.Server.Forensics; using Content.Server.GameTicking; using Content.Server.Hands.Systems; using Content.Server.Mind; @@ -21,6 +20,7 @@ using Content.Shared.PDA; using Content.Shared.Players.PlayTimeTracking; using Content.Shared.Popups; using Content.Shared.Roles; +using Content.Shared.Roles.Components; using Content.Shared.Roles.Jobs; using Content.Shared.StationRecords; using Content.Shared.Throwing; diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs index 1bc4b65999..90e5e46d65 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs @@ -1,10 +1,8 @@ using System.Threading; using Content.Server.Administration.Components; -using Content.Server.Atmos.Components; using Content.Server.Atmos.EntitySystems; using Content.Server.Body.Components; using Content.Server.Body.Systems; -using Content.Server.Clothing.Systems; using Content.Server.Electrocution; using Content.Server.Explosion.EntitySystems; using Content.Server.GhostKick; @@ -14,12 +12,12 @@ using Content.Server.Pointing.Components; using Content.Server.Polymorph.Systems; using Content.Server.Popups; using Content.Server.Speech.Components; -using Content.Server.Storage.Components; using Content.Server.Storage.EntitySystems; using Content.Server.Tabletop; using Content.Server.Tabletop.Components; using Content.Shared.Administration; using Content.Shared.Administration.Components; +using Content.Shared.Atmos.Components; using Content.Shared.Body.Components; using Content.Shared.Body.Part; using Content.Shared.Clumsy; @@ -29,6 +27,7 @@ using Content.Shared.Damage; using Content.Shared.Damage.Systems; using Content.Shared.Database; using Content.Shared.Electrocution; +using Content.Shared.Gravity; using Content.Shared.Interaction.Components; using Content.Shared.Inventory; using Content.Shared.Mobs; @@ -39,7 +38,7 @@ using Content.Shared.Movement.Systems; using Content.Shared.Nutrition.Components; using Content.Shared.Popups; using Content.Shared.Slippery; -using Content.Shared.Stunnable; +using Content.Shared.Storage.Components; using Content.Shared.Tabletop.Components; using Content.Shared.Tools.Systems; using Content.Shared.Verbs; @@ -49,7 +48,6 @@ using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; using Robust.Shared.Player; using Robust.Shared.Random; -using Robust.Shared.Timing; using Robust.Shared.Utility; using Timer = Robust.Shared.Timing.Timer; @@ -675,6 +673,11 @@ public sealed partial class AdminVerbSystem grav.Weightless = true; Dirty(args.Target, grav); + + EnsureComp(args.Target, out var weightless); + weightless.Weightless = true; + + Dirty(args.Target, weightless); }, Impact = LogImpact.Extreme, Message = string.Join(": ", noGravityName, Loc.GetString("admin-smite-remove-gravity-description")) diff --git a/Content.Server/Animals/Systems/ParrotMemorySystem.cs b/Content.Server/Animals/Systems/ParrotMemorySystem.cs index a88957913f..6d8192f5d5 100644 --- a/Content.Server/Animals/Systems/ParrotMemorySystem.cs +++ b/Content.Server/Animals/Systems/ParrotMemorySystem.cs @@ -29,12 +29,10 @@ public sealed partial class ParrotMemorySystem : SharedParrotMemorySystem { [Dependency] private readonly EntityWhitelistSystem _whitelist = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; - [Dependency] private readonly IAdminManager _admin = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly MindSystem _mind = default!; [Dependency] private readonly MobStateSystem _mobState = default!; - [Dependency] private readonly PopupSystem _popup = default!; public override void Initialize() { diff --git a/Content.Server/Anomaly/AnomalyScannerSystem.cs b/Content.Server/Anomaly/AnomalyScannerSystem.cs new file mode 100644 index 0000000000..ba657cf056 --- /dev/null +++ b/Content.Server/Anomaly/AnomalyScannerSystem.cs @@ -0,0 +1,185 @@ +using Content.Server.Anomaly.Components; +using Content.Server.Anomaly.Effects; +using Content.Shared.Anomaly; +using Content.Shared.Anomaly.Components; +using Content.Shared.DoAfter; + +namespace Content.Server.Anomaly; + +/// +public sealed class AnomalyScannerSystem : SharedAnomalyScannerSystem +{ + [Dependency] private readonly SecretDataAnomalySystem _secretData = default!; + [Dependency] private readonly AnomalySystem _anomaly = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnScannerAnomalySeverityChanged); + SubscribeLocalEvent(OnScannerAnomalyStabilityChanged); + SubscribeLocalEvent(OnScannerAnomalyHealthChanged); + SubscribeLocalEvent(OnScannerAnomalyBehaviorChanged); + + Subs.BuiEvents( + AnomalyScannerUiKey.Key, + subs => subs.Event(OnScannerUiOpened) + ); + } + + /// Updates device with passed anomaly data. + public void UpdateScannerWithNewAnomaly(EntityUid scanner, EntityUid anomaly, AnomalyScannerComponent? scannerComp = null, AnomalyComponent? anomalyComp = null) + { + if (!Resolve(scanner, ref scannerComp) || !Resolve(anomaly, ref anomalyComp)) + return; + + scannerComp.ScannedAnomaly = anomaly; + UpdateScannerUi(scanner, scannerComp); + + TryComp(scanner, out var appearanceComp); + TryComp(anomaly, out var secretDataComp); + + Appearance.SetData(scanner, AnomalyScannerVisuals.HasAnomaly, true, appearanceComp); + + var stability = _secretData.IsSecret(anomaly, AnomalySecretData.Stability, secretDataComp) + ? AnomalyStabilityVisuals.Stable + : _anomaly.GetStabilityVisualOrStable((anomaly, anomalyComp)); + Appearance.SetData(scanner, AnomalyScannerVisuals.AnomalyStability, stability, appearanceComp); + + var severity = _secretData.IsSecret(anomaly, AnomalySecretData.Severity, secretDataComp) + ? 0 + : anomalyComp.Severity; + Appearance.SetData(scanner, AnomalyScannerVisuals.AnomalySeverity, severity, appearanceComp); + } + + /// Update scanner interface. + public void UpdateScannerUi(EntityUid uid, AnomalyScannerComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; + + TimeSpan? nextPulse = null; + if (TryComp(component.ScannedAnomaly, out var anomalyComponent)) + nextPulse = anomalyComponent.NextPulseTime; + + var state = new AnomalyScannerUserInterfaceState(_anomaly.GetScannerMessage(component), nextPulse); + UI.SetUiState(uid, AnomalyScannerUiKey.Key, state); + } + + /// + public override void Update(float frameTime) + { + base.Update(frameTime); + + var anomalyQuery = EntityQueryEnumerator(); + while (anomalyQuery.MoveNext(out var ent, out var anomaly)) + { + var secondsUntilNextPulse = (anomaly.NextPulseTime - Timing.CurTime).TotalSeconds; + UpdateScannerPulseTimers((ent, anomaly), secondsUntilNextPulse); + } + } + + /// + protected override void OnDoAfter(EntityUid uid, AnomalyScannerComponent component, DoAfterEvent args) + { + if (args.Cancelled || args.Handled || args.Args.Target == null) + return; + + base.OnDoAfter(uid, component, args); + + UpdateScannerWithNewAnomaly(uid, args.Args.Target.Value, component); + } + + private void OnScannerAnomalyHealthChanged(ref AnomalyHealthChangedEvent args) + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var component)) + { + if (component.ScannedAnomaly != args.Anomaly) + continue; + + UpdateScannerUi(uid, component); + } + } + + private void OnScannerUiOpened(EntityUid uid, AnomalyScannerComponent component, BoundUIOpenedEvent args) + { + UpdateScannerUi(uid, component); + } + + private void OnScannerAnomalySeverityChanged(ref AnomalySeverityChangedEvent args) + { + var severity = _secretData.IsSecret(args.Anomaly, AnomalySecretData.Severity) ? 0 : args.Severity; + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var component)) + { + if (component.ScannedAnomaly != args.Anomaly) + continue; + + UpdateScannerUi(uid, component); + Appearance.SetData(uid, AnomalyScannerVisuals.AnomalySeverity, severity); + } + } + + private void OnScannerAnomalyStabilityChanged(ref AnomalyStabilityChangedEvent args) + { + var stability = _secretData.IsSecret(args.Anomaly, AnomalySecretData.Stability) + ? AnomalyStabilityVisuals.Stable + : _anomaly.GetStabilityVisualOrStable(args.Anomaly); + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var component)) + { + if (component.ScannedAnomaly != args.Anomaly) + continue; + + UpdateScannerUi(uid, component); + Appearance.SetData(uid, AnomalyScannerVisuals.AnomalyStability, stability); + } + } + + private void OnScannerAnomalyBehaviorChanged(ref AnomalyBehaviorChangedEvent args) + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var component)) + { + if (component.ScannedAnomaly != args.Anomaly) + continue; + + UpdateScannerUi(uid, component); + // If a field becomes secret, we want to set it to 0 or stable + // If a field becomes visible, we need to set it to the correct value, so we need to get the AnomalyComponent + if (!TryComp(args.Anomaly, out var anomalyComp)) + return; + + TryComp(uid, out var appearanceComp); + TryComp(args.Anomaly, out var secretDataComp); + + var severity = _secretData.IsSecret(args.Anomaly, AnomalySecretData.Severity, secretDataComp) + ? 0 + : anomalyComp.Severity; + Appearance.SetData(uid, AnomalyScannerVisuals.AnomalySeverity, severity, appearanceComp); + + var stability = _secretData.IsSecret(args.Anomaly, AnomalySecretData.Stability, secretDataComp) + ? AnomalyStabilityVisuals.Stable + : _anomaly.GetStabilityVisualOrStable((args.Anomaly, anomalyComp)); + Appearance.SetData(uid, AnomalyScannerVisuals.AnomalyStability, stability, appearanceComp); + } + } + + private void UpdateScannerPulseTimers(Entity anomalyEnt, double secondsUntilNextPulse) + { + if (secondsUntilNextPulse > 5) + return; + + var rounded = Math.Max(0, (int)Math.Ceiling(secondsUntilNextPulse)); + + var scannerQuery = EntityQueryEnumerator(); + while (scannerQuery.MoveNext(out var scannerUid, out var scanner)) + { + if (scanner.ScannedAnomaly != anomalyEnt) + continue; + + Appearance.SetData(scannerUid, AnomalyScannerVisuals.AnomalyNextPulse, rounded); + } + } +} diff --git a/Content.Server/Anomaly/AnomalySystem.Scanner.cs b/Content.Server/Anomaly/AnomalySystem.Scanner.cs deleted file mode 100644 index 9d81878cd8..0000000000 --- a/Content.Server/Anomaly/AnomalySystem.Scanner.cs +++ /dev/null @@ -1,241 +0,0 @@ -using Content.Server.Anomaly.Components; -using Content.Shared.Anomaly; -using Content.Shared.Anomaly.Components; -using Content.Shared.DoAfter; -using Content.Shared.Interaction; -using Robust.Shared.Player; -using Robust.Shared.Utility; - -namespace Content.Server.Anomaly; - -/// -/// This handles the anomaly scanner and it's UI updates. -/// -public sealed partial class AnomalySystem -{ - private void InitializeScanner() - { - SubscribeLocalEvent(OnScannerUiOpened); - SubscribeLocalEvent(OnScannerAfterInteract); - SubscribeLocalEvent(OnDoAfter); - - SubscribeLocalEvent(OnScannerAnomalySeverityChanged); - SubscribeLocalEvent(OnScannerAnomalyHealthChanged); - SubscribeLocalEvent(OnScannerAnomalyBehaviorChanged); - } - - private void OnScannerAnomalyShutdown(ref AnomalyShutdownEvent args) - { - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var component)) - { - if (component.ScannedAnomaly != args.Anomaly) - continue; - - _ui.CloseUi(uid, AnomalyScannerUiKey.Key); - } - } - - private void OnScannerAnomalySeverityChanged(ref AnomalySeverityChangedEvent args) - { - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var component)) - { - if (component.ScannedAnomaly != args.Anomaly) - continue; - UpdateScannerUi(uid, component); - } - } - - private void OnScannerAnomalyStabilityChanged(ref AnomalyStabilityChangedEvent args) - { - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var component)) - { - if (component.ScannedAnomaly != args.Anomaly) - continue; - UpdateScannerUi(uid, component); - } - } - - private void OnScannerAnomalyHealthChanged(ref AnomalyHealthChangedEvent args) - { - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var component)) - { - if (component.ScannedAnomaly != args.Anomaly) - continue; - UpdateScannerUi(uid, component); - } - } - - private void OnScannerAnomalyBehaviorChanged(ref AnomalyBehaviorChangedEvent args) - { - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var component)) - { - if (component.ScannedAnomaly != args.Anomaly) - continue; - UpdateScannerUi(uid, component); - } - } - - private void OnScannerUiOpened(EntityUid uid, AnomalyScannerComponent component, BoundUIOpenedEvent args) - { - UpdateScannerUi(uid, component); - } - - private void OnScannerAfterInteract(EntityUid uid, AnomalyScannerComponent component, AfterInteractEvent args) - { - if (args.Target is not { } target) - return; - if (!HasComp(target)) - return; - if (!args.CanReach) - return; - - _doAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, args.User, component.ScanDoAfterDuration, new ScannerDoAfterEvent(), uid, target: target, used: uid) - { - DistanceThreshold = 2f - }); - } - - private void OnDoAfter(EntityUid uid, AnomalyScannerComponent component, DoAfterEvent args) - { - if (args.Cancelled || args.Handled || args.Args.Target == null) - return; - - Audio.PlayPvs(component.CompleteSound, uid); - Popup.PopupEntity(Loc.GetString("anomaly-scanner-component-scan-complete"), uid); - UpdateScannerWithNewAnomaly(uid, args.Args.Target.Value, component); - - _ui.OpenUi(uid, AnomalyScannerUiKey.Key, args.User); - - args.Handled = true; - } - - public void UpdateScannerUi(EntityUid uid, AnomalyScannerComponent? component = null) - { - if (!Resolve(uid, ref component)) - return; - - TimeSpan? nextPulse = null; - if (TryComp(component.ScannedAnomaly, out var anomalyComponent)) - nextPulse = anomalyComponent.NextPulseTime; - - var state = new AnomalyScannerUserInterfaceState(GetScannerMessage(component), nextPulse); - _ui.SetUiState(uid, AnomalyScannerUiKey.Key, state); - } - - public void UpdateScannerWithNewAnomaly(EntityUid scanner, EntityUid anomaly, AnomalyScannerComponent? scannerComp = null, AnomalyComponent? anomalyComp = null) - { - if (!Resolve(scanner, ref scannerComp) || !Resolve(anomaly, ref anomalyComp)) - return; - - scannerComp.ScannedAnomaly = anomaly; - UpdateScannerUi(scanner, scannerComp); - } - - public FormattedMessage GetScannerMessage(AnomalyScannerComponent component) - { - var msg = new FormattedMessage(); - if (component.ScannedAnomaly is not { } anomaly || !TryComp(anomaly, out var anomalyComp)) - { - msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-no-anomaly")); - return msg; - } - - TryComp(anomaly, out var secret); - - //Severity - if (secret != null && secret.Secret.Contains(AnomalySecretData.Severity)) - msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-severity-percentage-unknown")); - else - msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-severity-percentage", ("percent", anomalyComp.Severity.ToString("P")))); - msg.PushNewline(); - - //Stability - if (secret != null && secret.Secret.Contains(AnomalySecretData.Stability)) - msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-stability-unknown")); - else - { - string stateLoc; - if (anomalyComp.Stability < anomalyComp.DecayThreshold) - stateLoc = Loc.GetString("anomaly-scanner-stability-low"); - else if (anomalyComp.Stability > anomalyComp.GrowthThreshold) - stateLoc = Loc.GetString("anomaly-scanner-stability-high"); - else - stateLoc = Loc.GetString("anomaly-scanner-stability-medium"); - msg.AddMarkupOrThrow(stateLoc); - } - msg.PushNewline(); - - //Point output - if (secret != null && secret.Secret.Contains(AnomalySecretData.OutputPoint)) - msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-point-output-unknown")); - else - msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-point-output", ("point", GetAnomalyPointValue(anomaly, anomalyComp)))); - msg.PushNewline(); - msg.PushNewline(); - - //Particles title - msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-particle-readout")); - msg.PushNewline(); - - //Danger - if (secret != null && secret.Secret.Contains(AnomalySecretData.ParticleDanger)) - msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-particle-danger-unknown")); - else - msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-particle-danger", ("type", GetParticleLocale(anomalyComp.SeverityParticleType)))); - msg.PushNewline(); - - //Unstable - if (secret != null && secret.Secret.Contains(AnomalySecretData.ParticleUnstable)) - msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-particle-unstable-unknown")); - else - msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-particle-unstable", ("type", GetParticleLocale(anomalyComp.DestabilizingParticleType)))); - msg.PushNewline(); - - //Containment - if (secret != null && secret.Secret.Contains(AnomalySecretData.ParticleContainment)) - msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-particle-containment-unknown")); - else - msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-particle-containment", ("type", GetParticleLocale(anomalyComp.WeakeningParticleType)))); - msg.PushNewline(); - - //Transformation - if (secret != null && secret.Secret.Contains(AnomalySecretData.ParticleTransformation)) - msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-particle-transformation-unknown")); - else - msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-particle-transformation", ("type", GetParticleLocale(anomalyComp.TransformationParticleType)))); - - - //Behavior - msg.PushNewline(); - msg.PushNewline(); - msg.AddMarkupOrThrow(Loc.GetString("anomaly-behavior-title")); - msg.PushNewline(); - - if (secret != null && secret.Secret.Contains(AnomalySecretData.Behavior)) - msg.AddMarkupOrThrow(Loc.GetString("anomaly-behavior-unknown")); - else - { - if (anomalyComp.CurrentBehavior != null) - { - var behavior = _prototype.Index(anomalyComp.CurrentBehavior.Value); - - msg.AddMarkupOrThrow("- " + Loc.GetString(behavior.Description)); - msg.PushNewline(); - var mod = Math.Floor((behavior.EarnPointModifier) * 100); - msg.AddMarkupOrThrow("- " + Loc.GetString("anomaly-behavior-point", ("mod", mod))); - } - else - { - msg.AddMarkupOrThrow(Loc.GetString("anomaly-behavior-balanced")); - } - } - - //The timer at the end here is actually added in the ui itself. - return msg; - } -} diff --git a/Content.Server/Anomaly/AnomalySystem.Vessel.cs b/Content.Server/Anomaly/AnomalySystem.Vessel.cs index 98e56a8844..0900f3e96f 100644 --- a/Content.Server/Anomaly/AnomalySystem.Vessel.cs +++ b/Content.Server/Anomaly/AnomalySystem.Vessel.cs @@ -22,20 +22,7 @@ public sealed partial class AnomalySystem SubscribeLocalEvent(OnVesselInteractUsing); SubscribeLocalEvent(OnExamined); SubscribeLocalEvent(OnVesselGetPointsPerSecond); - SubscribeLocalEvent(OnShutdown); - SubscribeLocalEvent(OnStabilityChanged); - } - - private void OnStabilityChanged(ref AnomalyStabilityChangedEvent args) - { - OnVesselAnomalyStabilityChanged(ref args); - OnScannerAnomalyStabilityChanged(ref args); - } - - private void OnShutdown(ref AnomalyShutdownEvent args) - { - OnVesselAnomalyShutdown(ref args); - OnScannerAnomalyShutdown(ref args); + SubscribeLocalEvent(OnVesselAnomalyShutdown); } private void OnExamined(EntityUid uid, AnomalyVesselComponent component, ExaminedEvent args) @@ -141,21 +128,10 @@ public sealed partial class AnomalySystem if (_pointLight.TryGetLight(uid, out var pointLightComponent)) _pointLight.SetEnabled(uid, on, pointLightComponent); - // arbitrary value for the generic visualizer to use. - // i didn't feel like making an enum for this. - var value = 1; - if (TryComp(component.Anomaly, out var anomalyComp)) - { - if (anomalyComp.Stability <= anomalyComp.DecayThreshold) - { - value = 2; - } - else if (anomalyComp.Stability >= anomalyComp.GrowthThreshold) - { - value = 3; - } - } - Appearance.SetData(uid, AnomalyVesselVisuals.AnomalyState, value, appearanceComponent); + if (component.Anomaly == null || !TryGetStabilityVisual(component.Anomaly.Value, out var visual)) + visual = AnomalyStabilityVisuals.Stable; + + Appearance.SetData(uid, AnomalyVesselVisuals.AnomalySeverity, visual, appearanceComponent); _ambient.SetAmbience(uid, on); } diff --git a/Content.Server/Anomaly/AnomalySystem.cs b/Content.Server/Anomaly/AnomalySystem.cs index 9ac0ce7c94..69f18e5eeb 100644 --- a/Content.Server/Anomaly/AnomalySystem.cs +++ b/Content.Server/Anomaly/AnomalySystem.cs @@ -9,7 +9,6 @@ using Content.Server.Station.Systems; using Content.Shared.Anomaly; using Content.Shared.Anomaly.Components; using Content.Shared.Anomaly.Prototypes; -using Content.Shared.DoAfter; using Content.Shared.Random; using Content.Shared.Random.Helpers; using Robust.Server.GameObjects; @@ -18,6 +17,7 @@ using Robust.Shared.Configuration; using Robust.Shared.Physics.Events; using Robust.Shared.Prototypes; using Robust.Shared.Random; +using Robust.Shared.Utility; namespace Content.Server.Anomaly; @@ -30,7 +30,6 @@ public sealed partial class AnomalySystem : SharedAnomalySystem [Dependency] private readonly IPrototypeManager _prototype = default!; [Dependency] private readonly AmbientSoundSystem _ambient = default!; [Dependency] private readonly AtmosphereSystem _atmosphere = default!; - [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; [Dependency] private readonly ExplosionSystem _explosion = default!; [Dependency] private readonly MaterialStorageSystem _material = default!; [Dependency] private readonly SharedPointLightSystem _pointLight = default!; @@ -53,10 +52,9 @@ public sealed partial class AnomalySystem : SharedAnomalySystem SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnShutdown); SubscribeLocalEvent(OnStartCollide); - + SubscribeLocalEvent(OnVesselAnomalyStabilityChanged); InitializeGenerator(); - InitializeScanner(); InitializeVessel(); InitializeCommands(); } @@ -218,4 +216,112 @@ public sealed partial class AnomalySystem : SharedAnomalySystem EntityManager.RemoveComponents(anomaly, behavior.Components); } #endregion + + #region Information + /// + /// Get a formatted message with a summary of all anomaly information for putting on a UI. + /// + public FormattedMessage GetScannerMessage(AnomalyScannerComponent component) + { + var msg = new FormattedMessage(); + if (component.ScannedAnomaly is not { } anomaly || !TryComp(anomaly, out var anomalyComp)) + { + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-no-anomaly")); + return msg; + } + + TryComp(anomaly, out var secret); + + //Severity + if (secret != null && secret.Secret.Contains(AnomalySecretData.Severity)) + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-severity-percentage-unknown")); + else + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-severity-percentage", ("percent", anomalyComp.Severity.ToString("P")))); + msg.PushNewline(); + + //Stability + if (secret != null && secret.Secret.Contains(AnomalySecretData.Stability)) + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-stability-unknown")); + else + { + string stateLoc; + if (anomalyComp.Stability < anomalyComp.DecayThreshold) + stateLoc = Loc.GetString("anomaly-scanner-stability-low"); + else if (anomalyComp.Stability > anomalyComp.GrowthThreshold) + stateLoc = Loc.GetString("anomaly-scanner-stability-high"); + else + stateLoc = Loc.GetString("anomaly-scanner-stability-medium"); + msg.AddMarkupOrThrow(stateLoc); + } + msg.PushNewline(); + + //Point output + if (secret != null && secret.Secret.Contains(AnomalySecretData.OutputPoint)) + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-point-output-unknown")); + else + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-point-output", ("point", GetAnomalyPointValue(anomaly, anomalyComp)))); + msg.PushNewline(); + msg.PushNewline(); + + //Particles title + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-particle-readout")); + msg.PushNewline(); + + //Danger + if (secret != null && secret.Secret.Contains(AnomalySecretData.ParticleDanger)) + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-particle-danger-unknown")); + else + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-particle-danger", ("type", GetParticleLocale(anomalyComp.SeverityParticleType)))); + msg.PushNewline(); + + //Unstable + if (secret != null && secret.Secret.Contains(AnomalySecretData.ParticleUnstable)) + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-particle-unstable-unknown")); + else + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-particle-unstable", ("type", GetParticleLocale(anomalyComp.DestabilizingParticleType)))); + msg.PushNewline(); + + //Containment + if (secret != null && secret.Secret.Contains(AnomalySecretData.ParticleContainment)) + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-particle-containment-unknown")); + else + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-particle-containment", ("type", GetParticleLocale(anomalyComp.WeakeningParticleType)))); + msg.PushNewline(); + + //Transformation + if (secret != null && secret.Secret.Contains(AnomalySecretData.ParticleTransformation)) + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-particle-transformation-unknown")); + else + msg.AddMarkupOrThrow(Loc.GetString("anomaly-scanner-particle-transformation", ("type", GetParticleLocale(anomalyComp.TransformationParticleType)))); + + + //Behavior + msg.PushNewline(); + msg.PushNewline(); + msg.AddMarkupOrThrow(Loc.GetString("anomaly-behavior-title")); + msg.PushNewline(); + + if (secret != null && secret.Secret.Contains(AnomalySecretData.Behavior)) + msg.AddMarkupOrThrow(Loc.GetString("anomaly-behavior-unknown")); + else + { + if (anomalyComp.CurrentBehavior != null) + { + var behavior = _prototype.Index(anomalyComp.CurrentBehavior.Value); + + msg.AddMarkupOrThrow("- " + Loc.GetString(behavior.Description)); + msg.PushNewline(); + var mod = Math.Floor((behavior.EarnPointModifier) * 100); + msg.AddMarkupOrThrow("- " + Loc.GetString("anomaly-behavior-point", ("mod", mod))); + } + else + { + msg.AddMarkupOrThrow(Loc.GetString("anomaly-behavior-balanced")); + } + } + + //The timer at the end here is actually added in the ui itself. + return msg; + } + #endregion } diff --git a/Content.Server/Anomaly/Effects/PyroclasticAnomalySystem.cs b/Content.Server/Anomaly/Effects/PyroclasticAnomalySystem.cs index d38bda562b..5ceb9888f4 100644 --- a/Content.Server/Anomaly/Effects/PyroclasticAnomalySystem.cs +++ b/Content.Server/Anomaly/Effects/PyroclasticAnomalySystem.cs @@ -1,7 +1,7 @@ -using Content.Server.Atmos.Components; using Content.Server.Atmos.EntitySystems; using Content.Shared.Anomaly.Components; using Content.Shared.Anomaly.Effects.Components; +using Content.Shared.Atmos.Components; using Robust.Shared.Map; namespace Content.Server.Anomaly.Effects; diff --git a/Content.Server/Anomaly/Effects/SecretDataAnomalySystem.cs b/Content.Server/Anomaly/Effects/SecretDataAnomalySystem.cs index cbdc4b04df..0515ed855e 100644 --- a/Content.Server/Anomaly/Effects/SecretDataAnomalySystem.cs +++ b/Content.Server/Anomaly/Effects/SecretDataAnomalySystem.cs @@ -36,5 +36,13 @@ public sealed class SecretDataAnomalySystem : EntitySystem component.Secret.Add(_random.PickAndTake(_deita)); } } + + public bool IsSecret(EntityUid uid, AnomalySecretData item, SecretDataAnomalyComponent? component = null) + { + if (!Resolve(uid, ref component, logMissing: false)) + return false; + + return component.Secret.Contains(item); + } } diff --git a/Content.Server/Atmos/Components/DeltaPressureComponent.cs b/Content.Server/Atmos/Components/DeltaPressureComponent.cs new file mode 100644 index 0000000000..f90c133dea --- /dev/null +++ b/Content.Server/Atmos/Components/DeltaPressureComponent.cs @@ -0,0 +1,139 @@ +using Content.Server.Atmos.EntitySystems; +using Content.Shared.Damage; +using Content.Shared.FixedPoint; + +namespace Content.Server.Atmos.Components; + +/// +/// Entities that have this component will have damage done to them depending on the local pressure +/// environment that they reside in. +/// +/// Atmospherics.DeltaPressure batch-processes entities with this component in a list on +/// the grid's . +/// The entities are automatically added and removed from this list, and automatically +/// added on initialization. +/// +/// Note that the entity should have an and be a grid structure. +[RegisterComponent] +public sealed partial class DeltaPressureComponent : Component +{ + /// + /// Whether the entity is currently in the processing list of the grid's . + /// + [DataField(readOnly: true)] + [ViewVariables(VVAccess.ReadOnly)] + [Access(typeof(DeltaPressureSystem), typeof(AtmosphereSystem))] + public bool InProcessingList; + + /// + /// Whether this entity is currently taking damage from pressure. + /// + [DataField(readOnly: true)] + [ViewVariables(VVAccess.ReadOnly)] + [Access(typeof(DeltaPressureSystem), typeof(AtmosphereSystem))] + public bool IsTakingDamage; + + /// + /// The current cached position of this entity on the grid. + /// Updated via MoveEvent. + /// + [DataField(readOnly: true)] + public Vector2i CurrentPosition = Vector2i.Zero; + + /// + /// The grid this entity is currently joined to for processing. + /// Required for proper deletion, as we cannot reference the grid + /// for removal while the entity is being deleted. + /// + [DataField] + public EntityUid? GridUid; + + /// + /// The percent chance that the entity will take damage each atmos tick, + /// when the entity is above the damage threshold. + /// Makes it so that windows don't all break in one go. + /// Float is from 0 to 1, where 1 means 100% chance. + /// If this is set to 0, the entity will never take damage. + /// + [DataField] + public float RandomDamageChance = 1f; + + /// + /// The base damage applied to the entity per atmos tick when it is above the damage threshold. + /// This damage will be scaled as defined by the enum + /// depending on the current effective pressure this entity is experiencing. + /// Note that this damage will scale depending on the pressure above the minimum pressure, + /// not at the current pressure. + /// + [DataField] + public DamageSpecifier BaseDamage = new() + { + DamageDict = new Dictionary + { + { "Structural", 10 }, + }, + }; + + /// + /// The minimum pressure in kPa at which the entity will start taking damage. + /// This doesn't depend on the difference in pressure. + /// The entity will start to take damage if it is exposed to this pressure. + /// This is needed because we don't correctly handle 2-layer windows yet. + /// + [DataField] + public float MinPressure = 10000; + + /// + /// The minimum difference in pressure between any side required for the entity to start taking damage. + /// + [DataField] + public float MinPressureDelta = 7500; + + /// + /// The maximum pressure at which damage will no longer scale. + /// If the effective pressure goes beyond this, the damage will be considered at this pressure. + /// + [DataField] + public float MaxEffectivePressure = 10000; + + /// + /// Simple constant to affect the scaling behavior. + /// See comments in the types to see how this affects scaling. + /// + [DataField] + public float ScalingPower = 1; + + /// + /// Defines the scaling behavior for the damage. + /// + [DataField] + public DeltaPressureDamageScalingType ScalingType = DeltaPressureDamageScalingType.Threshold; +} + +/// +/// An enum that defines how the damage dealt by the scales +/// depending on the pressure experienced by the entity. +/// The scaling is done on the effective pressure, which is the pressure above the minimum pressure. +/// See https://www.desmos.com/calculator/9ctlq3zpnt for a visual representation of the scaling types. +/// +[Serializable] +public enum DeltaPressureDamageScalingType : byte +{ + /// + /// Damage dealt will be constant as long as the minimum values are met. + /// Scaling power is ignored. + /// + Threshold, + + /// + /// Damage dealt will be a linear function. + /// Scaling power determines the slope of the function. + /// + Linear, + + /// + /// Damage dealt will be a logarithmic function. + /// Scaling power determines the base of the log. + /// + Log, +} diff --git a/Content.Server/Atmos/Components/GridAtmosphereComponent.cs b/Content.Server/Atmos/Components/GridAtmosphereComponent.cs index e682fd0964..2d36d2bd14 100644 --- a/Content.Server/Atmos/Components/GridAtmosphereComponent.cs +++ b/Content.Server/Atmos/Components/GridAtmosphereComponent.cs @@ -1,3 +1,4 @@ +using System.Collections.Concurrent; using Content.Server.Atmos.EntitySystems; using Content.Server.Atmos.Piping.Components; using Content.Server.Atmos.Serialization; @@ -61,6 +62,39 @@ namespace Content.Server.Atmos.Components [ViewVariables] public int HighPressureDeltaCount => HighPressureDelta.Count; + /// + /// A list of entities that have a and are to + /// be processed by the , if enabled. + /// + /// To prevent massive bookkeeping overhead, this list is processed in-place, + /// with add/remove/find operations helped via a dict. + /// + /// If you want to add/remove/find entities in this list, + /// use the API methods in the Atmospherics API. + [ViewVariables] + public readonly List> DeltaPressureEntities = + new(AtmosphereSystem.DeltaPressurePreAllocateLength); + + /// + /// An index lookup for the list. + /// Used for add/remove/find operations to speed up processing. + /// + public readonly Dictionary DeltaPressureEntityLookup = + new(AtmosphereSystem.DeltaPressurePreAllocateLength); + + /// + /// Integer that indicates the current position in the + /// list that is being processed. + /// + [ViewVariables(VVAccess.ReadOnly)] + public int DeltaPressureCursor; + + /// + /// Queue of entities that need to have damage applied to them. + /// + [ViewVariables] + public readonly ConcurrentQueue DeltaPressureDamageResults = new(); + [ViewVariables] public readonly HashSet PipeNets = new(); diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.API.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.API.cs index 67f3a20779..87cfce135d 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.API.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.API.cs @@ -1,3 +1,4 @@ +using System.Diagnostics; using System.Linq; using Content.Server.Atmos.Components; using Content.Server.Atmos.Piping.Components; @@ -5,6 +6,7 @@ using Content.Server.NodeContainer.NodeGroups; using Content.Shared.Atmos; using Content.Shared.Atmos.Components; using Content.Shared.Atmos.Reactions; +using JetBrains.Annotations; using Robust.Shared.Map.Components; using Robust.Shared.Utility; @@ -319,6 +321,107 @@ public partial class AtmosphereSystem return true; } + /// + /// Adds an entity with a DeltaPressureComponent to the DeltaPressure processing list. + /// Also fills in important information on the component itself. + /// + /// The grid to add the entity to. + /// The entity to add. + /// True if the entity was added to the list, false if it could not be added or + /// if the entity was already present in the list. + [PublicAPI] + public bool TryAddDeltaPressureEntity(Entity grid, Entity ent) + { + // The entity needs to be part of a grid, and it should be the right one :) + var xform = Transform(ent); + + // The entity is not on a grid, so it cannot possibly have an atmosphere that affects it. + if (xform.GridUid == null) + { + return false; + } + + // Entity should be on the grid it's being added to. + Debug.Assert(xform.GridUid == grid.Owner); + + if (!_atmosQuery.Resolve(grid, ref grid.Comp, false)) + return false; + + if (grid.Comp.DeltaPressureEntityLookup.ContainsKey(ent.Owner)) + { + return false; + } + + grid.Comp.DeltaPressureEntityLookup[ent.Owner] = grid.Comp.DeltaPressureEntities.Count; + grid.Comp.DeltaPressureEntities.Add(ent); + + ent.Comp.CurrentPosition = _map.CoordinatesToTile(grid, + Comp(grid), + xform.Coordinates); + + ent.Comp.GridUid = grid.Owner; + ent.Comp.InProcessingList = true; + + return true; + } + + /// + /// Removes an entity with a DeltaPressureComponent from the DeltaPressure processing list. + /// + /// The grid to remove the entity from. + /// The entity to remove. + /// True if the entity was removed from the list, false if it could not be removed or + /// if the entity was not present in the list. + [PublicAPI] + public bool TryRemoveDeltaPressureEntity(Entity grid, Entity ent) + { + if (!_atmosQuery.Resolve(grid, ref grid.Comp, false)) + return false; + + if (!grid.Comp.DeltaPressureEntityLookup.TryGetValue(ent.Owner, out var index)) + return false; + + var lastIndex = grid.Comp.DeltaPressureEntities.Count - 1; + if (lastIndex < 0) + return false; + + if (index != lastIndex) + { + var lastEnt = grid.Comp.DeltaPressureEntities[lastIndex]; + grid.Comp.DeltaPressureEntities[index] = lastEnt; + grid.Comp.DeltaPressureEntityLookup[lastEnt.Owner] = index; + } + + grid.Comp.DeltaPressureEntities.RemoveAt(lastIndex); + grid.Comp.DeltaPressureEntityLookup.Remove(ent.Owner); + + if (grid.Comp.DeltaPressureCursor > grid.Comp.DeltaPressureEntities.Count) + grid.Comp.DeltaPressureCursor = grid.Comp.DeltaPressureEntities.Count; + + ent.Comp.InProcessingList = false; + ent.Comp.GridUid = null; + return true; + } + + /// + /// Checks if a DeltaPressureComponent is currently considered for processing on a grid. + /// + /// The grid that the entity may belong to. + /// The entity to check. + /// True if the entity is part of the processing list, false otherwise. + [PublicAPI] + public bool IsDeltaPressureEntityInList(Entity grid, Entity ent) + { + // Dict and list must be in sync - deep-fried if we aren't. + if (!_atmosQuery.Resolve(grid, ref grid.Comp, false)) + return false; + + var contains = grid.Comp.DeltaPressureEntityLookup.ContainsKey(ent.Owner); + Debug.Assert(contains == grid.Comp.DeltaPressureEntities.Contains(ent)); + + return contains; + } + [ByRefEvent] private record struct SetSimulatedGridMethodEvent (EntityUid Grid, bool Simulated, bool Handled = false); diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.BenchmarkHelpers.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.BenchmarkHelpers.cs new file mode 100644 index 0000000000..f86ebcee73 --- /dev/null +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.BenchmarkHelpers.cs @@ -0,0 +1,49 @@ +using Content.Server.Atmos.Components; +using Content.Shared.Atmos.Components; +using Robust.Shared.Map.Components; + +namespace Content.Server.Atmos.EntitySystems; + +public sealed partial class AtmosphereSystem +{ + /* + Helper methods to assist in getting very low overhead profiling of individual stages of the atmospherics simulation. + Ideal for benchmarking and performance testing. + These methods obviously aren't to be used in production code. Don't call them. They know my voice. + */ + + /// + /// Runs the grid entity through a single processing stage of the atmosphere simulation. + /// Ideal for benchmarking single stages of the simulation. + /// + /// The entity to profile Atmospherics with. + /// The state to profile on the entity. + /// The optional mapEntity to provide when benchmarking ProcessAtmosDevices. + /// True if the processing stage completed, false if the processing stage had to pause processing due to time constraints. + public bool RunProcessingStage( + Entity ent, + AtmosphereProcessingState state, + Entity? mapEnt = null) + { + var processingPaused = state switch + { + AtmosphereProcessingState.Revalidate => ProcessRevalidate(ent), + AtmosphereProcessingState.TileEqualize => ProcessTileEqualize(ent), + AtmosphereProcessingState.ActiveTiles => ProcessActiveTiles(ent), + AtmosphereProcessingState.ExcitedGroups => ProcessExcitedGroups(ent), + AtmosphereProcessingState.HighPressureDelta => ProcessHighPressureDelta(ent), + AtmosphereProcessingState.DeltaPressure => ProcessDeltaPressure(ent), + AtmosphereProcessingState.Hotspots => ProcessHotspots(ent), + AtmosphereProcessingState.Superconductivity => ProcessSuperconductivity(ent), + AtmosphereProcessingState.PipeNet => ProcessPipeNets(ent), + AtmosphereProcessingState.AtmosDevices => mapEnt is not null + ? ProcessAtmosDevices(ent, mapEnt.Value) + : throw new ArgumentException( + "An Entity must be provided when benchmarking ProcessAtmosDevices."), + _ => throw new ArgumentOutOfRangeException(), + }; + ent.Comp1.ProcessingPaused = !processingPaused; + + return processingPaused; + } +} diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.CVars.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.CVars.cs index 3aaa5429fb..f24f0ae171 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.CVars.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.CVars.cs @@ -26,6 +26,9 @@ namespace Content.Server.Atmos.EntitySystems public float AtmosTickRate { get; private set; } public float Speedup { get; private set; } public float HeatScale { get; private set; } + public bool DeltaPressureDamage { get; private set; } + public int DeltaPressureParallelProcessPerIteration { get; private set; } + public int DeltaPressureParallelBatchSize { get; private set; } /// /// Time between each atmos sub-update. If you are writing an atmos device, use AtmosDeviceUpdateEvent.dt @@ -55,6 +58,9 @@ namespace Content.Server.Atmos.EntitySystems Subs.CVar(_cfg, CCVars.AtmosHeatScale, value => { HeatScale = value; InitializeGases(); }, true); Subs.CVar(_cfg, CCVars.ExcitedGroups, value => ExcitedGroups = value, true); Subs.CVar(_cfg, CCVars.ExcitedGroupsSpaceIsAllConsuming, value => ExcitedGroupsSpaceIsAllConsuming = value, true); + Subs.CVar(_cfg, CCVars.DeltaPressureDamage, value => DeltaPressureDamage = value, true); + Subs.CVar(_cfg, CCVars.DeltaPressureParallelToProcessPerIteration, value => DeltaPressureParallelProcessPerIteration = value, true); + Subs.CVar(_cfg, CCVars.DeltaPressureParallelBatchSize, value => DeltaPressureParallelBatchSize = value, true); } } } diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.DeltaPressure.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.DeltaPressure.cs new file mode 100644 index 0000000000..9d72b195fe --- /dev/null +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.DeltaPressure.cs @@ -0,0 +1,260 @@ +using Content.Server.Atmos.Components; +using Content.Shared.Atmos; +using Content.Shared.Damage; +using Robust.Shared.Random; +using Robust.Shared.Threading; + +namespace Content.Server.Atmos.EntitySystems; + +public sealed partial class AtmosphereSystem +{ + /// + /// The number of pairs of opposing directions we can have. + /// This is Atmospherics.Directions / 2, since we always compare opposing directions + /// (e.g. North vs South, East vs West, etc.). + /// Used to determine the size of the opposing groups when processing delta pressure entities. + /// + private const int DeltaPressurePairCount = Atmospherics.Directions / 2; + + /// + /// The length to pre-allocate list/dicts of delta pressure entities on a . + /// + public const int DeltaPressurePreAllocateLength = 1000; + + /// + /// Processes a singular entity, determining the pressures it's experiencing and applying damage based on that. + /// + /// The entity to process. + /// The that belongs to the entity's GridUid. + private void ProcessDeltaPressureEntity(Entity ent, GridAtmosphereComponent gridAtmosComp) + { + if (!_random.Prob(ent.Comp.RandomDamageChance)) + return; + + /* + To make our comparisons a little bit faster, we take advantage of SIMD-accelerated methods + in the NumericsHelpers class. + + This involves loading our values into a span in the form of opposing pairs, + so simple vector operations like min/max/abs can be performed on them. + */ + + var tiles = new TileAtmosphere?[Atmospherics.Directions]; + for (var i = 0; i < Atmospherics.Directions; i++) + { + var direction = (AtmosDirection)(1 << i); + var offset = ent.Comp.CurrentPosition.Offset(direction); + tiles[i] = gridAtmosComp.Tiles.GetValueOrDefault(offset); + } + + Span pressures = stackalloc float[Atmospherics.Directions]; + + GetBulkTileAtmospherePressures(tiles, pressures); + + Span opposingGroupA = stackalloc float[DeltaPressurePairCount]; + Span opposingGroupB = stackalloc float[DeltaPressurePairCount]; + Span opposingGroupMax = stackalloc float[DeltaPressurePairCount]; + + // Directions are always in pairs: the number of directions is always even + // (we must consider the future where Multi-Z is real) + // Load values into opposing pairs. + for (var i = 0; i < DeltaPressurePairCount; i++) + { + opposingGroupA[i] = pressures[i]; + opposingGroupB[i] = pressures[i + DeltaPressurePairCount]; + } + + // TODO ATMOS: Needs to be changed to batch operations so that more operations can actually be done in parallel. + + // Need to determine max pressure in opposing directions for absolute pressure calcs. + NumericsHelpers.Max(opposingGroupA, opposingGroupB, opposingGroupMax); + + // Calculate pressure differences between opposing directions. + NumericsHelpers.Sub(opposingGroupA, opposingGroupB); + NumericsHelpers.Abs(opposingGroupA); + + var maxPressure = 0f; + var maxDelta = 0f; + for (var i = 0; i < DeltaPressurePairCount; i++) + { + maxPressure = MathF.Max(maxPressure, opposingGroupMax[i]); + maxDelta = MathF.Max(maxDelta, opposingGroupA[i]); + } + + EnqueueDeltaPressureDamage(ent, + gridAtmosComp, + maxPressure, + maxDelta); + } + + /// + /// A DeltaPressure helper method that retrieves the pressures of all gas mixtures + /// in the given array of s, and stores the results in the + /// provided span. + /// The tiles array length is limited to Atmosphereics.Directions. + /// + /// The tiles array to find the pressures of. + /// The span to store the pressures to - this should be the same length + /// as the tile array. + /// This is for internal use of the DeltaPressure system - + /// it may not be a good idea to use this generically. + private static void GetBulkTileAtmospherePressures(TileAtmosphere?[] tiles, Span pressures) + { + #if DEBUG + // Just in case someone tries to use this method incorrectly. + if (tiles.Length != pressures.Length || tiles.Length != Atmospherics.Directions) + throw new ArgumentException("Length of arrays must be the same and of Atmospherics.Directions length."); + #endif + + // This hardcoded direction limit is stopping goobers from + // overflowing the stack with massive arrays. + // If this method is pulled into a more generic place, + // it should be replaced with method params. + Span mixtVol = stackalloc float[Atmospherics.Directions]; + Span mixtTemp = stackalloc float[Atmospherics.Directions]; + Span mixtMoles = stackalloc float[Atmospherics.Directions]; + Span atmosR = stackalloc float[Atmospherics.Directions]; + + for (var i = 0; i < tiles.Length; i++) + { + if (tiles[i] is not { Air: { } mixture }) + { + pressures[i] = 0f; + + // To prevent any NaN/Div/0 errors, we just bite the bullet + // and set everything to the lowest possible value. + mixtVol[i] = 1; + mixtTemp[i] = 1; + mixtMoles[i] = float.Epsilon; + atmosR[i] = 1; + continue; + } + + mixtVol[i] = mixture.Volume; + mixtTemp[i] = mixture.Temperature; + mixtMoles[i] = mixture.TotalMoles; + atmosR[i] = Atmospherics.R; + } + + /* + Retrieval of single tile pressures requires calling a get method for each tile, + which does a bunch of scalar operations. + + So we go ahead and batch-retrieve the pressures of all tiles + and process them in bulk. + */ + NumericsHelpers.Multiply(mixtMoles, atmosR); + NumericsHelpers.Multiply(mixtMoles, mixtTemp); + NumericsHelpers.Divide(mixtMoles, mixtVol, pressures); + } + + /// + /// Packs data into a data struct and enqueues it + /// into the queue for + /// later processing. + /// + /// The entity to enqueue if necessary. + /// The + /// containing the queue. + /// The current absolute pressure being experienced by the entity. + /// The current delta pressure being experienced by the entity. + private static void EnqueueDeltaPressureDamage(Entity ent, + GridAtmosphereComponent gridAtmosComp, + float pressure, + float delta) + { + var aboveMinPressure = pressure > ent.Comp.MinPressure; + var aboveMinDeltaPressure = delta > ent.Comp.MinPressureDelta; + if (!aboveMinPressure && !aboveMinDeltaPressure) + { + ent.Comp.IsTakingDamage = false; + return; + } + + gridAtmosComp.DeltaPressureDamageResults.Enqueue(new DeltaPressureDamageResult(ent, + pressure, + delta)); + } + + /// + /// Job for solving DeltaPressure entities in parallel. + /// Batches are given some index to start from, so each thread can simply just start at that index + /// and process the next n entities in the list. + /// + /// The AtmosphereSystem instance. + /// The GridAtmosphereComponent to work with. + /// The index in the DeltaPressureEntities list to start from. + /// The batch size to use for this job. + private sealed class DeltaPressureParallelJob( + AtmosphereSystem system, + GridAtmosphereComponent atmosphere, + int startIndex, + int cvarBatchSize) + : IParallelRobustJob + { + public int BatchSize => cvarBatchSize; + + public void Execute(int index) + { + // The index is relative to the startIndex (because we can pause and resume computation), + // so we need to add it to the startIndex. + var actualIndex = startIndex + index; + + if (actualIndex >= atmosphere.DeltaPressureEntities.Count) + return; + + var ent = atmosphere.DeltaPressureEntities[actualIndex]; + system.ProcessDeltaPressureEntity(ent, atmosphere); + } + } + + /// + /// Struct that holds the result of delta pressure damage processing for an entity. + /// This is only created and enqueued when the entity needs to take damage. + /// + /// The entity to deal damage to. + /// The current absolute pressure the entity is experiencing. + /// The current delta pressure the entity is experiencing. + public readonly record struct DeltaPressureDamageResult( + Entity Ent, + float Pressure, + float DeltaPressure); + + /// + /// Does damage to an entity depending on the pressure experienced by it, based on the + /// entity's . + /// + /// The entity to apply damage to. + /// The absolute pressure being exerted on the entity. + /// The delta pressure being exerted on the entity. + private void PerformDamage(Entity ent, float pressure, float deltaPressure) + { + var maxPressure = Math.Max(pressure - ent.Comp.MinPressure, deltaPressure - ent.Comp.MinPressureDelta); + var maxPressureCapped = Math.Min(maxPressure, ent.Comp.MaxEffectivePressure); + var appliedDamage = ScaleDamage(ent, ent.Comp.BaseDamage, maxPressureCapped); + + _damage.TryChangeDamage(ent, appliedDamage, ignoreResistances: true, interruptsDoAfters: false); + ent.Comp.IsTakingDamage = true; + } + + /// + /// Returns a new DamageSpecifier scaled based on values on an entity with a DeltaPressureComponent. + /// + /// The entity to base the manipulations off of (pull scaling type) + /// The base damage specifier to scale. + /// The pressure being exerted on the entity. + /// A scaled DamageSpecifier. + private static DamageSpecifier ScaleDamage(Entity ent, DamageSpecifier damage, float pressure) + { + var factor = ent.Comp.ScalingType switch + { + DeltaPressureDamageScalingType.Threshold => 1f, + DeltaPressureDamageScalingType.Linear => pressure * ent.Comp.ScalingPower, + DeltaPressureDamageScalingType.Log => + (float) Math.Log(pressure, ent.Comp.ScalingPower), + _ => throw new ArgumentOutOfRangeException(nameof(ent), "Invalid damage scaling type!"), + }; + + return damage * factor; + } +} diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Gases.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Gases.cs index 6893940a97..c545186669 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Gases.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Gases.cs @@ -458,11 +458,8 @@ namespace Content.Server.Atmos.EntitySystems continue; var doReaction = true; - for (var i = 0; i < prototype.MinimumRequirements.Length; i++) + for (var i = 0; i < Atmospherics.TotalNumberOfGases; i++) { - if(i >= Atmospherics.TotalNumberOfGases) - throw new IndexOutOfRangeException("Reaction Gas Minimum Requirements Array Prototype exceeds total number of gases!"); - var req = prototype.MinimumRequirements[i]; if (!(mixture.GetMoles(i) < req)) diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs index 02d389b215..9b8654af6d 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs @@ -467,6 +467,66 @@ namespace Content.Server.Atmos.EntitySystems return true; } + /// + /// Processes all entities with a , doing damage to them + /// depending on certain pressure differential conditions. + /// + /// True if we've finished processing all entities that required processing this run, + /// otherwise, false. + private bool ProcessDeltaPressure(Entity ent) + { + var atmosphere = ent.Comp1; + var count = atmosphere.DeltaPressureEntities.Count; + if (!atmosphere.ProcessingPaused) + { + atmosphere.DeltaPressureCursor = 0; + atmosphere.DeltaPressureDamageResults.Clear(); + } + + var remaining = count - atmosphere.DeltaPressureCursor; + var batchSize = Math.Max(50, DeltaPressureParallelProcessPerIteration); + var toProcess = Math.Min(batchSize, remaining); + + var timeCheck1 = 0; + while (atmosphere.DeltaPressureCursor < count) + { + var job = new DeltaPressureParallelJob(this, + atmosphere, + atmosphere.DeltaPressureCursor, + DeltaPressureParallelBatchSize); + _parallel.ProcessNow(job, toProcess); + + atmosphere.DeltaPressureCursor += toProcess; + + if (timeCheck1++ < LagCheckIterations) + continue; + + timeCheck1 = 0; + if (_simulationStopwatch.Elapsed.TotalMilliseconds >= AtmosMaxProcessTime) + return false; + } + + var timeCheck2 = 0; + while (atmosphere.DeltaPressureDamageResults.TryDequeue(out var result)) + { + PerformDamage(result.Ent, + result.Pressure, + result.DeltaPressure); + + if (timeCheck2++ < LagCheckIterations) + continue; + + timeCheck2 = 0; + // Process the rest next time. + if (_simulationStopwatch.Elapsed.TotalMilliseconds >= AtmosMaxProcessTime) + { + return false; + } + } + + return true; + } + private bool ProcessPipeNets(GridAtmosphereComponent atmosphere) { if (!atmosphere.ProcessingPaused) @@ -510,6 +570,8 @@ namespace Content.Server.Atmos.EntitySystems num--; if (!ExcitedGroups) num--; + if (!DeltaPressureDamage) + num--; if (!Superconduction) num--; return num * AtmosTime; @@ -653,6 +715,18 @@ namespace Content.Server.Atmos.EntitySystems return; } + atmosphere.ProcessingPaused = false; + atmosphere.State = DeltaPressureDamage + ? AtmosphereProcessingState.DeltaPressure + : AtmosphereProcessingState.Hotspots; + continue; + case AtmosphereProcessingState.DeltaPressure: + if (!ProcessDeltaPressure(ent)) + { + atmosphere.ProcessingPaused = true; + return; + } + atmosphere.ProcessingPaused = false; atmosphere.State = AtmosphereProcessingState.Hotspots; continue; @@ -721,6 +795,7 @@ namespace Content.Server.Atmos.EntitySystems ActiveTiles, ExcitedGroups, HighPressureDelta, + DeltaPressure, Hotspots, Superconductivity, PipeNet, diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.cs index e9383f3a23..00b7e16913 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.cs @@ -1,6 +1,5 @@ using Content.Server.Administration.Logs; using Content.Server.Atmos.Components; -using Content.Server.Body.Systems; using Content.Server.Fluids.EntitySystems; using Content.Server.NodeContainer.EntitySystems; using Content.Shared.Atmos.EntitySystems; @@ -15,6 +14,8 @@ using Robust.Shared.Map; using Robust.Shared.Physics.Systems; using Robust.Shared.Prototypes; using System.Linq; +using Content.Shared.Damage; +using Robust.Shared.Threading; namespace Content.Server.Atmos.EntitySystems; @@ -27,6 +28,7 @@ public sealed partial class AtmosphereSystem : SharedAtmosphereSystem [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly ITileDefinitionManager _tileDefinitionManager = default!; [Dependency] private readonly IAdminLogManager _adminLog = default!; + [Dependency] private readonly IParallelManager _parallel = default!; [Dependency] private readonly EntityLookupSystem _lookup = default!; [Dependency] private readonly SharedContainerSystem _containers = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; @@ -37,6 +39,7 @@ public sealed partial class AtmosphereSystem : SharedAtmosphereSystem [Dependency] private readonly TileSystem _tile = default!; [Dependency] private readonly MapSystem _map = default!; [Dependency] public readonly PuddleSystem Puddle = default!; + [Dependency] private readonly DamageableSystem _damage = default!; private const float ExposedUpdateDelay = 1f; private float _exposedTimer = 0f; diff --git a/Content.Server/Atmos/EntitySystems/DeltaPressureSystem.cs b/Content.Server/Atmos/EntitySystems/DeltaPressureSystem.cs new file mode 100644 index 0000000000..a6cbec0d0c --- /dev/null +++ b/Content.Server/Atmos/EntitySystems/DeltaPressureSystem.cs @@ -0,0 +1,82 @@ +using Content.Server.Atmos.Components; +using Content.Shared.Examine; +using Robust.Shared.Map.Components; + +namespace Content.Server.Atmos.EntitySystems; + +/// +/// System that handles . +/// +/// Entities with a will take damage per atmostick +/// depending on the pressure they experience. +/// +/// DeltaPressure logic is mostly handled in a partial class in Atmospherics. +/// This system handles the adding and removing of entities to a processing list, +/// as well as any field changes via the API. +/// +public sealed class DeltaPressureSystem : EntitySystem +{ + [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; + [Dependency] private readonly SharedMapSystem _map = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnComponentInit); + SubscribeLocalEvent(OnComponentShutdown); + SubscribeLocalEvent(OnExamined); + SubscribeLocalEvent(OnMoveEvent); + + SubscribeLocalEvent(OnGridChanged); + } + + private void OnMoveEvent(Entity ent, ref MoveEvent args) + { + var xform = Transform(ent); + // May move off-grid, so, might as well protect against that. + if (!TryComp(xform.GridUid, out var mapGridComponent)) + { + return; + } + + ent.Comp.CurrentPosition = _map.CoordinatesToTile(xform.GridUid.Value, mapGridComponent, args.NewPosition); + } + + private void OnComponentInit(Entity ent, ref ComponentInit args) + { + var xform = Transform(ent); + if (xform.GridUid == null) + return; + + _atmosphereSystem.TryAddDeltaPressureEntity(xform.GridUid.Value, ent); + } + + private void OnComponentShutdown(Entity ent, ref ComponentShutdown args) + { + // Wasn't part of a list, so nothing to clean up. + if (ent.Comp.GridUid == null) + return; + + _atmosphereSystem.TryRemoveDeltaPressureEntity(ent.Comp.GridUid.Value, ent); + } + + private void OnExamined(Entity ent, ref ExaminedEvent args) + { + if (ent.Comp.IsTakingDamage) + args.PushMarkup(Loc.GetString("window-taking-damage")); + } + + private void OnGridChanged(Entity ent, ref GridUidChangedEvent args) + { + if (args.OldGrid != null) + { + _atmosphereSystem.TryRemoveDeltaPressureEntity(args.OldGrid.Value, ent); + } + + if (args.NewGrid != null) + { + _atmosphereSystem.TryAddDeltaPressureEntity(args.NewGrid.Value, ent); + } + } +} diff --git a/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs b/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs index 4882e93d23..e63a57c3b6 100644 --- a/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs +++ b/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs @@ -1,6 +1,4 @@ -using System.Linq; using System.Runtime.CompilerServices; -using System.Threading.Tasks; using Content.Server.Atmos.Components; using Content.Shared.Atmos; using Content.Shared.Atmos.Components; @@ -13,7 +11,6 @@ using JetBrains.Annotations; using Microsoft.Extensions.ObjectPool; using Robust.Server.Player; using Robust.Shared; -using Robust.Shared.Configuration; using Robust.Shared.Enums; using Robust.Shared.Map; using Robust.Shared.Map.Components; @@ -32,7 +29,6 @@ namespace Content.Server.Atmos.EntitySystems [Robust.Shared.IoC.Dependency] private readonly IGameTiming _gameTiming = default!; [Robust.Shared.IoC.Dependency] private readonly IPlayerManager _playerManager = default!; [Robust.Shared.IoC.Dependency] private readonly IMapManager _mapManager = default!; - [Robust.Shared.IoC.Dependency] private readonly IConfigurationManager _confMan = default!; [Robust.Shared.IoC.Dependency] private readonly IParallelManager _parMan = default!; [Robust.Shared.IoC.Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; [Robust.Shared.IoC.Dependency] private readonly ChunkingSystem _chunkingSys = default!; @@ -64,6 +60,12 @@ namespace Content.Server.Atmos.EntitySystems private EntityQuery _gridQuery; private EntityQuery _query; + /// + /// How much the distortion strength should change for the temperature of a tile to be dirtied. + /// The strength goes from 0.0f to 1.0f, so 0.05f gives it essentially 20 "steps" + /// + private float _heatDistortionStrengthChangeTolerance; + public override void Initialize() { base.Initialize(); @@ -85,9 +87,10 @@ namespace Content.Server.Atmos.EntitySystems }; _playerManager.PlayerStatusChanged += OnPlayerStatusChanged; - Subs.CVar(_confMan, CCVars.NetGasOverlayTickRate, UpdateTickRate, true); - Subs.CVar(_confMan, CCVars.GasOverlayThresholds, UpdateThresholds, true); - Subs.CVar(_confMan, CVars.NetPVS, OnPvsToggle, true); + Subs.CVar(ConfMan, CCVars.NetGasOverlayTickRate, UpdateTickRate, true); + Subs.CVar(ConfMan, CCVars.GasOverlayThresholds, UpdateThresholds, true); + Subs.CVar(ConfMan, CVars.NetPVS, OnPvsToggle, true); + Subs.CVar(ConfMan, CCVars.GasOverlayHeatThreshold, UpdateHeatThresholds, true); SubscribeLocalEvent(Reset); SubscribeLocalEvent(OnStartup); @@ -137,6 +140,7 @@ namespace Content.Server.Atmos.EntitySystems private void UpdateTickRate(float value) => _updateInterval = value > 0.0f ? 1 / value : float.MaxValue; private void UpdateThresholds(int value) => _thresholds = value; + private void UpdateHeatThresholds(float v) => _heatDistortionStrengthChangeTolerance = MathHelper.Clamp01(v); [MethodImpl(MethodImplOptions.AggressiveInlining)] public void Invalidate(Entity grid, Vector2i index) @@ -175,7 +179,9 @@ namespace Content.Server.Atmos.EntitySystems public GasOverlayData GetOverlayData(GasMixture? mixture) { - var data = new GasOverlayData(0, new byte[VisibleGasId.Length]); + var data = new GasOverlayData(0, + new byte[VisibleGasId.Length], + mixture?.Temperature ?? Atmospherics.TCMB); for (var i = 0; i < VisibleGasId.Length; i++) { @@ -215,15 +221,17 @@ namespace Content.Server.Atmos.EntitySystems } var changed = false; + var temp = tile.Hotspot.Valid ? tile.Hotspot.Temperature : tile.Air?.Temperature ?? Atmospherics.TCMB; if (oldData.Equals(default)) { changed = true; - oldData = new GasOverlayData(tile.Hotspot.State, new byte[VisibleGasId.Length]); + oldData = new GasOverlayData(tile.Hotspot.State, new byte[VisibleGasId.Length], temp); } - else if (oldData.FireState != tile.Hotspot.State) + else if (oldData.FireState != tile.Hotspot.State || + CheckTemperatureTolerance(oldData.Temperature, temp, _heatDistortionStrengthChangeTolerance)) { changed = true; - oldData = new GasOverlayData(tile.Hotspot.State, oldData.Opacity); + oldData = new GasOverlayData(tile.Hotspot.State, oldData.Opacity, temp); } if (tile is {Air: not null, NoGridTile: false}) @@ -271,6 +279,20 @@ namespace Content.Server.Atmos.EntitySystems return true; } + /// + /// This function determines whether the change in temperature is significant enough to warrant dirtying the tile data. + /// + private bool CheckTemperatureTolerance(float tempA, float tempB, float tolerance) + { + var (strengthA, strengthB) = (GetHeatDistortionStrength(tempA), GetHeatDistortionStrength(tempB)); + + return (strengthA <= 0f && strengthB > 0f) || // change to or from 0 + (strengthB <= 0f && strengthA > 0f) || + (strengthA >= 1f && strengthB < 1f) || // change to or from 1 + (strengthB >= 1f && strengthA < 1f) || + Math.Abs(strengthA - strengthB) > tolerance; // other change within tolerance + } + private void UpdateOverlayData() { // TODO parallelize? diff --git a/Content.Server/Atmos/Reactions/GasReactionPrototype.cs b/Content.Server/Atmos/Reactions/GasReactionPrototype.cs index 48e32a3b58..dc7ba85dcc 100644 --- a/Content.Server/Atmos/Reactions/GasReactionPrototype.cs +++ b/Content.Server/Atmos/Reactions/GasReactionPrototype.cs @@ -15,7 +15,7 @@ namespace Content.Server.Atmos.Reactions /// /// Minimum gas amount requirements. /// - [DataField("minimumRequirements")] + [DataField("minimumRequirements", customTypeSerializer: typeof(GasArraySerializer))] public float[] MinimumRequirements { get; private set; } = new float[Atmospherics.TotalNumberOfGases]; /// diff --git a/Content.Server/Body/Systems/InternalsSystem.cs b/Content.Server/Body/Systems/InternalsSystem.cs index 77f17b384d..c470ae3f0d 100644 --- a/Content.Server/Body/Systems/InternalsSystem.cs +++ b/Content.Server/Body/Systems/InternalsSystem.cs @@ -61,7 +61,7 @@ public sealed class InternalsSystem : SharedInternalsSystem var gasTank = Comp(ent.Comp.GasTankEntity!.Value); args.Gas = _gasTank.RemoveAirVolume((ent.Comp.GasTankEntity.Value, gasTank), args.Respirator.BreathVolume); // TODO: Should listen to gas tank updates instead I guess? - _alerts.ShowAlert(ent, ent.Comp.InternalsAlert, GetSeverity(ent)); + _alerts.ShowAlert(ent.Owner, ent.Comp.InternalsAlert, GetSeverity(ent)); } } } diff --git a/Content.Server/Body/Systems/RespiratorSystem.cs b/Content.Server/Body/Systems/RespiratorSystem.cs index c327f235de..eab3e2e56c 100644 --- a/Content.Server/Body/Systems/RespiratorSystem.cs +++ b/Content.Server/Body/Systems/RespiratorSystem.cs @@ -390,7 +390,7 @@ public sealed class RespiratorSystem : EntitySystem var organs = _bodySystem.GetBodyOrganEntityComps((ent, null)); foreach (var entity in organs) { - _alertsSystem.ShowAlert(ent, entity.Comp1.Alert); + _alertsSystem.ShowAlert(ent.Owner, entity.Comp1.Alert); } } @@ -400,7 +400,7 @@ public sealed class RespiratorSystem : EntitySystem var organs = _bodySystem.GetBodyOrganEntityComps((ent, null)); foreach (var entity in organs) { - _alertsSystem.ClearAlert(ent, entity.Comp1.Alert); + _alertsSystem.ClearAlert(ent.Owner, entity.Comp1.Alert); } } diff --git a/Content.Server/Botany/Systems/BotanySystem.Seed.cs b/Content.Server/Botany/Systems/BotanySystem.Seed.cs index fd65c141aa..6b26ce7119 100644 --- a/Content.Server/Botany/Systems/BotanySystem.Seed.cs +++ b/Content.Server/Botany/Systems/BotanySystem.Seed.cs @@ -1,5 +1,4 @@ using Content.Server.Botany.Components; -using Content.Server.Kitchen.Components; using Content.Server.Popups; using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Botany; @@ -16,6 +15,7 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; using Content.Shared.Administration.Logs; using Content.Shared.Database; +using Content.Shared.Kitchen.Components; namespace Content.Server.Botany.Systems; diff --git a/Content.Server/Botany/Systems/LogSystem.cs b/Content.Server/Botany/Systems/LogSystem.cs index 3d415635be..08190af708 100644 --- a/Content.Server/Botany/Systems/LogSystem.cs +++ b/Content.Server/Botany/Systems/LogSystem.cs @@ -1,7 +1,7 @@ using Content.Server.Botany.Components; -using Content.Server.Kitchen.Components; using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction; +using Content.Shared.Kitchen.Components; using Content.Shared.Random; using Robust.Shared.Containers; diff --git a/Content.Server/Botany/Systems/PlantHolderSystem.cs b/Content.Server/Botany/Systems/PlantHolderSystem.cs index d8381b2a79..caa796efe2 100644 --- a/Content.Server/Botany/Systems/PlantHolderSystem.cs +++ b/Content.Server/Botany/Systems/PlantHolderSystem.cs @@ -1,8 +1,8 @@ using Content.Server.Atmos.EntitySystems; using Content.Server.Botany.Components; using Content.Server.Hands.Systems; -using Content.Server.Kitchen.Components; using Content.Server.Popups; +using Content.Shared.Administration.Logs; using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Atmos; using Content.Shared.Botany; @@ -26,6 +26,7 @@ using Robust.Shared.Timing; using Content.Shared.Administration.Logs; using Content.Shared.Containers.ItemSlots; using Content.Shared.Database; +using Content.Shared.Kitchen.Components; using Content.Shared.Labels.Components; namespace Content.Server.Botany.Systems; @@ -886,7 +887,7 @@ public sealed class PlantHolderSystem : EntitySystem foreach (var entry in _solutionContainerSystem.RemoveEachReagent(component.SoilSolution.Value, amt)) { var reagentProto = _prototype.Index(entry.Reagent.Prototype); - reagentProto.ReactionPlant(uid, entry, solution); + reagentProto.ReactionPlant(uid, entry, solution, EntityManager, _random, _adminLogger); } } diff --git a/Content.Server/Cargo/Systems/CargoSystem.Telepad.cs b/Content.Server/Cargo/Systems/CargoSystem.Telepad.cs index 9e5c20e8c9..d8ee9c25d0 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Telepad.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Telepad.cs @@ -105,7 +105,7 @@ public sealed partial class CargoSystem } var currentOrder = comp.CurrentOrders.First(); - if (FulfillOrder(currentOrder, console.Value.Comp.Account, xform.Coordinates, comp.PrinterOutput)) + if (FulfillOrder(currentOrder, currentOrder.Account, xform.Coordinates, comp.PrinterOutput)) { _audio.PlayPvs(_audio.ResolveSound(comp.TeleportSound), uid, AudioParams.Default.WithVolume(-8f)); diff --git a/Content.Server/Changeling/Systems/ChangelingIdentitySystem.cs b/Content.Server/Changeling/Systems/ChangelingIdentitySystem.cs new file mode 100644 index 0000000000..8cb3dec3d6 --- /dev/null +++ b/Content.Server/Changeling/Systems/ChangelingIdentitySystem.cs @@ -0,0 +1,5 @@ +using Content.Shared.Changeling.Systems; + +namespace Content.Server.Changeling.Systems; + +public sealed class ChangelingIdentitySystem : SharedChangelingIdentitySystem; diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index 7ff12595d1..2dc001a9c9 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -322,7 +322,7 @@ public sealed partial class ChatSystem : SharedChatSystem _chatManager.ChatMessageToAll(ChatChannel.Radio, message, wrappedMessage, default, false, true, colorOverride); if (playSound) { - _audio.PlayGlobal(announcementSound == null ? DefaultAnnouncementSound : _audio.ResolveSound(announcementSound), Filter.Broadcast(), true, AudioParams.Default.WithVolume(-2f)); + _audio.PlayGlobal(announcementSound ?? DefaultAnnouncementSound, Filter.Broadcast(), true, AudioParams.Default.WithVolume(-2f)); } _adminLogger.Add(LogType.Chat, LogImpact.Low, $"Global station announcement from {sender}: {message}"); } @@ -352,7 +352,7 @@ public sealed partial class ChatSystem : SharedChatSystem _chatManager.ChatMessageToManyFiltered(filter, ChatChannel.Radio, message, wrappedMessage, source ?? default, false, true, colorOverride); if (playSound) { - _audio.PlayGlobal(announcementSound?.ToString() ?? DefaultAnnouncementSound, filter, true, AudioParams.Default.WithVolume(-2f)); + _audio.PlayGlobal(announcementSound ?? DefaultAnnouncementSound, filter, true, AudioParams.Default.WithVolume(-2f)); } _adminLogger.Add(LogType.Chat, LogImpact.Low, $"Station Announcement from {sender}: {message}"); } @@ -392,7 +392,7 @@ public sealed partial class ChatSystem : SharedChatSystem if (playDefaultSound) { - _audio.PlayGlobal(announcementSound?.ToString() ?? DefaultAnnouncementSound, filter, true, AudioParams.Default.WithVolume(-2f)); + _audio.PlayGlobal(announcementSound ?? DefaultAnnouncementSound, filter, true, AudioParams.Default.WithVolume(-2f)); } _adminLogger.Add(LogType.Chat, LogImpact.Low, $"Station Announcement on {station} from {sender}: {message}"); diff --git a/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs b/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs index 7b43e7f092..6088d01c59 100644 --- a/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs @@ -1,414 +1,6 @@ -using Content.Server.Body.Systems; -using Content.Shared.Chemistry; -using Content.Shared.Chemistry.Components; -using Content.Shared.Chemistry.Components.SolutionManager; + using Content.Shared.Chemistry.EntitySystems; -using Content.Shared.Body.Components; -using Content.Shared.Database; -using Content.Shared.DoAfter; -using Content.Shared.FixedPoint; -using Content.Shared.Forensics; -using Content.Shared.IdentityManagement; -using Content.Shared.Interaction; -using Content.Shared.Mobs.Components; -using Content.Shared.Stacks; -using Content.Shared.Nutrition.EntitySystems; namespace Content.Server.Chemistry.EntitySystems; -public sealed class InjectorSystem : SharedInjectorSystem -{ - [Dependency] private readonly BloodstreamSystem _blood = default!; - [Dependency] private readonly ReactiveSystem _reactiveSystem = default!; - [Dependency] private readonly OpenableSystem _openable = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnInjectDoAfter); - SubscribeLocalEvent(OnInjectorAfterInteract); - } - - private bool TryUseInjector(Entity injector, EntityUid target, EntityUid user) - { - var isOpenOrIgnored = injector.Comp.IgnoreClosed || !_openable.IsClosed(target); - // Handle injecting/drawing for solutions - if (injector.Comp.ToggleState == InjectorToggleMode.Inject) - { - if (isOpenOrIgnored && SolutionContainers.TryGetInjectableSolution(target, out var injectableSolution, out _)) - return TryInject(injector, target, injectableSolution.Value, user, false); - - if (isOpenOrIgnored && SolutionContainers.TryGetRefillableSolution(target, out var refillableSolution, out _)) - return TryInject(injector, target, refillableSolution.Value, user, true); - - if (TryComp(target, out var bloodstream)) - return TryInjectIntoBloodstream(injector, (target, bloodstream), user); - - Popup.PopupEntity(Loc.GetString("injector-component-cannot-transfer-message", - ("target", Identity.Entity(target, EntityManager))), injector, user); - return false; - } - - if (injector.Comp.ToggleState == InjectorToggleMode.Draw) - { - // Draw from a bloodstream, if the target has that - if (TryComp(target, out var stream) && - SolutionContainers.ResolveSolution(target, stream.BloodSolutionName, ref stream.BloodSolution)) - { - return TryDraw(injector, (target, stream), stream.BloodSolution.Value, user); - } - - // Draw from an object (food, beaker, etc) - if (isOpenOrIgnored && SolutionContainers.TryGetDrawableSolution(target, out var drawableSolution, out _)) - return TryDraw(injector, target, drawableSolution.Value, user); - - Popup.PopupEntity(Loc.GetString("injector-component-cannot-draw-message", - ("target", Identity.Entity(target, EntityManager))), injector.Owner, user); - return false; - } - return false; - } - - private void OnInjectDoAfter(Entity entity, ref InjectorDoAfterEvent args) - { - if (args.Cancelled || args.Handled || args.Args.Target == null) - return; - - args.Handled = TryUseInjector(entity, args.Args.Target.Value, args.Args.User); - } - - private void OnInjectorAfterInteract(Entity entity, ref AfterInteractEvent args) - { - if (args.Handled || !args.CanReach) - return; - - //Make sure we have the attacking entity - if (args.Target is not { Valid: true } target || !HasComp(entity)) - return; - - // Is the target a mob? If yes, use a do-after to give them time to respond. - if (HasComp(target) || HasComp(target)) - { - // Are use using an injector capable of targeting a mob? - if (entity.Comp.IgnoreMobs) - return; - - InjectDoAfter(entity, target, args.User); - args.Handled = true; - return; - } - - args.Handled = TryUseInjector(entity, target, args.User); - } - - /// - /// Send informative pop-up messages and wait for a do-after to complete. - /// - private void InjectDoAfter(Entity injector, EntityUid target, EntityUid user) - { - // Create a pop-up for the user - if (injector.Comp.ToggleState == InjectorToggleMode.Draw) - { - Popup.PopupEntity(Loc.GetString("injector-component-drawing-user"), target, user); - } - else - { - Popup.PopupEntity(Loc.GetString("injector-component-injecting-user"), target, user); - } - - if (!SolutionContainers.TryGetSolution(injector.Owner, injector.Comp.SolutionName, out _, out var solution)) - return; - - var actualDelay = injector.Comp.Delay; - FixedPoint2 amountToInject; - if (injector.Comp.ToggleState == InjectorToggleMode.Draw) - { - // additional delay is based on actual volume left to draw in syringe when smaller than transfer amount - amountToInject = FixedPoint2.Min(injector.Comp.TransferAmount, (solution.MaxVolume - solution.Volume)); - } - else - { - // additional delay is based on actual volume left to inject in syringe when smaller than transfer amount - amountToInject = FixedPoint2.Min(injector.Comp.TransferAmount, solution.Volume); - } - - // Injections take 0.5 seconds longer per 5u of possible space/content - // First 5u(MinimumTransferAmount) doesn't incur delay - actualDelay += injector.Comp.DelayPerVolume * FixedPoint2.Max(0, amountToInject - injector.Comp.MinimumTransferAmount).Double(); - - // Ensure that minimum delay before incapacitation checks is 1 seconds - actualDelay = MathHelper.Max(actualDelay, TimeSpan.FromSeconds(1)); - - - var isTarget = user != target; - - if (isTarget) - { - // Create a pop-up for the target - var userName = Identity.Entity(user, EntityManager); - if (injector.Comp.ToggleState == InjectorToggleMode.Draw) - { - Popup.PopupEntity(Loc.GetString("injector-component-drawing-target", - ("user", userName)), user, target); - } - else - { - Popup.PopupEntity(Loc.GetString("injector-component-injecting-target", - ("user", userName)), user, target); - } - - - // Check if the target is incapacitated or in combat mode and modify time accordingly. - if (MobState.IsIncapacitated(target)) - { - actualDelay /= 2.5f; - } - else if (Combat.IsInCombatMode(target)) - { - // Slightly increase the delay when the target is in combat mode. Helps prevents cheese injections in - // combat with fast syringes & lag. - actualDelay += TimeSpan.FromSeconds(1); - } - - // Add an admin log, using the "force feed" log type. It's not quite feeding, but the effect is the same. - if (injector.Comp.ToggleState == InjectorToggleMode.Inject) - { - AdminLogger.Add(LogType.ForceFeed, - $"{ToPrettyString(user):user} is attempting to inject {ToPrettyString(target):target} with a solution {SharedSolutionContainerSystem.ToPrettyString(solution):solution}"); - } - else - { - AdminLogger.Add(LogType.ForceFeed, - $"{ToPrettyString(user):user} is attempting to draw {injector.Comp.TransferAmount.ToString()} units from {ToPrettyString(target):target}"); - } - } - else - { - // Self-injections take half as long. - actualDelay /= 2; - - if (injector.Comp.ToggleState == InjectorToggleMode.Inject) - { - AdminLogger.Add(LogType.Ingestion, - $"{ToPrettyString(user):user} is attempting to inject themselves with a solution {SharedSolutionContainerSystem.ToPrettyString(solution):solution}."); - } - else - { - AdminLogger.Add(LogType.ForceFeed, - $"{ToPrettyString(user):user} is attempting to draw {injector.Comp.TransferAmount.ToString()} units from themselves."); - } - } - - DoAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, user, actualDelay, new InjectorDoAfterEvent(), injector.Owner, target: target, used: injector.Owner) - { - BreakOnMove = true, - BreakOnWeightlessMove = false, - BreakOnDamage = true, - NeedHand = injector.Comp.NeedHand, - BreakOnHandChange = injector.Comp.BreakOnHandChange, - MovementThreshold = injector.Comp.MovementThreshold, - }); - } - - private bool TryInjectIntoBloodstream(Entity injector, Entity target, - EntityUid user) - { - // Get transfer amount. May be smaller than _transferAmount if not enough room - if (!SolutionContainers.ResolveSolution(target.Owner, target.Comp.ChemicalSolutionName, - ref target.Comp.ChemicalSolution, out var chemSolution)) - { - Popup.PopupEntity( - Loc.GetString("injector-component-cannot-inject-message", - ("target", Identity.Entity(target, EntityManager))), injector.Owner, user); - return false; - } - - var realTransferAmount = FixedPoint2.Min(injector.Comp.TransferAmount, chemSolution.AvailableVolume); - if (realTransferAmount <= 0) - { - Popup.PopupEntity( - Loc.GetString("injector-component-cannot-inject-message", - ("target", Identity.Entity(target, EntityManager))), injector.Owner, user); - return false; - } - - // Move units from attackSolution to targetSolution - var removedSolution = SolutionContainers.SplitSolution(target.Comp.ChemicalSolution.Value, realTransferAmount); - - _blood.TryAddToChemicals(target.AsNullable(), removedSolution); - - _reactiveSystem.DoEntityReaction(target, removedSolution, ReactionMethod.Injection); - - Popup.PopupEntity(Loc.GetString("injector-component-inject-success-message", - ("amount", removedSolution.Volume), - ("target", Identity.Entity(target, EntityManager))), injector.Owner, user); - - Dirty(injector); - AfterInject(injector, target); - return true; - } - - private bool TryInject(Entity injector, EntityUid targetEntity, - Entity targetSolution, EntityUid user, bool asRefill) - { - if (!SolutionContainers.TryGetSolution(injector.Owner, injector.Comp.SolutionName, out var soln, - out var solution) || solution.Volume == 0) - return false; - - // Get transfer amount. May be smaller than _transferAmount if not enough room - var realTransferAmount = - FixedPoint2.Min(injector.Comp.TransferAmount, targetSolution.Comp.Solution.AvailableVolume); - - if (realTransferAmount <= 0) - { - Popup.PopupEntity( - Loc.GetString("injector-component-target-already-full-message", - ("target", Identity.Entity(targetEntity, EntityManager))), - injector.Owner, user); - return false; - } - - // Move units from attackSolution to targetSolution - Solution removedSolution; - if (TryComp(targetEntity, out var stack)) - removedSolution = SolutionContainers.SplitStackSolution(soln.Value, realTransferAmount, stack.Count); - else - removedSolution = SolutionContainers.SplitSolution(soln.Value, realTransferAmount); - - _reactiveSystem.DoEntityReaction(targetEntity, removedSolution, ReactionMethod.Injection); - - if (!asRefill) - SolutionContainers.Inject(targetEntity, targetSolution, removedSolution); - else - SolutionContainers.Refill(targetEntity, targetSolution, removedSolution); - - Popup.PopupEntity(Loc.GetString("injector-component-transfer-success-message", - ("amount", removedSolution.Volume), - ("target", Identity.Entity(targetEntity, EntityManager))), injector.Owner, user); - - Dirty(injector); - AfterInject(injector, targetEntity); - return true; - } - - private void AfterInject(Entity injector, EntityUid target) - { - // Automatically set syringe to draw after completely draining it. - if (SolutionContainers.TryGetSolution(injector.Owner, injector.Comp.SolutionName, out _, - out var solution) && solution.Volume == 0) - { - SetMode(injector, InjectorToggleMode.Draw); - } - - // Leave some DNA from the injectee on it - var ev = new TransferDnaEvent { Donor = target, Recipient = injector }; - RaiseLocalEvent(target, ref ev); - } - - private void AfterDraw(Entity injector, EntityUid target) - { - // Automatically set syringe to inject after completely filling it. - if (SolutionContainers.TryGetSolution(injector.Owner, injector.Comp.SolutionName, out _, - out var solution) && solution.AvailableVolume == 0) - { - SetMode(injector, InjectorToggleMode.Inject); - } - - // Leave some DNA from the drawee on it - var ev = new TransferDnaEvent { Donor = target, Recipient = injector }; - RaiseLocalEvent(target, ref ev); - } - - private bool TryDraw(Entity injector, Entity target, - Entity targetSolution, EntityUid user) - { - if (!SolutionContainers.TryGetSolution(injector.Owner, injector.Comp.SolutionName, out var soln, - out var solution) || solution.AvailableVolume == 0) - { - return false; - } - - var applicableTargetSolution = targetSolution.Comp.Solution; - // If a whitelist exists, remove all non-whitelisted reagents from the target solution temporarily - var temporarilyRemovedSolution = new Solution(); - if (injector.Comp.ReagentWhitelist is { } reagentWhitelist) - { - string[] reagentPrototypeWhitelistArray = new string[reagentWhitelist.Count]; - var i = 0; - foreach (var reagent in reagentWhitelist) - { - reagentPrototypeWhitelistArray[i] = reagent; - ++i; - } - temporarilyRemovedSolution = applicableTargetSolution.SplitSolutionWithout(applicableTargetSolution.Volume, reagentPrototypeWhitelistArray); - } - - // Get transfer amount. May be smaller than _transferAmount if not enough room, also make sure there's room in the injector - var realTransferAmount = FixedPoint2.Min(injector.Comp.TransferAmount, applicableTargetSolution.Volume, - solution.AvailableVolume); - - if (realTransferAmount <= 0) - { - Popup.PopupEntity( - Loc.GetString("injector-component-target-is-empty-message", - ("target", Identity.Entity(target, EntityManager))), - injector.Owner, user); - return false; - } - - // We have some snowflaked behavior for streams. - if (target.Comp != null) - { - DrawFromBlood(injector, (target.Owner, target.Comp), soln.Value, realTransferAmount, user); - return true; - } - - // Move units from attackSolution to targetSolution - var removedSolution = SolutionContainers.Draw(target.Owner, targetSolution, realTransferAmount); - - // Add back non-whitelisted reagents to the target solution - SolutionContainers.TryAddSolution(targetSolution, temporarilyRemovedSolution); - - if (!SolutionContainers.TryAddSolution(soln.Value, removedSolution)) - { - return false; - } - - Popup.PopupEntity(Loc.GetString("injector-component-draw-success-message", - ("amount", removedSolution.Volume), - ("target", Identity.Entity(target, EntityManager))), injector.Owner, user); - - Dirty(injector); - AfterDraw(injector, target); - return true; - } - - private void DrawFromBlood(Entity injector, Entity target, - Entity injectorSolution, FixedPoint2 transferAmount, EntityUid user) - { - var drawAmount = (float) transferAmount; - - if (SolutionContainers.ResolveSolution(target.Owner, target.Comp.ChemicalSolutionName, - ref target.Comp.ChemicalSolution)) - { - var chemTemp = SolutionContainers.SplitSolution(target.Comp.ChemicalSolution.Value, drawAmount * 0.15f); - SolutionContainers.TryAddSolution(injectorSolution, chemTemp); - drawAmount -= (float) chemTemp.Volume; - } - - if (SolutionContainers.ResolveSolution(target.Owner, target.Comp.BloodSolutionName, - ref target.Comp.BloodSolution)) - { - var bloodTemp = SolutionContainers.SplitSolution(target.Comp.BloodSolution.Value, drawAmount); - SolutionContainers.TryAddSolution(injectorSolution, bloodTemp); - } - - Popup.PopupEntity(Loc.GetString("injector-component-draw-success-message", - ("amount", transferAmount), - ("target", Identity.Entity(target, EntityManager))), injector.Owner, user); - - Dirty(injector); - AfterDraw(injector, target); - } -} +public sealed class InjectorSystem : SharedInjectorSystem; diff --git a/Content.Server/Construction/Conditions/StorageWelded.cs b/Content.Server/Construction/Conditions/StorageWelded.cs index ba0927ffa3..fea18e4392 100644 --- a/Content.Server/Construction/Conditions/StorageWelded.cs +++ b/Content.Server/Construction/Conditions/StorageWelded.cs @@ -1,6 +1,6 @@ -using Content.Server.Storage.Components; using Content.Shared.Construction; using Content.Shared.Examine; +using Content.Shared.Storage.Components; using Content.Shared.Tools.Systems; using JetBrains.Annotations; diff --git a/Content.Server/Construction/ConstructionSystem.Interactions.cs b/Content.Server/Construction/ConstructionSystem.Interactions.cs index 74c856a6f1..3dd5a5b794 100644 --- a/Content.Server/Construction/ConstructionSystem.Interactions.cs +++ b/Content.Server/Construction/ConstructionSystem.Interactions.cs @@ -276,8 +276,8 @@ namespace Content.Server.Construction if(!insertStep.EntityValid(insert, EntityManager, Factory)) return HandleResult.False; - // Unremovable items can't be inserted, unless they are a lingering stack - if(HasComp(insert) && (!TryComp(insert, out var comp) || !comp.Lingering)) + // Unremovable items can't be inserted + if(HasComp(insert)) return HandleResult.False; // If we're only testing whether this step would be handled by the given event, then we're done. @@ -570,6 +570,10 @@ namespace Content.Server.Construction handled.Handled = true; } + // Make sure the event passes validation before enqueuing it + if (HandleEvent(uid, args, true, construction) != HandleResult.Validated) + return; + // Enqueue this event so it'll be handled in the next tick. // This prevents some issues that could occur from entity deletion, component deletion, etc in a handler. construction.InteractionQueue.Enqueue(args); diff --git a/Content.Server/Destructible/Thresholds/Behaviors/PopupBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/PopupBehavior.cs index 1d7ce24f60..0bca5451c4 100644 --- a/Content.Server/Destructible/Thresholds/Behaviors/PopupBehavior.cs +++ b/Content.Server/Destructible/Thresholds/Behaviors/PopupBehavior.cs @@ -20,11 +20,21 @@ public sealed partial class PopupBehavior : IThresholdBehavior [DataField("popupType")] public PopupType PopupType; + /// + /// Only the affected entity will see the popup. + /// + [DataField] + public bool TargetOnly; + public void Execute(EntityUid uid, DestructibleSystem system, EntityUid? cause = null) { var popup = system.EntityManager.System(); // popup is placed at coords since the entity could be deleted after, no more popup then var coords = system.EntityManager.GetComponent(uid).Coordinates; - popup.PopupCoordinates(Loc.GetString(Popup), coords, PopupType); + + if (TargetOnly) + popup.PopupCoordinates(Loc.GetString(Popup), coords, uid, PopupType); + else + popup.PopupCoordinates(Loc.GetString(Popup), coords, PopupType); } } diff --git a/Content.Server/Destructible/Thresholds/Behaviors/VomitBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/VomitBehavior.cs new file mode 100644 index 0000000000..067e7d4565 --- /dev/null +++ b/Content.Server/Destructible/Thresholds/Behaviors/VomitBehavior.cs @@ -0,0 +1,12 @@ +using Content.Server.Medical; + +namespace Content.Server.Destructible.Thresholds.Behaviors; + +[DataDefinition] +public sealed partial class VomitBehavior : IThresholdBehavior +{ + public void Execute(EntityUid uid, DestructibleSystem system, EntityUid? cause = null) + { + system.EntityManager.System().Vomit(uid); + } +} diff --git a/Content.Server/Electrocution/ElectrocutionSystem.cs b/Content.Server/Electrocution/ElectrocutionSystem.cs index 05dfffa4a9..a162b29e19 100644 --- a/Content.Server/Electrocution/ElectrocutionSystem.cs +++ b/Content.Server/Electrocution/ElectrocutionSystem.cs @@ -1,5 +1,4 @@ using Content.Server.Administration.Logs; -using Content.Server.Light.Components; using Content.Server.NodeContainer; using Content.Server.NodeContainer.EntitySystems; using Content.Server.NodeContainer.NodeGroups; @@ -16,6 +15,7 @@ using Content.Shared.IdentityManagement; using Content.Shared.Interaction; using Content.Shared.Inventory; using Content.Shared.Jittering; +using Content.Shared.Light.Components; using Content.Shared.Maps; using Content.Shared.NodeContainer; using Content.Shared.NodeContainer.NodeGroups; @@ -418,7 +418,7 @@ public sealed class ElectrocutionSystem : SharedElectrocutionSystem } } - _stuttering.DoStutter(uid, time * StutteringTimeMultiplier, refresh, statusEffects); + _stuttering.DoStutter(uid, time * StutteringTimeMultiplier, refresh); _jittering.DoJitter(uid, time * JitterTimeMultiplier, refresh, JitterAmplitude, JitterFrequency, true, statusEffects); _popup.PopupEntity(Loc.GetString("electrocuted-component-mob-shocked-popup-player"), uid, uid); diff --git a/Content.Server/EntityEffects/EntityEffectSystem.cs b/Content.Server/EntityEffects/EntityEffectSystem.cs index 1277c8df59..f423a43261 100644 --- a/Content.Server/EntityEffects/EntityEffectSystem.cs +++ b/Content.Server/EntityEffects/EntityEffectSystem.cs @@ -1,6 +1,5 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; -using Content.Server.Atmos.Components; using Content.Server.Atmos.EntitySystems; using Content.Server.Body.Components; using Content.Server.Body.Systems; @@ -22,6 +21,7 @@ using Content.Server.Temperature.Systems; using Content.Server.Traits.Assorted; using Content.Server.Zombies; using Content.Shared.Atmos; +using Content.Shared.Atmos.Components; using Content.Shared.Body.Components; using Content.Shared.Coordinates.Helpers; using Content.Shared.EntityEffects.EffectConditions; @@ -889,7 +889,7 @@ public sealed class EntityEffectSystem : EntitySystem if (plantholder.Seed == null) return; - var gasses = plantholder.Seed.ExudeGasses; + var gasses = plantholder.Seed.ConsumeGasses; // Add a random amount of a random gas to this gas dictionary float amount = _random.NextFloat(args.Effect.MinValue, args.Effect.MaxValue); @@ -911,7 +911,7 @@ public sealed class EntityEffectSystem : EntitySystem if (plantholder.Seed == null) return; - var gasses = plantholder.Seed.ConsumeGasses; + var gasses = plantholder.Seed.ExudeGasses; // Add a random amount of a random gas to this gas dictionary float amount = _random.NextFloat(args.Effect.MinValue, args.Effect.MaxValue); diff --git a/Content.Server/Entry/IgnoredComponents.cs b/Content.Server/Entry/IgnoredComponents.cs index 58264e14ad..a34842c64f 100644 --- a/Content.Server/Entry/IgnoredComponents.cs +++ b/Content.Server/Entry/IgnoredComponents.cs @@ -20,6 +20,7 @@ namespace Content.Server.Entry "LightFade", "HolidayRsiSwap", "OptionsVisualizer", + "AnomalyScannerScreen", "MultipartMachineGhost" }; } diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs index c50b1e53fa..fc31a77041 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs @@ -4,6 +4,7 @@ using Content.Server.Administration.Logs; using Content.Server.Atmos.Components; using Content.Server.NodeContainer.EntitySystems; using Content.Server.NPC.Pathfinding; +using Content.Shared.Atmos.Components; using Content.Shared.Camera; using Content.Shared.CCVar; using Content.Shared.Damage; diff --git a/Content.Server/Fluids/EntitySystems/SpraySystem.cs b/Content.Server/Fluids/EntitySystems/SpraySystem.cs index d8da0cde3d..2a6b0644be 100644 --- a/Content.Server/Fluids/EntitySystems/SpraySystem.cs +++ b/Content.Server/Fluids/EntitySystems/SpraySystem.cs @@ -166,7 +166,7 @@ public sealed class SpraySystem : EntitySystem if (TryComp(user, out var body)) { - if (_gravity.IsWeightless(user, body)) + if (_gravity.IsWeightless(user)) { // push back the player _physics.ApplyLinearImpulse(user, -impulseDirection * entity.Comp.PushbackAmount, body: body); diff --git a/Content.Server/Forensics/Systems/ForensicScannerSystem.cs b/Content.Server/Forensics/Systems/ForensicScannerSystem.cs index 87c19c688d..b75c0ae32a 100644 --- a/Content.Server/Forensics/Systems/ForensicScannerSystem.cs +++ b/Content.Server/Forensics/Systems/ForensicScannerSystem.cs @@ -125,7 +125,9 @@ namespace Content.Server.Forensics Act = () => StartScan(uid, component, args.User, args.Target), IconEntity = GetNetEntity(uid), Text = Loc.GetString("forensic-scanner-verb-text"), - Message = Loc.GetString("forensic-scanner-verb-message") + Message = Loc.GetString("forensic-scanner-verb-message"), + // This is important because if its true using the scanner will count as touching the object. + DoContactInteraction = false }; args.Verbs.Add(verb); diff --git a/Content.Server/Forensics/Systems/ForensicsSystem.cs b/Content.Server/Forensics/Systems/ForensicsSystem.cs index cc74c1d141..8370014ad6 100644 --- a/Content.Server/Forensics/Systems/ForensicsSystem.cs +++ b/Content.Server/Forensics/Systems/ForensicsSystem.cs @@ -307,6 +307,8 @@ namespace Content.Server.Forensics component.Fingerprints.Add(fingerprint.Fingerprint ?? ""); } + // TODO: Delete this. A lot of systems are manually raising this method event instead of calling the identical method. + // According to our code conventions we should not use method events. private void OnTransferDnaEvent(EntityUid uid, DnaComponent component, ref TransferDnaEvent args) { if (component.DNA == null) @@ -339,13 +341,7 @@ namespace Content.Server.Forensics Dirty(ent); } - /// - /// Transfer DNA from one entity onto the forensics of another - /// - /// The entity receiving the DNA - /// The entity applying its DNA - /// If this DNA be cleaned off of the recipient. e.g. cleaning a knife vs cleaning a puddle of blood - public void TransferDna(EntityUid recipient, EntityUid donor, bool canDnaBeCleaned = true) + public override void TransferDna(EntityUid recipient, EntityUid donor, bool canDnaBeCleaned = true) { if (TryComp(donor, out var donorComp) && donorComp.DNA != null) { diff --git a/Content.Server/GameTicking/Commands/DelayStartCommand.cs b/Content.Server/GameTicking/Commands/DelayStartCommand.cs index 6e101d93a3..7c7eb9c7f1 100644 --- a/Content.Server/GameTicking/Commands/DelayStartCommand.cs +++ b/Content.Server/GameTicking/Commands/DelayStartCommand.cs @@ -2,50 +2,44 @@ using Content.Shared.Administration; using Robust.Shared.Console; -namespace Content.Server.GameTicking.Commands +namespace Content.Server.GameTicking.Commands; + +[AdminCommand(AdminFlags.Round)] +public sealed class DelayStartCommand : LocalizedEntityCommands { - [AdminCommand(AdminFlags.Round)] - sealed class DelayStartCommand : IConsoleCommand + [Dependency] private readonly GameTicker _gameTicker = default!; + + public override string Command => "delaystart"; + + public override void Execute(IConsoleShell shell, string argStr, string[] args) { - [Dependency] private readonly IEntityManager _e = default!; - - public string Command => "delaystart"; - public string Description => "Delays the round start."; - public string Help => $"Usage: {Command} \nPauses/Resumes the countdown if no argument is provided."; - - public void Execute(IConsoleShell shell, string argStr, string[] args) + if (_gameTicker.RunLevel != GameRunLevel.PreRoundLobby) { - var ticker = _e.System(); - if (ticker.RunLevel != GameRunLevel.PreRoundLobby) - { - shell.WriteLine("This can only be executed while the game is in the pre-round lobby."); - return; - } - - if (args.Length == 0) - { - var paused = ticker.TogglePause(); - shell.WriteLine(paused ? "Paused the countdown." : "Resumed the countdown."); - return; - } - - if (args.Length != 1) - { - shell.WriteLine("Need zero or one arguments."); - return; - } - - if (!uint.TryParse(args[0], out var seconds) || seconds == 0) - { - shell.WriteLine($"{args[0]} isn't a valid amount of seconds."); - return; - } - - var time = TimeSpan.FromSeconds(seconds); - if (!ticker.DelayStart(time)) - { - shell.WriteLine("An unknown error has occurred."); - } + shell.WriteLine(Loc.GetString("shell-can-only-run-from-pre-round-lobby")); + return; } + + switch (args.Length) + { + case 0: + var paused = _gameTicker.TogglePause(); + shell.WriteLine(Loc.GetString(paused ? "cmd-delaystart-paused" : "cmd-delaystart-unpaused")); + return; + case 1: + break; + default: + shell.WriteError(Loc.GetString("shell-wrong-arguments-number")); + return; + } + + if (!uint.TryParse(args[0], out var seconds) || seconds == 0) + { + shell.WriteLine(Loc.GetString("cmd-delaystart-invalid-seconds", ("value", args[0]))); + return; + } + + var time = TimeSpan.FromSeconds(seconds); + if (!_gameTicker.DelayStart(time)) + shell.WriteLine(Loc.GetString("cmd-delaystart-too-late")); } } diff --git a/Content.Server/GameTicking/Commands/DynamicRuleCommand.cs b/Content.Server/GameTicking/Commands/DynamicRuleCommand.cs new file mode 100644 index 0000000000..798e7d0d3a --- /dev/null +++ b/Content.Server/GameTicking/Commands/DynamicRuleCommand.cs @@ -0,0 +1,103 @@ +using System.Linq; +using Content.Server.Administration; +using Content.Server.GameTicking.Rules; +using Content.Shared.Administration; +using Robust.Shared.Prototypes; +using Robust.Shared.Toolshed; + +namespace Content.Server.GameTicking.Commands; + +[ToolshedCommand, AdminCommand(AdminFlags.Round)] +public sealed class DynamicRuleCommand : ToolshedCommand +{ + private DynamicRuleSystem? _dynamicRuleSystem; + + [CommandImplementation("list")] + public IEnumerable List() + { + _dynamicRuleSystem ??= GetSys(); + + return _dynamicRuleSystem.GetDynamicRules(); + } + + [CommandImplementation("get")] + public EntityUid Get() + { + _dynamicRuleSystem ??= GetSys(); + + return _dynamicRuleSystem.GetDynamicRules().FirstOrDefault(); + } + + [CommandImplementation("budget")] + public IEnumerable Budget([PipedArgument] IEnumerable input) + => input.Select(Budget); + + [CommandImplementation("budget")] + public float? Budget([PipedArgument] EntityUid input) + { + _dynamicRuleSystem ??= GetSys(); + + return _dynamicRuleSystem.GetRuleBudget(input); + } + + [CommandImplementation("adjust")] + public IEnumerable Adjust([PipedArgument] IEnumerable input, float value) + => input.Select(i => Adjust(i,value)); + + [CommandImplementation("adjust")] + public float? Adjust([PipedArgument] EntityUid input, float value) + { + _dynamicRuleSystem ??= GetSys(); + + return _dynamicRuleSystem.AdjustBudget(input, value); + } + + [CommandImplementation("set")] + public IEnumerable Set([PipedArgument] IEnumerable input, float value) + => input.Select(i => Set(i,value)); + + [CommandImplementation("set")] + public float? Set([PipedArgument] EntityUid input, float value) + { + _dynamicRuleSystem ??= GetSys(); + + return _dynamicRuleSystem.SetBudget(input, value); + } + + [CommandImplementation("dryrun")] + public IEnumerable> DryRun([PipedArgument] IEnumerable input) + => input.Select(DryRun); + + [CommandImplementation("dryrun")] + public IEnumerable DryRun([PipedArgument] EntityUid input) + { + _dynamicRuleSystem ??= GetSys(); + + return _dynamicRuleSystem.DryRun(input); + } + + [CommandImplementation("executenow")] + public IEnumerable> ExecuteNow([PipedArgument] IEnumerable input) + => input.Select(ExecuteNow); + + [CommandImplementation("executenow")] + public IEnumerable ExecuteNow([PipedArgument] EntityUid input) + { + _dynamicRuleSystem ??= GetSys(); + + return _dynamicRuleSystem.ExecuteNow(input); + } + + [CommandImplementation("rules")] + public IEnumerable> Rules([PipedArgument] IEnumerable input) + => input.Select(Rules); + + [CommandImplementation("rules")] + public IEnumerable Rules([PipedArgument] EntityUid input) + { + _dynamicRuleSystem ??= GetSys(); + + return _dynamicRuleSystem.Rules(input); + } +} + diff --git a/Content.Server/GameTicking/Commands/EndRoundCommand.cs b/Content.Server/GameTicking/Commands/EndRoundCommand.cs index c6a8ddbf53..2f8ca54144 100644 --- a/Content.Server/GameTicking/Commands/EndRoundCommand.cs +++ b/Content.Server/GameTicking/Commands/EndRoundCommand.cs @@ -2,28 +2,23 @@ using Content.Shared.Administration; using Robust.Shared.Console; -namespace Content.Server.GameTicking.Commands +namespace Content.Server.GameTicking.Commands; + +[AdminCommand(AdminFlags.Round)] +public sealed class EndRoundCommand : LocalizedEntityCommands { - [AdminCommand(AdminFlags.Round)] - sealed class EndRoundCommand : IConsoleCommand + [Dependency] private readonly GameTicker _gameTicker = default!; + + public override string Command => "endround"; + + public override void Execute(IConsoleShell shell, string argStr, string[] args) { - [Dependency] private readonly IEntityManager _e = default!; - - public string Command => "endround"; - public string Description => "Ends the round and moves the server to PostRound."; - public string Help => String.Empty; - - public void Execute(IConsoleShell shell, string argStr, string[] args) + if (_gameTicker.RunLevel != GameRunLevel.InRound) { - var ticker = _e.System(); - - if (ticker.RunLevel != GameRunLevel.InRound) - { - shell.WriteLine("This can only be executed while the game is in a round."); - return; - } - - ticker.EndRound(); + shell.WriteLine(Loc.GetString("shell-can-only-run-while-round-is-active")); + return; } + + _gameTicker.EndRound(); } } diff --git a/Content.Server/GameTicking/Commands/RestartRoundCommand.cs b/Content.Server/GameTicking/Commands/RestartRoundCommand.cs index e4ea3fa53c..6811df4e2e 100644 --- a/Content.Server/GameTicking/Commands/RestartRoundCommand.cs +++ b/Content.Server/GameTicking/Commands/RestartRoundCommand.cs @@ -3,43 +3,37 @@ using Content.Server.RoundEnd; using Content.Shared.Administration; using Robust.Shared.Console; -namespace Content.Server.GameTicking.Commands +namespace Content.Server.GameTicking.Commands; + +[AdminCommand(AdminFlags.Round)] +public sealed class RestartRoundCommand : LocalizedEntityCommands { - [AdminCommand(AdminFlags.Round)] - public sealed class RestartRoundCommand : IConsoleCommand + [Dependency] private readonly GameTicker _gameTicker = default!; + [Dependency] private readonly RoundEndSystem _roundEndSystem = default!; + + public override string Command => "restartround"; + + public override void Execute(IConsoleShell shell, string argStr, string[] args) { - [Dependency] private readonly IEntityManager _e = default!; - - public string Command => "restartround"; - public string Description => "Ends the current round and starts the countdown for the next lobby."; - public string Help => string.Empty; - - public void Execute(IConsoleShell shell, string argStr, string[] args) + if (_gameTicker.RunLevel != GameRunLevel.InRound) { - var ticker = _e.System(); - - if (ticker.RunLevel != GameRunLevel.InRound) - { - shell.WriteLine("This can only be executed while the game is in a round - try restartroundnow"); - return; - } - - _e.System().EndRound(); + shell.WriteLine(Loc.GetString("shell-can-only-run-while-round-is-active")); + return; } - } - [AdminCommand(AdminFlags.Round)] - public sealed class RestartRoundNowCommand : IConsoleCommand - { - [Dependency] private readonly IEntityManager _e = default!; - - public string Command => "restartroundnow"; - public string Description => "Moves the server from PostRound to a new PreRoundLobby."; - public string Help => String.Empty; - - public void Execute(IConsoleShell shell, string argStr, string[] args) - { - _e.System().RestartRound(); - } + _roundEndSystem.EndRound(); + } +} + +[AdminCommand(AdminFlags.Round)] +public sealed class RestartRoundNowCommand : LocalizedEntityCommands +{ + [Dependency] private readonly GameTicker _gameTicker = default!; + + public override string Command => "restartroundnow"; + + public override void Execute(IConsoleShell shell, string argStr, string[] args) + { + _gameTicker.RestartRound(); } } diff --git a/Content.Server/GameTicking/Commands/SetGamePresetCommand.cs b/Content.Server/GameTicking/Commands/SetGamePresetCommand.cs index 78e2b452b7..6114a4ca0d 100644 --- a/Content.Server/GameTicking/Commands/SetGamePresetCommand.cs +++ b/Content.Server/GameTicking/Commands/SetGamePresetCommand.cs @@ -20,9 +20,9 @@ namespace Content.Server.GameTicking.Commands public void Execute(IConsoleShell shell, string argStr, string[] args) { - if (!args.Length.InRange(1, 2)) + if (!args.Length.InRange(1, 3)) { - shell.WriteError(Loc.GetString("shell-need-between-arguments", ("lower", 1), ("upper", 2), ("currentAmount", args.Length))); + shell.WriteError(Loc.GetString("shell-need-between-arguments", ("lower", 1), ("upper", 3), ("currentAmount", args.Length))); return; } @@ -36,32 +36,39 @@ namespace Content.Server.GameTicking.Commands var rounds = 1; - if (args.Length == 2 && !int.TryParse(args[1], out rounds)) + if (args.Length >= 2 && !int.TryParse(args[1], out rounds)) { shell.WriteError(Loc.GetString("set-game-preset-optional-argument-not-integer")); return; } - ticker.SetGamePreset(preset, false, rounds); - shell.WriteLine(Loc.GetString("set-game-preset-preset-set-finite", ("preset", preset.ID), ("rounds", rounds.ToString()))); + GamePresetPrototype? decoy = null; + + if (args.Length == 3 && !ticker.TryFindGamePreset(args[2], out decoy)) + { + shell.WriteError(Loc.GetString("set-game-preset-decoy-error", ("preset", args[2]))); + return; + } + + ticker.SetGamePreset(preset, false, decoy, rounds); + if (decoy == null) + shell.WriteLine(Loc.GetString("set-game-preset-preset-set-finite", ("preset", preset.ID), ("rounds", rounds.ToString()))); + else + shell.WriteLine(Loc.GetString("set-game-preset-preset-set-finite-with-decoy", ("preset", preset.ID), ("rounds", rounds.ToString()), ("decoy", decoy.ID))); } public CompletionResult GetCompletion(IConsoleShell shell, string[] args) { - if (args.Length == 1) + return args.Length switch { - var gamePresets = _prototype.EnumeratePrototypes() - .OrderBy(p => p.ID); - var options = new List(); - foreach (var preset in gamePresets) - { - options.Add(preset.ID); - options.AddRange(preset.Alias); - } + 1 => CompletionResult.FromHintOptions(CompletionHelper.PrototypeIDs(), + Loc.GetString("set-game-preset-command-hint-1")), + 2 => CompletionResult.FromHint(Loc.GetString("set-game-preset-command-hint-2")), + 3 => CompletionResult.FromHintOptions(CompletionHelper.PrototypeIDs(), + Loc.GetString("set-game-preset-command-hint-3")), - return CompletionResult.FromHintOptions(options, ""); - } - return CompletionResult.Empty; + _ => CompletionResult.Empty + }; } } } diff --git a/Content.Server/GameTicking/Commands/StartRoundCommand.cs b/Content.Server/GameTicking/Commands/StartRoundCommand.cs index 432cdd23e3..6579800ca3 100644 --- a/Content.Server/GameTicking/Commands/StartRoundCommand.cs +++ b/Content.Server/GameTicking/Commands/StartRoundCommand.cs @@ -2,28 +2,23 @@ using Content.Shared.Administration; using Robust.Shared.Console; -namespace Content.Server.GameTicking.Commands +namespace Content.Server.GameTicking.Commands; + +[AdminCommand(AdminFlags.Round)] +public sealed class StartRoundCommand : LocalizedEntityCommands { - [AdminCommand(AdminFlags.Round)] - sealed class StartRoundCommand : IConsoleCommand + [Dependency] private readonly GameTicker _gameTicker = default!; + + public override string Command => "startround"; + + public override void Execute(IConsoleShell shell, string argStr, string[] args) { - [Dependency] private readonly IEntityManager _e = default!; - - public string Command => "startround"; - public string Description => "Ends PreRoundLobby state and starts the round."; - public string Help => String.Empty; - - public void Execute(IConsoleShell shell, string argStr, string[] args) + if (_gameTicker.RunLevel != GameRunLevel.PreRoundLobby) { - var ticker = _e.System(); - - if (ticker.RunLevel != GameRunLevel.PreRoundLobby) - { - shell.WriteLine("This can only be executed while the game is in the pre-round lobby."); - return; - } - - ticker.StartRound(); + shell.WriteLine(Loc.GetString("shell-can-only-run-from-pre-round-lobby")); + return; } + + _gameTicker.StartRound(); } } diff --git a/Content.Server/GameTicking/GameTicker.GamePreset.cs b/Content.Server/GameTicking/GameTicker.GamePreset.cs index 84a93da955..40608e45cb 100644 --- a/Content.Server/GameTicking/GameTicker.GamePreset.cs +++ b/Content.Server/GameTicking/GameTicker.GamePreset.cs @@ -18,6 +18,11 @@ public sealed partial class GameTicker /// public GamePresetPrototype? Preset { get; private set; } + /// + /// The selected preset that will be shown at the lobby screen to fool players. + /// + public GamePresetPrototype? Decoy { get; private set; } + /// /// The preset that's currently active. /// @@ -46,10 +51,10 @@ public sealed partial class GameTicker DelayStart(TimeSpan.FromSeconds(PresetFailedCooldownIncrease)); } - if (_cfg.GetCVar(CCVars.GameLobbyFallbackEnabled)) - { - var fallbackPresets = _cfg.GetCVar(CCVars.GameLobbyFallbackPreset).Split(","); - var startFailed = true; + if (_cfg.GetCVar(CCVars.GameLobbyFallbackEnabled)) + { + var fallbackPresets = _cfg.GetCVar(CCVars.GameLobbyFallbackPreset).Split(","); + var startFailed = true; foreach (var preset in fallbackPresets) { @@ -89,12 +94,12 @@ public sealed partial class GameTicker return true; } - private void InitializeGamePreset() - { - SetGamePreset(LobbyEnabled ? _cfg.GetCVar(CCVars.GameLobbyDefaultPreset) : "sandbox"); - } + private void InitializeGamePreset() + { + SetGamePreset(LobbyEnabled ? _cfg.GetCVar(CCVars.GameLobbyDefaultPreset) : "sandbox"); + } - public void SetGamePreset(GamePresetPrototype? preset, bool force = false, int? resetDelay = null) + public void SetGamePreset(GamePresetPrototype? preset, bool force = false, GamePresetPrototype? decoy = null, int? resetDelay = null) { // Do nothing if this game ticker is a dummy! if (DummyTicker) @@ -114,6 +119,7 @@ public sealed partial class GameTicker } Preset = preset; + Decoy = decoy; ValidateMap(); UpdateInfoText(); @@ -126,7 +132,7 @@ public sealed partial class GameTicker public void SetGamePreset(string preset, bool force = false) { var proto = FindGamePreset(preset); - if(proto != null) + if (proto != null) SetGamePreset(proto, force); } @@ -214,19 +220,19 @@ public sealed partial class GameTicker } } - private void IncrementRoundNumber() - { - var playerIds = _playerGameStatuses.Keys.Select(player => player.UserId).ToArray(); - var serverName = _cfg.GetCVar(CCVars.AdminLogsServerName); - - // TODO FIXME AAAAAAAAAAAAAAAAAAAH THIS IS BROKEN - // Task.Run as a terrible dirty workaround to avoid synchronization context deadlock from .Result here. - // This whole setup logic should be made asynchronous so we can properly wait on the DB AAAAAAAAAAAAAH - var task = Task.Run(async () => + private void IncrementRoundNumber() { - var server = await _dbEntryManager.ServerEntity; - return await _db.AddNewRound(server, playerIds); - }); + var playerIds = _playerGameStatuses.Keys.Select(player => player.UserId).ToArray(); + var serverName = _cfg.GetCVar(CCVars.AdminLogsServerName); + + // TODO FIXME AAAAAAAAAAAAAAAAAAAH THIS IS BROKEN + // Task.Run as a terrible dirty workaround to avoid synchronization context deadlock from .Result here. + // This whole setup logic should be made asynchronous so we can properly wait on the DB AAAAAAAAAAAAAH + var task = Task.Run(async () => + { + var server = await _dbEntryManager.ServerEntity; + return await _db.AddNewRound(server, playerIds); + }); _taskManager.BlockWaitOnTask(task); RoundId = task.GetAwaiter().GetResult(); diff --git a/Content.Server/GameTicking/GameTicker.GameRule.cs b/Content.Server/GameTicking/GameTicker.GameRule.cs index cf0b0eceb1..1750d3c27a 100644 --- a/Content.Server/GameTicking/GameTicker.GameRule.cs +++ b/Content.Server/GameTicking/GameTicker.GameRule.cs @@ -21,7 +21,7 @@ public sealed partial class GameTicker /// A list storing the start times of all game rules that have been started this round. /// Game rules can be started and stopped at any time, including midround. /// - public IReadOnlyList<(TimeSpan, string)> AllPreviousGameRules => _allPreviousGameRules; + public override IReadOnlyList<(TimeSpan, string)> AllPreviousGameRules => _allPreviousGameRules; private void InitializeGameRules() { diff --git a/Content.Server/GameTicking/GameTicker.Lobby.cs b/Content.Server/GameTicking/GameTicker.Lobby.cs index 9a9eb61b67..66c39ab469 100644 --- a/Content.Server/GameTicking/GameTicker.Lobby.cs +++ b/Content.Server/GameTicking/GameTicker.Lobby.cs @@ -61,7 +61,7 @@ namespace Content.Server.GameTicking { foundOne = true; if (stationNames.Length > 0) - stationNames.Append('\n'); + stationNames.Append('\n'); stationNames.Append(meta.EntityName); } @@ -72,8 +72,8 @@ namespace Content.Server.GameTicking Loc.GetString("game-ticker-no-map-selected")); } - var gmTitle = Loc.GetString(preset.ModeTitle); - var desc = Loc.GetString(preset.Description); + var gmTitle = (Decoy == null) ? Loc.GetString(preset.ModeTitle) : Loc.GetString(Decoy.ModeTitle); + var desc = (Decoy == null) ? Loc.GetString(preset.Description) : Loc.GetString(Decoy.Description); return Loc.GetString( RunLevel == GameRunLevel.PreRoundLobby ? "game-ticker-get-info-preround-text" @@ -107,7 +107,7 @@ namespace Content.Server.GameTicking private TickerLobbyInfoEvent GetInfoMsg() { - return new (GetInfoText()); + return new(GetInfoText()); } private void UpdateLateJoinStatus() diff --git a/Content.Server/GameTicking/GameTicker.RoundFlow.cs b/Content.Server/GameTicking/GameTicker.RoundFlow.cs index a6809e050e..1dadca4c03 100644 --- a/Content.Server/GameTicking/GameTicker.RoundFlow.cs +++ b/Content.Server/GameTicking/GameTicker.RoundFlow.cs @@ -3,7 +3,6 @@ using System.Numerics; using Content.Server.Announcements; using Content.Server.Discord; using Content.Server.GameTicking.Events; -using Content.Server.Ghost; using Content.Server.Maps; using Content.Server.Roles; using Content.Shared.CCVar; @@ -12,6 +11,7 @@ using Content.Shared.GameTicking; using Content.Shared.Mind; using Content.Shared.Players; using Content.Shared.Preferences; +using Content.Shared.Roles.Components; using JetBrains.Annotations; using Prometheus; using Robust.Shared.Asynchronous; @@ -19,7 +19,6 @@ 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; diff --git a/Content.Server/GameTicking/Rules/ChangelingRuleSystem.cs b/Content.Server/GameTicking/Rules/ChangelingRuleSystem.cs deleted file mode 100644 index a64b0e904a..0000000000 --- a/Content.Server/GameTicking/Rules/ChangelingRuleSystem.cs +++ /dev/null @@ -1,23 +0,0 @@ -using Content.Server.GameTicking.Rules.Components; -using Content.Server.Roles; -using Content.Shared.Changeling; - -namespace Content.Server.GameTicking.Rules; - -/// -/// Game rule system for Changelings -/// -public sealed class ChangelingRuleSystem : GameRuleSystem -{ - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnGetBriefing); - } - - private void OnGetBriefing(Entity ent, ref GetBriefingEvent args) - { - args.Append(Loc.GetString("changeling-briefing")); - } -} diff --git a/Content.Server/GameTicking/Rules/DragonRuleSystem.cs b/Content.Server/GameTicking/Rules/DragonRuleSystem.cs index 964b248beb..53cf3bd4b0 100644 --- a/Content.Server/GameTicking/Rules/DragonRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/DragonRuleSystem.cs @@ -4,6 +4,7 @@ using Content.Server.Mind; using Content.Server.Roles; using Content.Server.Station.Systems; using Content.Shared.Localizations; +using Content.Shared.Roles.Components; using Robust.Server.GameObjects; namespace Content.Server.GameTicking.Rules; diff --git a/Content.Server/GameTicking/Rules/DynamicRuleSystem.cs b/Content.Server/GameTicking/Rules/DynamicRuleSystem.cs new file mode 100644 index 0000000000..b23e9d40f2 --- /dev/null +++ b/Content.Server/GameTicking/Rules/DynamicRuleSystem.cs @@ -0,0 +1,195 @@ +using System.Diagnostics; +using Content.Server.Administration.Logs; +using Content.Server.RoundEnd; +using Content.Shared.Database; +using Content.Shared.EntityTable; +using Content.Shared.EntityTable.Conditions; +using Content.Shared.GameTicking.Components; +using Content.Shared.GameTicking.Rules; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; + +namespace Content.Server.GameTicking.Rules; + +public sealed class DynamicRuleSystem : GameRuleSystem +{ + [Dependency] private readonly IAdminLogManager _adminLog = default!; + [Dependency] private readonly EntityTableSystem _entityTable = default!; + [Dependency] private readonly RoundEndSystem _roundEnd = default!; + [Dependency] private readonly IRobustRandom _random = default!; + + protected override void Added(EntityUid uid, DynamicRuleComponent component, GameRuleComponent gameRule, GameRuleAddedEvent args) + { + base.Added(uid, component, gameRule, args); + + component.Budget = _random.Next(component.StartingBudgetMin, component.StartingBudgetMax);; + component.NextRuleTime = Timing.CurTime + _random.Next(component.MinRuleInterval, component.MaxRuleInterval); + } + + protected override void Started(EntityUid uid, DynamicRuleComponent component, GameRuleComponent gameRule, GameRuleStartedEvent args) + { + base.Started(uid, component, gameRule, args); + + // Since we don't know how long until this rule is activated, we need to + // set the last budget update to now so it doesn't immediately give the component a bunch of points. + component.LastBudgetUpdate = Timing.CurTime; + Execute((uid, component)); + } + + protected override void Ended(EntityUid uid, DynamicRuleComponent component, GameRuleComponent gameRule, GameRuleEndedEvent args) + { + base.Ended(uid, component, gameRule, args); + + foreach (var rule in component.Rules) + { + GameTicker.EndGameRule(rule); + } + } + + protected override void ActiveTick(EntityUid uid, DynamicRuleComponent component, GameRuleComponent gameRule, float frameTime) + { + base.ActiveTick(uid, component, gameRule, frameTime); + + if (Timing.CurTime < component.NextRuleTime) + return; + + // don't spawn antags during evac + if (_roundEnd.IsRoundEndRequested()) + return; + + Execute((uid, component)); + } + + /// + /// Generates and returns a list of randomly selected, + /// valid rules to spawn based on . + /// + private IEnumerable GetRuleSpawns(Entity entity) + { + UpdateBudget((entity.Owner, entity.Comp)); + var ctx = new EntityTableContext(new Dictionary + { + { HasBudgetCondition.BudgetContextKey, entity.Comp.Budget }, + }); + + return _entityTable.GetSpawns(entity.Comp.Table, ctx: ctx); + } + + /// + /// Updates the budget of the provided dynamic rule component based on the amount of time since the last update + /// multiplied by the value. + /// + private void UpdateBudget(Entity entity) + { + var duration = (float) (Timing.CurTime - entity.Comp.LastBudgetUpdate).TotalSeconds; + + entity.Comp.Budget += duration * entity.Comp.BudgetPerSecond; + entity.Comp.LastBudgetUpdate = Timing.CurTime; + } + + /// + /// Executes this rule, generating new dynamic rules and starting them. + /// + /// + /// Returns a list of the rules that were executed. + /// + private List Execute(Entity entity) + { + entity.Comp.NextRuleTime = + Timing.CurTime + _random.Next(entity.Comp.MinRuleInterval, entity.Comp.MaxRuleInterval); + + var executedRules = new List(); + + foreach (var rule in GetRuleSpawns(entity)) + { + var res = GameTicker.StartGameRule(rule, out var ruleUid); + Debug.Assert(res); + + executedRules.Add(ruleUid); + + if (TryComp(ruleUid, out var cost)) + { + entity.Comp.Budget -= cost.Cost; + _adminLog.Add(LogType.EventRan, LogImpact.High, $"{ToPrettyString(entity)} ran rule {ToPrettyString(ruleUid)} with cost {cost.Cost} on budget {entity.Comp.Budget}."); + } + else + { + _adminLog.Add(LogType.EventRan, LogImpact.High, $"{ToPrettyString(entity)} ran rule {ToPrettyString(ruleUid)} which had no cost."); + } + } + + entity.Comp.Rules.AddRange(executedRules); + return executedRules; + } + + #region Command Methods + + public List GetDynamicRules() + { + var rules = new List(); + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out _, out var comp)) + { + if (!GameTicker.IsGameRuleActive(uid, comp)) + continue; + rules.Add(uid); + } + + return rules; + } + + public float? GetRuleBudget(Entity entity) + { + if (!Resolve(entity, ref entity.Comp)) + return null; + + UpdateBudget((entity.Owner, entity.Comp)); + return entity.Comp.Budget; + } + + public float? AdjustBudget(Entity entity, float amount) + { + if (!Resolve(entity, ref entity.Comp)) + return null; + + UpdateBudget((entity.Owner, entity.Comp)); + entity.Comp.Budget += amount; + return entity.Comp.Budget; + } + + public float? SetBudget(Entity entity, float amount) + { + if (!Resolve(entity, ref entity.Comp)) + return null; + + entity.Comp.LastBudgetUpdate = Timing.CurTime; + entity.Comp.Budget = amount; + return entity.Comp.Budget; + } + + public IEnumerable DryRun(Entity entity) + { + if (!Resolve(entity, ref entity.Comp)) + return new List(); + + return GetRuleSpawns((entity.Owner, entity.Comp)); + } + + public IEnumerable ExecuteNow(Entity entity) + { + if (!Resolve(entity, ref entity.Comp)) + return new List(); + + return Execute((entity.Owner, entity.Comp)); + } + + public IEnumerable Rules(Entity entity) + { + if (!Resolve(entity, ref entity.Comp)) + return new List(); + + return entity.Comp.Rules; + } + + #endregion +} diff --git a/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs b/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs index 17d9e4c847..9c3562b152 100644 --- a/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs @@ -17,6 +17,7 @@ using Content.Shared.NPC.Components; using Content.Shared.NPC.Systems; using Content.Shared.Nuke; using Content.Shared.NukeOps; +using Content.Shared.Roles.Components; using Content.Shared.Store; using Content.Shared.Tag; using Content.Shared.Zombies; diff --git a/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs b/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs index 609039ae4c..ef773f59d1 100644 --- a/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs @@ -23,6 +23,7 @@ using Content.Shared.Mobs.Systems; using Content.Shared.NPC.Prototypes; using Content.Shared.NPC.Systems; using Content.Shared.Revolutionary.Components; +using Content.Shared.Roles.Components; using Content.Shared.Stunnable; using Content.Shared.Zombies; using Robust.Shared.Prototypes; @@ -161,7 +162,10 @@ public sealed class RevolutionaryRuleSystem : GameRuleSystem(revMindId, out var role)) + { role.Value.Comp2.ConvertedCount++; + Dirty(role.Value.Owner, role.Value.Comp2); + } } } diff --git a/Content.Server/GameTicking/Rules/SurvivorRuleSystem.cs b/Content.Server/GameTicking/Rules/SurvivorRuleSystem.cs index 4990b98b91..d673444665 100644 --- a/Content.Server/GameTicking/Rules/SurvivorRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/SurvivorRuleSystem.cs @@ -6,6 +6,7 @@ using Content.Server.Shuttles.Systems; using Content.Shared.GameTicking.Components; using Content.Shared.Mind; using Content.Shared.Mobs.Systems; +using Content.Shared.Roles.Components; using Content.Shared.Survivor.Components; using Content.Shared.Tag; using Robust.Server.GameObjects; diff --git a/Content.Server/GameTicking/Rules/ThiefRuleSystem.cs b/Content.Server/GameTicking/Rules/ThiefRuleSystem.cs index b00ed38636..75bdd5387b 100644 --- a/Content.Server/GameTicking/Rules/ThiefRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/ThiefRuleSystem.cs @@ -2,6 +2,7 @@ using Content.Server.Antag; using Content.Server.GameTicking.Rules.Components; using Content.Server.Roles; using Content.Shared.Humanoid; +using Content.Shared.Roles.Components; namespace Content.Server.GameTicking.Rules; diff --git a/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs index 0a2882aa3c..e72e9d5f73 100644 --- a/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs @@ -1,19 +1,16 @@ -using Content.Server.Administration.Logs; using Content.Server.Antag; using Content.Server.GameTicking.Rules.Components; using Content.Server.Mind; using Content.Server.Objectives; using Content.Server.PDA.Ringer; -using Content.Server.Roles; using Content.Server.Traitor.Uplink; -using Content.Shared.Database; using Content.Shared.FixedPoint; -using Content.Shared.GameTicking.Components; using Content.Shared.Mind; using Content.Shared.NPC.Systems; using Content.Shared.PDA; using Content.Shared.Random.Helpers; using Content.Shared.Roles; +using Content.Shared.Roles.Components; using Content.Shared.Roles.Jobs; using Content.Shared.Roles.RoleCodeword; using Robust.Shared.Prototypes; diff --git a/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs b/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs index 9fab98446a..c6da622bb4 100644 --- a/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs @@ -13,6 +13,7 @@ using Content.Shared.Mobs; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; using Content.Shared.Roles; +using Content.Shared.Roles.Components; using Content.Shared.Zombies; using Robust.Shared.Player; using Robust.Shared.Timing; diff --git a/Content.Server/Ghost/ObserverRoleComponent.cs b/Content.Server/Ghost/ObserverRoleComponent.cs deleted file mode 100644 index 8421fb7343..0000000000 --- a/Content.Server/Ghost/ObserverRoleComponent.cs +++ /dev/null @@ -1,12 +0,0 @@ -using Content.Shared.Roles; - -namespace Content.Server.Ghost; - -/// -/// This is used to mark Observers properly, as they get Minds -/// -[RegisterComponent] -public sealed partial class ObserverRoleComponent : BaseMindRoleComponent -{ - public string Name => Loc.GetString("observer-role-name"); -} diff --git a/Content.Server/Ghost/Roles/GhostRoleMarkerRoleComponent.cs b/Content.Server/Ghost/Roles/GhostRoleMarkerRoleComponent.cs deleted file mode 100644 index da3e89ba2b..0000000000 --- a/Content.Server/Ghost/Roles/GhostRoleMarkerRoleComponent.cs +++ /dev/null @@ -1,15 +0,0 @@ -using Content.Shared.Roles; - -namespace Content.Server.Ghost.Roles; - -/// -/// Added to mind role entities to tag that they are a ghostrole. -/// It also holds the name for the round end display -/// -[RegisterComponent] -public sealed partial class GhostRoleMarkerRoleComponent : BaseMindRoleComponent -{ - //TODO does anything still use this? It gets populated by GhostRolesystem but I don't see anything ever reading it - [DataField] public string? Name; - -} diff --git a/Content.Server/Ghost/Roles/GhostRoleSystem.cs b/Content.Server/Ghost/Roles/GhostRoleSystem.cs index ec69ebe3c1..98261c0908 100644 --- a/Content.Server/Ghost/Roles/GhostRoleSystem.cs +++ b/Content.Server/Ghost/Roles/GhostRoleSystem.cs @@ -521,9 +521,6 @@ public sealed class GhostRoleSystem : EntitySystem _mindSystem.TransferTo(newMind, mob); _roleSystem.MindAddRoles(newMind.Owner, role.MindRoles, newMind.Comp); - - if (_roleSystem.MindHasRole(newMind!, out var markerRole)) - markerRole.Value.Comp2.Name = role.RoleName; } /// diff --git a/Content.Server/Gravity/GravitySystem.cs b/Content.Server/Gravity/GravitySystem.cs index 6807b9df4a..7958071a31 100644 --- a/Content.Server/Gravity/GravitySystem.cs +++ b/Content.Server/Gravity/GravitySystem.cs @@ -18,7 +18,7 @@ namespace Content.Server.Gravity /// public void RefreshGravity(EntityUid uid, GravityComponent? gravity = null) { - if (!Resolve(uid, ref gravity)) + if (!GravityQuery.Resolve(uid, ref gravity)) return; if (gravity.Inherent) @@ -61,7 +61,7 @@ namespace Content.Server.Gravity /// public void EnableGravity(EntityUid uid, GravityComponent? gravity = null) { - if (!Resolve(uid, ref gravity)) + if (!GravityQuery.Resolve(uid, ref gravity)) return; if (gravity.Enabled || gravity.Inherent) diff --git a/Content.Server/Hands/Systems/HandsSystem.cs b/Content.Server/Hands/Systems/HandsSystem.cs index 0f7b6ce3f9..4d47ea4a78 100644 --- a/Content.Server/Hands/Systems/HandsSystem.cs +++ b/Content.Server/Hands/Systems/HandsSystem.cs @@ -201,9 +201,6 @@ namespace Content.Server.Hands.Systems var holderVelocity = _physicsQuery.TryComp(entity, out var physics) ? physics.LinearVelocity : Vector2.Zero; var spreadMaxAngle = Angle.FromDegrees(DropHeldItemsSpread); - var fellEvent = new FellDownEvent(entity); - RaiseLocalEvent(entity, fellEvent); - foreach (var hand in entity.Comp.Hands.Keys) { if (!TryGetHeldItem(entity.AsNullable(), hand, out var heldEntity)) diff --git a/Content.Server/Implants/ChameleonControllerSystem.cs b/Content.Server/Implants/ChameleonControllerSystem.cs index 9e876f9399..930f2e3156 100644 --- a/Content.Server/Implants/ChameleonControllerSystem.cs +++ b/Content.Server/Implants/ChameleonControllerSystem.cs @@ -29,17 +29,17 @@ public sealed class ChameleonControllerSystem : SharedChameleonControllerSystem { base.Initialize(); - SubscribeLocalEvent(OnSelected); + SubscribeLocalEvent(OnSelected); SubscribeLocalEvent>(ChameleonControllerOutfitItemSelected); } - private void OnSelected(Entity ent, ref ChameleonControllerSelectedOutfitMessage args) + private void OnSelected(Entity ent, ref ChameleonControllerSelectedOutfitMessage args) { - if (!_delay.TryResetDelay(ent.Owner, true) || ent.Comp.ImplantedEntity == null || !HasComp(ent)) + if (!TryComp(ent, out var implantComp) || implantComp.ImplantedEntity == null || !_delay.TryResetDelay(ent.Owner, true)) return; - ChangeChameleonClothingToOutfit(ent.Comp.ImplantedEntity.Value, args.SelectedChameleonOutfit); + ChangeChameleonClothingToOutfit(implantComp.ImplantedEntity.Value, args.SelectedChameleonOutfit); } /// diff --git a/Content.Server/Implants/ImplanterSystem.cs b/Content.Server/Implants/ImplanterSystem.cs index 5023b1b3e4..48e83e4878 100644 --- a/Content.Server/Implants/ImplanterSystem.cs +++ b/Content.Server/Implants/ImplanterSystem.cs @@ -27,6 +27,7 @@ public sealed partial class ImplanterSystem : SharedImplanterSystem SubscribeLocalEvent(OnDraw); } + // TODO: This all needs to be moved to shared and predicted. private void OnImplanterAfterInteract(EntityUid uid, ImplanterComponent component, AfterInteractEvent args) { if (args.Target == null || !args.CanReach || args.Handled) diff --git a/Content.Server/Implants/RadioImplantSystem.cs b/Content.Server/Implants/RadioImplantSystem.cs index d9ba229057..c5ae1ce494 100644 --- a/Content.Server/Implants/RadioImplantSystem.cs +++ b/Content.Server/Implants/RadioImplantSystem.cs @@ -1,7 +1,6 @@ using Content.Server.Radio.Components; using Content.Shared.Implants; using Content.Shared.Implants.Components; -using Robust.Shared.Containers; namespace Content.Server.Implants; @@ -12,7 +11,7 @@ public sealed class RadioImplantSystem : EntitySystem base.Initialize(); SubscribeLocalEvent(OnImplantImplanted); - SubscribeLocalEvent(OnRemove); + SubscribeLocalEvent(OnImplantRemoved); } /// @@ -20,19 +19,16 @@ public sealed class RadioImplantSystem : EntitySystem /// private void OnImplantImplanted(Entity ent, ref ImplantImplantedEvent args) { - if (args.Implanted == null) - return; - - var activeRadio = EnsureComp(args.Implanted.Value); + var activeRadio = EnsureComp(args.Implanted); foreach (var channel in ent.Comp.RadioChannels) { if (activeRadio.Channels.Add(channel)) ent.Comp.ActiveAddedChannels.Add(channel); } - EnsureComp(args.Implanted.Value); + EnsureComp(args.Implanted); - var intrinsicRadioTransmitter = EnsureComp(args.Implanted.Value); + var intrinsicRadioTransmitter = EnsureComp(args.Implanted); foreach (var channel in ent.Comp.RadioChannels) { if (intrinsicRadioTransmitter.Channels.Add(channel)) @@ -43,9 +39,9 @@ public sealed class RadioImplantSystem : EntitySystem /// /// Removes intrinsic radio components once the Radio Implant is removed /// - private void OnRemove(Entity ent, ref EntGotRemovedFromContainerMessage args) + private void OnImplantRemoved(Entity ent, ref ImplantRemovedEvent args) { - if (TryComp(args.Container.Owner, out var activeRadioComponent)) + if (TryComp(args.Implanted, out var activeRadioComponent)) { foreach (var channel in ent.Comp.ActiveAddedChannels) { @@ -55,11 +51,11 @@ public sealed class RadioImplantSystem : EntitySystem if (activeRadioComponent.Channels.Count == 0) { - RemCompDeferred(args.Container.Owner); + RemCompDeferred(args.Implanted); } } - if (!TryComp(args.Container.Owner, out var radioTransmitterComponent)) + if (!TryComp(args.Implanted, out var radioTransmitterComponent)) return; foreach (var channel in ent.Comp.TransmitterAddedChannels) @@ -70,7 +66,7 @@ public sealed class RadioImplantSystem : EntitySystem if (radioTransmitterComponent.Channels.Count == 0 || activeRadioComponent?.Channels.Count == 0) { - RemCompDeferred(args.Container.Owner); + RemCompDeferred(args.Implanted); } } } diff --git a/Content.Server/Implants/SubdermalImplantSystem.cs b/Content.Server/Implants/SubdermalImplantSystem.cs index f0530358a6..582b9cb2ac 100644 --- a/Content.Server/Implants/SubdermalImplantSystem.cs +++ b/Content.Server/Implants/SubdermalImplantSystem.cs @@ -18,6 +18,7 @@ public sealed class SubdermalImplantSystem : SharedSubdermalImplantSystem SubscribeLocalEvent>(OnStoreRelay); } + // TODO: This shouldn't be in the SubdermalImplantSystem private void OnStoreRelay(EntityUid uid, StoreComponent store, ImplantRelayEvent implantRelay) { var args = implantRelay.Event; diff --git a/Content.Server/Kitchen/Components/SharpComponent.cs b/Content.Server/Kitchen/Components/SharpComponent.cs deleted file mode 100644 index c67c3b8a4d..0000000000 --- a/Content.Server/Kitchen/Components/SharpComponent.cs +++ /dev/null @@ -1,15 +0,0 @@ -namespace Content.Server.Kitchen.Components; - -/// -/// Applies to items that are capable of butchering entities, or -/// are otherwise sharp for some purpose. -/// -[RegisterComponent] -public sealed partial class SharpComponent : Component -{ - // TODO just make this a tool type. - public HashSet Butchering = new(); - - [DataField("butcherDelayModifier")] - public float ButcherDelayModifier = 1.0f; -} diff --git a/Content.Server/Kitchen/EntitySystems/KitchenSpikeSystem.cs b/Content.Server/Kitchen/EntitySystems/KitchenSpikeSystem.cs deleted file mode 100644 index 4ed05a3f16..0000000000 --- a/Content.Server/Kitchen/EntitySystems/KitchenSpikeSystem.cs +++ /dev/null @@ -1,292 +0,0 @@ -using Content.Server.Administration.Logs; -using Content.Server.Body.Systems; -using Content.Server.Kitchen.Components; -using Content.Server.Popups; -using Content.Shared.Chat; -using Content.Shared.Damage; -using Content.Shared.Database; -using Content.Shared.DoAfter; -using Content.Shared.DragDrop; -using Content.Shared.Humanoid; -using Content.Shared.IdentityManagement; -using Content.Shared.Interaction; -using Content.Shared.Interaction.Events; -using Content.Shared.Kitchen; -using Content.Shared.Kitchen.Components; -using Content.Shared.Mobs.Components; -using Content.Shared.Mobs.Systems; -using Content.Shared.Nutrition.Components; -using Content.Shared.Popups; -using Content.Shared.Storage; -using Robust.Server.GameObjects; -using Robust.Shared.Audio.Systems; -using Robust.Shared.Player; -using Robust.Shared.Random; -using static Content.Shared.Kitchen.Components.KitchenSpikeComponent; - -namespace Content.Server.Kitchen.EntitySystems -{ - public sealed class KitchenSpikeSystem : SharedKitchenSpikeSystem - { - [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; - [Dependency] private readonly IAdminLogManager _logger = default!; - [Dependency] private readonly MobStateSystem _mobStateSystem = default!; - [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly TransformSystem _transform = default!; - [Dependency] private readonly BodySystem _bodySystem = default!; - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly MetaDataSystem _metaData = default!; - [Dependency] private readonly SharedSuicideSystem _suicide = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnInteractUsing); - SubscribeLocalEvent(OnInteractHand); - SubscribeLocalEvent(OnDragDrop); - - //DoAfter - SubscribeLocalEvent(OnDoAfter); - - SubscribeLocalEvent(OnSuicideByEnvironment); - - SubscribeLocalEvent(OnButcherableCanDrop); - } - - private void OnButcherableCanDrop(Entity entity, ref CanDropDraggedEvent args) - { - args.Handled = true; - args.CanDrop |= entity.Comp.Type != ButcheringType.Knife; - } - - /// - /// TODO: Update this so it actually meatspikes the user instead of applying lethal damage to them. - /// - private void OnSuicideByEnvironment(Entity entity, ref SuicideByEnvironmentEvent args) - { - if (args.Handled) - return; - - if (!TryComp(args.Victim, out var damageableComponent)) - return; - - _suicide.ApplyLethalDamage((args.Victim, damageableComponent), "Piercing"); - var othersMessage = Loc.GetString("comp-kitchen-spike-suicide-other", - ("victim", Identity.Entity(args.Victim, EntityManager)), - ("this", entity)); - _popupSystem.PopupEntity(othersMessage, args.Victim, Filter.PvsExcept(args.Victim), true); - - var selfMessage = Loc.GetString("comp-kitchen-spike-suicide-self", - ("this", entity)); - _popupSystem.PopupEntity(selfMessage, args.Victim, args.Victim); - args.Handled = true; - } - - private void OnDoAfter(Entity entity, ref SpikeDoAfterEvent args) - { - if (args.Args.Target == null) - return; - - if (TryComp(args.Args.Target.Value, out var butcherable)) - butcherable.BeingButchered = false; - - if (args.Cancelled) - { - entity.Comp.InUse = false; - return; - } - - if (args.Handled) - return; - - if (Spikeable(entity, args.Args.User, args.Args.Target.Value, entity.Comp, butcherable)) - Spike(entity, args.Args.User, args.Args.Target.Value, entity.Comp); - - entity.Comp.InUse = false; - args.Handled = true; - } - - private void OnDragDrop(Entity entity, ref DragDropTargetEvent args) - { - if (args.Handled) - return; - - args.Handled = true; - - if (Spikeable(entity, args.User, args.Dragged, entity.Comp)) - TrySpike(entity, args.User, args.Dragged, entity.Comp); - } - - private void OnInteractHand(Entity entity, ref InteractHandEvent args) - { - if (args.Handled) - return; - - if (entity.Comp.PrototypesToSpawn?.Count > 0) - { - _popupSystem.PopupEntity(Loc.GetString("comp-kitchen-spike-knife-needed"), entity, args.User); - args.Handled = true; - } - } - - private void OnInteractUsing(Entity entity, ref InteractUsingEvent args) - { - if (args.Handled) - return; - - if (TryGetPiece(entity, args.User, args.Used)) - args.Handled = true; - } - - private void Spike(EntityUid uid, EntityUid userUid, EntityUid victimUid, - KitchenSpikeComponent? component = null, ButcherableComponent? butcherable = null) - { - if (!Resolve(uid, ref component) || !Resolve(victimUid, ref butcherable)) - return; - - var logImpact = LogImpact.Medium; - if (HasComp(victimUid)) - logImpact = LogImpact.Extreme; - - _logger.Add(LogType.Gib, logImpact, $"{ToPrettyString(userUid):user} kitchen spiked {ToPrettyString(victimUid):target}"); - - // TODO VERY SUS - component.PrototypesToSpawn = EntitySpawnCollection.GetSpawns(butcherable.SpawnedEntities, _random); - - // This feels not okay, but entity is getting deleted on "Spike", for now... - component.MeatSource1p = Loc.GetString("comp-kitchen-spike-remove-meat", ("victim", victimUid)); - component.MeatSource0 = Loc.GetString("comp-kitchen-spike-remove-meat-last", ("victim", victimUid)); - component.Victim = Name(victimUid); - - UpdateAppearance(uid, null, component); - - _popupSystem.PopupEntity(Loc.GetString("comp-kitchen-spike-kill", - ("user", Identity.Entity(userUid, EntityManager)), - ("victim", Identity.Entity(victimUid, EntityManager)), - ("this", uid)), - uid, PopupType.LargeCaution); - - _transform.SetCoordinates(victimUid, Transform(uid).Coordinates); - // THE WHAT? - // TODO: Need to be able to leave them on the spike to do DoT, see ss13. - var gibs = _bodySystem.GibBody(victimUid); - foreach (var gib in gibs) { - QueueDel(gib); - } - - _audio.PlayPvs(component.SpikeSound, uid); - } - - private bool TryGetPiece(EntityUid uid, EntityUid user, EntityUid used, - KitchenSpikeComponent? component = null, SharpComponent? sharp = null) - { - if (!Resolve(uid, ref component) || component.PrototypesToSpawn == null || component.PrototypesToSpawn.Count == 0) - return false; - - // Is using knife - if (!Resolve(used, ref sharp, false) ) - { - return false; - } - - var item = _random.PickAndTake(component.PrototypesToSpawn); - - var ent = Spawn(item, Transform(uid).Coordinates); - _metaData.SetEntityName(ent, - Loc.GetString("comp-kitchen-spike-meat-name", ("name", Name(ent)), ("victim", component.Victim))); - - if (component.PrototypesToSpawn.Count != 0) - _popupSystem.PopupEntity(component.MeatSource1p, uid, user, PopupType.MediumCaution); - else - { - UpdateAppearance(uid, null, component); - _popupSystem.PopupEntity(component.MeatSource0, uid, user, PopupType.MediumCaution); - } - - return true; - } - - private void UpdateAppearance(EntityUid uid, AppearanceComponent? appearance = null, KitchenSpikeComponent? component = null) - { - if (!Resolve(uid, ref component, ref appearance, false)) - return; - - _appearance.SetData(uid, KitchenSpikeVisuals.Status, component.PrototypesToSpawn?.Count > 0 ? KitchenSpikeStatus.Bloody : KitchenSpikeStatus.Empty, appearance); - } - - private bool Spikeable(EntityUid uid, EntityUid userUid, EntityUid victimUid, - KitchenSpikeComponent? component = null, ButcherableComponent? butcherable = null) - { - if (!Resolve(uid, ref component)) - return false; - - if (component.PrototypesToSpawn?.Count > 0) - { - _popupSystem.PopupEntity(Loc.GetString("comp-kitchen-spike-deny-collect", ("this", uid)), uid, userUid); - return false; - } - - if (!Resolve(victimUid, ref butcherable, false)) - { - _popupSystem.PopupEntity(Loc.GetString("comp-kitchen-spike-deny-butcher", ("victim", Identity.Entity(victimUid, EntityManager)), ("this", uid)), victimUid, userUid); - return false; - } - - switch (butcherable.Type) - { - case ButcheringType.Spike: - return true; - case ButcheringType.Knife: - _popupSystem.PopupEntity(Loc.GetString("comp-kitchen-spike-deny-butcher-knife", ("victim", Identity.Entity(victimUid, EntityManager)), ("this", uid)), victimUid, userUid); - return false; - default: - _popupSystem.PopupEntity(Loc.GetString("comp-kitchen-spike-deny-butcher", ("victim", Identity.Entity(victimUid, EntityManager)), ("this", uid)), victimUid, userUid); - return false; - } - } - - public bool TrySpike(EntityUid uid, EntityUid userUid, EntityUid victimUid, KitchenSpikeComponent? component = null, - ButcherableComponent? butcherable = null, MobStateComponent? mobState = null) - { - if (!Resolve(uid, ref component) || component.InUse || - !Resolve(victimUid, ref butcherable) || butcherable.BeingButchered) - return false; - - // THE WHAT? (again) - // Prevent dead from being spiked TODO: Maybe remove when rounds can be played and DOT is implemented - if (Resolve(victimUid, ref mobState, false) && - _mobStateSystem.IsAlive(victimUid, mobState)) - { - _popupSystem.PopupEntity(Loc.GetString("comp-kitchen-spike-deny-not-dead", ("victim", Identity.Entity(victimUid, EntityManager))), - victimUid, userUid); - return true; - } - - if (userUid != victimUid) - { - _popupSystem.PopupEntity(Loc.GetString("comp-kitchen-spike-begin-hook-victim", ("user", Identity.Entity(userUid, EntityManager)), ("this", uid)), victimUid, victimUid, PopupType.LargeCaution); - } - // TODO: make it work when SuicideEvent is implemented - // else - // _popupSystem.PopupEntity(Loc.GetString("comp-kitchen-spike-begin-hook-self", ("this", uid)), victimUid, Filter.Pvs(uid)); // This is actually unreachable and should be in SuicideEvent - - butcherable.BeingButchered = true; - component.InUse = true; - - var doAfterArgs = new DoAfterArgs(EntityManager, userUid, component.SpikeDelay + butcherable.ButcherDelay, new SpikeDoAfterEvent(), uid, target: victimUid, used: uid) - { - BreakOnDamage = true, - BreakOnMove = true, - NeedHand = true, - BreakOnDropItem = false, - }; - - _doAfter.TryStartDoAfter(doAfterArgs); - - return true; - } - } -} diff --git a/Content.Server/Kitchen/EntitySystems/SharpSystem.cs b/Content.Server/Kitchen/EntitySystems/SharpSystem.cs index 0275e4d1a7..ab6e1db494 100644 --- a/Content.Server/Kitchen/EntitySystems/SharpSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/SharpSystem.cs @@ -1,5 +1,4 @@ using Content.Server.Body.Systems; -using Content.Server.Kitchen.Components; using Content.Shared.Administration.Logs; using Content.Shared.Body.Components; using Content.Shared.Database; @@ -8,6 +7,7 @@ using Content.Shared.DoAfter; using Content.Shared.IdentityManagement; using Content.Shared.Interaction; using Content.Shared.Kitchen; +using Content.Shared.Kitchen.Components; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; using Content.Shared.Nutrition.Components; diff --git a/Content.Server/Lathe/LatheSystem.cs b/Content.Server/Lathe/LatheSystem.cs index 6ecd5bdf62..02abb07791 100644 --- a/Content.Server/Lathe/LatheSystem.cs +++ b/Content.Server/Lathe/LatheSystem.cs @@ -74,6 +74,9 @@ namespace Content.Server.Lathe SubscribeLocalEvent(OnLatheQueueRecipeMessage); SubscribeLocalEvent(OnLatheSyncRequestMessage); + SubscribeLocalEvent(OnLatheDeleteRequestMessage); + SubscribeLocalEvent(OnLatheMoveRequestMessage); + SubscribeLocalEvent(OnLatheAbortFabricationMessage); SubscribeLocalEvent((u, c, _) => UpdateUserInterfaceState(u, c)); SubscribeLocalEvent(OnMaterialAmountChanged); @@ -167,23 +170,32 @@ namespace Content.Server.Lathe return ev.Recipes.ToList(); } - public bool TryAddToQueue(EntityUid uid, LatheRecipePrototype recipe, LatheComponent? component = null) + public bool TryAddToQueue(EntityUid uid, LatheRecipePrototype recipe, int quantity, LatheComponent? component = null) { if (!Resolve(uid, ref component)) return false; - if (!CanProduce(uid, recipe, 1, component)) + if (quantity <= 0) + return false; + quantity = int.Min(quantity, MaxItemsPerRequest); + + if (!CanProduce(uid, recipe, quantity, component)) return false; foreach (var (mat, amount) in recipe.Materials) { var adjustedAmount = recipe.ApplyMaterialDiscount - ? (int) (-amount * component.MaterialUseMultiplier) + ? (int)(-amount * component.MaterialUseMultiplier) : -amount; + adjustedAmount *= quantity; _materialStorage.TryChangeMaterialAmount(uid, mat, adjustedAmount); } - component.Queue.Enqueue(recipe); + + if (component.Queue.Last is { } node && node.ValueRef.Recipe == recipe.ID) + node.ValueRef.ItemsRequested += quantity; + else + component.Queue.AddLast(new LatheRecipeBatch(recipe.ID, 0, quantity)); return true; } @@ -195,8 +207,11 @@ namespace Content.Server.Lathe if (component.CurrentRecipe != null || component.Queue.Count <= 0 || !this.IsPowered(uid, EntityManager)) return false; - var recipeProto = component.Queue.Dequeue(); - var recipe = _proto.Index(recipeProto); + var batch = component.Queue.First(); + batch.ItemsPrinted++; + if (batch.ItemsPrinted >= batch.ItemsRequested || batch.ItemsPrinted < 0) // Rollover sanity check + component.Queue.RemoveFirst(); + var recipe = _proto.Index(batch.Recipe); var time = _reagentSpeed.ApplySpeed(uid, recipe.CompleteTime) * component.TimeMultiplier; @@ -271,8 +286,8 @@ namespace Content.Server.Lathe return; var producing = component.CurrentRecipe; - if (producing == null && component.Queue.TryPeek(out var next)) - producing = next; + if (producing == null && component.Queue.First is { } node) + producing = node.Value.Recipe; var state = new LatheUpdateState(GetAvailableRecipes(uid, component), component.Queue.ToArray(), producing); _uiSys.SetUiState(uid, LatheUiKey.Key, state); @@ -349,12 +364,10 @@ namespace Content.Server.Lathe { if (!args.Powered) { - RemComp(uid); - UpdateRunningAppearance(uid, false); + AbortProduction(uid); } - else if (component.CurrentRecipe != null) + else { - EnsureComp(uid); TryStartProducing(uid, component); } } @@ -416,25 +429,46 @@ namespace Content.Server.Lathe return GetAvailableRecipes(uid, component).Contains(recipe.ID); } + public void AbortProduction(EntityUid uid, LatheComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; + + if (component.CurrentRecipe != null) + { + if (component.Queue.Count > 0) + { + // Batch abandoned while printing last item, need to create a one-item batch + var batch = component.Queue.First(); + if (batch.Recipe != component.CurrentRecipe) + { + var newBatch = new LatheRecipeBatch(component.CurrentRecipe.Value, 0, 1); + component.Queue.AddFirst(newBatch); + } + else if (batch.ItemsPrinted > 0) + { + batch.ItemsPrinted--; + } + } + + component.CurrentRecipe = null; + } + RemCompDeferred(uid); + UpdateUserInterfaceState(uid, component); + UpdateRunningAppearance(uid, false); + } + #region UI Messages private void OnLatheQueueRecipeMessage(EntityUid uid, LatheComponent component, LatheQueueRecipeMessage args) { if (_proto.TryIndex(args.ID, out LatheRecipePrototype? recipe)) { - var count = 0; - for (var i = 0; i < args.Quantity; i++) - { - if (TryAddToQueue(uid, recipe, component)) - count++; - else - break; - } - if (count > 0) + if (TryAddToQueue(uid, recipe, args.Quantity, component)) { _adminLogger.Add(LogType.Action, LogImpact.Low, - $"{ToPrettyString(args.Actor):player} queued {count} {GetRecipeName(recipe)} at {ToPrettyString(uid):lathe}"); + $"{ToPrettyString(args.Actor):player} queued {args.Quantity} {GetRecipeName(recipe)} at {ToPrettyString(uid):lathe}"); } } TryStartProducing(uid, component); @@ -445,6 +479,92 @@ namespace Content.Server.Lathe { UpdateUserInterfaceState(uid, component); } + + /// + /// Removes a batch from the batch queue by index. + /// If the index given does not exist or is outside of the bounds of the lathe's batch queue, nothing happens. + /// + /// The lathe whose queue is being altered. + /// + /// + public void OnLatheDeleteRequestMessage(EntityUid uid, LatheComponent component, ref LatheDeleteRequestMessage args) + { + if (args.Index < 0 || args.Index >= component.Queue.Count) + return; + + var node = component.Queue.First; + for (int i = 0; i < args.Index; i++) + node = node?.Next; + + if (node == null) // Shouldn't happen with checks above. + return; + + var batch = node.Value; + _adminLogger.Add(LogType.Action, + LogImpact.Low, + $"{ToPrettyString(args.Actor):player} deleted a lathe job for ({batch.ItemsPrinted}/{batch.ItemsRequested}) {GetRecipeName(batch.Recipe)} at {ToPrettyString(uid):lathe}"); + + component.Queue.Remove(node); + UpdateUserInterfaceState(uid, component); + } + + public void OnLatheMoveRequestMessage(EntityUid uid, LatheComponent component, ref LatheMoveRequestMessage args) + { + if (args.Change == 0 || args.Index < 0 || args.Index >= component.Queue.Count) + return; + + // New index must be within the bounds of the batch. + var newIndex = args.Index + args.Change; + if (newIndex < 0 || newIndex >= component.Queue.Count) + return; + + var node = component.Queue.First; + for (int i = 0; i < args.Index; i++) + node = node?.Next; + + if (node == null) // Something went wrong. + return; + + if (args.Change > 0) + { + var newRelativeNode = node.Next; + for (int i = 1; i < args.Change; i++) // 1-indexed: starting from Next + newRelativeNode = newRelativeNode?.Next; + + if (newRelativeNode == null) // Something went wrong. + return; + + component.Queue.Remove(node); + component.Queue.AddAfter(newRelativeNode, node); + } + else + { + var newRelativeNode = node.Previous; + for (int i = 1; i < -args.Change; i++) // 1-indexed: starting from Previous + newRelativeNode = newRelativeNode?.Previous; + + if (newRelativeNode == null) // Something went wrong. + return; + + component.Queue.Remove(node); + component.Queue.AddBefore(newRelativeNode, node); + } + + UpdateUserInterfaceState(uid, component); + } + + public void OnLatheAbortFabricationMessage(EntityUid uid, LatheComponent component, ref LatheAbortFabricationMessage args) + { + if (component.CurrentRecipe == null) + return; + + _adminLogger.Add(LogType.Action, + LogImpact.Low, + $"{ToPrettyString(args.Actor):player} aborted printing {GetRecipeName(component.CurrentRecipe.Value)} at {ToPrettyString(uid):lathe}"); + + component.CurrentRecipe = null; + FinishProducing(uid, component); + } #endregion } } diff --git a/Content.Server/Light/EntitySystems/LightBulbSystem.cs b/Content.Server/Light/EntitySystems/LightBulbSystem.cs index 5714bde3e5..ba5b795e2d 100644 --- a/Content.Server/Light/EntitySystems/LightBulbSystem.cs +++ b/Content.Server/Light/EntitySystems/LightBulbSystem.cs @@ -1,87 +1,5 @@ -using Content.Server.Light.Components; -using Content.Shared.Destructible; -using Content.Shared.Light.Components; -using Content.Shared.Throwing; -using Robust.Server.GameObjects; -using Robust.Shared.Audio; -using Robust.Shared.Audio.Systems; -using Robust.Shared.Player; +using Content.Shared.Light.EntitySystems; -namespace Content.Server.Light.EntitySystems -{ - public sealed class LightBulbSystem : EntitySystem - { - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; +namespace Content.Server.Light.EntitySystems; - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnInit); - SubscribeLocalEvent(HandleLand); - SubscribeLocalEvent(OnBreak); - } - - private void OnInit(EntityUid uid, LightBulbComponent bulb, ComponentInit args) - { - // update default state of bulbs - SetColor(uid, bulb.Color, bulb); - SetState(uid, bulb.State, bulb); - } - - private void HandleLand(EntityUid uid, LightBulbComponent bulb, ref LandEvent args) - { - PlayBreakSound(uid, bulb); - SetState(uid, LightBulbState.Broken, bulb); - } - - private void OnBreak(EntityUid uid, LightBulbComponent component, BreakageEventArgs args) - { - SetState(uid, LightBulbState.Broken, component); - } - - /// - /// Set a new color for a light bulb and raise event about change - /// - public void SetColor(EntityUid uid, Color color, LightBulbComponent? bulb = null) - { - if (!Resolve(uid, ref bulb)) - return; - - bulb.Color = color; - UpdateAppearance(uid, bulb); - } - - /// - /// Set a new state for a light bulb (broken, burned) and raise event about change - /// - public void SetState(EntityUid uid, LightBulbState state, LightBulbComponent? bulb = null) - { - if (!Resolve(uid, ref bulb)) - return; - - bulb.State = state; - UpdateAppearance(uid, bulb); - } - - public void PlayBreakSound(EntityUid uid, LightBulbComponent? bulb = null) - { - if (!Resolve(uid, ref bulb)) - return; - - _audio.PlayPvs(bulb.BreakSound, uid); - } - - private void UpdateAppearance(EntityUid uid, LightBulbComponent? bulb = null, - AppearanceComponent? appearance = null) - { - if (!Resolve(uid, ref bulb, ref appearance, logMissing: false)) - return; - - // try to update appearance and color - _appearance.SetData(uid, LightBulbVisuals.State, bulb.State, appearance); - _appearance.SetData(uid, LightBulbVisuals.Color, bulb.Color, appearance); - } - } -} +public sealed class LightBulbSystem : SharedLightBulbSystem; diff --git a/Content.Server/Light/EntitySystems/PoweredLightSystem.cs b/Content.Server/Light/EntitySystems/PoweredLightSystem.cs index b5b9f20432..948c44cd75 100644 --- a/Content.Server/Light/EntitySystems/PoweredLightSystem.cs +++ b/Content.Server/Light/EntitySystems/PoweredLightSystem.cs @@ -1,440 +1,64 @@ -using Content.Server.DeviceLinking.Systems; -using Content.Server.DeviceNetwork; -using Content.Server.DeviceNetwork.Systems; using Content.Server.Emp; using Content.Server.Ghost; -using Content.Server.Light.Components; -using Content.Server.Power.Components; -using Content.Shared.Audio; -using Content.Shared.Damage; -using Content.Shared.DeviceLinking.Events; -using Content.Shared.DoAfter; -using Content.Shared.Hands.EntitySystems; -using Content.Shared.Interaction; -using Content.Shared.Light; using Content.Shared.Light.Components; -using Robust.Server.GameObjects; -using Robust.Shared.Containers; -using Robust.Shared.Timing; -using Robust.Shared.Audio.Systems; -using Content.Shared.Damage.Systems; -using Content.Shared.Damage.Components; -using Content.Shared.DeviceNetwork; -using Content.Shared.DeviceNetwork.Events; -using Content.Shared.Power; +using Content.Shared.Light.EntitySystems; -namespace Content.Server.Light.EntitySystems +namespace Content.Server.Light.EntitySystems; + +/// +/// System for the PoweredLightComponents +/// +public sealed class PoweredLightSystem : SharedPoweredLightSystem { - /// - /// System for the PoweredLightComponents - /// - public sealed class PoweredLightSystem : EntitySystem + public override void Initialize() { - [Dependency] private readonly IGameTiming _gameTiming = default!; - [Dependency] private readonly SharedAmbientSoundSystem _ambientSystem = default!; - [Dependency] private readonly LightBulbSystem _bulbSystem = default!; - [Dependency] private readonly SharedHandsSystem _handsSystem = default!; - [Dependency] private readonly DeviceLinkSystem _signalSystem = default!; - [Dependency] private readonly SharedContainerSystem _containerSystem = default!; - [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly PointLightSystem _pointLight = default!; - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly DamageOnInteractSystem _damageOnInteractSystem = default!; + base.Initialize(); + SubscribeLocalEvent(OnMapInit); - private static readonly TimeSpan ThunkDelay = TimeSpan.FromSeconds(2); - public const string LightBulbContainer = "light_bulb"; + SubscribeLocalEvent(OnGhostBoo); - public override void Initialize() + SubscribeLocalEvent(OnEmpPulse); + } + + private void OnGhostBoo(EntityUid uid, PoweredLightComponent light, GhostBooEvent args) + { + if (light.IgnoreGhostsBoo) + return; + + // check cooldown first to prevent abuse + var time = GameTiming.CurTime; + if (light.LastGhostBlink != null) { - base.Initialize(); - SubscribeLocalEvent(OnInit); - SubscribeLocalEvent(OnMapInit); - SubscribeLocalEvent(OnInteractUsing); - SubscribeLocalEvent(OnInteractHand); - - SubscribeLocalEvent(OnGhostBoo); - SubscribeLocalEvent(HandleLightDamaged); - - SubscribeLocalEvent(OnSignalReceived); - SubscribeLocalEvent(OnPacketReceived); - - SubscribeLocalEvent(OnPowerChanged); - - SubscribeLocalEvent(OnDoAfter); - SubscribeLocalEvent(OnEmpPulse); - } - - private void OnInit(EntityUid uid, PoweredLightComponent light, ComponentInit args) - { - light.LightBulbContainer = _containerSystem.EnsureContainer(uid, LightBulbContainer); - _signalSystem.EnsureSinkPorts(uid, light.OnPort, light.OffPort, light.TogglePort); - } - - private void OnMapInit(EntityUid uid, PoweredLightComponent light, MapInitEvent args) - { - // TODO: Use ContainerFill dog - if (light.HasLampOnSpawn != null) - { - var entity = Spawn(light.HasLampOnSpawn, Comp(uid).Coordinates); - _containerSystem.Insert(entity, light.LightBulbContainer); - } - // need this to update visualizers - UpdateLight(uid, light); - } - - private void OnInteractUsing(EntityUid uid, PoweredLightComponent component, InteractUsingEvent args) - { - if (args.Handled) + if (time <= light.LastGhostBlink + light.GhostBlinkingCooldown) return; - - args.Handled = InsertBulb(uid, args.Used, component); } - private void OnInteractHand(EntityUid uid, PoweredLightComponent light, InteractHandEvent args) + light.LastGhostBlink = time; + + ToggleBlinkingLight(uid, light, true); + uid.SpawnTimer(light.GhostBlinkingTime, () => { - if (args.Handled) - return; + ToggleBlinkingLight(uid, light, false); + }); - // check if light has bulb to eject - var bulbUid = GetBulb(uid, light); - if (bulbUid == null) - return; + args.Handled = true; + } - var userUid = args.User; - //removing a broken/burned bulb, so allow instant removal - if(TryComp(bulbUid.Value, out var bulb) && bulb.State != LightBulbState.Normal) - { - args.Handled = EjectBulb(uid, userUid, light) != null; - return; - } - - // removing a working bulb, so require a delay - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, userUid, light.EjectBulbDelay, new PoweredLightDoAfterEvent(), uid, target: uid) - { - BreakOnMove = true, - BreakOnDamage = true, - }); - - args.Handled = true; - } - - #region Bulb Logic API - /// - /// Inserts the bulb if possible. - /// - /// True if it could insert it, false if it couldn't. - public bool InsertBulb(EntityUid uid, EntityUid bulbUid, PoweredLightComponent? light = null) + private void OnMapInit(EntityUid uid, PoweredLightComponent light, MapInitEvent args) + { + // TODO: Use ContainerFill dog + if (light.HasLampOnSpawn != null) { - if (!Resolve(uid, ref light)) - return false; - - // check if light already has bulb - if (GetBulb(uid, light) != null) - return false; - - // check if bulb fits - if (!TryComp(bulbUid, out LightBulbComponent? lightBulb)) - return false; - if (lightBulb.Type != light.BulbType) - return false; - - // try to insert bulb in container - if (!_containerSystem.Insert(bulbUid, light.LightBulbContainer)) - return false; - - UpdateLight(uid, light); - return true; + var entity = EntityManager.SpawnEntity(light.HasLampOnSpawn, EntityManager.GetComponent(uid).Coordinates); + ContainerSystem.Insert(entity, light.LightBulbContainer); } + // need this to update visualizers + UpdateLight(uid, light); + } - /// - /// Ejects the bulb to a mob's hand if possible. - /// - /// Bulb uid if it was successfully ejected, null otherwise - public EntityUid? EjectBulb(EntityUid uid, EntityUid? userUid = null, PoweredLightComponent? light = null) - { - if (!Resolve(uid, ref light)) - return null; - - // check if light has bulb - if (GetBulb(uid, light) is not { Valid: true } bulb) - return null; - - // try to remove bulb from container - if (!_containerSystem.Remove(bulb, light.LightBulbContainer)) - return null; - - // try to place bulb in hands - _handsSystem.PickupOrDrop(userUid, bulb); - - UpdateLight(uid, light); - return bulb; - } - - /// - /// Replaces the spawned prototype of a pre-mapinit powered light with a different variant. - /// - public bool ReplaceSpawnedPrototype(Entity light, string bulb) - { - if (light.Comp.LightBulbContainer.ContainedEntity != null) - return false; - - if (LifeStage(light.Owner) >= EntityLifeStage.MapInitialized) - return false; - - light.Comp.HasLampOnSpawn = bulb; - return true; - } - - /// - /// Try to replace current bulb with a new one - /// If succeed old bulb just drops on floor - /// - public bool ReplaceBulb(EntityUid uid, EntityUid bulb, PoweredLightComponent? light = null) - { - EjectBulb(uid, null, light); - return InsertBulb(uid, bulb, light); - } - - /// - /// Try to get light bulb inserted in powered light - /// - /// Bulb uid if it exist, null otherwise - public EntityUid? GetBulb(EntityUid uid, PoweredLightComponent? light = null) - { - if (!Resolve(uid, ref light)) - return null; - - return light.LightBulbContainer.ContainedEntity; - } - - /// - /// Try to break bulb inside light fixture - /// - public bool TryDestroyBulb(EntityUid uid, PoweredLightComponent? light = null) - { - if (!Resolve(uid, ref light, false)) - return false; - - // if we aren't mapinited, - // just null the spawned bulb - if (LifeStage(uid) < EntityLifeStage.MapInitialized) - { - light.HasLampOnSpawn = null; - return true; - } - - // check bulb state - var bulbUid = GetBulb(uid, light); - if (bulbUid == null || !TryComp(bulbUid.Value, out LightBulbComponent? lightBulb)) - return false; - if (lightBulb.State == LightBulbState.Broken) - return false; - - // break it - _bulbSystem.SetState(bulbUid.Value, LightBulbState.Broken, lightBulb); - _bulbSystem.PlayBreakSound(bulbUid.Value, lightBulb); - UpdateLight(uid, light); - return true; - } - #endregion - - private void UpdateLight(EntityUid uid, - PoweredLightComponent? light = null, - ApcPowerReceiverComponent? powerReceiver = null, - AppearanceComponent? appearance = null) - { - if (!Resolve(uid, ref light, ref powerReceiver, false)) - return; - - // Optional component. - Resolve(uid, ref appearance, false); - - // check if light has bulb - var bulbUid = GetBulb(uid, light); - if (bulbUid == null || !TryComp(bulbUid.Value, out LightBulbComponent? lightBulb)) - { - SetLight(uid, false, light: light); - powerReceiver.Load = 0; - _appearance.SetData(uid, PoweredLightVisuals.BulbState, PoweredLightState.Empty, appearance); - return; - } - - switch (lightBulb.State) - { - case LightBulbState.Normal: - if (powerReceiver.Powered && light.On) - { - SetLight(uid, true, lightBulb.Color, light, lightBulb.LightRadius, lightBulb.LightEnergy, lightBulb.LightSoftness); - _appearance.SetData(uid, PoweredLightVisuals.BulbState, PoweredLightState.On, appearance); - var time = _gameTiming.CurTime; - if (time > light.LastThunk + ThunkDelay) - { - light.LastThunk = time; - _audio.PlayPvs(light.TurnOnSound, uid, light.TurnOnSound.Params.AddVolume(-10f)); - } - } - else - { - SetLight(uid, false, light: light); - _appearance.SetData(uid, PoweredLightVisuals.BulbState, PoweredLightState.Off, appearance); - } - break; - case LightBulbState.Broken: - SetLight(uid, false, light: light); - _appearance.SetData(uid, PoweredLightVisuals.BulbState, PoweredLightState.Broken, appearance); - break; - case LightBulbState.Burned: - SetLight(uid, false, light: light); - _appearance.SetData(uid, PoweredLightVisuals.BulbState, PoweredLightState.Burned, appearance); - break; - } - - powerReceiver.Load = (light.On && lightBulb.State == LightBulbState.Normal) ? lightBulb.PowerUse : 0; - } - - /// - /// Destroy the light bulb if the light took any damage. - /// - public void HandleLightDamaged(EntityUid uid, PoweredLightComponent component, DamageChangedEvent args) - { - // Was it being repaired, or did it take damage? - if (args.DamageIncreased) - { - // Eventually, this logic should all be done by this (or some other) system, not a component. - TryDestroyBulb(uid, component); - } - } - - private void OnGhostBoo(EntityUid uid, PoweredLightComponent light, GhostBooEvent args) - { - if (light.IgnoreGhostsBoo) - return; - - // check cooldown first to prevent abuse - var time = _gameTiming.CurTime; - if (light.LastGhostBlink != null) - { - if (time <= light.LastGhostBlink + light.GhostBlinkingCooldown) - return; - } - - light.LastGhostBlink = time; - - ToggleBlinkingLight(uid, light, true); - uid.SpawnTimer(light.GhostBlinkingTime, () => - { - ToggleBlinkingLight(uid, light, false); - }); - - args.Handled = true; - } - - private void OnPowerChanged(EntityUid uid, PoweredLightComponent component, ref PowerChangedEvent args) - { - // TODO: Power moment - var metadata = MetaData(uid); - - if (metadata.EntityPaused || TerminatingOrDeleted(uid, metadata)) - return; - - UpdateLight(uid, component); - } - - public void ToggleBlinkingLight(EntityUid uid, PoweredLightComponent light, bool isNowBlinking) - { - if (light.IsBlinking == isNowBlinking) - return; - - light.IsBlinking = isNowBlinking; - - if (!TryComp(uid, out AppearanceComponent? appearance)) - return; - - _appearance.SetData(uid, PoweredLightVisuals.Blinking, isNowBlinking, appearance); - } - - private void OnSignalReceived(EntityUid uid, PoweredLightComponent component, ref SignalReceivedEvent args) - { - if (args.Port == component.OffPort) - SetState(uid, false, component); - else if (args.Port == component.OnPort) - SetState(uid, true, component); - else if (args.Port == component.TogglePort) - ToggleLight(uid, component); - } - - /// - /// Turns the light on or of when receiving a command. - /// The light is turned on or of according to the value - /// - private void OnPacketReceived(EntityUid uid, PoweredLightComponent component, DeviceNetworkPacketEvent args) - { - if (!args.Data.TryGetValue(DeviceNetworkConstants.Command, out string? command) || command != DeviceNetworkConstants.CmdSetState) return; - if (!args.Data.TryGetValue(DeviceNetworkConstants.StateEnabled, out bool enabled)) return; - - SetState(uid, enabled, component); - } - - private void SetLight(EntityUid uid, bool value, Color? color = null, PoweredLightComponent? light = null, float? radius = null, float? energy = null, float? softness = null) - { - if (!Resolve(uid, ref light)) - return; - - light.CurrentLit = value; - _ambientSystem.SetAmbience(uid, value); - - if (TryComp(uid, out PointLightComponent? pointLight)) - { - _pointLight.SetEnabled(uid, value, pointLight); - - if (color != null) - _pointLight.SetColor(uid, color.Value, pointLight); - if (radius != null) - _pointLight.SetRadius(uid, (float) radius, pointLight); - if (energy != null) - _pointLight.SetEnergy(uid, (float) energy, pointLight); - if (softness != null) - _pointLight.SetSoftness(uid, (float) softness, pointLight); - } - - // light bulbs burn your hands! - if (TryComp(uid, out var damageOnInteractComp)) - _damageOnInteractSystem.SetIsDamageActiveTo((uid, damageOnInteractComp), value); - } - - public void ToggleLight(EntityUid uid, PoweredLightComponent? light = null) - { - if (!Resolve(uid, ref light)) - return; - - light.On = !light.On; - UpdateLight(uid, light); - } - - public void SetState(EntityUid uid, bool state, PoweredLightComponent? light = null) - { - if (!Resolve(uid, ref light)) - return; - - light.On = state; - UpdateLight(uid, light); - } - - private void OnDoAfter(EntityUid uid, PoweredLightComponent component, DoAfterEvent args) - { - if (args.Handled || args.Cancelled || args.Args.Target == null) - return; - - EjectBulb(args.Args.Target.Value, args.Args.User, component); - - args.Handled = true; - } - - private void OnEmpPulse(EntityUid uid, PoweredLightComponent component, ref EmpPulseEvent args) - { - if (TryDestroyBulb(uid, component)) - args.Affected = true; - } + private void OnEmpPulse(EntityUid uid, PoweredLightComponent component, ref EmpPulseEvent args) + { + if (TryDestroyBulb(uid, component)) + args.Affected = true; } } diff --git a/Content.Server/Materials/MaterialReclaimerSystem.cs b/Content.Server/Materials/MaterialReclaimerSystem.cs index 7de0d630e0..15ff93833d 100644 --- a/Content.Server/Materials/MaterialReclaimerSystem.cs +++ b/Content.Server/Materials/MaterialReclaimerSystem.cs @@ -184,19 +184,22 @@ public sealed class MaterialReclaimerSystem : SharedMaterialReclaimerSystem var xform = Transform(uid); - SpawnMaterialsFromComposition(uid, item, completion * component.Efficiency, xform: xform); + if (component.ReclaimMaterials) + SpawnMaterialsFromComposition(uid, item, completion * component.Efficiency, xform: xform); if (CanGib(uid, item, component)) { var logImpact = HasComp(item) ? LogImpact.Extreme : LogImpact.Medium; _adminLogger.Add(LogType.Gib, logImpact, $"{ToPrettyString(item):victim} was gibbed by {ToPrettyString(uid):entity} "); - SpawnChemicalsFromComposition(uid, item, completion, false, component, xform); + if (component.ReclaimSolutions) + SpawnChemicalsFromComposition(uid, item, completion, false, component, xform); _body.GibBody(item, true); _appearance.SetData(uid, RecyclerVisuals.Bloody, true); } else { - SpawnChemicalsFromComposition(uid, item, completion, true, component, xform); + if (component.ReclaimSolutions) + SpawnChemicalsFromComposition(uid, item, completion, true, component, xform); } QueueDel(item); diff --git a/Content.Server/Mech/Components/MechAssemblyComponent.cs b/Content.Server/Mech/Components/MechAssemblyComponent.cs deleted file mode 100644 index 2d352cbf15..0000000000 --- a/Content.Server/Mech/Components/MechAssemblyComponent.cs +++ /dev/null @@ -1,50 +0,0 @@ -using Content.Shared.Storage.Components; -using Content.Shared.Tag; -using Content.Shared.Tools; -using Robust.Shared.Containers; -using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Dictionary; - -namespace Content.Server.Mech.Components; - -/// -/// A component used to create a mech chassis -/// after the correct parts have been placed inside -/// of it. -/// -/// -/// The actual visualization of the parts being inserted is -/// done via -/// -[RegisterComponent] -public sealed partial class MechAssemblyComponent : Component -{ - /// - /// The parts needed to be placed within the assembly, - /// stored as a tag and a bool tracking whether or not - /// they're present. - /// - [DataField("requiredParts", required: true, customTypeSerializer: typeof(PrototypeIdDictionarySerializer))] - public Dictionary RequiredParts = new(); - - /// - /// The prototype spawned when the assembly is finished - /// - [DataField("finishedPrototype", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] - public string FinishedPrototype = default!; - - /// - /// The container that stores all of the parts when - /// they're being assembled. - /// - [ViewVariables] - public Container PartsContainer = default!; - - /// - /// The quality of tool needed to remove all the parts - /// from the parts container. - /// - [DataField("qualityNeeded", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string QualityNeeded = "Prying"; -} diff --git a/Content.Server/Mech/Systems/MechAssemblySystem.cs b/Content.Server/Mech/Systems/MechAssemblySystem.cs deleted file mode 100644 index bfd88d53b9..0000000000 --- a/Content.Server/Mech/Systems/MechAssemblySystem.cs +++ /dev/null @@ -1,67 +0,0 @@ -using Content.Server.Mech.Components; -using Content.Shared.Interaction; -using Content.Shared.Tag; -using Content.Shared.Tools.Components; -using Content.Shared.Tools.Systems; -using Robust.Server.Containers; -using Robust.Shared.Containers; - -namespace Content.Server.Mech.Systems; - -/// -/// Handles and the insertion -/// and removal of parts from the assembly. -/// -public sealed class MechAssemblySystem : EntitySystem -{ - [Dependency] private readonly ContainerSystem _container = default!; - [Dependency] private readonly TagSystem _tag = default!; - [Dependency] private readonly SharedToolSystem _toolSystem = default!; - - /// - public override void Initialize() - { - SubscribeLocalEvent(OnInit); - SubscribeLocalEvent(OnInteractUsing); - } - - private void OnInit(EntityUid uid, MechAssemblyComponent component, ComponentInit args) - { - component.PartsContainer = _container.EnsureContainer(uid, "mech-assembly-container"); - } - - private void OnInteractUsing(EntityUid uid, MechAssemblyComponent component, InteractUsingEvent args) - { - if (_toolSystem.HasQuality(args.Used, component.QualityNeeded)) - { - foreach (var tag in component.RequiredParts.Keys) - { - component.RequiredParts[tag] = false; - } - _container.EmptyContainer(component.PartsContainer); - return; - } - - if (!TryComp(args.Used, out var tagComp)) - return; - - foreach (var (tag, val) in component.RequiredParts) - { - if (!val && _tag.HasTag(tagComp, tag)) - { - component.RequiredParts[tag] = true; - _container.Insert(args.Used, component.PartsContainer); - break; - } - } - - //check to see if we have all the parts - foreach (var val in component.RequiredParts.Values) - { - if (!val) - return; - } - Spawn(component.FinishedPrototype, Transform(uid).Coordinates); - Del(uid); - } -} diff --git a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs index cb0fbd736c..7af093b178 100644 --- a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs +++ b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs @@ -1,65 +1,25 @@ -using System.Numerics; -using Content.Server.Access.Systems; using Content.Server.DeviceNetwork.Systems; using Content.Server.Emp; using Content.Server.Medical.CrewMonitoring; -using Content.Server.Popups; -using Content.Server.Station.Systems; -using Content.Shared.ActionBlocker; -using Content.Shared.Clothing; -using Content.Shared.Damage; -using Content.Shared.DeviceNetwork; -using Content.Shared.DoAfter; -using Content.Shared.Examine; -using Content.Shared.GameTicking; -using Content.Shared.Interaction; -using Content.Shared.Inventory; -using Content.Shared.Medical.SuitSensor; -using Content.Shared.Mobs; -using Content.Shared.Mobs.Components; -using Content.Shared.Mobs.Systems; -using Content.Shared.Verbs; -using Robust.Shared.Containers; -using Robust.Shared.Map; -using Robust.Shared.Prototypes; -using Robust.Shared.Random; -using Robust.Shared.Timing; using Content.Shared.DeviceNetwork.Components; +using Content.Shared.Medical.SuitSensor; +using Content.Shared.Medical.SuitSensors; +using Robust.Shared.Timing; namespace Content.Server.Medical.SuitSensors; -public sealed class SuitSensorSystem : EntitySystem +public sealed class SuitSensorSystem : SharedSuitSensorSystem { [Dependency] private readonly IGameTiming _gameTiming = default!; - [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly DeviceNetworkSystem _deviceNetworkSystem = default!; - [Dependency] private readonly IdCardSystem _idCardSystem = default!; - [Dependency] private readonly MobStateSystem _mobStateSystem = default!; - [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly SharedTransformSystem _transform = default!; - [Dependency] private readonly StationSystem _stationSystem = default!; [Dependency] private readonly SingletonDeviceNetServerSystem _singletonServerSystem = default!; - [Dependency] private readonly MobThresholdSystem _mobThresholdSystem = default!; - [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; - [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; - [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; - [Dependency] private readonly IPrototypeManager _proto = default!; - [Dependency] private readonly InventorySystem _inventory = default!; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnPlayerSpawn); - SubscribeLocalEvent(OnMapInit); - SubscribeLocalEvent(OnEquipped); - SubscribeLocalEvent(OnUnequipped); - SubscribeLocalEvent(OnExamine); - SubscribeLocalEvent>(OnVerb); - SubscribeLocalEvent(OnInsert); - SubscribeLocalEvent(OnRemove); + SubscribeLocalEvent(OnEmpPulse); SubscribeLocalEvent(OnEmpFinished); - SubscribeLocalEvent(OnSuitSensorDoAfter); } public override void Update(float frameTime) @@ -78,14 +38,13 @@ public sealed class SuitSensorSystem : EntitySystem if (curTime < sensor.NextUpdate) continue; - if (!CheckSensorAssignedStation(uid, sensor)) + if (!CheckSensorAssignedStation((uid, sensor))) continue; - // TODO: This would cause imprecision at different tick rates. - sensor.NextUpdate = curTime + sensor.UpdateRate; + sensor.NextUpdate += sensor.UpdateRate; // get sensor status - var status = GetSensorState(uid, sensor); + var status = GetSensorState((uid, sensor)); if (status == null) continue; @@ -112,399 +71,21 @@ public sealed class SuitSensorSystem : EntitySystem } } - /// - /// Checks whether the sensor is assigned to a station or not - /// and tries to assign an unassigned sensor to a station if it's currently on a grid - /// - /// True if the sensor is assigned to a station or assigning it was successful. False otherwise. - private bool CheckSensorAssignedStation(EntityUid uid, SuitSensorComponent sensor) - { - if (!sensor.StationId.HasValue && Transform(uid).GridUid == null) - return false; - - sensor.StationId = _stationSystem.GetOwningStation(uid); - return sensor.StationId.HasValue; - } - - private void OnPlayerSpawn(PlayerSpawnCompleteEvent ev) - { - // If the player spawns in arrivals then the grid underneath them may not be appropriate. - // in which case we'll just use the station spawn code told us they are attached to and set all of their - // sensors. - var sensorQuery = GetEntityQuery(); - var xformQuery = GetEntityQuery(); - RecursiveSensor(ev.Mob, ev.Station, sensorQuery, xformQuery); - } - - private void RecursiveSensor(EntityUid uid, EntityUid stationUid, EntityQuery sensorQuery, EntityQuery xformQuery) - { - var xform = xformQuery.GetComponent(uid); - var enumerator = xform.ChildEnumerator; - - while (enumerator.MoveNext(out var child)) - { - if (sensorQuery.TryGetComponent(child, out var sensor)) - { - sensor.StationId = stationUid; - } - - RecursiveSensor(child, stationUid, sensorQuery, xformQuery); - } - } - - private void OnMapInit(EntityUid uid, SuitSensorComponent component, MapInitEvent args) - { - // Fallback - component.StationId ??= _stationSystem.GetOwningStation(uid); - - // generate random mode - if (component.RandomMode) - { - //make the sensor mode favor higher levels, except coords. - var modesDist = new[] - { - SuitSensorMode.SensorOff, - SuitSensorMode.SensorBinary, SuitSensorMode.SensorBinary, - SuitSensorMode.SensorVitals, SuitSensorMode.SensorVitals, SuitSensorMode.SensorVitals, - SuitSensorMode.SensorCords, SuitSensorMode.SensorCords - }; - component.Mode = _random.Pick(modesDist); - } - } - - private void OnEquipped(EntityUid uid, SuitSensorComponent component, ref ClothingGotEquippedEvent args) - { - component.User = args.Wearer; - } - - private void OnUnequipped(EntityUid uid, SuitSensorComponent component, ref ClothingGotUnequippedEvent args) - { - component.User = null; - } - - private void OnExamine(EntityUid uid, SuitSensorComponent component, ExaminedEvent args) - { - if (!args.IsInDetailsRange) - return; - - string msg; - switch (component.Mode) - { - case SuitSensorMode.SensorOff: - msg = "suit-sensor-examine-off"; - break; - case SuitSensorMode.SensorBinary: - msg = "suit-sensor-examine-binary"; - break; - case SuitSensorMode.SensorVitals: - msg = "suit-sensor-examine-vitals"; - break; - case SuitSensorMode.SensorCords: - msg = "suit-sensor-examine-cords"; - break; - default: - return; - } - - args.PushMarkup(Loc.GetString(msg)); - } - - private void OnVerb(EntityUid uid, SuitSensorComponent component, GetVerbsEvent args) - { - // check if user can change sensor - if (component.ControlsLocked) - return; - - // standard interaction checks - if (!args.CanInteract || args.Hands == null) - return; - - if (!_interactionSystem.InRangeUnobstructed(args.User, args.Target)) - return; - - // check if target is incapacitated (cuffed, dead, etc) - if (component.User != null && args.User != component.User && _actionBlocker.CanInteract(component.User.Value, null)) - return; - - args.Verbs.UnionWith(new[] - { - CreateVerb(uid, component, args.User, SuitSensorMode.SensorOff), - CreateVerb(uid, component, args.User, SuitSensorMode.SensorBinary), - CreateVerb(uid, component, args.User, SuitSensorMode.SensorVitals), - CreateVerb(uid, component, args.User, SuitSensorMode.SensorCords) - }); - } - - private void OnInsert(EntityUid uid, SuitSensorComponent component, EntGotInsertedIntoContainerMessage args) - { - if (args.Container.ID != component.ActivationContainer) - return; - - component.User = args.Container.Owner; - } - - private void OnRemove(EntityUid uid, SuitSensorComponent component, EntGotRemovedFromContainerMessage args) - { - if (args.Container.ID != component.ActivationContainer) - return; - - component.User = null; - } - - private void OnEmpPulse(EntityUid uid, SuitSensorComponent component, ref EmpPulseEvent args) + private void OnEmpPulse(Entity ent, ref EmpPulseEvent args) { args.Affected = true; args.Disabled = true; - component.PreviousMode = component.Mode; - SetSensor((uid, component), SuitSensorMode.SensorOff, null); + ent.Comp.PreviousMode = ent.Comp.Mode; + SetSensor(ent.AsNullable(), SuitSensorMode.SensorOff, null); - component.PreviousControlsLocked = component.ControlsLocked; - component.ControlsLocked = true; + ent.Comp.PreviousControlsLocked = ent.Comp.ControlsLocked; + ent.Comp.ControlsLocked = true; } - private void OnEmpFinished(EntityUid uid, SuitSensorComponent component, ref EmpDisabledRemoved args) + private void OnEmpFinished(Entity ent, ref EmpDisabledRemoved args) { - SetSensor((uid, component), component.PreviousMode, null); - component.ControlsLocked = component.PreviousControlsLocked; - } - - private Verb CreateVerb(EntityUid uid, SuitSensorComponent component, EntityUid userUid, SuitSensorMode mode) - { - return new Verb() - { - Text = GetModeName(mode), - Disabled = component.Mode == mode, - Priority = -(int) mode, // sort them in descending order - Category = VerbCategory.SetSensor, - Act = () => TrySetSensor((uid, component), mode, userUid) - }; - } - - private string GetModeName(SuitSensorMode mode) - { - string name; - switch (mode) - { - case SuitSensorMode.SensorOff: - name = "suit-sensor-mode-off"; - break; - case SuitSensorMode.SensorBinary: - name = "suit-sensor-mode-binary"; - break; - case SuitSensorMode.SensorVitals: - name = "suit-sensor-mode-vitals"; - break; - case SuitSensorMode.SensorCords: - name = "suit-sensor-mode-cords"; - break; - default: - return ""; - } - - return Loc.GetString(name); - } - - public void TrySetSensor(Entity sensors, SuitSensorMode mode, EntityUid userUid) - { - var comp = sensors.Comp; - - if (!Resolve(sensors, ref comp)) - return; - - if (comp.User == null || userUid == comp.User) - SetSensor(sensors, mode, userUid); - else - { - var doAfterEvent = new SuitSensorChangeDoAfterEvent(mode); - var doAfterArgs = new DoAfterArgs(EntityManager, userUid, comp.SensorsTime, doAfterEvent, sensors) - { - BreakOnMove = true, - BreakOnDamage = true - }; - - _doAfterSystem.TryStartDoAfter(doAfterArgs); - } - } - - private void OnSuitSensorDoAfter(Entity sensors, ref SuitSensorChangeDoAfterEvent args) - { - if (args.Handled || args.Cancelled) - return; - - SetSensor(sensors, args.Mode, args.User); - } - - public void SetSensor(Entity sensors, SuitSensorMode mode, EntityUid? userUid = null) - { - var comp = sensors.Comp; - - comp.Mode = mode; - - if (userUid != null) - { - var msg = Loc.GetString("suit-sensor-mode-state", ("mode", GetModeName(mode))); - _popupSystem.PopupEntity(msg, sensors, userUid.Value); - } - } - - /// - /// Set all suit sensors on the equipment someone is wearing to the specified mode. - /// - public void SetAllSensors(EntityUid target, SuitSensorMode mode, SlotFlags slots = SlotFlags.All ) - { - // iterate over all inventory slots - var slotEnumerator = _inventory.GetSlotEnumerator(target, slots); - while (slotEnumerator.NextItem(out var item, out _)) - { - if (TryComp(item, out var sensorComp)) - SetSensor((item, sensorComp), mode); - } - } - - public SuitSensorStatus? GetSensorState(EntityUid uid, SuitSensorComponent? sensor = null, TransformComponent? transform = null) - { - if (!Resolve(uid, ref sensor, ref transform)) - return null; - - // check if sensor is enabled and worn by user - if (sensor.Mode == SuitSensorMode.SensorOff || sensor.User == null || !HasComp(sensor.User) || transform.GridUid == null) - return null; - - // try to get mobs id from ID slot - var userName = Loc.GetString("suit-sensor-component-unknown-name"); - var userJob = Loc.GetString("suit-sensor-component-unknown-job"); - var userJobIcon = "JobIconNoId"; - var userJobDepartments = new List(); - - if (_idCardSystem.TryFindIdCard(sensor.User.Value, out var card)) - { - if (card.Comp.FullName != null) - userName = card.Comp.FullName; - if (card.Comp.LocalizedJobTitle != null) - userJob = card.Comp.LocalizedJobTitle; - userJobIcon = card.Comp.JobIcon; - - foreach (var department in card.Comp.JobDepartments) - userJobDepartments.Add(Loc.GetString(_proto.Index(department).Name)); - } - - // get health mob state - var isAlive = false; - if (TryComp(sensor.User.Value, out MobStateComponent? mobState)) - isAlive = !_mobStateSystem.IsDead(sensor.User.Value, mobState); - - // get mob total damage - var totalDamage = 0; - if (TryComp(sensor.User.Value, out var damageable)) - totalDamage = damageable.TotalDamage.Int(); - - // Get mob total damage crit threshold - int? totalDamageThreshold = null; - if (_mobThresholdSystem.TryGetThresholdForState(sensor.User.Value, MobState.Critical, out var critThreshold)) - totalDamageThreshold = critThreshold.Value.Int(); - - // finally, form suit sensor status - var status = new SuitSensorStatus(GetNetEntity(sensor.User.Value), GetNetEntity(uid), userName, userJob, userJobIcon, userJobDepartments); - switch (sensor.Mode) - { - case SuitSensorMode.SensorBinary: - status.IsAlive = isAlive; - break; - case SuitSensorMode.SensorVitals: - status.IsAlive = isAlive; - status.TotalDamage = totalDamage; - status.TotalDamageThreshold = totalDamageThreshold; - break; - case SuitSensorMode.SensorCords: - status.IsAlive = isAlive; - status.TotalDamage = totalDamage; - status.TotalDamageThreshold = totalDamageThreshold; - EntityCoordinates coordinates; - var xformQuery = GetEntityQuery(); - - if (transform.GridUid != null) - { - coordinates = new EntityCoordinates(transform.GridUid.Value, - Vector2.Transform(_transform.GetWorldPosition(transform, xformQuery), - _transform.GetInvWorldMatrix(xformQuery.GetComponent(transform.GridUid.Value), xformQuery))); - } - else if (transform.MapUid != null) - { - coordinates = new EntityCoordinates(transform.MapUid.Value, - _transform.GetWorldPosition(transform, xformQuery)); - } - else - { - coordinates = EntityCoordinates.Invalid; - } - - status.Coordinates = GetNetCoordinates(coordinates); - break; - } - - return status; - } - - /// - /// Serialize create a device network package from the suit sensors status. - /// - public NetworkPayload SuitSensorToPacket(SuitSensorStatus status) - { - var payload = new NetworkPayload() - { - [DeviceNetworkConstants.Command] = DeviceNetworkConstants.CmdUpdatedState, - [SuitSensorConstants.NET_NAME] = status.Name, - [SuitSensorConstants.NET_JOB] = status.Job, - [SuitSensorConstants.NET_JOB_ICON] = status.JobIcon, - [SuitSensorConstants.NET_JOB_DEPARTMENTS] = status.JobDepartments, - [SuitSensorConstants.NET_IS_ALIVE] = status.IsAlive, - [SuitSensorConstants.NET_SUIT_SENSOR_UID] = status.SuitSensorUid, - [SuitSensorConstants.NET_OWNER_UID] = status.OwnerUid, - }; - - if (status.TotalDamage != null) - payload.Add(SuitSensorConstants.NET_TOTAL_DAMAGE, status.TotalDamage); - if (status.TotalDamageThreshold != null) - payload.Add(SuitSensorConstants.NET_TOTAL_DAMAGE_THRESHOLD, status.TotalDamageThreshold); - if (status.Coordinates != null) - payload.Add(SuitSensorConstants.NET_COORDINATES, status.Coordinates); - - return payload; - } - - /// - /// Try to create the suit sensors status from the device network message - /// - public SuitSensorStatus? PacketToSuitSensor(NetworkPayload payload) - { - // check command - if (!payload.TryGetValue(DeviceNetworkConstants.Command, out string? command)) - return null; - if (command != DeviceNetworkConstants.CmdUpdatedState) - return null; - - // check name, job and alive - if (!payload.TryGetValue(SuitSensorConstants.NET_NAME, out string? name)) return null; - if (!payload.TryGetValue(SuitSensorConstants.NET_JOB, out string? job)) return null; - if (!payload.TryGetValue(SuitSensorConstants.NET_JOB_ICON, out string? jobIcon)) return null; - if (!payload.TryGetValue(SuitSensorConstants.NET_JOB_DEPARTMENTS, out List? jobDepartments)) return null; - if (!payload.TryGetValue(SuitSensorConstants.NET_IS_ALIVE, out bool? isAlive)) return null; - if (!payload.TryGetValue(SuitSensorConstants.NET_SUIT_SENSOR_UID, out NetEntity suitSensorUid)) return null; - if (!payload.TryGetValue(SuitSensorConstants.NET_OWNER_UID, out NetEntity ownerUid)) return null; - - // try get total damage and cords (optionals) - payload.TryGetValue(SuitSensorConstants.NET_TOTAL_DAMAGE, out int? totalDamage); - payload.TryGetValue(SuitSensorConstants.NET_TOTAL_DAMAGE_THRESHOLD, out int? totalDamageThreshold); - payload.TryGetValue(SuitSensorConstants.NET_COORDINATES, out NetCoordinates? coords); - - var status = new SuitSensorStatus(ownerUid, suitSensorUid, name, job, jobIcon, jobDepartments) - { - IsAlive = isAlive.Value, - TotalDamage = totalDamage, - TotalDamageThreshold = totalDamageThreshold, - Coordinates = coords, - }; - return status; + SetSensor(ent.AsNullable(), ent.Comp.PreviousMode, null); + ent.Comp.ControlsLocked = ent.Comp.PreviousControlsLocked; } } diff --git a/Content.Server/Medical/VomitSystem.cs b/Content.Server/Medical/VomitSystem.cs index 9fee1dfc85..235cc17331 100644 --- a/Content.Server/Medical/VomitSystem.cs +++ b/Content.Server/Medical/VomitSystem.cs @@ -8,6 +8,7 @@ using Content.Shared.Chemistry.Components; using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Chemistry.Reagent; using Content.Shared.IdentityManagement; +using Content.Shared.Mobs.Systems; using Content.Shared.Movement.Systems; using Content.Shared.Nutrition.Components; using Content.Shared.Nutrition.EntitySystems; @@ -21,15 +22,16 @@ namespace Content.Server.Medical { [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly AudioSystem _audio = default!; + [Dependency] private readonly BloodstreamSystem _bloodstream = default!; [Dependency] private readonly BodySystem _body = default!; + [Dependency] private readonly ForensicsSystem _forensics = default!; [Dependency] private readonly HungerSystem _hunger = default!; + [Dependency] private readonly MobStateSystem _mobstate = default!; + [Dependency] private readonly MovementModStatusSystem _movementMod = default!; [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly PuddleSystem _puddle = default!; [Dependency] private readonly SharedSolutionContainerSystem _solutionContainer = default!; - [Dependency] private readonly MovementModStatusSystem _movementMod = default!; [Dependency] private readonly ThirstSystem _thirst = default!; - [Dependency] private readonly ForensicsSystem _forensics = default!; - [Dependency] private readonly BloodstreamSystem _bloodstream = default!; private static readonly ProtoId VomitCollection = "Vomit"; @@ -39,13 +41,18 @@ namespace Content.Server.Medical /// /// Make an entity vomit, if they have a stomach. /// - public void Vomit(EntityUid uid, float thirstAdded = -40f, float hungerAdded = -40f) + public void Vomit(EntityUid uid, float thirstAdded = -40f, float hungerAdded = -40f, bool force = false) { // Main requirement: You have a stomach var stomachList = _body.GetBodyOrganEntityComps(uid); if (stomachList.Count == 0) return; + // Vomit only if entity is alive + // Ignore condition if force was set to true + if (!force && _mobstate.IsDead(uid)) + return; + // Vomiting makes you hungrier and thirstier if (TryComp(uid, out var hunger)) _hunger.ModifyHunger(uid, hungerAdded, hunger); diff --git a/Content.Server/Mindshield/MindShieldSystem.cs b/Content.Server/Mindshield/MindShieldSystem.cs index 7cc1e8fc75..bc5b65159b 100644 --- a/Content.Server/Mindshield/MindShieldSystem.cs +++ b/Content.Server/Mindshield/MindShieldSystem.cs @@ -6,6 +6,7 @@ using Content.Shared.Database; using Content.Shared.Implants; using Content.Shared.Mindshield.Components; using Content.Shared.Revolutionary.Components; +using Content.Shared.Roles.Components; using Robust.Shared.Containers; namespace Content.Server.Mindshield; @@ -26,7 +27,7 @@ public sealed class MindShieldSystem : EntitySystem base.Initialize(); SubscribeLocalEvent(OnImplantImplanted); - SubscribeLocalEvent(OnImplantDraw); + SubscribeLocalEvent(OnImplantRemoved); } private void OnImplantImplanted(Entity ent, ref ImplantImplantedEvent ev) @@ -34,8 +35,8 @@ public sealed class MindShieldSystem : EntitySystem if (ev.Implanted == null) return; - EnsureComp(ev.Implanted.Value); - MindShieldRemovalCheck(ev.Implanted.Value, ev.Implant); + EnsureComp(ev.Implanted); + MindShieldRemovalCheck(ev.Implanted, ev.Implant); } /// @@ -57,9 +58,9 @@ public sealed class MindShieldSystem : EntitySystem } } - private void OnImplantDraw(Entity ent, ref EntGotRemovedFromContainerMessage args) + private void OnImplantRemoved(Entity ent, ref ImplantRemovedEvent args) { - RemComp(args.Container.Owner); + RemComp(args.Implanted); } } diff --git a/Content.Server/Morgue/Components/ActiveCrematoriumComponent.cs b/Content.Server/Morgue/Components/ActiveCrematoriumComponent.cs deleted file mode 100644 index e5180cd892..0000000000 --- a/Content.Server/Morgue/Components/ActiveCrematoriumComponent.cs +++ /dev/null @@ -1,11 +0,0 @@ -namespace Content.Server.Morgue.Components; - -/// -/// used to track actively cooking crematoriums -/// -[RegisterComponent] -public sealed partial class ActiveCrematoriumComponent : Component -{ - [ViewVariables(VVAccess.ReadWrite)] - public float Accumulator = 0; -} diff --git a/Content.Server/Morgue/Components/CrematoriumComponent.cs b/Content.Server/Morgue/Components/CrematoriumComponent.cs deleted file mode 100644 index 7e660479bf..0000000000 --- a/Content.Server/Morgue/Components/CrematoriumComponent.cs +++ /dev/null @@ -1,22 +0,0 @@ -using Robust.Shared.Audio; - -namespace Content.Server.Morgue.Components; - -[RegisterComponent] -public sealed partial class CrematoriumComponent : Component -{ - /// - /// The time it takes to cook in second - /// - [ViewVariables(VVAccess.ReadWrite)] - public int CookTime = 5; - - [DataField("cremateStartSound")] - public SoundSpecifier CremateStartSound = new SoundPathSpecifier("/Audio/Items/Lighters/lighter1.ogg"); - - [DataField("crematingSound")] - public SoundSpecifier CrematingSound = new SoundPathSpecifier("/Audio/Effects/burning.ogg"); - - [DataField("cremateFinishSound")] - public SoundSpecifier CremateFinishSound = new SoundPathSpecifier("/Audio/Machines/ding.ogg"); -} diff --git a/Content.Server/Morgue/CrematoriumSystem.cs b/Content.Server/Morgue/CrematoriumSystem.cs index 387be509e9..803b392fc7 100644 --- a/Content.Server/Morgue/CrematoriumSystem.cs +++ b/Content.Server/Morgue/CrematoriumSystem.cs @@ -1,195 +1,58 @@ using Content.Server.Ghost; -using Content.Server.Morgue.Components; -using Content.Server.Storage.Components; -using Content.Server.Storage.EntitySystems; -using Content.Shared.Database; -using Content.Shared.Examine; using Content.Shared.IdentityManagement; using Content.Shared.Interaction.Events; -using Content.Shared.Mind; using Content.Shared.Morgue; +using Content.Shared.Morgue.Components; using Content.Shared.Popups; -using Content.Shared.Standing; -using Content.Shared.Storage; -using Content.Shared.Storage.Components; -using Content.Shared.Verbs; -using Robust.Shared.Audio.Systems; -using Robust.Shared.Containers; using Robust.Shared.Player; namespace Content.Server.Morgue; - -public sealed class CrematoriumSystem : EntitySystem +public sealed class CrematoriumSystem : SharedCrematoriumSystem { - [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly GhostSystem _ghostSystem = default!; - [Dependency] private readonly EntityStorageSystem _entityStorage = default!; - [Dependency] private readonly SharedPopupSystem _popup = default!; - [Dependency] private readonly StandingStateSystem _standing = default!; - [Dependency] private readonly SharedMindSystem _minds = default!; - [Dependency] private readonly SharedContainerSystem _containers = default!; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnExamine); - SubscribeLocalEvent>(AddCremateVerb); SubscribeLocalEvent(OnSuicideByEnvironment); - SubscribeLocalEvent(OnAttemptOpen); } - private void OnExamine(EntityUid uid, CrematoriumComponent component, ExaminedEvent args) - { - if (!TryComp(uid, out var appearance)) - return; - - using (args.PushGroup(nameof(CrematoriumComponent))) - { - if (_appearance.TryGetData(uid, CrematoriumVisuals.Burning, out var isBurning, appearance) && - isBurning) - { - args.PushMarkup(Loc.GetString("crematorium-entity-storage-component-on-examine-details-is-burning", - ("owner", uid))); - } - - if (_appearance.TryGetData(uid, StorageVisuals.HasContents, out var hasContents, appearance) && - hasContents) - { - args.PushMarkup(Loc.GetString("crematorium-entity-storage-component-on-examine-details-has-contents")); - } - else - { - args.PushMarkup(Loc.GetString("crematorium-entity-storage-component-on-examine-details-empty")); - } - } - } - - private void OnAttemptOpen(EntityUid uid, ActiveCrematoriumComponent component, ref StorageOpenAttemptEvent args) - { - args.Cancelled = true; - } - - private void AddCremateVerb(EntityUid uid, CrematoriumComponent component, GetVerbsEvent args) - { - if (!TryComp(uid, out var storage)) - return; - - if (!args.CanAccess || !args.CanInteract || args.Hands == null || storage.Open) - return; - - if (HasComp(uid)) - return; - - AlternativeVerb verb = new() - { - Text = Loc.GetString("cremate-verb-get-data-text"), - // TODO VERB ICON add flame/burn symbol? - Act = () => TryCremate(uid, component, storage), - Impact = LogImpact.High // could be a body? or evidence? I dunno. - }; - args.Verbs.Add(verb); - } - - public bool Cremate(EntityUid uid, CrematoriumComponent? component = null, EntityStorageComponent? storage = null) - { - if (!Resolve(uid, ref component, ref storage)) - return false; - - if (HasComp(uid)) - return false; - - _audio.PlayPvs(component.CremateStartSound, uid); - _appearance.SetData(uid, CrematoriumVisuals.Burning, true); - - _audio.PlayPvs(component.CrematingSound, uid); - - AddComp(uid); - return true; - } - - public bool TryCremate(EntityUid uid, CrematoriumComponent? component = null, EntityStorageComponent? storage = null) - { - if (!Resolve(uid, ref component, ref storage)) - return false; - - if (storage.Open || storage.Contents.ContainedEntities.Count < 1) - return false; - - return Cremate(uid, component, storage); - } - - private void FinishCooking(EntityUid uid, CrematoriumComponent component, EntityStorageComponent? storage = null) - { - if (!Resolve(uid, ref storage)) - return; - - _appearance.SetData(uid, CrematoriumVisuals.Burning, false); - RemComp(uid); - - if (storage.Contents.ContainedEntities.Count > 0) - { - for (var i = storage.Contents.ContainedEntities.Count - 1; i >= 0; i--) - { - var item = storage.Contents.ContainedEntities[i]; - _containers.Remove(item, storage.Contents); - Del(item); - } - var ash = Spawn("Ash", Transform(uid).Coordinates); - _containers.Insert(ash, storage.Contents); - } - - _entityStorage.OpenStorage(uid, storage); - _audio.PlayPvs(component.CremateFinishSound, uid); - } - - private void OnSuicideByEnvironment(EntityUid uid, CrematoriumComponent component, SuicideByEnvironmentEvent args) + private void OnSuicideByEnvironment(Entity ent, ref SuicideByEnvironmentEvent args) { if (args.Handled) return; var victim = args.Victim; - if (TryComp(victim, out ActorComponent? actor) && _minds.TryGetMind(victim, out var mindId, out var mind)) + if (HasComp(victim) && Mind.TryGetMind(victim, out var mindId, out var mind)) { _ghostSystem.OnGhostAttempt(mindId, false, mind: mind); if (mind.OwnedEntity is { Valid: true } entity) { - _popup.PopupEntity(Loc.GetString("crematorium-entity-storage-component-suicide-message"), entity); + Popup.PopupEntity(Loc.GetString("crematorium-entity-storage-component-suicide-message"), entity); } } - _popup.PopupEntity(Loc.GetString("crematorium-entity-storage-component-suicide-message-others", + Popup.PopupEntity(Loc.GetString("crematorium-entity-storage-component-suicide-message-others", ("victim", Identity.Entity(victim, EntityManager))), - victim, Filter.PvsExcept(victim), true, PopupType.LargeCaution); + victim, + Filter.PvsExcept(victim), + true, + PopupType.LargeCaution); - if (_entityStorage.CanInsert(victim, uid)) + if (EntityStorage.CanInsert(victim, ent.Owner)) { - _entityStorage.CloseStorage(uid); - _standing.Down(victim, false); - _entityStorage.Insert(victim, uid); + EntityStorage.CloseStorage(ent.Owner); + Standing.Down(victim, false); + EntityStorage.Insert(victim, ent.Owner); } else { + EntityStorage.CloseStorage(ent.Owner); Del(victim); } - _entityStorage.CloseStorage(uid); - Cremate(uid, component); + Cremate(ent.AsNullable()); args.Handled = true; } - - public override void Update(float frameTime) - { - base.Update(frameTime); - - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var act, out var crem)) - { - act.Accumulator += frameTime; - - if (act.Accumulator >= crem.CookTime) - FinishCooking(uid, crem); - } - } } diff --git a/Content.Server/Morgue/MorgueSystem.cs b/Content.Server/Morgue/MorgueSystem.cs index 92ed16a06b..a97ccd04cd 100644 --- a/Content.Server/Morgue/MorgueSystem.cs +++ b/Content.Server/Morgue/MorgueSystem.cs @@ -1,95 +1,46 @@ -using Content.Server.Storage.Components; -using Content.Shared.Examine; -using Content.Shared.Mobs.Components; using Content.Shared.Morgue; using Content.Shared.Morgue.Components; +using Content.Shared.Storage.Components; using Robust.Shared.Audio.Systems; -using Robust.Shared.Player; +using Robust.Shared.Timing; namespace Content.Server.Morgue; -public sealed class MorgueSystem : EntitySystem +public sealed class MorgueSystem : SharedMorgueSystem { - [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnExamine); + SubscribeLocalEvent(OnMapInit); } - /// - /// Handles the examination text for looking at a morgue. - /// - private void OnExamine(Entity ent, ref ExaminedEvent args) + private void OnMapInit(Entity ent, ref MapInitEvent args) { - if (!args.IsInDetailsRange) - return; - - _appearance.TryGetData(ent.Owner, MorgueVisuals.Contents, out var contents); - - var text = contents switch - { - MorgueContents.HasSoul => "morgue-entity-storage-component-on-examine-details-body-has-soul", - MorgueContents.HasContents => "morgue-entity-storage-component-on-examine-details-has-contents", - MorgueContents.HasMob => "morgue-entity-storage-component-on-examine-details-body-has-no-soul", - _ => "morgue-entity-storage-component-on-examine-details-empty" - }; - - args.PushMarkup(Loc.GetString(text)); + ent.Comp.NextBeep = _timing.CurTime + ent.Comp.NextBeep; } /// - /// Updates data periodically in case something died/got deleted in the morgue. - /// - private void CheckContents(EntityUid uid, MorgueComponent? morgue = null, EntityStorageComponent? storage = null, AppearanceComponent? app = null) - { - if (!Resolve(uid, ref morgue, ref storage, ref app)) - return; - - if (storage.Contents.ContainedEntities.Count == 0) - { - _appearance.SetData(uid, MorgueVisuals.Contents, MorgueContents.Empty); - return; - } - - var hasMob = false; - - foreach (var ent in storage.Contents.ContainedEntities) - { - if (!hasMob && HasComp(ent)) - hasMob = true; - - if (HasComp(ent)) - { - _appearance.SetData(uid, MorgueVisuals.Contents, MorgueContents.HasSoul, app); - return; - } - } - - _appearance.SetData(uid, MorgueVisuals.Contents, hasMob ? MorgueContents.HasMob : MorgueContents.HasContents, app); - } - - /// - /// Handles the periodic beeping that morgues do when a live body is inside. + /// Handles the periodic beeping that morgues do when a live body is inside. /// public override void Update(float frameTime) { base.Update(frameTime); + var curTime = _timing.CurTime; var query = EntityQueryEnumerator(); while (query.MoveNext(out var uid, out var comp, out var storage, out var appearance)) { - comp.AccumulatedFrameTime += frameTime; - - CheckContents(uid, comp, storage); - - if (comp.AccumulatedFrameTime < comp.BeepTime) + if (curTime < comp.NextBeep) continue; - comp.AccumulatedFrameTime -= comp.BeepTime; + comp.NextBeep += comp.BeepTime; + + CheckContents(uid, comp, storage); if (comp.DoSoulBeep && _appearance.TryGetData(uid, MorgueVisuals.Contents, out var contents, appearance) && contents == MorgueContents.HasSoul) { diff --git a/Content.Server/NPC/Systems/NPCUtilitySystem.cs b/Content.Server/NPC/Systems/NPCUtilitySystem.cs index 6de26cd056..813626a1c4 100644 --- a/Content.Server/NPC/Systems/NPCUtilitySystem.cs +++ b/Content.Server/NPC/Systems/NPCUtilitySystem.cs @@ -1,4 +1,3 @@ -using Content.Server.Atmos.Components; using Content.Server.Fluids.EntitySystems; using Content.Server.Hands.Systems; using Content.Server.NPC.Queries; @@ -6,20 +5,18 @@ using Content.Server.NPC.Queries.Considerations; using Content.Server.NPC.Queries.Curves; using Content.Server.NPC.Queries.Queries; using Content.Server.Nutrition.Components; -using Content.Server.Nutrition.EntitySystems; -using Content.Server.Storage.Components; using Content.Server.Temperature.Components; using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Damage; using Content.Shared.Examine; using Content.Shared.Fluids.Components; -using Content.Shared.Hands.Components; using Content.Shared.Inventory; using Content.Shared.Mobs; using Content.Shared.Mobs.Systems; using Content.Shared.NPC.Systems; using Content.Shared.Nutrition.Components; using Content.Shared.Nutrition.EntitySystems; +using Content.Shared.Storage.Components; using Content.Shared.Stunnable; using Content.Shared.Tools.Systems; using Content.Shared.Turrets; @@ -31,6 +28,7 @@ using Microsoft.Extensions.ObjectPool; using Robust.Server.Containers; using Robust.Shared.Prototypes; using Robust.Shared.Utility; +using Content.Shared.Atmos.Components; using System.Linq; namespace Content.Server.NPC.Systems; @@ -42,14 +40,12 @@ public sealed class NPCUtilitySystem : EntitySystem { [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly ContainerSystem _container = default!; - [Dependency] private readonly DrinkSystem _drink = default!; [Dependency] private readonly EntityLookupSystem _lookup = default!; [Dependency] private readonly HandsSystem _hands = default!; [Dependency] private readonly InventorySystem _inventory = default!; [Dependency] private readonly IngestionSystem _ingestion = default!; [Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly NpcFactionSystem _npcFaction = default!; - [Dependency] private readonly OpenableSystem _openable = default!; [Dependency] private readonly PuddleSystem _puddle = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly SharedSolutionContainerSystem _solutions = default!; diff --git a/Content.Server/Ninja/Systems/SpiderChargeSystem.cs b/Content.Server/Ninja/Systems/SpiderChargeSystem.cs index c08576a5ce..c2d9fb3f68 100644 --- a/Content.Server/Ninja/Systems/SpiderChargeSystem.cs +++ b/Content.Server/Ninja/Systems/SpiderChargeSystem.cs @@ -1,10 +1,10 @@ using Content.Server.Mind; using Content.Server.Objectives.Components; using Content.Server.Popups; -using Content.Server.Roles; using Content.Shared.Ninja.Components; using Content.Shared.Ninja.Systems; using Content.Shared.Roles; +using Content.Shared.Roles.Components; using Content.Shared.Sticky; using Content.Shared.Trigger; diff --git a/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs b/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs index 5de6a5a631..6905979a5f 100644 --- a/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs +++ b/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs @@ -42,7 +42,7 @@ namespace Content.Server.Nutrition.EntitySystems if (!args.CanReach || !_solutionContainerSystem.TryGetRefillableSolution(entity.Owner, out _, out var solution) || !HasComp(args.Target) - || _ingestion.HasMouthAvailable(args.Target.Value, args.User) + || !_ingestion.HasMouthAvailable(args.Target.Value, args.User) ) { return; diff --git a/Content.Server/Objectives/Systems/NinjaConditionsSystem.cs b/Content.Server/Objectives/Systems/NinjaConditionsSystem.cs index c9e9326c1e..db78816503 100644 --- a/Content.Server/Objectives/Systems/NinjaConditionsSystem.cs +++ b/Content.Server/Objectives/Systems/NinjaConditionsSystem.cs @@ -1,8 +1,8 @@ using Content.Server.Objectives.Components; -using Content.Server.Roles; using Content.Shared.Objectives.Components; using Content.Shared.Ninja.Components; using Content.Shared.Roles; +using Content.Shared.Roles.Components; using Content.Shared.Warps; using Robust.Shared.Random; diff --git a/Content.Server/Objectives/Systems/PickObjectiveTargetSystem.cs b/Content.Server/Objectives/Systems/PickObjectiveTargetSystem.cs index 0fa20c27e5..b3075b2274 100644 --- a/Content.Server/Objectives/Systems/PickObjectiveTargetSystem.cs +++ b/Content.Server/Objectives/Systems/PickObjectiveTargetSystem.cs @@ -16,8 +16,6 @@ public sealed class PickObjectiveTargetSystem : EntitySystem { [Dependency] private readonly TargetObjectiveSystem _target = default!; [Dependency] private readonly SharedMindSystem _mind = default!; - [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly TraitorRuleSystem _traitorRule = default!; public override void Initialize() { diff --git a/Content.Server/Payload/EntitySystems/PayloadSystem.cs b/Content.Server/Payload/EntitySystems/PayloadSystem.cs index 11e97c5b93..542c3559d5 100644 --- a/Content.Server/Payload/EntitySystems/PayloadSystem.cs +++ b/Content.Server/Payload/EntitySystems/PayloadSystem.cs @@ -150,7 +150,9 @@ public sealed class PayloadSystem : EntitySystem private void HandleChemicalPayloadTrigger(Entity entity, ref TriggerEvent args) { - // TODO: Adjust to the new trigger system + if (args.Key != null && !entity.Comp.KeysIn.Contains(args.Key)) + return; + if (entity.Comp.BeakerSlotA.Item is not EntityUid beakerA || entity.Comp.BeakerSlotB.Item is not EntityUid beakerB || !TryComp(beakerA, out FitsInDispenserComponent? compA) diff --git a/Content.Server/Polymorph/Components/PolymorphedEntityComponent.cs b/Content.Server/Polymorph/Components/PolymorphedEntityComponent.cs index 7620203a86..7e3437a908 100644 --- a/Content.Server/Polymorph/Components/PolymorphedEntityComponent.cs +++ b/Content.Server/Polymorph/Components/PolymorphedEntityComponent.cs @@ -18,7 +18,7 @@ public sealed partial class PolymorphedEntityComponent : Component /// The original entity that the player will revert back into /// [DataField(required: true)] - public EntityUid Parent; + public EntityUid? Parent; /// /// The amount of time that has passed since the entity was created diff --git a/Content.Server/Polymorph/Systems/PolymorphSystem.cs b/Content.Server/Polymorph/Systems/PolymorphSystem.cs index d0f8b4e8fc..ee7fdf2b22 100644 --- a/Content.Server/Polymorph/Systems/PolymorphSystem.cs +++ b/Content.Server/Polymorph/Systems/PolymorphSystem.cs @@ -55,6 +55,7 @@ public sealed partial class PolymorphSystem : EntitySystem SubscribeLocalEvent(OnBeforeFullySliced); SubscribeLocalEvent(OnDestruction); + SubscribeLocalEvent(OnPolymorphedTerminating); InitializeMap(); } @@ -147,6 +148,16 @@ public sealed partial class PolymorphSystem : EntitySystem } } + private void OnPolymorphedTerminating(Entity ent, ref EntityTerminatingEvent args) + { + if (ent.Comp.Configuration.RevertOnDelete) + Revert(ent.AsNullable()); + + // Remove our original entity too + // Note that Revert will set Parent to null, so reverted entities will not be deleted + QueueDel(ent.Comp.Parent); + } + /// /// Polymorphs the target entity into the specific polymorph prototype /// @@ -248,7 +259,7 @@ public sealed partial class PolymorphSystem : EntitySystem if (configuration.TransferHumanoidAppearance) { - _humanoid.CloneAppearance(uid, child); + _humanoid.CloneAppearance(child, uid); } if (_mindSystem.TryGetMind(uid, out var mindId, out var mind)) @@ -284,13 +295,21 @@ public sealed partial class PolymorphSystem : EntitySystem if (Deleted(uid)) return null; - var parent = component.Parent; + if (component.Parent is not { } parent) + return null; + + // Clear our reference to the original entity + component.Parent = null; if (Deleted(parent)) return null; var uidXform = Transform(uid); var parentXform = Transform(parent); + // Don't swap back onto a terminating grid + if (TerminatingOrDeleted(uidXform.ParentUid)) + return null; + if (component.Configuration.ExitPolymorphSound != null) _audio.PlayPvs(component.Configuration.ExitPolymorphSound, uidXform.Coordinates); diff --git a/Content.Server/Power/Components/ApcPowerReceiverComponent.cs b/Content.Server/Power/Components/ApcPowerReceiverComponent.cs index aa8feff3e0..bfd096a253 100644 --- a/Content.Server/Power/Components/ApcPowerReceiverComponent.cs +++ b/Content.Server/Power/Components/ApcPowerReceiverComponent.cs @@ -14,9 +14,12 @@ namespace Content.Server.Power.Components /// /// Amount of charge this needs from an APC per second to function. /// - [ViewVariables(VVAccess.ReadWrite)] [DataField("powerLoad")] - public float Load { get => NetworkLoad.DesiredPower; set => NetworkLoad.DesiredPower = value; } + public override float Load + { + get => NetworkLoad.DesiredPower; + set => NetworkLoad.DesiredPower = value; + } public ApcPowerProviderComponent? Provider = null; diff --git a/Content.Server/Power/Generator/GeneratorSystem.cs b/Content.Server/Power/Generator/GeneratorSystem.cs index 72b99d59af..97491ddbf4 100644 --- a/Content.Server/Power/Generator/GeneratorSystem.cs +++ b/Content.Server/Power/Generator/GeneratorSystem.cs @@ -198,6 +198,7 @@ public sealed class GeneratorSystem : SharedGeneratorSystem generator.On = on; UpdateState(uid, generator); + Dirty(uid, generator); } public override void Update(float frameTime) diff --git a/Content.Server/Power/Generator/PortableGeneratorSystem.cs b/Content.Server/Power/Generator/PortableGeneratorSystem.cs index a2d506f6c2..d8fca4e48a 100644 --- a/Content.Server/Power/Generator/PortableGeneratorSystem.cs +++ b/Content.Server/Power/Generator/PortableGeneratorSystem.cs @@ -42,8 +42,6 @@ public sealed class PortableGeneratorSystem : SharedPortableGeneratorSystem SubscribeLocalEvent(GeneratorStartMessage); SubscribeLocalEvent(GeneratorStopMessage); SubscribeLocalEvent(GeneratorSwitchOutputMessage); - - SubscribeLocalEvent(OnSwitchPowerCheck); } private void GeneratorSwitchOutputMessage(EntityUid uid, PortableGeneratorComponent component, PortableGeneratorSwitchOutputMessage args) @@ -195,12 +193,6 @@ public sealed class PortableGeneratorSystem : SharedPortableGeneratorSystem } } - private void OnSwitchPowerCheck(EntityUid uid, FuelGeneratorComponent comp, ref SwitchPowerCheckEvent args) - { - if (comp.On) - args.DisableMessage = Loc.GetString("fuel-generator-verb-disable-on"); - } - public override void Update(float frameTime) { var query = EntityQueryEnumerator(); diff --git a/Content.Server/Power/Generator/PowerSwitchableSystem.cs b/Content.Server/Power/Generator/PowerSwitchableSystem.cs index 25de3bd293..1a89f20627 100644 --- a/Content.Server/Power/Generator/PowerSwitchableSystem.cs +++ b/Content.Server/Power/Generator/PowerSwitchableSystem.cs @@ -1,5 +1,4 @@ -using Content.Server.NodeContainer; -using Content.Server.NodeContainer.EntitySystems; +using Content.Server.NodeContainer.EntitySystems; using Content.Server.Popups; using Content.Server.Power.Components; using Content.Server.Power.Nodes; @@ -7,9 +6,7 @@ using Content.Shared.NodeContainer; using Content.Shared.Power; using Content.Shared.Power.Generator; using Content.Shared.Timing; -using Content.Shared.Verbs; using Robust.Shared.Audio.Systems; -using Robust.Shared.Utility; namespace Content.Server.Power.Generator; @@ -26,47 +23,9 @@ public sealed class PowerSwitchableSystem : SharedPowerSwitchableSystem [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly UseDelaySystem _useDelay = default!; - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent>(GetVerbs); - } - - private void GetVerbs(EntityUid uid, PowerSwitchableComponent comp, GetVerbsEvent args) - { - if (!args.CanAccess || !args.CanInteract) - return; - - var voltage = VoltageColor(GetNextVoltage(uid, comp)); - var msg = Loc.GetString("power-switchable-switch-voltage", ("voltage", voltage)); - - InteractionVerb verb = new() - { - Act = () => - { - // don't need to check it again since if its disabled server wont let the verb act - Cycle(uid, args.User, comp); - }, - Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/zap.svg.192dpi.png")), - Text = msg - }; - - var ev = new SwitchPowerCheckEvent(); - RaiseLocalEvent(uid, ref ev); - if (ev.DisableMessage != null) - { - verb.Message = ev.DisableMessage; - verb.Disabled = true; - } - - args.Verbs.Add(verb); - } - - /// - /// Cycles voltage then updates nodes and optionally power supplier to match it. - /// - public void Cycle(EntityUid uid, EntityUid user, PowerSwitchableComponent? comp = null) + // TODO: Prediction + /// + public override void Cycle(EntityUid uid, EntityUid user, PowerSwitchableComponent? comp = null) { if (!Resolve(uid, ref comp)) return; @@ -115,10 +74,3 @@ public sealed class PowerSwitchableSystem : SharedPowerSwitchableSystem _useDelay.TryResetDelay((uid, useDelay)); } } - -/// -/// Raised on a to see if its verb should work. -/// If is non-null, the verb is disabled with that as the message. -/// -[ByRefEvent] -public record struct SwitchPowerCheckEvent(string? DisableMessage = null); diff --git a/Content.Server/Resist/ResistLockerSystem.cs b/Content.Server/Resist/ResistLockerSystem.cs index 597f3ee8d0..3698306b31 100644 --- a/Content.Server/Resist/ResistLockerSystem.cs +++ b/Content.Server/Resist/ResistLockerSystem.cs @@ -1,11 +1,11 @@ using Content.Server.Popups; -using Content.Server.Storage.Components; using Content.Server.Storage.EntitySystems; using Content.Shared.DoAfter; using Content.Shared.Lock; using Content.Shared.Movement.Events; using Content.Shared.Popups; using Content.Shared.Resist; +using Content.Shared.Storage.Components; using Content.Shared.Tools.Components; using Content.Shared.Tools.Systems; using Content.Shared.ActionBlocker; diff --git a/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs b/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs index 0ef7b8f533..38c3480078 100644 --- a/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs +++ b/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs @@ -3,7 +3,7 @@ using Content.Shared.Damage; using Content.Shared.Revenant; using Robust.Shared.Random; using Content.Shared.Tag; -using Content.Server.Storage.Components; +using Content.Shared.Storage.Components; using Content.Server.Light.Components; using Content.Server.Ghost; using Robust.Shared.Physics; @@ -20,6 +20,7 @@ using Content.Shared.DoAfter; using Content.Shared.Emag.Systems; using Content.Shared.FixedPoint; using Content.Shared.Humanoid; +using Content.Shared.Light.Components; using Content.Shared.Maps; using Content.Shared.Mobs; using Content.Shared.Mobs.Components; diff --git a/Content.Server/Robotics/Systems/RoboticsConsoleSystem.cs b/Content.Server/Robotics/Systems/RoboticsConsoleSystem.cs index c4554d65d6..560d8174aa 100644 --- a/Content.Server/Robotics/Systems/RoboticsConsoleSystem.cs +++ b/Content.Server/Robotics/Systems/RoboticsConsoleSystem.cs @@ -95,6 +95,9 @@ public sealed class RoboticsConsoleSystem : SharedRoboticsConsoleSystem private void OnDisable(Entity ent, ref RoboticsConsoleDisableMessage args) { + if (!ent.Comp.AllowBorgControl) + return; + if (_lock.IsLocked(ent.Owner)) return; @@ -112,6 +115,9 @@ public sealed class RoboticsConsoleSystem : SharedRoboticsConsoleSystem private void OnDestroy(Entity ent, ref RoboticsConsoleDestroyMessage args) { + if (!ent.Comp.AllowBorgControl) + return; + if (_lock.IsLocked(ent.Owner)) return; @@ -139,7 +145,7 @@ public sealed class RoboticsConsoleSystem : SharedRoboticsConsoleSystem private void UpdateUserInterface(Entity ent) { - var state = new RoboticsConsoleState(ent.Comp.Cyborgs); + var state = new RoboticsConsoleState(ent.Comp.Cyborgs, ent.Comp.AllowBorgControl); _ui.SetUiState(ent.Owner, RoboticsConsoleUiKey.Key, state); } } diff --git a/Content.Server/Roles/DragonRoleComponent.cs b/Content.Server/Roles/DragonRoleComponent.cs deleted file mode 100644 index c47455d8f6..0000000000 --- a/Content.Server/Roles/DragonRoleComponent.cs +++ /dev/null @@ -1,12 +0,0 @@ -using Content.Server.Dragon; -using Content.Shared.Roles; - -namespace Content.Server.Roles; - -/// -/// Added to mind role entities to tag that they are a space dragon. -/// -[RegisterComponent, Access(typeof(DragonSystem))] -public sealed partial class DragonRoleComponent : BaseMindRoleComponent -{ -} diff --git a/Content.Server/Roles/InitialInfectedRoleComponent.cs b/Content.Server/Roles/InitialInfectedRoleComponent.cs deleted file mode 100644 index 475cd3ba60..0000000000 --- a/Content.Server/Roles/InitialInfectedRoleComponent.cs +++ /dev/null @@ -1,12 +0,0 @@ -using Content.Shared.Roles; - -namespace Content.Server.Roles; - -/// -/// Added to mind role entities to tag that they are an initial infected. -/// -[RegisterComponent] -public sealed partial class InitialInfectedRoleComponent : BaseMindRoleComponent -{ - -} diff --git a/Content.Server/Roles/NinjaRoleComponent.cs b/Content.Server/Roles/NinjaRoleComponent.cs deleted file mode 100644 index 7bdffe67a3..0000000000 --- a/Content.Server/Roles/NinjaRoleComponent.cs +++ /dev/null @@ -1,11 +0,0 @@ -using Content.Shared.Roles; - -namespace Content.Server.Roles; - -/// -/// Added to mind role entities to tag that they are a space ninja. -/// -[RegisterComponent] -public sealed partial class NinjaRoleComponent : BaseMindRoleComponent -{ -} diff --git a/Content.Server/Roles/NukeopsRoleComponent.cs b/Content.Server/Roles/NukeopsRoleComponent.cs deleted file mode 100644 index 41561088ea..0000000000 --- a/Content.Server/Roles/NukeopsRoleComponent.cs +++ /dev/null @@ -1,11 +0,0 @@ -using Content.Shared.Roles; - -namespace Content.Server.Roles; - -/// -/// Added to mind role entities to tag that they are a nuke operative. -/// -[RegisterComponent] -public sealed partial class NukeopsRoleComponent : BaseMindRoleComponent -{ -} diff --git a/Content.Server/Roles/ParadoxCloneRoleComponent.cs b/Content.Server/Roles/ParadoxCloneRoleComponent.cs deleted file mode 100644 index 32ebb2fe2d..0000000000 --- a/Content.Server/Roles/ParadoxCloneRoleComponent.cs +++ /dev/null @@ -1,17 +0,0 @@ -using Content.Shared.Roles; - -namespace Content.Server.Roles; - -/// -/// Added to mind role entities to tag that they are a paradox clone. -/// -[RegisterComponent] -public sealed partial class ParadoxCloneRoleComponent : BaseMindRoleComponent -{ - /// - /// Name modifer applied to the player when they turn into a ghost. - /// Needed to be able to keep the original and the clone apart in dead chat. - /// - [DataField] - public LocId? NameModifier = "paradox-clone-ghost-name-modifier"; -} diff --git a/Content.Server/Roles/ParadoxCloneRoleSystem.cs b/Content.Server/Roles/ParadoxCloneRoleSystem.cs index 83e23fef91..85332ef4a4 100644 --- a/Content.Server/Roles/ParadoxCloneRoleSystem.cs +++ b/Content.Server/Roles/ParadoxCloneRoleSystem.cs @@ -1,7 +1,7 @@ using Content.Shared.Ghost; using Content.Shared.Mind; using Content.Shared.NameModifier.EntitySystems; -using Content.Shared.Roles; +using Content.Shared.Roles.Components; namespace Content.Server.Roles; @@ -19,11 +19,13 @@ public sealed class ParadoxCloneRoleSystem : EntitySystem private void OnRefreshNameModifiers(Entity ent, ref MindRelayedEvent args) { - if (!TryComp(ent.Owner, out var roleComp)) + var mindId = Transform(ent).ParentUid; // the mind role entity is in a container in the mind entity + + if (!TryComp(mindId, out var mindComp)) return; // only show for ghosts - if (!HasComp(roleComp.Mind.Comp.OwnedEntity)) + if (!HasComp(mindComp.OwnedEntity)) return; if (ent.Comp.NameModifier != null) diff --git a/Content.Server/Roles/RemoveRoleCommand.cs b/Content.Server/Roles/RemoveRoleCommand.cs index 2d18415067..f3cc4a834d 100644 --- a/Content.Server/Roles/RemoveRoleCommand.cs +++ b/Content.Server/Roles/RemoveRoleCommand.cs @@ -3,6 +3,7 @@ using Content.Shared.Administration; using Content.Shared.Players; using Content.Shared.Roles; using Content.Shared.Roles.Jobs; +using Content.Shared.Roles.Components; using Robust.Server.Player; using Robust.Shared.Console; diff --git a/Content.Server/Roles/RevolutionaryRoleComponent.cs b/Content.Server/Roles/RevolutionaryRoleComponent.cs deleted file mode 100644 index dcdb131b9d..0000000000 --- a/Content.Server/Roles/RevolutionaryRoleComponent.cs +++ /dev/null @@ -1,16 +0,0 @@ -using Content.Shared.Roles; - -namespace Content.Server.Roles; - -/// -/// Added to mind role entities to tag that they are a Revolutionary. -/// -[RegisterComponent] -public sealed partial class RevolutionaryRoleComponent : BaseMindRoleComponent -{ - /// - /// For headrevs, how many people you have converted. - /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - public uint ConvertedCount = 0; -} diff --git a/Content.Server/Roles/RoleBriefingComponent.cs b/Content.Server/Roles/RoleBriefingComponent.cs deleted file mode 100644 index f4d3fe6353..0000000000 --- a/Content.Server/Roles/RoleBriefingComponent.cs +++ /dev/null @@ -1,13 +0,0 @@ -using Content.Shared.Roles; - -namespace Content.Server.Roles; - -/// -/// Adds a briefing to the character info menu, does nothing else. -/// -[RegisterComponent] -public sealed partial class RoleBriefingComponent : BaseMindRoleComponent -{ - [DataField] - public string Briefing; -} diff --git a/Content.Server/Roles/RoleBriefingSystem.cs b/Content.Server/Roles/RoleBriefingSystem.cs index 17b62a08b3..6825fe8e10 100644 --- a/Content.Server/Roles/RoleBriefingSystem.cs +++ b/Content.Server/Roles/RoleBriefingSystem.cs @@ -1,3 +1,5 @@ +using Content.Shared.Roles.Components; + namespace Content.Server.Roles; public sealed class RoleBriefingSystem : EntitySystem diff --git a/Content.Server/Roles/RoleSystem.cs b/Content.Server/Roles/RoleSystem.cs index 6cbd039c73..346e13bd07 100644 --- a/Content.Server/Roles/RoleSystem.cs +++ b/Content.Server/Roles/RoleSystem.cs @@ -36,7 +36,7 @@ public sealed class RoleSystem : SharedRoleSystem // Briefing is no longer raised on the mind entity itself // because all the components that briefings subscribe to should be on Mind Role Entities - foreach(var role in mindComp.MindRoles) + foreach (var role in mindComp.MindRoleContainer.ContainedEntities) { RaiseLocalEvent(role, ref ev); } diff --git a/Content.Server/Roles/SubvertedSiliconRoleComponent.cs b/Content.Server/Roles/SubvertedSiliconRoleComponent.cs deleted file mode 100644 index 55727573b9..0000000000 --- a/Content.Server/Roles/SubvertedSiliconRoleComponent.cs +++ /dev/null @@ -1,11 +0,0 @@ -using Content.Shared.Roles; - -namespace Content.Server.Roles; - -/// -/// Added to mind role entities to tag that they are a hacked borg. -/// -[RegisterComponent] -public sealed partial class SubvertedSiliconRoleComponent : BaseMindRoleComponent -{ -} diff --git a/Content.Server/Roles/SurvivorRoleComponent.cs b/Content.Server/Roles/SurvivorRoleComponent.cs deleted file mode 100644 index e5e6dd9f87..0000000000 --- a/Content.Server/Roles/SurvivorRoleComponent.cs +++ /dev/null @@ -1,9 +0,0 @@ -using Content.Shared.Roles; - -namespace Content.Server.Roles; - -/// -/// Adds to a mind role ent to tag they're a Survivor -/// -[RegisterComponent] -public sealed partial class SurvivorRoleComponent : BaseMindRoleComponent; diff --git a/Content.Server/Roles/ThiefRoleComponent.cs b/Content.Server/Roles/ThiefRoleComponent.cs deleted file mode 100644 index c0ddee71a4..0000000000 --- a/Content.Server/Roles/ThiefRoleComponent.cs +++ /dev/null @@ -1,11 +0,0 @@ -using Content.Shared.Roles; - -namespace Content.Server.Roles; - -/// -/// Added to mind role entities to tag that they are a thief. -/// -[RegisterComponent] -public sealed partial class ThiefRoleComponent : BaseMindRoleComponent -{ -} diff --git a/Content.Server/Roles/TraitorRoleComponent.cs b/Content.Server/Roles/TraitorRoleComponent.cs deleted file mode 100644 index a8a11a8f1b..0000000000 --- a/Content.Server/Roles/TraitorRoleComponent.cs +++ /dev/null @@ -1,11 +0,0 @@ -using Content.Shared.Roles; - -namespace Content.Server.Roles; - -/// -/// Added to mind role entities to tag that they are a syndicate traitor. -/// -[RegisterComponent] -public sealed partial class TraitorRoleComponent : BaseMindRoleComponent -{ -} diff --git a/Content.Server/Roles/WizardRoleComponent.cs b/Content.Server/Roles/WizardRoleComponent.cs deleted file mode 100644 index 72a89ee2ca..0000000000 --- a/Content.Server/Roles/WizardRoleComponent.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace Content.Server.Roles; - -/// -/// Mind role to tag entities that they're a Wizard -/// -[RegisterComponent] -public sealed partial class WizardRoleComponent : Component; diff --git a/Content.Server/Roles/ZombieRoleComponent.cs b/Content.Server/Roles/ZombieRoleComponent.cs deleted file mode 100644 index cff25e53e8..0000000000 --- a/Content.Server/Roles/ZombieRoleComponent.cs +++ /dev/null @@ -1,11 +0,0 @@ -using Content.Shared.Roles; - -namespace Content.Server.Roles; - -/// -/// Added to mind role entities to tag that they are a zombie. -/// -[RegisterComponent] -public sealed partial class ZombieRoleComponent : BaseMindRoleComponent -{ -} diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs index 53714c846a..e0bbc9d090 100644 --- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs @@ -7,6 +7,7 @@ using Content.Server.Administration.Managers; using Content.Server.Chat.Systems; using Content.Server.Communications; using Content.Server.DeviceNetwork.Systems; +using Content.Server.GameTicking; using Content.Server.GameTicking.Events; using Content.Server.Pinpointer; using Content.Server.Popups; @@ -57,6 +58,7 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem [Dependency] private readonly CommunicationsConsoleSystem _commsConsole = default!; [Dependency] private readonly DeviceNetworkSystem _deviceNetworkSystem = default!; [Dependency] private readonly DockingSystem _dock = default!; + [Dependency] private readonly GameTicker _ticker = default!; [Dependency] private readonly IdCardSystem _idSystem = default!; [Dependency] private readonly NavMapSystem _navMap = default!; [Dependency] private readonly MapLoaderSystem _loader = default!; @@ -157,7 +159,9 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem public override void Update(float frameTime) { base.Update(frameTime); - UpdateEmergencyConsole(frameTime); + // Don't handle any of this logic if in lobby + if (_ticker.RunLevel != GameRunLevel.PreRoundLobby) + UpdateEmergencyConsole(frameTime); } /// diff --git a/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs b/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs index 049e149135..cbd6abe9f5 100644 --- a/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs +++ b/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs @@ -235,6 +235,8 @@ public sealed partial class ShuttleConsoleSystem : SharedShuttleConsoleSystem _xformQuery.TryGetComponent(comp.DockedWith, out var otherDockXform) ? GetNetEntity(otherDockXform.GridUid) : null, + Color = comp.RadarColor, + HighlightedColor = comp.HighlightedRadarColor }; gridDocks.Add(state); diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.Impact.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.Impact.cs index e78a17e180..b5adeb04db 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.Impact.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.Impact.cs @@ -249,7 +249,7 @@ public sealed partial class ShuttleSystem if (direction.LengthSquared() > minsq) { - _stuns.TryUpdateKnockdownDuration(uid, knockdownTime); + _stuns.TryCrawling(uid, knockdownTime); _throwing.TryThrow(uid, direction, physics, Transform(uid), _projQuery, direction.Length(), playSound: false); } else diff --git a/Content.Server/Silicons/Borgs/BorgSystem.MMI.cs b/Content.Server/Silicons/Borgs/BorgSystem.MMI.cs index 7435e38f5a..b41f1397ec 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.MMI.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.MMI.cs @@ -1,7 +1,7 @@ -using Content.Server.Roles; -using Content.Shared.Containers.ItemSlots; +using Content.Shared.Containers.ItemSlots; using Content.Shared.Mind.Components; using Content.Shared.Roles; +using Content.Shared.Roles.Components; using Content.Shared.Silicons.Borgs.Components; using Robust.Shared.Containers; diff --git a/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs b/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs index 07fb1cb30b..bbd62d7a01 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs @@ -52,7 +52,7 @@ public sealed partial class BorgSystem private void OnProvideItemStartup(EntityUid uid, ItemBorgModuleComponent component, ComponentStartup args) { - component.ProvidedContainer = Container.EnsureContainer(uid, component.ProvidedContainerId); + Container.EnsureContainer(uid, component.HoldingContainer); } private void OnSelectableInstalled(EntityUid uid, SelectableBorgModuleComponent component, ref BorgModuleInstalledEvent args) @@ -187,43 +187,43 @@ public sealed partial class BorgSystem if (!TryComp(chassis, out var hands)) return; - var xform = Transform(chassis); - foreach (var itemProto in component.Items) - { - EntityUid item; + if (!_container.TryGetContainer(uid, component.HoldingContainer, out var container)) + return; - if (!component.ItemsCreated) + var xform = Transform(chassis); + + for (var i = 0; i < component.Hands.Count; i++) + { + var hand = component.Hands[i]; + var handId = $"{uid}-hand-{i}"; + + _hands.AddHand((chassis, hands), handId, hand.Hand); + EntityUid? item = null; + + if (component.StoredItems is not null) + { + if (component.StoredItems.TryGetValue(handId, out var storedItem)) + { + item = storedItem; + _container.Remove(storedItem, container, force: true); + } + } + else if (hand.Item is { } itemProto) { item = Spawn(itemProto, xform.Coordinates); } - else + + if (item is { } pickUp) { - item = component.ProvidedContainer.ContainedEntities - .FirstOrDefault(ent => Prototype(ent)?.ID == itemProto.Id); - if (!item.IsValid()) + _hands.DoPickup(chassis, handId, pickUp, hands); + if (!hand.ForceRemovable && hand.Hand.Whitelist == null && hand.Hand.Blacklist == null) { - Log.Debug($"no items found: {component.ProvidedContainer.ContainedEntities.Count}"); - continue; + EnsureComp(pickUp); } - - _container.Remove(item, component.ProvidedContainer, force: true); } - - if (!item.IsValid()) - { - Log.Debug("no valid item"); - continue; - } - - var handId = $"{uid}-item{component.HandCounter}"; - component.HandCounter++; - _hands.AddHand((chassis, hands), handId, HandLocation.Middle); - _hands.DoPickup(chassis, handId, item, hands); - EnsureComp(item); - component.ProvidedItems.Add(handId, item); } - component.ItemsCreated = true; + Dirty(uid, component); } private void RemoveProvidedItems(EntityUid chassis, EntityUid uid, BorgChassisComponent? chassisComponent = null, ItemBorgModuleComponent? component = null) @@ -234,27 +234,33 @@ public sealed partial class BorgSystem if (!TryComp(chassis, out var hands)) return; - if (TerminatingOrDeleted(uid)) - { - foreach (var (hand, item) in component.ProvidedItems) - { - QueueDel(item); - _hands.RemoveHand(chassis, hand); - } - component.ProvidedItems.Clear(); + if (!_container.TryGetContainer(uid, component.HoldingContainer, out var container)) return; - } - foreach (var (handId, item) in component.ProvidedItems) + if (TerminatingOrDeleted(uid)) + return; + + component.StoredItems ??= new(); + + for (var i = 0; i < component.Hands.Count; i++) { - if (LifeStage(item) <= EntityLifeStage.MapInitialized) + var handId = $"{uid}-hand-{i}"; + + if (_hands.TryGetHeldItem(chassis, handId, out var held)) { - RemComp(item); - _container.Insert(item, component.ProvidedContainer); + RemComp(held.Value); + _container.Insert(held.Value, container); + component.StoredItems[handId] = held.Value; } + else + { + component.StoredItems.Remove(handId); + } + _hands.RemoveHand(chassis, handId); } - component.ProvidedItems.Clear(); + + Dirty(uid, component); } /// @@ -286,8 +292,8 @@ public sealed partial class BorgSystem if (!TryComp(containedModuleUid, out var containedItemModuleComp)) continue; - if (containedItemModuleComp.Items.Count == itemModuleComp.Items.Count && - containedItemModuleComp.Items.All(itemModuleComp.Items.Contains)) + if (containedItemModuleComp.Hands.Count == itemModuleComp.Hands.Count && + containedItemModuleComp.Hands.All(itemModuleComp.Hands.Contains)) { if (user != null) Popup.PopupEntity(Loc.GetString("borg-module-duplicate"), uid, user.Value); diff --git a/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs b/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs index debed525f6..082e6776f0 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs @@ -1,4 +1,9 @@ +using Content.Shared.Containers.ItemSlots; using Content.Shared.DeviceNetwork; +using Content.Shared.Damage; +using Content.Shared.FixedPoint; +using Content.Shared.Mobs; +using Content.Shared.Mobs.Systems; using Content.Shared.Movement.Components; using Content.Shared.Popups; using Content.Shared.Robotics; @@ -14,6 +19,8 @@ namespace Content.Server.Silicons.Borgs; public sealed partial class BorgSystem { [Dependency] private readonly EmagSystem _emag = default!; + [Dependency] private readonly MobThresholdSystem _mobThresholdSystem = default!; + [Dependency] private readonly ItemSlotsSystem _itemSlotsSystem = default!; private void InitializeTransponder() { @@ -28,7 +35,7 @@ public sealed partial class BorgSystem var query = EntityQueryEnumerator(); while (query.MoveNext(out var uid, out var comp, out var chassis, out var device, out var meta)) { - if (comp.NextDisable is {} nextDisable && now >= nextDisable) + if (comp.NextDisable is { } nextDisable && now >= nextDisable) DoDisable((uid, comp, chassis, meta)); if (now < comp.NextBroadcast) @@ -38,13 +45,17 @@ public sealed partial class BorgSystem if (_powerCell.TryGetBatteryFromSlot(uid, out var battery)) charge = battery.CurrentCharge / battery.MaxCharge; - var hasBrain = chassis.BrainEntity != null && !comp.FakeDisabled; + var hpPercent = CalcHP(uid); + + // checks if it has a brain and if the brain is not a empty MMI (gives false anyway if the fake disable is true) + var hasBrain = CheckBrain(chassis.BrainEntity) && !comp.FakeDisabled; var canDisable = comp.NextDisable == null && !comp.FakeDisabling; var data = new CyborgControlData( comp.Sprite, comp.Name, meta.EntityName, charge, + hpPercent, chassis.ModuleCount, hasBrain, canDisable); @@ -70,7 +81,7 @@ public sealed partial class BorgSystem return; } - if (ent.Comp2.BrainEntity is not {} brain) + if (ent.Comp2.BrainEntity is not { } brain) return; var message = Loc.GetString(ent.Comp1.DisabledPopup, ("name", Name(ent, ent.Comp3))); @@ -151,4 +162,40 @@ public sealed partial class BorgSystem { ent.Comp.Name = name; } + + /// + /// Returns a ratio between 0 and 1, 1 when they have no damage and 0 whenever they are crit (or more damaged) + /// + private float CalcHP(EntityUid uid) + { + if (!TryComp(uid, out var damageable)) + return 1; + + if (!_mobState.IsAlive(uid)) + return 0; + + if (!_mobThresholdSystem.TryGetThresholdForState(uid, MobState.Critical, out var threshold)) + { + Log.Error($"Borg({ToPrettyString(uid)}), doesn't have critical threshold."); + return 1; + } + + return 1 - ((FixedPoint2)(damageable.TotalDamage / threshold)).Float(); + } + + /// + /// Returns true if the borg has a brain + /// + private bool CheckBrain(EntityUid? brainEntity) + { + if (brainEntity == null) + return false; + + // if the brainEntity.Value has the component MMIComponent then it is a MMI, + // in that case it trys to get the "brain" of the MMI, if it is null the MMI is empty and so it returns false + if (TryComp(brainEntity.Value, out var mmi) && _itemSlotsSystem.GetItemOrNull(brainEntity.Value, mmi.BrainSlotId) == null) + return false; + + return true; + } } diff --git a/Content.Server/Silicons/Borgs/BorgSystem.cs b/Content.Server/Silicons/Borgs/BorgSystem.cs index f33b71c54e..88d484b846 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.cs @@ -290,8 +290,8 @@ public sealed partial class BorgSystem : SharedBorgSystem { if (!_powerCell.TryGetBatteryFromSlot(ent, out var battery, slotComponent)) { - _alerts.ClearAlert(ent, ent.Comp.BatteryAlert); - _alerts.ShowAlert(ent, ent.Comp.NoBatteryAlert); + _alerts.ClearAlert(ent.Owner, ent.Comp.BatteryAlert); + _alerts.ShowAlert(ent.Owner, ent.Comp.NoBatteryAlert); return; } @@ -304,8 +304,8 @@ public sealed partial class BorgSystem : SharedBorgSystem chargePercent = 1; } - _alerts.ClearAlert(ent, ent.Comp.NoBatteryAlert); - _alerts.ShowAlert(ent, ent.Comp.BatteryAlert, chargePercent); + _alerts.ClearAlert(ent.Owner, ent.Comp.NoBatteryAlert); + _alerts.ShowAlert(ent.Owner, ent.Comp.BatteryAlert, chargePercent); } public bool TryEjectPowerCell(EntityUid uid, BorgChassisComponent component, [NotNullWhen(true)] out List? ents) @@ -315,7 +315,7 @@ public sealed partial class BorgSystem : SharedBorgSystem if (!TryComp(uid, out var slotComp) || !Container.TryGetContainer(uid, slotComp.CellSlotId, out var container) || !container.ContainedEntities.Any()) - return false; + return false; ents = Container.EmptyContainer(container); diff --git a/Content.Server/Silicons/Laws/SiliconLawSystem.cs b/Content.Server/Silicons/Laws/SiliconLawSystem.cs index 444732b2b3..653ed6bac2 100644 --- a/Content.Server/Silicons/Laws/SiliconLawSystem.cs +++ b/Content.Server/Silicons/Laws/SiliconLawSystem.cs @@ -2,7 +2,6 @@ using System.Linq; using Content.Server.Administration; using Content.Server.Chat.Managers; using Content.Server.Radio.Components; -using Content.Server.Roles; using Content.Server.Station.Systems; using Content.Shared.Administration; using Content.Shared.Chat; @@ -11,9 +10,9 @@ using Content.Shared.GameTicking; using Content.Shared.Mind; using Content.Shared.Mind.Components; using Content.Shared.Roles; +using Content.Shared.Roles.Components; using Content.Shared.Silicons.Laws; using Content.Shared.Silicons.Laws.Components; -using Content.Shared.Wires; using Robust.Server.GameObjects; using Robust.Shared.Audio; using Robust.Shared.Containers; @@ -295,15 +294,16 @@ public sealed class SiliconLawSystem : SharedSiliconLawSystem protected override void OnUpdaterInsert(Entity ent, ref EntInsertedIntoContainerMessage args) { // TODO: Prediction dump this - if (!TryComp(args.Entity, out SiliconLawProviderComponent? provider)) + if (!TryComp(args.Entity, out var provider)) return; - var lawset = GetLawset(provider.Laws).Laws; + var lawset = provider.Lawset ?? GetLawset(provider.Laws); + var query = EntityManager.CompRegistryQueryEnumerator(ent.Comp.Components); while (query.MoveNext(out var update)) { - SetLaws(lawset, update, provider.LawUploadSound); + SetLaws(lawset.Laws, update, provider.LawUploadSound); } } } diff --git a/Content.Server/Singularity/EntitySystems/EmitterSystem.cs b/Content.Server/Singularity/EntitySystems/EmitterSystem.cs index 28d3eedd32..2ccdc10934 100644 --- a/Content.Server/Singularity/EntitySystems/EmitterSystem.cs +++ b/Content.Server/Singularity/EntitySystems/EmitterSystem.cs @@ -28,7 +28,6 @@ namespace Content.Server.Singularity.EntitySystems public sealed class EmitterSystem : SharedEmitterSystem { [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly IPrototypeManager _prototype = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; diff --git a/Content.Server/Spawners/Components/SpawnPointComponent.cs b/Content.Server/Spawners/Components/SpawnPointComponent.cs index c6d14dfeb3..c48b7ec598 100644 --- a/Content.Server/Spawners/Components/SpawnPointComponent.cs +++ b/Content.Server/Spawners/Components/SpawnPointComponent.cs @@ -6,11 +6,15 @@ namespace Content.Server.Spawners.Components; [RegisterComponent] public sealed partial class SpawnPointComponent : Component, ISpawnPoint { + /// + /// The job this spawn point is valid for. + /// Null will allow all jobs to spawn here. + /// [DataField("job_id")] public ProtoId? Job; /// - /// The type of spawn point + /// The type of spawn point. /// [DataField("spawn_type"), ViewVariables(VVAccess.ReadWrite)] public SpawnPointType SpawnType { get; set; } = SpawnPointType.Unset; diff --git a/Content.Server/Spawners/EntitySystems/SpawnPointSystem.cs b/Content.Server/Spawners/EntitySystems/SpawnPointSystem.cs index bd905e2982..7145065281 100644 --- a/Content.Server/Spawners/EntitySystems/SpawnPointSystem.cs +++ b/Content.Server/Spawners/EntitySystems/SpawnPointSystem.cs @@ -27,7 +27,7 @@ public sealed class SpawnPointSystem : EntitySystem var points = EntityQueryEnumerator(); var possiblePositions = new List(); - while ( points.MoveNext(out var uid, out var spawnPoint, out var xform)) + while (points.MoveNext(out var uid, out var spawnPoint, out var xform)) { if (args.Station != null && _stationSystem.GetOwningStation(uid, xform) != args.Station) continue; @@ -39,7 +39,7 @@ public sealed class SpawnPointSystem : EntitySystem if (_gameTicker.RunLevel != GameRunLevel.InRound && spawnPoint.SpawnType == SpawnPointType.Job && - (args.Job == null || spawnPoint.Job == args.Job)) + (args.Job == null || spawnPoint.Job == null || spawnPoint.Job == args.Job)) { possiblePositions.Add(xform.Coordinates); } @@ -51,13 +51,14 @@ public sealed class SpawnPointSystem : EntitySystem // TODO: Refactor gameticker spawning code so we don't have to do this! var points2 = EntityQueryEnumerator(); - if (points2.MoveNext(out var spawnPoint, out var xform)) + if (points2.MoveNext(out _, out var xform)) { + Log.Error($"Unable to pick a valid spawn point, picking random spawner as a backup.\nRunLevel: {_gameTicker.RunLevel} Station: {ToPrettyString(args.Station)} Job: {args.Job}"); possiblePositions.Add(xform.Coordinates); } else { - Log.Error("No spawn points were available!"); + Log.Error($"No spawn points were available!\nRunLevel: {_gameTicker.RunLevel} Station: {ToPrettyString(args.Station)} Job: {args.Job}"); return; } } diff --git a/Content.Server/Speech/Components/StutteringAccentComponent.cs b/Content.Server/Speech/Components/StutteringAccentComponent.cs index e82cd9b12b..dd65ef66e0 100644 --- a/Content.Server/Speech/Components/StutteringAccentComponent.cs +++ b/Content.Server/Speech/Components/StutteringAccentComponent.cs @@ -6,29 +6,25 @@ namespace Content.Server.Speech.Components /// /// Percentage chance that a stutter will occur if it matches. /// - [DataField("matchRandomProb")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float MatchRandomProb = 0.8f; /// /// Percentage chance that a stutter occurs f-f-f-f-four times. /// - [DataField("fourRandomProb")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float FourRandomProb = 0.1f; /// /// Percentage chance that a stutter occurs t-t-t-three times. /// - [DataField("threeRandomProb")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float ThreeRandomProb = 0.2f; /// /// Percentage chance that a stutter cut off. /// - [DataField("cutRandomProb")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float CutRandomProb = 0.05f; } } diff --git a/Content.Server/Speech/EntitySystems/SlurredSystem.cs b/Content.Server/Speech/EntitySystems/SlurredSystem.cs index 5ac1ba037f..8690079de1 100644 --- a/Content.Server/Speech/EntitySystems/SlurredSystem.cs +++ b/Content.Server/Speech/EntitySystems/SlurredSystem.cs @@ -3,8 +3,7 @@ using Content.Server.Speech.Components; using Content.Shared.Drunk; using Content.Shared.Speech; using Content.Shared.Speech.EntitySystems; -using Content.Shared.StatusEffect; -using Robust.Shared.Prototypes; +using Content.Shared.StatusEffectNew; using Robust.Shared.Random; using Robust.Shared.Timing; @@ -12,26 +11,15 @@ namespace Content.Server.Speech.EntitySystems; public sealed class SlurredSystem : SharedSlurredSystem { - [Dependency] private readonly StatusEffectsSystem _statusEffectsSystem = default!; + [Dependency] private readonly StatusEffectsSystem _status = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly IGameTiming _timing = default!; - private static readonly ProtoId SlurKey = "SlurredSpeech"; - public override void Initialize() { SubscribeLocalEvent(OnAccent); - } - public override void DoSlur(EntityUid uid, TimeSpan time, StatusEffectsComponent? status = null) - { - if (!Resolve(uid, ref status, false)) - return; - - if (!_statusEffectsSystem.HasStatusEffect(uid, SlurKey, status)) - _statusEffectsSystem.TryAddStatusEffect(uid, SlurKey, time, true, status); - else - _statusEffectsSystem.TryAddTime(uid, SlurKey, time, status); + SubscribeLocalEvent>(OnAccentRelayed); } /// @@ -39,15 +27,33 @@ public sealed class SlurredSystem : SharedSlurredSystem /// private float GetProbabilityScale(EntityUid uid) { - if (!_statusEffectsSystem.TryGetTime(uid, SharedDrunkSystem.DrunkKey, out var time)) + if (!_status.TryGetMaxTime(uid, out var time)) return 0; - var curTime = _timing.CurTime; - var timeLeft = (float) (time.Value.Item2 - curTime).TotalSeconds; - return Math.Clamp((timeLeft - 80) / 1100, 0f, 1f); + // This is a magic number. Why this value? No clue it was made 3 years before I refactored this. + var magic = SharedDrunkSystem.MagicNumber; + + if (time.Item2 != null) + { + var curTime = _timing.CurTime; + magic = (float) (time.Item2 - curTime).Value.TotalSeconds - 80f; + } + + return Math.Clamp(magic / SharedDrunkSystem.MagicNumber, 0f, 1f); } - private void OnAccent(EntityUid uid, SlurredAccentComponent component, AccentGetEvent args) + private void OnAccent(Entity entity, ref AccentGetEvent args) + { + GetAccent(entity, ref args); + } + + private void OnAccentRelayed(Entity entity, ref StatusEffectRelayedEvent args) + { + var ev = args.Args; + GetAccent(args.Args.Entity, ref ev); + } + + private void GetAccent(EntityUid uid, ref AccentGetEvent args) { var scale = GetProbabilityScale(uid); args.Message = Accentuate(args.Message, scale); diff --git a/Content.Server/Speech/EntitySystems/StutteringSystem.cs b/Content.Server/Speech/EntitySystems/StutteringSystem.cs index f47bff3523..2c78eb181e 100644 --- a/Content.Server/Speech/EntitySystems/StutteringSystem.cs +++ b/Content.Server/Speech/EntitySystems/StutteringSystem.cs @@ -3,14 +3,13 @@ using System.Text.RegularExpressions; using Content.Server.Speech.Components; using Content.Shared.Speech; using Content.Shared.Speech.EntitySystems; -using Content.Shared.StatusEffect; +using Content.Shared.StatusEffectNew; using Robust.Shared.Random; namespace Content.Server.Speech.EntitySystems { public sealed class StutteringSystem : SharedStutteringSystem { - [Dependency] private readonly StatusEffectsSystem _statusEffectsSystem = default!; [Dependency] private readonly IRobustRandom _random = default!; // Regex of characters to stutter. @@ -20,19 +19,36 @@ namespace Content.Server.Speech.EntitySystems public override void Initialize() { SubscribeLocalEvent(OnAccent); + + SubscribeLocalEvent>(OnAccent); } - public override void DoStutter(EntityUid uid, TimeSpan time, bool refresh, StatusEffectsComponent? status = null) + public override void DoStutter(EntityUid uid, TimeSpan time, bool refresh) { - if (!Resolve(uid, ref status, false)) - return; - - _statusEffectsSystem.TryAddStatusEffect(uid, StutterKey, time, refresh, status); + if (refresh) + Status.TryUpdateStatusEffectDuration(uid, Stuttering, time); + else + Status.TryAddStatusEffectDuration(uid, Stuttering, time); } - private void OnAccent(EntityUid uid, StutteringAccentComponent component, AccentGetEvent args) + public override void DoRemoveStutterTime(EntityUid uid, TimeSpan timeRemoved) { - args.Message = Accentuate(args.Message, component); + Status.TryAddTime(uid, Stuttering, -timeRemoved); + } + + public override void DoRemoveStutter(EntityUid uid) + { + Status.TryRemoveStatusEffect(uid, Stuttering); + } + + private void OnAccent(Entity entity, ref AccentGetEvent args) + { + args.Message = Accentuate(args.Message, entity.Comp); + } + + private void OnAccent(Entity entity, ref StatusEffectRelayedEvent args) + { + args.Args.Message = Accentuate(args.Args.Message, entity.Comp); } public string Accentuate(string message, StutteringAccentComponent component) diff --git a/Content.Server/Stack/StackSystem.cs b/Content.Server/Stack/StackSystem.cs index 61153be401..aac5a23902 100644 --- a/Content.Server/Stack/StackSystem.cs +++ b/Content.Server/Stack/StackSystem.cs @@ -16,13 +16,9 @@ namespace Content.Server.Stack { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - public static readonly int[] DefaultSplitAmounts = { 1, 5, 10, 20, 30, 50 }; - public override void Initialize() { base.Initialize(); - - SubscribeLocalEvent>(OnStackAlternativeInteract); } public override void SetCount(EntityUid uid, int amount, StackComponent? component = null) @@ -33,7 +29,7 @@ namespace Content.Server.Stack base.SetCount(uid, amount, component); // Queue delete stack if count reaches zero. - if (component.Count <= 0 && !component.Lingering) + if (component.Count <= 0) QueueDel(uid); } @@ -165,42 +161,7 @@ namespace Content.Server.Stack return amounts; } - private void OnStackAlternativeInteract(EntityUid uid, StackComponent stack, GetVerbsEvent args) - { - if (!args.CanAccess || !args.CanInteract || args.Hands == null || stack.Count == 1) - return; - - AlternativeVerb halve = new() - { - Text = Loc.GetString("comp-stack-split-halve"), - Category = VerbCategory.Split, - Act = () => UserSplit(uid, args.User, stack.Count / 2, stack), - Priority = 1 - }; - args.Verbs.Add(halve); - - var priority = 0; - foreach (var amount in DefaultSplitAmounts) - { - if (amount >= stack.Count) - continue; - - AlternativeVerb verb = new() - { - Text = amount.ToString(), - Category = VerbCategory.Split, - Act = () => UserSplit(uid, args.User, amount, stack), - // we want to sort by size, not alphabetically by the verb text. - Priority = priority - }; - - priority--; - - args.Verbs.Add(verb); - } - } - - private void UserSplit(EntityUid uid, EntityUid userUid, int amount, + protected override void UserSplit(EntityUid uid, EntityUid userUid, int amount, StackComponent? stack = null, TransformComponent? userTransform = null) { diff --git a/Content.Server/Station/Systems/StationSystem.cs b/Content.Server/Station/Systems/StationSystem.cs index 7100c6144f..dc2ec49dce 100644 --- a/Content.Server/Station/Systems/StationSystem.cs +++ b/Content.Server/Station/Systems/StationSystem.cs @@ -343,6 +343,7 @@ public sealed partial class StationSystem : SharedStationSystem stationMember.Station = station; stationData.Grids.Add(mapGrid); Dirty(station, stationData); + Dirty(mapGrid, stationMember); RaiseLocalEvent(station, new StationGridAddedEvent(mapGrid, station, false), true); diff --git a/Content.Server/StationEvents/Events/BluespaceLockerRule.cs b/Content.Server/StationEvents/Events/BluespaceLockerRule.cs index c07b178093..5e0ce6eb67 100644 --- a/Content.Server/StationEvents/Events/BluespaceLockerRule.cs +++ b/Content.Server/StationEvents/Events/BluespaceLockerRule.cs @@ -4,6 +4,7 @@ using Content.Server.Storage.Components; using Content.Server.Storage.EntitySystems; using Content.Shared.Access.Components; using Content.Shared.Station.Components; +using Content.Shared.Storage.Components; using Content.Shared.GameTicking.Components; namespace Content.Server.StationEvents.Events; diff --git a/Content.Server/StationEvents/Events/RandomEntityStorageSpawnRule.cs b/Content.Server/StationEvents/Events/RandomEntityStorageSpawnRule.cs index a9f2793818..2c2d2414b7 100644 --- a/Content.Server/StationEvents/Events/RandomEntityStorageSpawnRule.cs +++ b/Content.Server/StationEvents/Events/RandomEntityStorageSpawnRule.cs @@ -1,8 +1,7 @@ -using Content.Server.GameTicking.Rules.Components; using Content.Server.StationEvents.Components; -using Content.Server.Storage.Components; using Content.Server.Storage.EntitySystems; using Content.Shared.GameTicking.Components; +using Content.Shared.Storage.Components; using Robust.Shared.Map; using Robust.Shared.Random; diff --git a/Content.Server/StationEvents/Events/RandomSentienceRule.cs b/Content.Server/StationEvents/Events/RandomSentienceRule.cs index 359c3edae4..f2fda7b8c6 100644 --- a/Content.Server/StationEvents/Events/RandomSentienceRule.cs +++ b/Content.Server/StationEvents/Events/RandomSentienceRule.cs @@ -16,6 +16,7 @@ public sealed class RandomSentienceRule : StationEventSystem - /// Gas currently contained in this entity storage. - /// None while open. Grabs gas from the atmosphere when closed, and exposes any entities inside to it. - /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("air")] - public GasMixture Air { get; set; } = new (200); -} diff --git a/Content.Server/Storage/EntitySystems/EntityStorageSystem.cs b/Content.Server/Storage/EntitySystems/EntityStorageSystem.cs index 27d84de28c..c38a3e9b17 100644 --- a/Content.Server/Storage/EntitySystems/EntityStorageSystem.cs +++ b/Content.Server/Storage/EntitySystems/EntityStorageSystem.cs @@ -68,7 +68,7 @@ public sealed class EntityStorageSystem : SharedEntityStorageSystem } } - protected override void OnComponentInit(EntityUid uid, SharedEntityStorageComponent component, ComponentInit args) + protected override void OnComponentInit(EntityUid uid, EntityStorageComponent component, ComponentInit args) { base.OnComponentInit(uid, component, args); @@ -76,7 +76,7 @@ public sealed class EntityStorageSystem : SharedEntityStorageSystem _construction.AddContainer(uid, ContainerName, construction); } - public override bool ResolveStorage(EntityUid uid, [NotNullWhen(true)] ref SharedEntityStorageComponent? component) + public override bool ResolveStorage(EntityUid uid, [NotNullWhen(true)] ref EntityStorageComponent? component) { if (component != null) return true; @@ -107,7 +107,7 @@ public sealed class EntityStorageSystem : SharedEntityStorageSystem args.Contents.AddRange(ent.Comp.Contents.ContainedEntities); } - protected override void TakeGas(EntityUid uid, SharedEntityStorageComponent component) + protected override void TakeGas(EntityUid uid, EntityStorageComponent component) { if (!component.Airtight) return; @@ -121,7 +121,7 @@ public sealed class EntityStorageSystem : SharedEntityStorageSystem } } - public override void ReleaseGas(EntityUid uid, SharedEntityStorageComponent component) + public override void ReleaseGas(EntityUid uid, EntityStorageComponent component) { var serverComp = (EntityStorageComponent) component; diff --git a/Content.Server/Stunnable/Components/StunOnCollideComponent.cs b/Content.Server/Stunnable/Components/StunOnCollideComponent.cs index 363fb78b75..cbf6b17af8 100644 --- a/Content.Server/Stunnable/Components/StunOnCollideComponent.cs +++ b/Content.Server/Stunnable/Components/StunOnCollideComponent.cs @@ -1,58 +1,66 @@ -namespace Content.Server.Stunnable.Components +using Content.Server.Stunnable.Systems; + +namespace Content.Server.Stunnable.Components; + +/// +/// Adds stun when it collides with an entity +/// +[RegisterComponent, Access(typeof(StunOnCollideSystem))] +public sealed partial class StunOnCollideComponent : Component { + // TODO: Can probably predict this. + /// - /// Adds stun when it collides with an entity + /// How long we are stunned for /// - [RegisterComponent, Access(typeof(StunOnCollideSystem))] - public sealed partial class StunOnCollideComponent : Component - { - // TODO: Can probably predict this. + [DataField] + public TimeSpan StunAmount; - /// - /// How long we are stunned for - /// - [DataField] - public TimeSpan StunAmount; + /// + /// How long we are knocked down for + /// + [DataField] + public TimeSpan KnockdownAmount; - /// - /// How long we are knocked down for - /// - [DataField] - public TimeSpan KnockdownAmount; + /// + /// How long we are slowed down for + /// + [DataField] + public TimeSpan SlowdownAmount; - /// - /// How long we are slowed down for - /// - [DataField] - public TimeSpan SlowdownAmount; + /// + /// Multiplier for a mob's walking speed + /// + [DataField] + public float WalkSpeedModifier = 1f; - /// - /// Multiplier for a mob's walking speed - /// - [DataField] - public float WalkSpeedModifier = 1f; + /// + /// Multiplier for a mob's sprinting speed + /// + [DataField] + public float SprintSpeedModifier = 1f; - /// - /// Multiplier for a mob's sprinting speed - /// - [DataField] - public float SprintSpeedModifier = 1f; + /// + /// Refresh Stun or Slowdown on hit + /// + [DataField] + public bool Refresh = true; - /// - /// Refresh Stun or Slowdown on hit - /// - [DataField] - public bool Refresh = true; + /// + /// Should the entity try and stand automatically after being knocked down? + /// + [DataField] + public bool AutoStand = true; - /// - /// Should the entity try and stand automatically after being knocked down? - /// - [DataField] - public bool AutoStand = true; + /// + /// Should the entity drop their items upon first being knocked down? + /// + [DataField] + public bool Drop = true; - /// - /// Fixture we track for the collision. - /// - [DataField("fixture")] public string FixtureID = "projectile"; - } + /// + /// Fixture we track for the collision. + /// + [DataField("fixture")] public string FixtureID = "projectile"; } + diff --git a/Content.Server/Stunnable/Systems/StunOnCollideSystem.cs b/Content.Server/Stunnable/Systems/StunOnCollideSystem.cs index 18c386d4ac..c1757b1c2d 100644 --- a/Content.Server/Stunnable/Systems/StunOnCollideSystem.cs +++ b/Content.Server/Stunnable/Systems/StunOnCollideSystem.cs @@ -4,47 +4,60 @@ using JetBrains.Annotations; using Content.Shared.Throwing; using Robust.Shared.Physics.Events; -namespace Content.Server.Stunnable +namespace Content.Server.Stunnable.Systems; + +[UsedImplicitly] +internal sealed class StunOnCollideSystem : EntitySystem { - [UsedImplicitly] - internal sealed class StunOnCollideSystem : EntitySystem + [Dependency] private readonly StunSystem _stunSystem = default!; + [Dependency] private readonly MovementModStatusSystem _movementMod = default!; + + public override void Initialize() { - [Dependency] private readonly StunSystem _stunSystem = default!; - [Dependency] private readonly MovementModStatusSystem _movementMod = default!; + base.Initialize(); - public override void Initialize() + SubscribeLocalEvent(HandleCollide); + SubscribeLocalEvent(HandleThrow); + } + + private void TryDoCollideStun(Entity ent, EntityUid target) + { + _stunSystem.TryKnockdown(target, ent.Comp.KnockdownAmount, ent.Comp.Refresh, ent.Comp.AutoStand, ent.Comp.Drop, true); + + if (ent.Comp.Refresh) { - base.Initialize(); - SubscribeLocalEvent(HandleCollide); - SubscribeLocalEvent(HandleThrow); - } - - private void TryDoCollideStun(EntityUid uid, StunOnCollideComponent component, EntityUid target) - { - _stunSystem.TryUpdateStunDuration(target, component.StunAmount); - - _stunSystem.TryKnockdown(target, component.KnockdownAmount, component.Refresh, component.AutoStand, force: true); - + _stunSystem.TryUpdateStunDuration(target, ent.Comp.StunAmount); _movementMod.TryUpdateMovementSpeedModDuration( target, MovementModStatusSystem.TaserSlowdown, - component.SlowdownAmount, - component.WalkSpeedModifier, - component.SprintSpeedModifier + ent.Comp.SlowdownAmount, + ent.Comp.WalkSpeedModifier, + ent.Comp.SprintSpeedModifier ); } - - private void HandleCollide(EntityUid uid, StunOnCollideComponent component, ref StartCollideEvent args) + else { - if (args.OurFixtureId != component.FixtureID) - return; - - TryDoCollideStun(uid, component, args.OtherEntity); - } - - private void HandleThrow(EntityUid uid, StunOnCollideComponent component, ThrowDoHitEvent args) - { - TryDoCollideStun(uid, component, args.Target); + _stunSystem.TryAddStunDuration(target, ent.Comp.StunAmount); + _movementMod.TryAddMovementSpeedModDuration( + target, + MovementModStatusSystem.TaserSlowdown, + ent.Comp.SlowdownAmount, + ent.Comp.WalkSpeedModifier, + ent.Comp.SprintSpeedModifier + ); } } + + private void HandleCollide(Entity ent, ref StartCollideEvent args) + { + if (args.OurFixtureId != ent.Comp.FixtureID) + return; + + TryDoCollideStun(ent, args.OtherEntity); + } + + private void HandleThrow(Entity ent, ref ThrowDoHitEvent args) + { + TryDoCollideStun(ent, args.Target); + } } diff --git a/Content.Server/Thief/Systems/ThiefBeaconSystem.cs b/Content.Server/Thief/Systems/ThiefBeaconSystem.cs index 4c65ba5c44..069966a8a4 100644 --- a/Content.Server/Thief/Systems/ThiefBeaconSystem.cs +++ b/Content.Server/Thief/Systems/ThiefBeaconSystem.cs @@ -1,12 +1,12 @@ using Content.Server.Mind; using Content.Server.Objectives.Components; -using Content.Server.Roles; using Content.Server.Thief.Components; using Content.Shared.Examine; using Content.Shared.Foldable; using Content.Shared.Popups; using Content.Shared.Verbs; using Content.Shared.Roles; +using Content.Shared.Roles.Components; using Robust.Shared.Audio.Systems; namespace Content.Server.Thief.Systems; diff --git a/Content.Server/Trigger/Systems/FireStackOnTriggerSystem.cs b/Content.Server/Trigger/Systems/FireStackOnTriggerSystem.cs new file mode 100644 index 0000000000..af3298b865 --- /dev/null +++ b/Content.Server/Trigger/Systems/FireStackOnTriggerSystem.cs @@ -0,0 +1,53 @@ +using Content.Server.Atmos.EntitySystems; +using Content.Shared.Trigger; +using Content.Shared.Trigger.Components.Effects; + +namespace Content.Server.Trigger.Systems; + +/// +/// Trigger system for adding or removing fire stacks from an entity with . +/// +/// +public sealed class FireStackOnTriggerSystem : EntitySystem +{ + [Dependency] private readonly FlammableSystem _flame = default!; + + /// + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnTriggerFlame); + SubscribeLocalEvent(OnTriggerExtinguish); + } + + private void OnTriggerFlame(Entity ent, ref TriggerEvent args) + { + if (args.Key != null && !ent.Comp.KeysIn.Contains(args.Key)) + return; + + var target = ent.Comp.TargetUser ? args.User : ent.Owner; + + if (target == null) + return; + + _flame.AdjustFireStacks(target.Value, ent.Comp.FireStacks, ignite: ent.Comp.DoIgnite); + + args.Handled = true; + } + + private void OnTriggerExtinguish(Entity ent, ref TriggerEvent args) + { + if (args.Key != null && !ent.Comp.KeysIn.Contains(args.Key)) + return; + + var target = ent.Comp.TargetUser ? args.User : ent.Owner; + + if (target == null) + return; + + _flame.Extinguish(target.Value); + + args.Handled = true; + } +} diff --git a/Content.Server/Trigger/Systems/GameRuleTriggerSystem.cs b/Content.Server/Trigger/Systems/GameRuleTriggerSystem.cs new file mode 100644 index 0000000000..245b9c8408 --- /dev/null +++ b/Content.Server/Trigger/Systems/GameRuleTriggerSystem.cs @@ -0,0 +1,44 @@ +using Content.Server.Administration.Logs; +using Content.Server.GameTicking; +using Content.Shared.Database; +using Content.Shared.Trigger; +using Content.Shared.Trigger.Components.Effects; + +namespace Content.Server.Trigger.Systems; + +/// +/// Trigger system for game rules. +/// +public sealed class GameRuleTriggerSystem : EntitySystem +{ + [Dependency] private readonly GameTicker _ticker = default!; + [Dependency] private readonly IAdminLogManager _adminLogger = default!; + + /// + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(AddRuleOnTrigger); + } + + private void AddRuleOnTrigger(Entity ent, ref TriggerEvent args) + { + if (args.Key != null && !ent.Comp.KeysIn.Contains(args.Key)) + return; + + var rule = _ticker.AddGameRule(ent.Comp.GameRule); + + _adminLogger.Add(LogType.EventStarted, + $"{ToPrettyString(args.User):entity} added a game rule [{ent.Comp.GameRule}]" + + $" via a trigger on {ToPrettyString(ent.Owner):entity}."); + + if (ent.Comp.StartRule && _ticker.RunLevel == GameRunLevel.InRound) + { + _ticker.StartGameRule(rule); + _adminLogger.Add(LogType.EventStarted, $"{ToPrettyString(args.User):entity} started game rule [{ent.Comp.GameRule}]."); + } + + args.Handled = true; + } +} diff --git a/Content.Server/Trigger/Systems/IgniteOnTriggerSystem.cs b/Content.Server/Trigger/Systems/IgniteOnTriggerSystem.cs index f4d88b774a..c6ae16ec78 100644 --- a/Content.Server/Trigger/Systems/IgniteOnTriggerSystem.cs +++ b/Content.Server/Trigger/Systems/IgniteOnTriggerSystem.cs @@ -8,6 +8,7 @@ namespace Content.Server.Trigger.Systems; /// /// Handles igniting when triggered and stopping ignition after the delay. /// +/// public sealed class IgniteOnTriggerSystem : EntitySystem { [Dependency] private readonly IGameTiming _timing = default!; diff --git a/Content.Server/VoiceMask/VoiceMaskSystem.cs b/Content.Server/VoiceMask/VoiceMaskSystem.cs index cd85ff2428..528acd58b0 100644 --- a/Content.Server/VoiceMask/VoiceMaskSystem.cs +++ b/Content.Server/VoiceMask/VoiceMaskSystem.cs @@ -5,11 +5,13 @@ using Content.Shared.Chat; using Content.Shared.Clothing; using Content.Shared.Database; using Content.Shared.Inventory; +using Content.Shared.Lock; using Content.Shared.Popups; using Content.Shared.Preferences; using Content.Shared.Speech; using Content.Shared.VoiceMask; using Robust.Shared.Configuration; +using Robust.Shared.Containers; using Robust.Shared.Prototypes; namespace Content.Server.VoiceMask; @@ -22,6 +24,8 @@ public sealed partial class VoiceMaskSystem : EntitySystem [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly SharedActionsSystem _actions = default!; + [Dependency] private readonly LockSystem _lock = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; // CCVar. private int _maxNameLength; @@ -30,6 +34,7 @@ public sealed partial class VoiceMaskSystem : EntitySystem { base.Initialize(); SubscribeLocalEvent>(OnTransformSpeakerName); + SubscribeLocalEvent(OnLockToggled); SubscribeLocalEvent(OnChangeName); SubscribeLocalEvent(OnChangeVerb); SubscribeLocalEvent(OnEquip); @@ -44,6 +49,14 @@ public sealed partial class VoiceMaskSystem : EntitySystem args.Args.SpeechVerb = entity.Comp.VoiceMaskSpeechVerb ?? args.Args.SpeechVerb; } + private void OnLockToggled(Entity ent, ref LockToggledEvent args) + { + if (args.Locked) + _actions.RemoveAction(ent.Comp.ActionEntity); + else if (_container.TryGetContainingContainer(ent.Owner, out var container)) + _actions.AddAction(container.Owner, ref ent.Comp.ActionEntity, ent.Comp.Action, ent); + } + #region User inputs from UI private void OnChangeVerb(Entity entity, ref VoiceMaskChangeVerbMessage msg) { @@ -78,6 +91,9 @@ public sealed partial class VoiceMaskSystem : EntitySystem #region UI private void OnEquip(EntityUid uid, VoiceMaskComponent component, ClothingGotEquippedEvent args) { + if (_lock.IsLocked(uid)) + return; + _actions.AddAction(args.Wearer, ref component.ActionEntity, component.Action, uid); } diff --git a/Content.Server/Weapons/Melee/Balloon/BalloonPopperSystem.cs b/Content.Server/Weapons/Melee/Balloon/BalloonPopperSystem.cs index a8460a8c66..d4ab81ae10 100644 --- a/Content.Server/Weapons/Melee/Balloon/BalloonPopperSystem.cs +++ b/Content.Server/Weapons/Melee/Balloon/BalloonPopperSystem.cs @@ -5,6 +5,7 @@ using Content.Shared.Popups; using Content.Shared.Tag; using Content.Shared.Weapons.Melee.Events; using Content.Shared.Throwing; +using Content.Shared.Weapons.Melee.Balloon; using Robust.Shared.Audio.Systems; namespace Content.Server.Weapons.Melee.Balloon; diff --git a/Content.Server/Xenoarchaeology/Artifact/XAE/XAEIgniteSystem.cs b/Content.Server/Xenoarchaeology/Artifact/XAE/XAEIgniteSystem.cs index 14270fb866..7e8fff73ad 100644 --- a/Content.Server/Xenoarchaeology/Artifact/XAE/XAEIgniteSystem.cs +++ b/Content.Server/Xenoarchaeology/Artifact/XAE/XAEIgniteSystem.cs @@ -1,6 +1,6 @@ -using Content.Server.Atmos.Components; using Content.Server.Atmos.EntitySystems; using Content.Server.Xenoarchaeology.Artifact.XAE.Components; +using Content.Shared.Atmos.Components; using Content.Shared.Xenoarchaeology.Artifact; using Content.Shared.Xenoarchaeology.Artifact.XAE; using Robust.Shared.Random; diff --git a/Content.Server/Xenoarchaeology/Artifact/XAE/XAELightFlickerSystem.cs b/Content.Server/Xenoarchaeology/Artifact/XAE/XAELightFlickerSystem.cs index 4c4073b123..6e7c4fc4ad 100644 --- a/Content.Server/Xenoarchaeology/Artifact/XAE/XAELightFlickerSystem.cs +++ b/Content.Server/Xenoarchaeology/Artifact/XAE/XAELightFlickerSystem.cs @@ -1,6 +1,6 @@ using Content.Server.Ghost; -using Content.Server.Light.Components; using Content.Server.Xenoarchaeology.Artifact.XAE.Components; +using Content.Shared.Light.Components; using Content.Shared.Xenoarchaeology.Artifact; using Content.Shared.Xenoarchaeology.Artifact.XAE; using Robust.Shared.Random; diff --git a/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactCrusherSystem.cs b/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactCrusherSystem.cs index 8bc87cb378..885186f79c 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactCrusherSystem.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactCrusherSystem.cs @@ -2,10 +2,10 @@ using Content.Server.Body.Systems; using Content.Server.Popups; using Content.Server.Power.EntitySystems; using Content.Server.Stack; -using Content.Server.Storage.Components; using Content.Shared.Body.Components; using Content.Shared.Damage; using Content.Shared.Power; +using Content.Shared.Storage.Components; using Content.Shared.Verbs; using Content.Shared.Whitelist; using Content.Shared.Xenoarchaeology.Equipment; diff --git a/Content.Server/Zombies/ZombieSystem.Transform.cs b/Content.Server/Zombies/ZombieSystem.Transform.cs index a256d7159f..9c7d4b0699 100644 --- a/Content.Server/Zombies/ZombieSystem.Transform.cs +++ b/Content.Server/Zombies/ZombieSystem.Transform.cs @@ -10,6 +10,7 @@ using Content.Server.Mind; using Content.Server.NPC; using Content.Server.NPC.HTN; using Content.Server.NPC.Systems; +using Content.Server.StationEvents.Components; using Content.Server.Speech.Components; using Content.Server.Temperature.Components; using Content.Shared.Body.Components; @@ -106,7 +107,7 @@ public sealed partial class ZombieSystem var zombiecomp = AddComp(target); //we need to basically remove all of these because zombies shouldn't - //get diseases, breath, be thirst, be hungry, die in space, have offspring or be paraplegic. + //get diseases, breath, be thirst, be hungry, die in space, get double sentience, have offspring or be paraplegic. RemComp(target); RemComp(target); RemComp(target); @@ -115,6 +116,7 @@ public sealed partial class ZombieSystem RemComp(target); RemComp(target); RemComp(target); + RemComp(target); //funny voice var accentType = "zombie"; diff --git a/Content.Server/Zombies/ZombieSystem.cs b/Content.Server/Zombies/ZombieSystem.cs index 11185da61f..f4ff5dd60c 100644 --- a/Content.Server/Zombies/ZombieSystem.cs +++ b/Content.Server/Zombies/ZombieSystem.cs @@ -6,7 +6,6 @@ using Content.Server.Chat; using Content.Server.Chat.Systems; using Content.Server.Emoting.Systems; using Content.Server.Speech.EntitySystems; -using Content.Server.Roles; using Content.Shared.Anomaly.Components; using Content.Shared.Armor; using Content.Shared.Bed.Sleep; @@ -21,6 +20,7 @@ using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; using Content.Shared.Popups; using Content.Shared.Roles; +using Content.Shared.Roles.Components; using Content.Shared.Weapons.Melee.Events; using Content.Shared.Zombies; using Robust.Shared.Prototypes; diff --git a/Content.Server/Zombies/ZombifyOnDeathComponent.cs b/Content.Server/Zombies/ZombifyOnDeathComponent.cs deleted file mode 100644 index dff17c4613..0000000000 --- a/Content.Server/Zombies/ZombifyOnDeathComponent.cs +++ /dev/null @@ -1,8 +0,0 @@ -namespace Content.Server.Zombies -{ - [RegisterComponent] - public sealed partial class ZombifyOnDeathComponent : Component - { - //this is not the component you are looking for - } -} diff --git a/Content.Shared/Abilities/Mime/MimePowersSystem.cs b/Content.Shared/Abilities/Mime/MimePowersSystem.cs index 22ba7a3591..aa77ccb803 100644 --- a/Content.Shared/Abilities/Mime/MimePowersSystem.cs +++ b/Content.Shared/Abilities/Mime/MimePowersSystem.cs @@ -67,7 +67,7 @@ public sealed class MimePowersSystem : EntitySystem Dirty(ent, illiterateComponent); } - _alertsSystem.ShowAlert(ent, ent.Comp.VowAlert); + _alertsSystem.ShowAlert(ent.Owner, ent.Comp.VowAlert); _actionsSystem.AddAction(ent, ref ent.Comp.InvisibleWallActionEntity, ent.Comp.InvisibleWallAction); } diff --git a/Content.Shared/Administration/AdminFrozenComponent.cs b/Content.Shared/Administration/AdminFrozenComponent.cs index bfcf1db526..28df7c5fd0 100644 --- a/Content.Shared/Administration/AdminFrozenComponent.cs +++ b/Content.Shared/Administration/AdminFrozenComponent.cs @@ -2,7 +2,7 @@ namespace Content.Shared.Administration; -[RegisterComponent, Access(typeof(SharedAdminFrozenSystem))] +[RegisterComponent, Access(typeof(AdminFrozenSystem))] [NetworkedComponent, AutoGenerateComponentState] public sealed partial class AdminFrozenComponent : Component { diff --git a/Content.Shared/Administration/SharedAdminFrozenSystem.cs b/Content.Shared/Administration/AdminFrozenSystem.cs similarity index 91% rename from Content.Shared/Administration/SharedAdminFrozenSystem.cs rename to Content.Shared/Administration/AdminFrozenSystem.cs index 259df2bdf2..7419137da8 100644 --- a/Content.Shared/Administration/SharedAdminFrozenSystem.cs +++ b/Content.Shared/Administration/AdminFrozenSystem.cs @@ -12,15 +12,13 @@ using Content.Shared.Throwing; namespace Content.Shared.Administration; // TODO deduplicate with BlockMovementComponent -public abstract class SharedAdminFrozenSystem : EntitySystem +public sealed class AdminFrozenSystem : EntitySystem { [Dependency] private readonly ActionBlockerSystem _blocker = default!; [Dependency] private readonly PullingSystem _pulling = default!; public override void Initialize() { - base.Initialize(); - SubscribeLocalEvent(OnAttempt); SubscribeLocalEvent(OnAttempt); SubscribeLocalEvent(OnAttempt); @@ -35,6 +33,16 @@ public abstract class SharedAdminFrozenSystem : EntitySystem SubscribeLocalEvent(OnSpeakAttempt); } + /// + /// Freezes and mutes the given entity. + /// + public void FreezeAndMute(EntityUid uid) + { + var comp = EnsureComp(uid); + comp.Muted = true; + Dirty(uid, comp); + } + private void OnInteractAttempt(Entity ent, ref InteractionAttemptEvent args) { args.Cancelled = true; diff --git a/Content.Shared/Administration/Logs/IAdminLogsPlayerValue.cs b/Content.Shared/Administration/Logs/IAdminLogsPlayerValue.cs new file mode 100644 index 0000000000..e99b6b6034 --- /dev/null +++ b/Content.Shared/Administration/Logs/IAdminLogsPlayerValue.cs @@ -0,0 +1,11 @@ +using Robust.Shared.Network; + +namespace Content.Shared.Administration.Logs; + +/// +/// Interface implemented by admin log values that contain player references. +/// +public interface IAdminLogsPlayerValue +{ + IEnumerable Players { get; } +} diff --git a/Content.Shared/Administration/Logs/ISharedAdminLogManager.cs b/Content.Shared/Administration/Logs/ISharedAdminLogManager.cs index d00d6a38de..5e528fe1cd 100644 --- a/Content.Shared/Administration/Logs/ISharedAdminLogManager.cs +++ b/Content.Shared/Administration/Logs/ISharedAdminLogManager.cs @@ -1,10 +1,19 @@ -using Content.Shared.Database; +using System.Runtime.CompilerServices; +using Content.Shared.Database; namespace Content.Shared.Administration.Logs; public interface ISharedAdminLogManager { - void Add(LogType type, LogImpact impact, ref LogStringHandler handler); + public bool Enabled { get; } - void Add(LogType type, ref LogStringHandler handler); + // JsonNamingPolicy is not whitelisted by the sandbox. + public string ConvertName(string name); + + // Required for the log string interpolation handler to access ToPrettyString() + public IEntityManager EntityManager { get; } + + void Add(LogType type, LogImpact impact, [InterpolatedStringHandlerArgument("")] ref LogStringHandler handler); + + void Add(LogType type, [InterpolatedStringHandlerArgument("")] ref LogStringHandler handler); } diff --git a/Content.Shared/Administration/Logs/LogStringHandler.cs b/Content.Shared/Administration/Logs/LogStringHandler.cs index 8d06c448a5..4dbbcf089c 100644 --- a/Content.Shared/Administration/Logs/LogStringHandler.cs +++ b/Content.Shared/Administration/Logs/LogStringHandler.cs @@ -1,29 +1,33 @@ -using System.Runtime.CompilerServices; +using System.Diagnostics.CodeAnalysis; +using System.Runtime.CompilerServices; +using Robust.Shared.Player; +using Robust.Shared.Toolshed.TypeParsers; namespace Content.Shared.Administration.Logs; [InterpolatedStringHandler] +[SuppressMessage("ReSharper", "MethodOverloadWithOptionalParameter")] public ref struct LogStringHandler { + public readonly ISharedAdminLogManager Logger; private DefaultInterpolatedStringHandler _handler; public readonly Dictionary Values; - public LogStringHandler(int literalLength, int formattedCount) + public LogStringHandler(int literalLength, int formattedCount, ISharedAdminLogManager logger, out bool isEnabled) { + isEnabled = logger.Enabled; + if (!isEnabled) + { + Values = default!; + Logger = default!; + return; + } + _handler = new DefaultInterpolatedStringHandler(literalLength, formattedCount); - Values = new Dictionary(); - } - public LogStringHandler(int literalLength, int formattedCount, IFormatProvider? provider) - { - _handler = new DefaultInterpolatedStringHandler(literalLength, formattedCount, provider); - Values = new Dictionary(); - } - - public LogStringHandler(int literalLength, int formattedCount, IFormatProvider? provider, Span initialBuffer) - { - _handler = new DefaultInterpolatedStringHandler(literalLength, formattedCount, provider, initialBuffer); - Values = new Dictionary(); + // TODO LOGGING Dictionary pool? + Values = new Dictionary(formattedCount); + Logger = logger; } private void AddFormat(string? format, T value, string? argument = null) @@ -31,15 +35,13 @@ public ref struct LogStringHandler if (format == null) { if (argument == null) - { return; - } format = argument[0] == '@' ? argument[1..] : argument; } - if (Values.TryAdd(format, value) || - Values[format] == (object?) value) + if (Values.TryAdd(Logger.ConvertName(format), value) + || Values[format] is T val && val.Equals(value) ) { return; } @@ -48,7 +50,8 @@ public ref struct LogStringHandler var i = 2; format = $"{originalFormat}_{i}"; - while (!Values.TryAdd(format, value)) + while (!Values.TryAdd(Logger.ConvertName(format), value) + || Values[format] is T val2 && val2.Equals(value)) { format = $"{originalFormat}_{i}"; i++; @@ -60,30 +63,176 @@ public ref struct LogStringHandler _handler.AppendLiteral(value); } + #region EntityUid + + public void AppendFormatted(EntityUid value, [CallerArgumentExpression("value")] string? argument = null) + { + AppendFormatted(Logger.EntityManager.ToPrettyString(value), argument); + } + + public void AppendFormatted(EntityUid value, string? format, [CallerArgumentExpression("value")] string? argument = null) + { + AppendFormatted(Logger.EntityManager.ToPrettyString(value), format, argument); + } + + public void AppendFormatted(EntityUid value, int alignment, [CallerArgumentExpression("value")] string? argument = null) + { + AppendFormatted(Logger.EntityManager.ToPrettyString(value), alignment, argument); + } + + public void AppendFormatted(EntityUid value, int alignment, string? format, [CallerArgumentExpression("value")] string? argument = null) + { + AppendFormatted(Logger.EntityManager.ToPrettyString(value), alignment, format, argument); + } + + public void AppendFormatted(EntityUid? value, [CallerArgumentExpression("value")] string? argument = null) + { + AppendFormatted(Logger.EntityManager.ToPrettyString(value), argument); + } + + public void AppendFormatted(EntityUid? value, string? format, [CallerArgumentExpression("value")] string? argument = null) + { + AppendFormatted(Logger.EntityManager.ToPrettyString(value), format, argument); + } + + public void AppendFormatted(EntityUid? value, int alignment, [CallerArgumentExpression("value")] string? argument = null) + { + AppendFormatted(Logger.EntityManager.ToPrettyString(value), alignment, argument); + } + + public void AppendFormatted(EntityUid? value, int alignment, string? format, [CallerArgumentExpression("value")] string? argument = null) + { + AppendFormatted(Logger.EntityManager.ToPrettyString(value), alignment, format, argument); + } + + #endregion + + #region NetEntity + + public void AppendFormatted(NetEntity value, [CallerArgumentExpression("value")] string? argument = null) + { + AppendFormatted(Logger.EntityManager.ToPrettyString(value), argument); + } + + public void AppendFormatted(NetEntity value, string? format, [CallerArgumentExpression("value")] string? argument = null) + { + AppendFormatted(Logger.EntityManager.ToPrettyString(value), format, argument); + } + + public void AppendFormatted(NetEntity value, int alignment, [CallerArgumentExpression("value")] string? argument = null) + { + AppendFormatted(Logger.EntityManager.ToPrettyString(value), alignment, argument); + } + + public void AppendFormatted(NetEntity value, int alignment, string? format, [CallerArgumentExpression("value")] string? argument = null) + { + AppendFormatted(Logger.EntityManager.ToPrettyString(value), alignment, format, argument); + } + + public void AppendFormatted(NetEntity? value, [CallerArgumentExpression("value")] string? argument = null) + { + AppendFormatted(Logger.EntityManager.ToPrettyString(value), argument); + } + + public void AppendFormatted(NetEntity? value, string? format, [CallerArgumentExpression("value")] string? argument = null) + { + AppendFormatted(Logger.EntityManager.ToPrettyString(value), format, argument); + } + + public void AppendFormatted(NetEntity? value, int alignment, [CallerArgumentExpression("value")] string? argument = null) + { + AppendFormatted(Logger.EntityManager.ToPrettyString(value), alignment, argument); + } + + public void AppendFormatted(NetEntity? value, int alignment, string? format, [CallerArgumentExpression("value")] string? argument = null) + { + AppendFormatted(Logger.EntityManager.ToPrettyString(value), alignment, format, argument); + } + #endregion + + #region Player + + public void AppendFormatted(ICommonSession? value, [CallerArgumentExpression("value")] string? argument = null) + { + SerializablePlayer? player = value == null ? null : new(value, Logger.EntityManager); + AddFormat(null, player, argument); + _handler.AppendFormatted(value); + } + + public void AppendFormatted(ICommonSession? value, string? format, [CallerArgumentExpression("value")] string? argument = null) + { + SerializablePlayer? player = value == null ? null : new(value, Logger.EntityManager); + AddFormat(null, player, argument); + _handler.AppendFormatted(value, format); + } + + public void AppendFormatted(ICommonSession? value, int alignment, [CallerArgumentExpression("value")] string? argument = null) + { + SerializablePlayer? player = value == null ? null : new(value, Logger.EntityManager); + AddFormat(null, player, argument); + _handler.AppendFormatted(value, alignment); + } + + public void AppendFormatted(ICommonSession? value, int alignment, string? format, [CallerArgumentExpression("value")] string? argument = null) + { + SerializablePlayer? player = value == null ? null : new(value, Logger.EntityManager); + AddFormat(null, player, argument); + _handler.AppendFormatted(value, alignment, format); + } + #endregion + + #region Generic + public void AppendFormatted(T value, [CallerArgumentExpression("value")] string? argument = null) { + if (value is IAsType ent) + { + AppendFormatted(ent.AsType(), argument); + return; + } + AddFormat(null, value, argument); _handler.AppendFormatted(value); } public void AppendFormatted(T value, string? format, [CallerArgumentExpression("value")] string? argument = null) { + if (value is IAsType ent) + { + AppendFormatted(ent.AsType(), format, argument); + return; + } + AddFormat(format, value, argument); _handler.AppendFormatted(value, format); } public void AppendFormatted(T value, int alignment, [CallerArgumentExpression("value")] string? argument = null) { + if (value is IAsType ent) + { + AppendFormatted(ent.AsType(), alignment, argument); + return; + } + AddFormat(null, value, argument); _handler.AppendFormatted(value, alignment); } public void AppendFormatted(T value, int alignment, string? format, [CallerArgumentExpression("value")] string? argument = null) { + if (value is IAsType ent) + { + AppendFormatted(ent.AsType(), alignment, format, argument); + return; + } + AddFormat(format, value, argument); _handler.AppendFormatted(value, alignment, format); } + #endregion + public void AppendFormatted(ReadOnlySpan value) { _handler.AppendFormatted(value); @@ -116,7 +265,23 @@ public ref struct LogStringHandler public string ToStringAndClear() { - Values.Clear(); return _handler.ToStringAndClear(); } } + +public readonly struct SerializablePlayer +{ + public readonly Guid UserId; + public readonly EntityUid? Uid; + public readonly string? Name; + + public SerializablePlayer(ICommonSession player, IEntityManager entityManager) + { + UserId = player.UserId.UserId; + if (player.AttachedEntity is not {} uid) + return; + + Uid = uid; + Name = entityManager.GetComponentOrNull(uid)?.EntityName; + } +} diff --git a/Content.Shared/Administration/Logs/SharedAdminLogManager.cs b/Content.Shared/Administration/Logs/SharedAdminLogManager.cs index 8641fa6e02..ada2b61638 100644 --- a/Content.Shared/Administration/Logs/SharedAdminLogManager.cs +++ b/Content.Shared/Administration/Logs/SharedAdminLogManager.cs @@ -5,6 +5,13 @@ namespace Content.Shared.Administration.Logs; [Virtual] public class SharedAdminLogManager : ISharedAdminLogManager { + [Dependency] private readonly IEntityManager _entityManager = default!; + public IEntityManager EntityManager => _entityManager; + + public bool Enabled { get; protected set; } + + public virtual string ConvertName(string name) => name; + public virtual void Add(LogType type, LogImpact impact, ref LogStringHandler handler) { // noop diff --git a/Content.Shared/Administration/Logs/SharedAdminLogSystem.cs b/Content.Shared/Administration/Logs/SharedAdminLogSystem.cs deleted file mode 100644 index eb3f8ff98f..0000000000 --- a/Content.Shared/Administration/Logs/SharedAdminLogSystem.cs +++ /dev/null @@ -1,16 +0,0 @@ -using Content.Shared.Database; - -namespace Content.Shared.Administration.Logs; - -public abstract class SharedAdminLogSystem : EntitySystem -{ - public virtual void Add(LogType type, LogImpact impact, ref LogStringHandler handler) - { - // noop - } - - public virtual void Add(LogType type, ref LogStringHandler handler) - { - // noop - } -} diff --git a/Content.Shared/Alert/AlertAutoRemoveComponent.cs b/Content.Shared/Alert/AlertAutoRemoveComponent.cs index 44e2dc91dc..6dd983d3ef 100644 --- a/Content.Shared/Alert/AlertAutoRemoveComponent.cs +++ b/Content.Shared/Alert/AlertAutoRemoveComponent.cs @@ -13,7 +13,7 @@ public sealed partial class AlertAutoRemoveComponent : Component /// [AutoNetworkedField] [DataField] - public List AlertKeys = new(); + public HashSet AlertKeys = new(); public override bool SendOnlyToOwner => true; } diff --git a/Content.Shared/Alert/AlertState.cs b/Content.Shared/Alert/AlertState.cs index d6309f6b42..d0d93cf76a 100644 --- a/Content.Shared/Alert/AlertState.cs +++ b/Content.Shared/Alert/AlertState.cs @@ -4,10 +4,10 @@ using Robust.Shared.Serialization; namespace Content.Shared.Alert; [Serializable, NetSerializable] -public struct AlertState +public record struct AlertState { public short? Severity; - public (TimeSpan, TimeSpan)? Cooldown; + public (TimeSpan startTime, TimeSpan endTime)? Cooldown; public bool AutoRemove; public bool ShowCooldown; public ProtoId Type; diff --git a/Content.Shared/Alert/AlertsSystem.cs b/Content.Shared/Alert/AlertsSystem.cs index 94085c3a27..834a22b8de 100644 --- a/Content.Shared/Alert/AlertsSystem.cs +++ b/Content.Shared/Alert/AlertsSystem.cs @@ -11,19 +11,78 @@ public abstract class AlertsSystem : EntitySystem [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + private EntityQuery _alertsQuery; private FrozenDictionary, AlertPrototype> _typeToAlert = default!; - public IReadOnlyDictionary? GetActiveAlerts(EntityUid euid) + public override void Initialize() { - return TryComp(euid, out AlertsComponent? comp) - ? comp.Alerts + base.Initialize(); + + _alertsQuery = GetEntityQuery(); + + SubscribeLocalEvent(HandleComponentStartup); + SubscribeLocalEvent(HandleComponentShutdown); + SubscribeLocalEvent(OnPlayerAttached); + + SubscribeLocalEvent(OnAutoRemoveUnPaused); + + SubscribeAllEvent(HandleClickAlert); + SubscribeLocalEvent(HandlePrototypesReloaded); + LoadPrototypes(); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var query = EntityQueryEnumerator(); + var curTime = _timing.CurTime; + while (query.MoveNext(out var uid, out var autoComp)) + { + var removed = false; + if (autoComp.AlertKeys.Count <= 0 || !_alertsQuery.TryComp(uid, out var alertComp)) + { + RemCompDeferred(uid, autoComp); + continue; + } + + var removeList = new List(); + foreach (var alertKey in autoComp.AlertKeys) + { + alertComp.Alerts.TryGetValue(alertKey, out var alertState); + + if (alertState.Cooldown is null || alertState.Cooldown.Value.endTime >= curTime) + continue; + + removeList.Add(alertKey); + alertComp.Alerts.Remove(alertKey); + removed = true; + } + + if (!removed) + continue; + + foreach (var alertKey in removeList) + { + autoComp.AlertKeys.Remove(alertKey); + } + + Dirty(uid, alertComp); + Dirty(uid, autoComp); + } + } + + public IReadOnlyDictionary? GetActiveAlerts(Entity entity) + { + return _alertsQuery.Resolve(entity, ref entity.Comp, false) + ? entity.Comp.Alerts : null; } public short GetSeverityRange(ProtoId alertType) { var minSeverity = _typeToAlert[alertType].MinSeverity; - return (short)MathF.Max(minSeverity,_typeToAlert[alertType].MaxSeverity - minSeverity); + return (short)MathF.Max(minSeverity, _typeToAlert[alertType].MaxSeverity - minSeverity); } public short GetMaxSeverity(ProtoId alertType) @@ -36,31 +95,29 @@ public abstract class AlertsSystem : EntitySystem return _typeToAlert[alertType].MinSeverity; } - public bool IsShowingAlert(EntityUid euid, ProtoId alertType) + public bool IsShowingAlert(Entity entity, ProtoId alertType) { - if (!TryComp(euid, out AlertsComponent? alertsComponent)) + if (!_alertsQuery.Resolve(entity, ref entity.Comp, false)) return false; if (TryGet(alertType, out var alert)) - { - return alertsComponent.Alerts.ContainsKey(alert.AlertKey); - } + return entity.Comp.Alerts.ContainsKey(alert.AlertKey); - Log.Debug("Unknown alert type {0}", alertType); + Log.Debug($"Unknown alert type {alertType}"); return false; } /// true iff an alert of the indicated alert category is currently showing - public bool IsShowingAlertCategory(EntityUid euid, ProtoId alertCategory) + public bool IsShowingAlertCategory(Entity entity, ProtoId alertCategory) { - return TryComp(euid, out AlertsComponent? alertsComponent) - && alertsComponent.Alerts.ContainsKey(AlertKey.ForCategory(alertCategory)); + return _alertsQuery.Resolve(entity, ref entity.Comp, false) + && entity.Comp.Alerts.ContainsKey(AlertKey.ForCategory(alertCategory)); } - public bool TryGetAlertState(EntityUid euid, AlertKey key, out AlertState alertState) + public bool TryGetAlertState(Entity entity, AlertKey key, out AlertState alertState) { - if (TryComp(euid, out AlertsComponent? alertsComponent)) - return alertsComponent.Alerts.TryGetValue(key, out alertState); + if (_alertsQuery.Resolve(entity, ref entity.Comp, false)) + return entity.Comp.Alerts.TryGetValue(key, out alertState); alertState = default; return false; @@ -71,107 +128,150 @@ public abstract class AlertsSystem : EntitySystem /// Shows the alert. If the alert or another alert of the same category is already showing, /// it will be updated / replaced with the specified values. /// - /// + /// The entity who we are showing the alert for. /// type of the alert to set /// severity, if supported by the alert /// cooldown start and end, if null there will be no cooldown (and it will /// be erased if there is currently a cooldown for the alert) /// if true, the alert will be removed at the end of the cooldown /// if true, the cooldown will be visibly shown over the alert icon - public void ShowAlert(EntityUid euid, ProtoId alertType, short? severity = null, (TimeSpan, TimeSpan)? cooldown = null, bool autoRemove = false, bool showCooldown = true ) + public void ShowAlert(Entity entity, + ProtoId alertType, + short? severity = null, + (TimeSpan, TimeSpan)? cooldown = null, + bool autoRemove = false, + bool showCooldown = true ) + { + ShowAlert(entity, new AlertState { Type = alertType, Severity = severity, Cooldown = cooldown, AutoRemove = autoRemove, ShowCooldown = showCooldown}); + } + + public void ShowAlert(Entity entity, AlertState state) { // This should be handled as part of networking. if (_timing.ApplyingState) return; - if (!TryComp(euid, out AlertsComponent? alertsComponent)) + if (!_alertsQuery.Resolve(entity, ref entity.Comp, false)) return; - if (TryGet(alertType, out var alert)) + if (!TryGet(state.Type, out var alert)) { - // Check whether the alert category we want to show is already being displayed, with the same type, - // severity, and cooldown. - if (alertsComponent.Alerts.TryGetValue(alert.AlertKey, out var alertStateCallback) && - alertStateCallback.Type == alertType && - alertStateCallback.Severity == severity && - alertStateCallback.Cooldown == cooldown && - alertStateCallback.AutoRemove == autoRemove && - alertStateCallback.ShowCooldown == showCooldown) - { + Log.Error($"Unable to show alert {state.Type}, please ensure this alertType has a corresponding YML alert prototype"); + return; + } + + // Check whether the alert category we want to show is already being displayed, with the same type, + // severity, and cooldown. + if (entity.Comp.Alerts.TryGetValue(alert.AlertKey, out var alertStateCallback)) + { + if (state == alertStateCallback) return; - } - // In the case we're changing the alert type but not the category, we need to remove it first. - alertsComponent.Alerts.Remove(alert.AlertKey); - - var state = new AlertState - { Cooldown = cooldown, Severity = severity, Type = alertType, AutoRemove = autoRemove, ShowCooldown = showCooldown}; - alertsComponent.Alerts[alert.AlertKey] = state; - - // Keeping a list of AutoRemove alerts, so Update() doesn't need to check every alert - if (autoRemove) - { - var autoComp = EnsureComp(euid); - if (!autoComp.AlertKeys.Contains(alert.AlertKey)) - autoComp.AlertKeys.Add(alert.AlertKey); - } - - AfterShowAlert((euid, alertsComponent)); - - Dirty(euid, alertsComponent); + // If the alert exists and we're updating it, we need to remove it first before adding it back. + entity.Comp.Alerts.Remove(alert.AlertKey); } - else + + entity.Comp.Alerts.Add(alert.AlertKey, state); + + // Keeping a list of AutoRemove alerts, so Update() doesn't need to check every alert + if (state.AutoRemove) { - Log.Error("Unable to show alert {0}, please ensure this alertType has" + - " a corresponding YML alert prototype", - alertType); + EnsureComp(entity, out var autoComp); + + if (autoComp.AlertKeys.Add(alert.AlertKey)) + Dirty (entity, autoComp); } + + AfterShowAlert((entity, entity.Comp)); + + Dirty(entity); + } + + /// + /// An alternative to show alert with different behavior if an alert already exists. + /// + /// Entity whose alert we're updating + /// Prototype of the alert we're updating + /// Severity we're setting the alert to + /// Time left in the alert. + /// Do we want to remove this alert when it expires? + /// Should we show/hide the cooldown? + public void UpdateAlert(Entity entity, + ProtoId alertType, + short? severity = null, + TimeSpan? cooldown = null, + bool autoRemove = false, + bool showCooldown = true) + { + if (_timing.ApplyingState) + return; + + if (!_alertsQuery.Resolve(entity, ref entity.Comp, false)) + return; + + if (!TryGet(alertType, out var alert)) + return; + + if (cooldown == null) + { + ShowAlert(entity, alertType, severity, null, autoRemove, showCooldown); + return; + } + + // Keep the progress duration the same but only if we're removing time. + // If the next cooldown is greater than our previous one we should reset the timer + TryGetAlertState(entity, alert.AlertKey, out var alertState); + var down = alertState.Cooldown?.endTime < cooldown.Value + ? (_timing.CurTime, cooldown.Value) + : (alertState.Cooldown?.startTime ?? _timing.CurTime, cooldown.Value); + + ShowAlert(entity, alertType, severity, down, autoRemove, showCooldown); } /// /// Clear the alert with the given category, if one is currently showing. /// - public void ClearAlertCategory(EntityUid euid, ProtoId category) + public void ClearAlertCategory(Entity entity, ProtoId category) { - if(!TryComp(euid, out AlertsComponent? alertsComponent)) + if(!_alertsQuery.Resolve(entity, ref entity.Comp, false)) return; var key = AlertKey.ForCategory(category); - if (!alertsComponent.Alerts.Remove(key)) + if (!entity.Comp.Alerts.Remove(key)) { return; } - AfterClearAlert((euid, alertsComponent)); + AfterClearAlert((entity, entity.Comp)); - Dirty(euid, alertsComponent); + Dirty(entity); } /// /// Clear the alert of the given type if it is currently showing. /// - public void ClearAlert(EntityUid euid, ProtoId alertType) + public void ClearAlert(Entity entity, ProtoId alertType) { if (_timing.ApplyingState) return; - if (!TryComp(euid, out AlertsComponent? alertsComponent)) + if (!_alertsQuery.Resolve(entity, ref entity.Comp, false)) return; if (TryGet(alertType, out var alert)) { - if (!alertsComponent.Alerts.Remove(alert.AlertKey)) + if (!entity.Comp.Alerts.Remove(alert.AlertKey)) { return; } - AfterClearAlert((euid, alertsComponent)); + AfterClearAlert((entity, entity.Comp)); - Dirty(euid, alertsComponent); + Dirty(entity); } else { - Log.Error("Unable to clear alert, unknown alertType {0}", alertType); + Log.Error($"Unable to clear alert, unknown alertType {alertType}"); } } @@ -185,27 +285,10 @@ public abstract class AlertsSystem : EntitySystem /// protected virtual void AfterClearAlert(Entity alerts) { } - public override void Initialize() + private void OnAutoRemoveUnPaused(Entity entity, ref EntityUnpausedEvent args) { - base.Initialize(); - - SubscribeLocalEvent(HandleComponentStartup); - SubscribeLocalEvent(HandleComponentShutdown); - SubscribeLocalEvent(OnPlayerAttached); - - SubscribeLocalEvent(OnAutoRemoveUnPaused); - - SubscribeAllEvent(HandleClickAlert); - SubscribeLocalEvent(HandlePrototypesReloaded); - LoadPrototypes(); - } - - private void OnAutoRemoveUnPaused(EntityUid uid, AlertAutoRemoveComponent comp, EntityUnpausedEvent args) - { - if (!TryComp(uid, out var alertComp)) - { + if (!_alertsQuery.TryComp(entity, out var alertComp)) return; - } var dirty = false; @@ -214,58 +297,16 @@ public abstract class AlertsSystem : EntitySystem if (alert.Value.Cooldown is null) continue; - var cooldown = (alert.Value.Cooldown.Value.Item1, alert.Value.Cooldown.Value.Item2 + args.PausedTime); + var (start, end) = alert.Value.Cooldown.Value; + var cooldown = (start, end + args.PausedTime); - var state = new AlertState - { - Severity = alert.Value.Severity, - Cooldown = cooldown, - ShowCooldown = alert.Value.ShowCooldown, - AutoRemove = alert.Value.AutoRemove, - Type = alert.Value.Type - }; + var state = alert.Value with { Cooldown = cooldown }; alertComp.Alerts[alert.Key] = state; dirty = true; } if (dirty) - Dirty(uid, comp); - } - - public override void Update(float frameTime) - { - base.Update(frameTime); - - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var autoComp)) - { - var dirtyComp = false; - if (autoComp.AlertKeys.Count <= 0 || !TryComp(uid, out var alertComp)) - { - RemCompDeferred(uid, autoComp); - continue; - } - - var removeList = new List(); - foreach (var alertKey in autoComp.AlertKeys) - { - alertComp.Alerts.TryGetValue(alertKey, out var alertState); - - if (alertState.Cooldown is null || alertState.Cooldown.Value.Item2 >= _timing.CurTime) - continue; - removeList.Add(alertKey); - alertComp.Alerts.Remove(alertKey); - dirtyComp = true; - } - - foreach (var alertKey in removeList) - { - autoComp.AlertKeys.Remove(alertKey); - } - - if (dirtyComp) - Dirty(uid, alertComp); - } + Dirty(entity, alertComp); } protected virtual void HandleComponentShutdown(EntityUid uid, AlertsComponent component, ComponentShutdown args) @@ -290,10 +331,7 @@ public abstract class AlertsSystem : EntitySystem foreach (var alert in _prototypeManager.EnumeratePrototypes()) { if (!dict.TryAdd(alert.ID, alert)) - { - Log.Error("Found alert with duplicate alertType {0} - all alerts must have" + - " a unique alertType, this one will be skipped", alert.ID); - } + Log.Error($"Found alert with duplicate alertType {alert.ID} - all alerts must have a unique alertType, this one will be skipped"); } _typeToAlert = dict.ToFrozenDictionary(); @@ -316,15 +354,13 @@ public abstract class AlertsSystem : EntitySystem if (!IsShowingAlert(player.Value, msg.Type)) { - Log.Debug("User {0} attempted to" + - " click alert {1} which is not currently showing for them", - Comp(player.Value).EntityName, msg.Type); + Log.Debug($"User {ToPrettyString(player.Value)} attempted to click alert {msg.Type} which is not currently showing for them"); return; } if (!TryGet(msg.Type, out var alert)) { - Log.Warning("Unrecognized encoded alert {0}", msg.Type); + Log.Warning($"Unrecognized encoded alert {msg.Type}"); return; } diff --git a/Content.Server/Anomaly/Components/AnomalyScannerComponent.cs b/Content.Shared/Anomaly/Components/AnomalyScannerComponent.cs similarity index 78% rename from Content.Server/Anomaly/Components/AnomalyScannerComponent.cs rename to Content.Shared/Anomaly/Components/AnomalyScannerComponent.cs index 1bc3070494..c49743f630 100644 --- a/Content.Server/Anomaly/Components/AnomalyScannerComponent.cs +++ b/Content.Shared/Anomaly/Components/AnomalyScannerComponent.cs @@ -1,13 +1,15 @@ using Content.Shared.Anomaly; using Robust.Shared.Audio; +using Robust.Shared.GameStates; -namespace Content.Server.Anomaly.Components; +namespace Content.Shared.Anomaly.Components; /// /// This is used for scanning anomalies and /// displaying information about them in the ui /// -[RegisterComponent, Access(typeof(SharedAnomalySystem))] +[RegisterComponent, Access(typeof(SharedAnomalyScannerSystem))] +[NetworkedComponent] public sealed partial class AnomalyScannerComponent : Component { /// @@ -19,12 +21,12 @@ public sealed partial class AnomalyScannerComponent : Component /// /// How long the scan takes /// - [DataField("scanDoAfterDuration")] + [DataField] public float ScanDoAfterDuration = 5; /// /// The sound plays when the scan finished /// - [DataField("completeSound")] + [DataField] public SoundSpecifier? CompleteSound = new SoundPathSpecifier("/Audio/Items/beep.ogg"); } diff --git a/Content.Shared/Anomaly/SharedAnomaly.cs b/Content.Shared/Anomaly/SharedAnomaly.cs index cde61ca336..ac1ba042d4 100644 --- a/Content.Shared/Anomaly/SharedAnomaly.cs +++ b/Content.Shared/Anomaly/SharedAnomaly.cs @@ -17,6 +17,14 @@ public enum AnomalyVisualLayers : byte Animated } +[Serializable, NetSerializable] +public enum AnomalyStabilityVisuals : byte +{ + Stable = 1, + Decaying = 2, + Growing = 3, +} + /// /// The types of anomalous particles used /// for interfacing with anomalies. @@ -41,7 +49,7 @@ public enum AnomalousParticleType : byte public enum AnomalyVesselVisuals : byte { HasAnomaly, - AnomalyState + AnomalySeverity, } [Serializable, NetSerializable] @@ -68,6 +76,27 @@ public enum AnomalyScannerUiKey : byte Key } +[Serializable, NetSerializable] +public enum AnomalyScannerVisuals : byte +{ + HasAnomaly, + AnomalyStability, + AnomalySeverity, + AnomalyNextPulse, + AnomalyIsSupercritical, +} + +[Serializable, NetSerializable] +public enum AnomalyScannerVisualLayers : byte +{ + Base, + Screen, + SeverityMask, + Stability, + Pulse, + Supercritical, +} + [Serializable, NetSerializable] public sealed class AnomalyScannerUserInterfaceState : BoundUserInterfaceState { diff --git a/Content.Shared/Anomaly/SharedAnomalyScannerSystem.cs b/Content.Shared/Anomaly/SharedAnomalyScannerSystem.cs new file mode 100644 index 0000000000..42d57c65f0 --- /dev/null +++ b/Content.Shared/Anomaly/SharedAnomalyScannerSystem.cs @@ -0,0 +1,86 @@ +using Content.Shared.Anomaly.Components; +using Content.Shared.DoAfter; +using Content.Shared.Interaction; +using Content.Shared.Popups; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Timing; + +namespace Content.Shared.Anomaly; + +/// System for controlling anomaly scanner device. +public abstract class SharedAnomalyScannerSystem : EntitySystem +{ + [Dependency] protected readonly SharedPopupSystem Popup = default!; + [Dependency] protected readonly SharedAudioSystem Audio = default!; + [Dependency] protected readonly IGameTiming Timing = default!; + [Dependency] protected readonly SharedAppearanceSystem Appearance = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; + [Dependency] protected readonly SharedUserInterfaceSystem UI = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnDoAfter); + SubscribeLocalEvent(OnScannerAfterInteract); + SubscribeLocalEvent(OnScannerAnomalyShutdown); + } + + private void OnScannerAnomalyShutdown(ref AnomalyShutdownEvent args) + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var component)) + { + if (component.ScannedAnomaly != args.Anomaly) + continue; + + UI.CloseUi(uid, AnomalyScannerUiKey.Key); + // Anomaly over, reset all the appearance data + Appearance.SetData(uid, AnomalyScannerVisuals.HasAnomaly, false); + Appearance.SetData(uid, AnomalyScannerVisuals.AnomalyIsSupercritical, false); + Appearance.SetData(uid, AnomalyScannerVisuals.AnomalyNextPulse, 0); + Appearance.SetData(uid, AnomalyScannerVisuals.AnomalySeverity, 0); + Appearance.SetData(uid, AnomalyScannerVisuals.AnomalyStability, AnomalyStabilityVisuals.Stable); + } + } + + private void OnScannerAfterInteract(EntityUid uid, AnomalyScannerComponent component, AfterInteractEvent args) + { + if (args.Target is not { } target) + return; + + if (!HasComp(target)) + return; + + if (!args.CanReach) + return; + + var doAfterArgs = new DoAfterArgs( + EntityManager, + args.User, + component.ScanDoAfterDuration, + new ScannerDoAfterEvent(), + uid, + target: target, + used: uid + ) + { + DistanceThreshold = 2f + }; + _doAfter.TryStartDoAfter(doAfterArgs); + } + + protected virtual void OnDoAfter(EntityUid uid, AnomalyScannerComponent component, DoAfterEvent args) + { + if (args.Cancelled || args.Handled || args.Args.Target == null) + return; + + Audio.PlayPredicted(component.CompleteSound, uid, args.User); + Popup.PopupPredicted(Loc.GetString("anomaly-scanner-component-scan-complete"), uid, args.User); + + UI.OpenUi(uid, AnomalyScannerUiKey.Key, args.User); + + args.Handled = true; + } + +} diff --git a/Content.Shared/Anomaly/SharedAnomalySystem.cs b/Content.Shared/Anomaly/SharedAnomalySystem.cs index ee3903a1d9..452dc73e26 100644 --- a/Content.Shared/Anomaly/SharedAnomalySystem.cs +++ b/Content.Shared/Anomaly/SharedAnomalySystem.cs @@ -1,3 +1,4 @@ +using System.Diagnostics.CodeAnalysis; using Content.Shared.Administration.Logs; using Content.Shared.Anomaly.Components; using Content.Shared.Anomaly.Prototypes; @@ -140,6 +141,7 @@ public abstract class SharedAnomalySystem : EntitySystem var super = AddComp(ent); super.EndTime = Timing.CurTime + ent.Comp.SupercriticalDuration; Appearance.SetData(ent, AnomalyVisuals.Supercritical, true); + SetScannerSupercritical((ent, ent.Comp), true); Dirty(ent, super); } @@ -340,7 +342,8 @@ public abstract class SharedAnomalySystem : EntitySystem ChangeAnomalyHealth(ent, anomaly.HealthChangePerSecond * frameTime, anomaly); } - if (Timing.CurTime > anomaly.NextPulseTime) + var secondsUntilNextPulse = (anomaly.NextPulseTime - Timing.CurTime).TotalSeconds; + if (secondsUntilNextPulse < 0) { DoAnomalyPulse(ent, anomaly); } @@ -366,6 +369,18 @@ public abstract class SharedAnomalySystem : EntitySystem } } + private void SetScannerSupercritical(Entity anomalyEnt, bool value) + { + var scannerQuery = EntityQueryEnumerator(); + while (scannerQuery.MoveNext(out var scannerUid, out var scanner)) + { + if (scanner.ScannedAnomaly != anomalyEnt) + continue; + + Appearance.SetData(scannerUid, AnomalyScannerVisuals.AnomalyIsSupercritical, value); + } + } + /// /// Gets random points around the anomaly based on the given parameters. /// @@ -441,6 +456,33 @@ public abstract class SharedAnomalySystem : EntitySystem } return resultList; } + + public bool TryGetStabilityVisual(Entity ent, [NotNullWhen(true)] out AnomalyStabilityVisuals? visual) + { + visual = null; + if (!Resolve(ent, ref ent.Comp, logMissing: false)) + return false; + + visual = AnomalyStabilityVisuals.Stable; + if (ent.Comp.Stability <= ent.Comp.DecayThreshold) + { + visual = AnomalyStabilityVisuals.Decaying; + } + else if (ent.Comp.Stability >= ent.Comp.GrowthThreshold) + { + visual = AnomalyStabilityVisuals.Growing; + } + + return true; + } + + public AnomalyStabilityVisuals GetStabilityVisualOrStable(Entity ent) + { + if(TryGetStabilityVisual(ent, out var visual)) + return visual.Value; + + return AnomalyStabilityVisuals.Stable; + } } [DataRecord] diff --git a/Content.Server/Atmos/Components/FlammableComponent.cs b/Content.Shared/Atmos/Components/FlammableComponent.cs similarity index 95% rename from Content.Server/Atmos/Components/FlammableComponent.cs rename to Content.Shared/Atmos/Components/FlammableComponent.cs index 9ae99a1513..acfb9e2540 100644 --- a/Content.Server/Atmos/Components/FlammableComponent.cs +++ b/Content.Shared/Atmos/Components/FlammableComponent.cs @@ -1,11 +1,12 @@ using Content.Shared.Alert; using Content.Shared.Damage; +using Robust.Shared.GameStates; using Robust.Shared.Physics.Collision.Shapes; using Robust.Shared.Prototypes; -namespace Content.Server.Atmos.Components +namespace Content.Shared.Atmos.Components { - [RegisterComponent] + [RegisterComponent, NetworkedComponent] public sealed partial class FlammableComponent : Component { [DataField] diff --git a/Content.Shared/Atmos/EntitySystems/SharedGasTileOverlaySystem.cs b/Content.Shared/Atmos/EntitySystems/SharedGasTileOverlaySystem.cs index 8e7dfdedaf..1c7da938d4 100644 --- a/Content.Shared/Atmos/EntitySystems/SharedGasTileOverlaySystem.cs +++ b/Content.Shared/Atmos/EntitySystems/SharedGasTileOverlaySystem.cs @@ -1,5 +1,7 @@ using Content.Shared.Atmos.Components; using Content.Shared.Atmos.Prototypes; +using Content.Shared.CCVar; +using Robust.Shared.Configuration; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; @@ -8,11 +10,26 @@ namespace Content.Shared.Atmos.EntitySystems { public abstract class SharedGasTileOverlaySystem : EntitySystem { + /// + /// The temperature at which the heat distortion effect starts to be applied. + /// + private float _tempAtMinHeatDistortion; + /// + /// The temperature at which the heat distortion effect is at maximum strength. + /// + private float _tempAtMaxHeatDistortion; + /// + /// Calculated linear slope and intercept to map temperature to a heat distortion strength from 0.0 to 1.0 + /// + private float _heatDistortionSlope; + private float _heatDistortionIntercept; + public const byte ChunkSize = 8; protected float AccumulatedFrameTime; protected bool PvsEnabled; [Dependency] protected readonly IPrototypeManager ProtoMan = default!; + [Dependency] protected readonly IConfigurationManager ConfMan = default!; /// /// array of the ids of all visible gases. @@ -22,6 +39,11 @@ namespace Content.Shared.Atmos.EntitySystems public override void Initialize() { base.Initialize(); + + // Make sure the heat distortion variables are updated if the CVars change + Subs.CVar(ConfMan, CCVars.GasOverlayHeatMinimum, UpdateMinHeat, true); + Subs.CVar(ConfMan, CCVars.GasOverlayHeatMaximum, UpdateMaxHeat, true); + SubscribeLocalEvent(OnGetState); List visibleGases = new(); @@ -36,6 +58,29 @@ namespace Content.Shared.Atmos.EntitySystems VisibleGasId = visibleGases.ToArray(); } + private void UpdateMaxHeat(float val) + { + _tempAtMaxHeatDistortion = val; + UpdateHeatSlopeAndIntercept(); + } + + private void UpdateMinHeat(float val) + { + _tempAtMinHeatDistortion = val; + UpdateHeatSlopeAndIntercept(); + } + + private void UpdateHeatSlopeAndIntercept() + { + // Make sure to avoid invalid settings (min == max or min > max) + // I'm not sure if CVars can have constraints or if CVar subscribers can reject changes. + var diff = _tempAtMinHeatDistortion < _tempAtMaxHeatDistortion + ? _tempAtMaxHeatDistortion - _tempAtMinHeatDistortion + : 0.001f; + _heatDistortionSlope = 1.0f / diff; + _heatDistortionIntercept = -_tempAtMinHeatDistortion * _heatDistortionSlope; + } + private void OnGetState(EntityUid uid, GasTileOverlayComponent component, ref ComponentGetState args) { if (PvsEnabled && !args.ReplayState) @@ -72,14 +117,26 @@ namespace Content.Shared.Atmos.EntitySystems [ViewVariables] public readonly byte[] Opacity; - // TODO change fire color based on temps - // But also: dont dirty on a 0.01 kelvin change in temperatures. - // Either have a temp tolerance, or map temperature -> byte levels + /// + /// This temperature is currently only used by the GasTileHeatOverlay. + /// This value will only reflect the true temperature of the gas when the temperature is between + /// and as these are the only + /// values at which the heat distortion varies. + /// Additionally, it will only update when the heat distortion strength changes by + /// . By default, this is 5%, which corresponds to + /// 20 steps from to . + /// For 325K to 1000K with 5% tolerance, then this field will dirty only if it differs by 33.75K, or 20 steps. + /// + [ViewVariables] + public readonly float Temperature; - public GasOverlayData(byte fireState, byte[] opacity) + // TODO change fire color based on temps + + public GasOverlayData(byte fireState, byte[] opacity, float temperature) { FireState = fireState; Opacity = opacity; + Temperature = temperature; } public bool Equals(GasOverlayData other) @@ -99,10 +156,26 @@ namespace Content.Shared.Atmos.EntitySystems } } + // This is only checking if two datas are equal -- a different routine is used to check if the + // temperature differs enough to dirty the chunk using a much wider tolerance. + if (!MathHelper.CloseToPercent(Temperature, other.Temperature)) + return false; + return true; } } + /// + /// Calculate the heat distortion from a temperature. + /// Returns 0.0f below TempAtMinHeatDistortion and 1.0f above TempAtMaxHeatDistortion. + /// + /// + /// + public float GetHeatDistortionStrength(float temp) + { + return MathHelper.Clamp01(temp * _heatDistortionSlope + _heatDistortionIntercept); + } + [Serializable, NetSerializable] public sealed class GasOverlayUpdateEvent : EntityEventArgs { diff --git a/Content.Shared/Atmos/GasArraySerializer.cs b/Content.Shared/Atmos/GasArraySerializer.cs new file mode 100644 index 0000000000..0834eedca0 --- /dev/null +++ b/Content.Shared/Atmos/GasArraySerializer.cs @@ -0,0 +1,105 @@ +using Robust.Shared.Serialization; +using Robust.Shared.Serialization.Manager; +using Robust.Shared.Serialization.Markdown; +using Robust.Shared.Serialization.Markdown.Mapping; +using Robust.Shared.Serialization.Markdown.Sequence; +using Robust.Shared.Serialization.Markdown.Validation; +using Robust.Shared.Serialization.TypeSerializers.Interfaces; + +namespace Content.Shared.Atmos; + +public sealed class GasArraySerializer : ITypeSerializer, ITypeSerializer +{ + public ValidationNode Validate(ISerializationManager serializationManager, + SequenceDataNode node, + IDependencyCollection dependencies, + ISerializationContext? context = null) + { + var list = new List(); + + foreach (var elem in node.Sequence) + { + list.Add(serializationManager.ValidateNode(elem, context)); + } + + return new ValidatedSequenceNode(list); + } + + public float[] Read(ISerializationManager serializationManager, + SequenceDataNode node, + IDependencyCollection dependencies, + SerializationHookContext hookCtx, + ISerializationContext? context = null, + ISerializationManager.InstantiationDelegate? instanceProvider = null) + { + var list = instanceProvider != null ? instanceProvider() : new float[Atmospherics.AdjustedNumberOfGases]; + + for (var i = 0; i < node.Sequence.Count; i++) + { + list[i] = serializationManager.Read(node.Sequence[i], hookCtx, context); + } + + return list; + } + + public ValidationNode Validate(ISerializationManager serializationManager, + MappingDataNode node, + IDependencyCollection dependencies, + ISerializationContext? context = null) + { + var dict = new Dictionary(); + + foreach (var (key, value) in node.Children) + { + ValidationNode keyNode = Enum.TryParse(key, out _) + ? new ValidatedValueNode(node.GetKeyNode(key)) + : new ErrorNode(node.GetKeyNode(key), $"Failed to parse Gas: {key}"); + + dict.Add(keyNode, serializationManager.ValidateNode(value, context)); + } + + return new ValidatedMappingNode(dict); + } + + public float[] Read(ISerializationManager serializationManager, + MappingDataNode node, + IDependencyCollection dependencies, + SerializationHookContext hookCtx, + ISerializationContext? context = null, + ISerializationManager.InstantiationDelegate? instanceProvider = null) + { + var list = instanceProvider != null ? instanceProvider() : new float[Atmospherics.AdjustedNumberOfGases]; + + foreach (var (gas, value) in node.Children) + { + // In the event that an invalid gas got serialized into something, + // we simply ignore it and continue reading. + // Errors should already be caught by Validate(). + if (!Enum.TryParse(gas, out var gasEnum)) + continue; + + list[(int)gasEnum] = serializationManager.Read(value, hookCtx, context); + } + + return list; + } + + public DataNode Write(ISerializationManager serializationManager, + float[] value, + IDependencyCollection dependencies, + bool alwaysWrite = false, + ISerializationContext? context = null) + { + var mapping = new MappingDataNode(); + + for (var i = 0; i < Atmospherics.TotalNumberOfGases; i++) + { + if (value[i] <= 0) + continue; + + mapping.Add(((Gas) i).ToString(), serializationManager.WriteValue(value[i], alwaysWrite, context)); + } + + return mapping; + } +} diff --git a/Content.Shared/Atmos/GasMixture.cs b/Content.Shared/Atmos/GasMixture.cs index 612626d614..3da7827cdd 100644 --- a/Content.Shared/Atmos/GasMixture.cs +++ b/Content.Shared/Atmos/GasMixture.cs @@ -20,7 +20,7 @@ namespace Content.Shared.Atmos // No access, to ensure immutable mixtures are never accidentally mutated. [Access(typeof(SharedAtmosphereSystem), typeof(SharedAtmosDebugOverlaySystem), typeof(GasEnumerator), Other = AccessPermissions.None)] - [DataField] + [DataField(customTypeSerializer: typeof(GasArraySerializer))] public float[] Moles = new float[Atmospherics.AdjustedNumberOfGases]; public float this[int gas] => Moles[gas]; diff --git a/Content.Shared/Body/Components/BloodstreamComponent.cs b/Content.Shared/Body/Components/BloodstreamComponent.cs index 0139932262..51814eaba9 100644 --- a/Content.Shared/Body/Components/BloodstreamComponent.cs +++ b/Content.Shared/Body/Components/BloodstreamComponent.cs @@ -198,12 +198,6 @@ public sealed partial class BloodstreamComponent : Component [ViewVariables] public Entity? TemporarySolution; - /// - /// Variable that stores the amount of status time added by having a low blood level. - /// - [DataField, AutoNetworkedField] - public TimeSpan StatusTime; - /// /// Alert to show when bleeding. /// diff --git a/Content.Shared/Body/Events/BleedModifierEvent.cs b/Content.Shared/Body/Events/BleedModifierEvent.cs new file mode 100644 index 0000000000..c836738d63 --- /dev/null +++ b/Content.Shared/Body/Events/BleedModifierEvent.cs @@ -0,0 +1,9 @@ +namespace Content.Shared.Body.Events; + +/// +/// Raised on an entity before they bleed to modify the amount. +/// +/// The amount of blood the entity will lose. +/// The amount of bleed reduction that will happen. +[ByRefEvent] +public record struct BleedModifierEvent(float BleedAmount, float BleedReductionAmount); diff --git a/Content.Shared/Body/Systems/SharedBloodstreamSystem.cs b/Content.Shared/Body/Systems/SharedBloodstreamSystem.cs index ac385040a9..4b3270f1ed 100644 --- a/Content.Shared/Body/Systems/SharedBloodstreamSystem.cs +++ b/Content.Shared/Body/Systems/SharedBloodstreamSystem.cs @@ -6,7 +6,6 @@ using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Chemistry.Reaction; using Content.Shared.Chemistry.Reagent; using Content.Shared.Damage; -using Content.Shared.Drunk; using Content.Shared.EntityEffects.Effects; using Content.Shared.FixedPoint; using Content.Shared.Fluids; @@ -16,7 +15,7 @@ using Content.Shared.Mobs.Systems; using Content.Shared.Popups; using Content.Shared.Random.Helpers; using Content.Shared.Rejuvenate; -using Content.Shared.Speech.EntitySystems; +using Content.Shared.StatusEffectNew; using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Prototypes; @@ -27,17 +26,18 @@ namespace Content.Shared.Body.Systems; public abstract class SharedBloodstreamSystem : EntitySystem { + public static readonly EntProtoId Bloodloss = "StatusEffectBloodloss"; + [Dependency] protected readonly SharedSolutionContainerSystem SolutionContainer = default!; [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedPuddleSystem _puddle = default!; + [Dependency] private readonly StatusEffectsSystem _status = default!; [Dependency] private readonly AlertsSystem _alertsSystem = default!; [Dependency] private readonly MobStateSystem _mobStateSystem = default!; [Dependency] private readonly DamageableSystem _damageableSystem = default!; - [Dependency] private readonly SharedDrunkSystem _drunkSystem = default!; - [Dependency] private readonly SharedStutteringSystem _stutteringSystem = default!; public override void Initialize() { @@ -81,10 +81,14 @@ public abstract class SharedBloodstreamSystem : EntitySystem // as well as stop their bleeding to a certain extent. if (bloodstream.BleedAmount > 0) { + var ev = new BleedModifierEvent(bloodstream.BleedAmount, bloodstream.BleedReductionAmount); + RaiseLocalEvent(uid, ref ev); + // Blood is removed from the bloodstream at a 1-1 rate with the bleed amount - TryModifyBloodLevel((uid, bloodstream), -bloodstream.BleedAmount); + TryModifyBloodLevel((uid, bloodstream), -ev.BleedAmount); + // Bleed rate is reduced by the bleed reduction amount in the bloodstream component. - TryModifyBleedAmount((uid, bloodstream), -bloodstream.BleedReductionAmount); + TryModifyBleedAmount((uid, bloodstream), -ev.BleedReductionAmount); } // deal bloodloss damage if their blood level is below a threshold. @@ -100,15 +104,7 @@ public abstract class SharedBloodstreamSystem : EntitySystem // Apply dizziness as a symptom of bloodloss. // The effect is applied in a way that it will never be cleared without being healthy. // Multiplying by 2 is arbitrary but works for this case, it just prevents the time from running out - _drunkSystem.TryApplyDrunkenness( - uid, - (float)bloodstream.AdjustedUpdateInterval.TotalSeconds * 2, - applySlur: false); - _stutteringSystem.DoStutter(uid, bloodstream.AdjustedUpdateInterval * 2, refresh: false); - - // storing the drunk and stutter time so we can remove it independently from other effects additions - bloodstream.StatusTime += bloodstream.AdjustedUpdateInterval * 2; - DirtyField(uid, bloodstream, nameof(BloodstreamComponent.StatusTime)); + _status.TrySetStatusEffectDuration(uid, Bloodloss); } else if (!_mobStateSystem.IsDead(uid)) { @@ -118,12 +114,7 @@ public abstract class SharedBloodstreamSystem : EntitySystem bloodstream.BloodlossHealDamage * bloodPercentage, ignoreResistances: true, interruptsDoAfters: false); - // Remove the drunk effect when healthy. Should only remove the amount of drunk and stutter added by low blood level - _drunkSystem.TryRemoveDrunkenessTime(uid, bloodstream.StatusTime.TotalSeconds); - _stutteringSystem.DoRemoveStutterTime(uid, bloodstream.StatusTime.TotalSeconds); - // Reset the drunk and stutter time to zero - bloodstream.StatusTime = TimeSpan.Zero; - DirtyField(uid, bloodstream, nameof(BloodstreamComponent.StatusTime)); + _status.TryRemoveStatusEffect(uid, Bloodloss); } } } @@ -422,11 +413,11 @@ public abstract class SharedBloodstreamSystem : EntitySystem DirtyField(ent, ent.Comp, nameof(BloodstreamComponent.BleedAmount)); if (ent.Comp.BleedAmount == 0) - _alertsSystem.ClearAlert(ent, ent.Comp.BleedingAlert); + _alertsSystem.ClearAlert(ent.Owner, ent.Comp.BleedingAlert); else { var severity = (short)Math.Clamp(Math.Round(ent.Comp.BleedAmount, MidpointRounding.ToZero), 0, 10); - _alertsSystem.ShowAlert(ent, ent.Comp.BleedingAlert, severity); + _alertsSystem.ShowAlert(ent.Owner, ent.Comp.BleedingAlert, severity); } return true; diff --git a/Content.Shared/Body/Systems/SharedInternalsSystem.cs b/Content.Shared/Body/Systems/SharedInternalsSystem.cs index 7749432281..7db02a376c 100644 --- a/Content.Shared/Body/Systems/SharedInternalsSystem.cs +++ b/Content.Shared/Body/Systems/SharedInternalsSystem.cs @@ -158,12 +158,12 @@ public abstract class SharedInternalsSystem : EntitySystem private void OnInternalsStartup(Entity ent, ref ComponentStartup args) { - _alerts.ShowAlert(ent, ent.Comp.InternalsAlert, GetSeverity(ent)); + _alerts.ShowAlert(ent.Owner, ent.Comp.InternalsAlert, GetSeverity(ent)); } private void OnInternalsShutdown(Entity ent, ref ComponentShutdown args) { - _alerts.ClearAlert(ent, ent.Comp.InternalsAlert); + _alerts.ClearAlert(ent.Owner, ent.Comp.InternalsAlert); } public void ConnectBreathTool(Entity ent, EntityUid toolEntity) @@ -178,7 +178,7 @@ public abstract class SharedInternalsSystem : EntitySystem } Dirty(ent); - _alerts.ShowAlert(ent, ent.Comp.InternalsAlert, GetSeverity(ent)); + _alerts.ShowAlert(ent.Owner, ent.Comp.InternalsAlert, GetSeverity(ent)); } public void DisconnectBreathTool(Entity ent, EntityUid toolEntity, bool forced = false) @@ -199,7 +199,7 @@ public abstract class SharedInternalsSystem : EntitySystem DisconnectTank(ent, forced: forced); } - _alerts.ShowAlert(ent, ent.Comp.InternalsAlert, GetSeverity(ent)); + _alerts.ShowAlert(ent.Owner, ent.Comp.InternalsAlert, GetSeverity(ent)); } public void DisconnectTank(Entity ent, bool forced = false) @@ -222,7 +222,7 @@ public abstract class SharedInternalsSystem : EntitySystem ent.Comp.GasTankEntity = tankEntity; Dirty(ent); - _alerts.ShowAlert(ent, ent.Comp.InternalsAlert, GetSeverity(ent)); + _alerts.ShowAlert(ent.Owner, ent.Comp.InternalsAlert, GetSeverity(ent)); return true; } diff --git a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs index 24560cad38..7dd4ea4d11 100644 --- a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs +++ b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs @@ -1,7 +1,6 @@ using System.Diagnostics.CodeAnalysis; using System.Numerics; using Content.Shared.Alert; -using Content.Shared.ActionBlocker; using Content.Shared.Buckle.Components; using Content.Shared.Cuffs.Components; using Content.Shared.Database; @@ -12,14 +11,12 @@ using Content.Shared.Movement.Events; using Content.Shared.Movement.Pulling.Events; using Content.Shared.Popups; using Content.Shared.Pulling.Events; -using Content.Shared.Rotation; using Content.Shared.Standing; using Content.Shared.Storage.Components; using Content.Shared.Stunnable; using Content.Shared.Throwing; using Content.Shared.Whitelist; using Robust.Shared.Containers; -using Robust.Shared.GameStates; using Robust.Shared.Map; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Events; @@ -199,11 +196,11 @@ public abstract partial class SharedBuckleSystem { strapEnt.Comp.BuckledEntities.Add(buckle); Dirty(strapEnt); - _alerts.ShowAlert(buckle, strapEnt.Comp.BuckledAlertType); + _alerts.ShowAlert(buckle.Owner, strapEnt.Comp.BuckledAlertType); } else { - _alerts.ClearAlertCategory(buckle, BuckledAlertCategory); + _alerts.ClearAlertCategory(buckle.Owner, BuckledAlertCategory); } buckle.Comp.BuckledTo = strap; @@ -448,9 +445,9 @@ public abstract partial class SharedBuckleSystem private void Unbuckle(Entity buckle, Entity strap, EntityUid? user) { if (user == buckle.Owner) - _adminLogger.Add(LogType.Action, LogImpact.Low, $"{user} unbuckled themselves from {strap}"); + _adminLogger.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(user):user} unbuckled themselves from {ToPrettyString(strap):strap}"); else if (user != null) - _adminLogger.Add(LogType.Action, LogImpact.Low, $"{user} unbuckled {buckle} from {strap}"); + _adminLogger.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(user):user} unbuckled {ToPrettyString(buckle):target} from {ToPrettyString(strap):strap}"); _audio.PlayPredicted(strap.Comp.UnbuckleSound, strap, user); diff --git a/Content.Shared/CCVar/CCVars.Atmos.cs b/Content.Shared/CCVar/CCVars.Atmos.cs index cc1069b4fc..7ef40b7911 100644 --- a/Content.Shared/CCVar/CCVars.Atmos.cs +++ b/Content.Shared/CCVar/CCVars.Atmos.cs @@ -150,4 +150,31 @@ public sealed partial class CCVars /// public static readonly CVarDef AtmosTankFragment = CVarDef.Create("atmos.max_explosion_range", 26f, CVar.SERVERONLY); + + /// + /// Whether atmospherics will process delta-pressure damage on entities with a DeltaPressureComponent. + /// Entities with this component will take damage if they are exposed to a pressure difference + /// above the minimum pressure threshold defined in the component. + /// + // TODO: Needs CVARs for global configuration, like min pressure, max damage, etc. + public static readonly CVarDef DeltaPressureDamage = + CVarDef.Create("atmos.delta_pressure_damage", true, CVar.SERVERONLY); + + /// + /// Number of entities to submit for parallel processing per processing run. + /// Low numbers may suffer from thinning out the work per job and leading to threads waiting, + /// or seeing a lot of threading overhead. + /// High numbers may cause Atmospherics to exceed its time budget per tick, as it will not + /// check its time often enough to know if it's exceeding it. + /// + public static readonly CVarDef DeltaPressureParallelToProcessPerIteration = + CVarDef.Create("atmos.delta_pressure_parallel_process_per_iteration", 1000, CVar.SERVERONLY); + + /// + /// Number of entities to process per processing job. + /// Low numbers may cause Atmospherics to see high threading overhead, + /// high numbers may cause Atmospherics to distribute the work unevenly. + /// + public static readonly CVarDef DeltaPressureParallelBatchSize = + CVarDef.Create("atmos.delta_pressure_parallel_batch_size", 10, CVar.SERVERONLY); } diff --git a/Content.Shared/CCVar/CCVars.Game.cs b/Content.Shared/CCVar/CCVars.Game.cs index 00e6ff93ae..68342733f8 100644 --- a/Content.Shared/CCVar/CCVars.Game.cs +++ b/Content.Shared/CCVar/CCVars.Game.cs @@ -109,6 +109,12 @@ public sealed partial class CCVars public static readonly CVarDef GameRoleTimers = CVarDef.Create("game.role_timers", true, CVar.SERVER | CVar.REPLICATED); + /// + /// If role loadout items should be restricted based on time. + /// + public static readonly CVarDef + GameRoleLoadoutTimers = CVarDef.Create("game.role_loadout_timers", true, CVar.SERVER | CVar.REPLICATED); + /// /// Override default role requirements using a /// @@ -285,10 +291,10 @@ public sealed partial class CCVars /// /// Amount of playtime in minutes to be exempt from an IP check. 0 to search everyone. 5 hours by default. + /// /// /// Trust me you want one. - /// > - /// + /// public static readonly CVarDef GameIPIntelExemptPlaytime = CVarDef.Create("game.ipintel_exempt_playtime", TimeSpan.FromMinutes(300), CVar.SERVERONLY); diff --git a/Content.Shared/CCVar/CCVars.Movement.cs b/Content.Shared/CCVar/CCVars.Movement.cs index 37e355b032..96ceada099 100644 --- a/Content.Shared/CCVar/CCVars.Movement.cs +++ b/Content.Shared/CCVar/CCVars.Movement.cs @@ -56,4 +56,12 @@ public sealed partial class CCVars [CVarControl(AdminFlags.VarEdit)] public static readonly CVarDef MovementPushMassCap = CVarDef.Create("movement.push_mass_cap", 1.75f, CVar.SERVER | CVar.REPLICATED); + + /// + /// Is crawling enabled + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef MovementCrawling = + CVarDef.Create("movement.crawling", true, CVar.SERVER | CVar.REPLICATED); + } diff --git a/Content.Shared/CCVar/CCVars.Net.cs b/Content.Shared/CCVar/CCVars.Net.cs index b7465def2e..df8dc6932d 100644 --- a/Content.Shared/CCVar/CCVars.Net.cs +++ b/Content.Shared/CCVar/CCVars.Net.cs @@ -12,4 +12,23 @@ public sealed partial class CCVars public static readonly CVarDef GasOverlayThresholds = CVarDef.Create("net.gasoverlaythresholds", 20); + + public static readonly CVarDef GasOverlayHeatThreshold = + CVarDef.Create("net.gasoverlayheatthreshold", + 0.05f, + CVar.SERVER | CVar.REPLICATED, + "Threshold for sending tile temperature updates to client in percent of distortion strength," + + "from 0.0 to 1.0. Example: 0.05 = 5%, which means heat distortion will appear in 20 'steps'."); + + public static readonly CVarDef GasOverlayHeatMinimum = + CVarDef.Create("net.gasoverlayheatminimum", + 325f, + CVar.SERVER | CVar.REPLICATED, + "Temperature at which heat distortion effect will begin to apply."); + + public static readonly CVarDef GasOverlayHeatMaximum = + CVarDef.Create("net.gasoverlayheatmaximum", + 1000f, + CVar.SERVER | CVar.REPLICATED, + "Temperature at which heat distortion effect will be at maximum strength."); } diff --git a/Content.Shared/Changeling/Devour/ChangelingDevourSystem.Events.cs b/Content.Shared/Changeling/ChangelingDevourEvents.cs similarity index 94% rename from Content.Shared/Changeling/Devour/ChangelingDevourSystem.Events.cs rename to Content.Shared/Changeling/ChangelingDevourEvents.cs index d063737e5c..ba8d25f30c 100644 --- a/Content.Shared/Changeling/Devour/ChangelingDevourSystem.Events.cs +++ b/Content.Shared/Changeling/ChangelingDevourEvents.cs @@ -2,7 +2,7 @@ using Content.Shared.DoAfter; using Robust.Shared.Serialization; -namespace Content.Shared.Changeling.Devour; +namespace Content.Shared.Changeling; /// /// Action event for Devour, someone has initiated a devour on someone, begin to windup. diff --git a/Content.Shared/Changeling/ChangelingRoleComponent.cs b/Content.Shared/Changeling/ChangelingRoleComponent.cs deleted file mode 100644 index d2e9c1eccb..0000000000 --- a/Content.Shared/Changeling/ChangelingRoleComponent.cs +++ /dev/null @@ -1,9 +0,0 @@ -using Content.Shared.Roles; - -namespace Content.Shared.Changeling; - -/// -/// The Mindrole for Changeling Antags -/// -[RegisterComponent] -public sealed partial class ChangelingRoleComponent : BaseMindRoleComponent; diff --git a/Content.Shared/Changeling/Transform/ChangelingTransformSystem.Events.cs b/Content.Shared/Changeling/ChangelingTransformEvents.cs similarity index 91% rename from Content.Shared/Changeling/Transform/ChangelingTransformSystem.Events.cs rename to Content.Shared/Changeling/ChangelingTransformEvents.cs index cfe2a56933..9940a60705 100644 --- a/Content.Shared/Changeling/Transform/ChangelingTransformSystem.Events.cs +++ b/Content.Shared/Changeling/ChangelingTransformEvents.cs @@ -2,7 +2,7 @@ using Content.Shared.DoAfter; using Robust.Shared.Serialization; -namespace Content.Shared.Changeling.Transform; +namespace Content.Shared.Changeling; /// /// Action event for opening the changeling transformation radial menu. diff --git a/Content.Shared/Changeling/Devour/ChangelingDevourComponent.cs b/Content.Shared/Changeling/Components/ChangelingDevourComponent.cs similarity index 98% rename from Content.Shared/Changeling/Devour/ChangelingDevourComponent.cs rename to Content.Shared/Changeling/Components/ChangelingDevourComponent.cs index 7798c6fec9..a874afe9ce 100644 --- a/Content.Shared/Changeling/Devour/ChangelingDevourComponent.cs +++ b/Content.Shared/Changeling/Components/ChangelingDevourComponent.cs @@ -1,3 +1,4 @@ +using Content.Shared.Changeling.Systems; using Content.Shared.Damage; using Content.Shared.Damage.Prototypes; using Content.Shared.FixedPoint; @@ -7,7 +8,7 @@ using Robust.Shared.GameStates; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; -namespace Content.Shared.Changeling.Devour; +namespace Content.Shared.Changeling.Components; /// /// Component responsible for Changelings Devour attack. Including the amount of damage diff --git a/Content.Shared/Changeling/ChangelingIdentityComponent.cs b/Content.Shared/Changeling/Components/ChangelingIdentityComponent.cs similarity index 93% rename from Content.Shared/Changeling/ChangelingIdentityComponent.cs rename to Content.Shared/Changeling/Components/ChangelingIdentityComponent.cs index 461315f4ce..8e74f83537 100644 --- a/Content.Shared/Changeling/ChangelingIdentityComponent.cs +++ b/Content.Shared/Changeling/Components/ChangelingIdentityComponent.cs @@ -2,13 +2,13 @@ using Content.Shared.Cloning; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; -namespace Content.Shared.Changeling; +namespace Content.Shared.Changeling.Components; /// /// The storage component for Changelings, it handles the link between a changeling and its consumed identities /// that exist on a paused map. /// -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(raiseAfterAutoHandleState: true)] public sealed partial class ChangelingIdentityComponent : Component { /// @@ -29,6 +29,7 @@ public sealed partial class ChangelingIdentityComponent : Component /// The cloning settings passed to the CloningSystem, contains a list of all components to copy or have handled by their /// respective systems. /// + [DataField] public ProtoId IdentityCloningSettings = "ChangelingCloningSettings"; public override bool SendOnlyToOwner => true; diff --git a/Content.Shared/Changeling/ChangelingStoredIdentityComponent.cs b/Content.Shared/Changeling/Components/ChangelingStoredIdentityComponent.cs similarity index 95% rename from Content.Shared/Changeling/ChangelingStoredIdentityComponent.cs rename to Content.Shared/Changeling/Components/ChangelingStoredIdentityComponent.cs index 44583190e6..010196bfd0 100644 --- a/Content.Shared/Changeling/ChangelingStoredIdentityComponent.cs +++ b/Content.Shared/Changeling/Components/ChangelingStoredIdentityComponent.cs @@ -1,7 +1,7 @@ using Robust.Shared.GameStates; using Robust.Shared.Player; -namespace Content.Shared.Changeling; +namespace Content.Shared.Changeling.Components; /// /// Marker component for cloned identities devoured by a changeling. diff --git a/Content.Shared/Changeling/Transform/ChangelingTransformComponent.cs b/Content.Shared/Changeling/Components/ChangelingTransformComponent.cs similarity index 95% rename from Content.Shared/Changeling/Transform/ChangelingTransformComponent.cs rename to Content.Shared/Changeling/Components/ChangelingTransformComponent.cs index 0a3b3f1985..7b465ea3b2 100644 --- a/Content.Shared/Changeling/Transform/ChangelingTransformComponent.cs +++ b/Content.Shared/Changeling/Components/ChangelingTransformComponent.cs @@ -1,9 +1,10 @@ +using Content.Shared.Changeling.Systems; using Content.Shared.Cloning; using Robust.Shared.Audio; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; -namespace Content.Shared.Changeling.Transform; +namespace Content.Shared.Changeling.Components; /// /// The component containing information about Changelings Transformation action diff --git a/Content.Shared/Changeling/Devour/ChangelingDevourSystem.cs b/Content.Shared/Changeling/Systems/ChangelingDevourSystem.cs similarity index 98% rename from Content.Shared/Changeling/Devour/ChangelingDevourSystem.cs rename to Content.Shared/Changeling/Systems/ChangelingDevourSystem.cs index 83a589a8e3..500ee06b22 100644 --- a/Content.Shared/Changeling/Devour/ChangelingDevourSystem.cs +++ b/Content.Shared/Changeling/Systems/ChangelingDevourSystem.cs @@ -3,6 +3,7 @@ using Content.Shared.Administration.Logs; using Content.Shared.Armor; using Content.Shared.Atmos.Rotting; using Content.Shared.Body.Components; +using Content.Shared.Changeling.Components; using Content.Shared.Damage; using Content.Shared.Database; using Content.Shared.DoAfter; @@ -19,7 +20,7 @@ using Robust.Shared.Network; using Robust.Shared.Random; using Robust.Shared.Timing; -namespace Content.Shared.Changeling.Devour; +namespace Content.Shared.Changeling.Systems; public sealed class ChangelingDevourSystem : EntitySystem { @@ -31,7 +32,7 @@ public sealed class ChangelingDevourSystem : EntitySystem [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; [Dependency] private readonly DamageableSystem _damageable = default!; [Dependency] private readonly MobStateSystem _mobState = default!; - [Dependency] private readonly ChangelingIdentitySystem _changelingIdentitySystem = default!; + [Dependency] private readonly SharedChangelingIdentitySystem _changelingIdentitySystem = default!; [Dependency] private readonly InventorySystem _inventorySystem = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; diff --git a/Content.Shared/Changeling/Systems/ChangelingTransformSystem.UI.cs b/Content.Shared/Changeling/Systems/ChangelingTransformSystem.UI.cs new file mode 100644 index 0000000000..e555147352 --- /dev/null +++ b/Content.Shared/Changeling/Systems/ChangelingTransformSystem.UI.cs @@ -0,0 +1,21 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.Changeling.Systems; + +/// +/// Send when a player selects an intentity to transform into in the radial menu. +/// +[Serializable, NetSerializable] +public sealed class ChangelingTransformIdentitySelectMessage(NetEntity targetIdentity) : BoundUserInterfaceMessage +{ + /// + /// The uid of the cloned identity. + /// + public readonly NetEntity TargetIdentity = targetIdentity; +} + +[Serializable, NetSerializable] +public enum ChangelingTransformUiKey : byte +{ + Key, +} diff --git a/Content.Shared/Changeling/Transform/ChangelingTransformSystem.cs b/Content.Shared/Changeling/Systems/ChangelingTransformSystem.cs similarity index 86% rename from Content.Shared/Changeling/Transform/ChangelingTransformSystem.cs rename to Content.Shared/Changeling/Systems/ChangelingTransformSystem.cs index dbc5356448..cf8d9d7cb6 100644 --- a/Content.Shared/Changeling/Transform/ChangelingTransformSystem.cs +++ b/Content.Shared/Changeling/Systems/ChangelingTransformSystem.cs @@ -1,5 +1,6 @@ using Content.Shared.Actions; using Content.Shared.Administration.Logs; +using Content.Shared.Changeling.Components; using Content.Shared.Cloning; using Content.Shared.Database; using Content.Shared.DoAfter; @@ -10,7 +11,7 @@ using Robust.Shared.Audio.Systems; using Robust.Shared.Network; using Robust.Shared.Prototypes; -namespace Content.Shared.Changeling.Transform; +namespace Content.Shared.Changeling.Systems; public sealed partial class ChangelingTransformSystem : EntitySystem { @@ -43,7 +44,7 @@ public sealed partial class ChangelingTransformSystem : EntitySystem _actionsSystem.AddAction(ent, ref ent.Comp.ChangelingTransformActionEntity, ent.Comp.ChangelingTransformAction); var userInterfaceComp = EnsureComp(ent); - _uiSystem.SetUi((ent, userInterfaceComp), TransformUI.Key, new InterfaceData(ChangelingBuiXmlGeneratedName)); + _uiSystem.SetUi((ent, userInterfaceComp), ChangelingTransformUiKey.Key, new InterfaceData(ChangelingBuiXmlGeneratedName)); } private void OnShutdown(Entity ent, ref ComponentShutdown args) @@ -63,18 +64,9 @@ public sealed partial class ChangelingTransformSystem : EntitySystem if (!TryComp(ent, out var userIdentity)) return; - if (!_uiSystem.IsUiOpen((ent, userInterfaceComp), TransformUI.Key, args.Performer)) + if (!_uiSystem.IsUiOpen((ent, userInterfaceComp), ChangelingTransformUiKey.Key, args.Performer)) { - _uiSystem.OpenUi((ent, userInterfaceComp), TransformUI.Key, args.Performer); - - var identityData = new List(); - - foreach (var consumedIdentity in userIdentity.ConsumedIdentities) - { - identityData.Add(GetNetEntity(consumedIdentity)); - } - - _uiSystem.SetUiState((ent, userInterfaceComp), TransformUI.Key, new ChangelingTransformBoundUserInterfaceState(identityData)); + _uiSystem.OpenUi((ent, userInterfaceComp), ChangelingTransformUiKey.Key, args.Performer); } //TODO: Can add a Else here with TransformInto and CloseUI to make a quick switch, // issue right now is that Radials cover the Action buttons so clicking the action closes the UI (due to clicking off a radial causing it to close, even with UI) // but pressing the number does. @@ -102,12 +94,12 @@ public sealed partial class ChangelingTransformSystem : EntitySystem if (_net.IsServer) ent.Comp.CurrentTransformSound = _audio.PlayPvs(ent.Comp.TransformAttemptNoise, ent)?.Entity; - if(TryComp(targetIdentity, out var storedIdentity) && storedIdentity.OriginalSession != null) + if (TryComp(targetIdentity, out var storedIdentity) && storedIdentity.OriginalSession != null) _adminLogger.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(ent.Owner):player} begun an attempt to transform into \"{Name(targetIdentity)}\" ({storedIdentity.OriginalSession:player}) "); else _adminLogger.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(ent.Owner):player} begun an attempt to transform into \"{Name(targetIdentity)}\""); - var result = _doAfterSystem.TryStartDoAfter(new DoAfterArgs( + _doAfterSystem.TryStartDoAfter(new DoAfterArgs( EntityManager, ent, ent.Comp.TransformWindup, @@ -126,7 +118,7 @@ public sealed partial class ChangelingTransformSystem : EntitySystem private void OnTransformSelected(Entity ent, ref ChangelingTransformIdentitySelectMessage args) { - _uiSystem.CloseUi(ent.Owner, TransformUI.Key, ent); + _uiSystem.CloseUi(ent.Owner, ChangelingTransformUiKey.Key, ent); if (!TryGetEntity(args.TargetIdentity, out var targetIdentity)) return; @@ -162,8 +154,8 @@ public sealed partial class ChangelingTransformSystem : EntitySystem _humanoidAppearanceSystem.CloneAppearance(targetIdentity, args.User); _cloningSystem.CloneComponents(targetIdentity, args.User, settings); - - if(TryComp(targetIdentity, out var storedIdentity) && storedIdentity.OriginalSession != null) + + if (TryComp(targetIdentity, out var storedIdentity) && storedIdentity.OriginalSession != null) _adminLogger.Add(LogType.Action, LogImpact.High, $"{ToPrettyString(ent.Owner):player} successfully transformed into \"{Name(targetIdentity)}\" ({storedIdentity.OriginalSession:player})"); else _adminLogger.Add(LogType.Action, LogImpact.High, $"{ToPrettyString(ent.Owner):player} successfully transformed into \"{Name(targetIdentity)}\""); diff --git a/Content.Shared/Changeling/ChangelingIdentitySystem.cs b/Content.Shared/Changeling/Systems/SharedChangelingIdentitySystem.cs similarity index 68% rename from Content.Shared/Changeling/ChangelingIdentitySystem.cs rename to Content.Shared/Changeling/Systems/SharedChangelingIdentitySystem.cs index f68f72f853..e7e46d79a1 100644 --- a/Content.Shared/Changeling/ChangelingIdentitySystem.cs +++ b/Content.Shared/Changeling/Systems/SharedChangelingIdentitySystem.cs @@ -1,7 +1,7 @@ using System.Numerics; +using Content.Shared.Changeling.Components; using Content.Shared.Cloning; using Content.Shared.Humanoid; -using Content.Shared.Mind.Components; using Content.Shared.NameModifier.EntitySystems; using Robust.Shared.GameStates; using Robust.Shared.Map; @@ -9,9 +9,9 @@ using Robust.Shared.Network; using Robust.Shared.Player; using Robust.Shared.Prototypes; -namespace Content.Shared.Changeling; +namespace Content.Shared.Changeling.Systems; -public sealed class ChangelingIdentitySystem : EntitySystem +public abstract class SharedChangelingIdentitySystem : EntitySystem { [Dependency] private readonly INetManager _net = default!; [Dependency] private readonly IPrototypeManager _prototype = default!; @@ -31,22 +31,19 @@ public sealed class ChangelingIdentitySystem : EntitySystem SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnShutdown); - SubscribeLocalEvent(OnMindAdded); - SubscribeLocalEvent(OnMindRemoved); + SubscribeLocalEvent(OnPlayerAttached); + SubscribeLocalEvent(OnPlayerDetached); SubscribeLocalEvent(OnStoredRemove); } - private void OnMindAdded(Entity ent, ref MindAddedMessage args) + private void OnPlayerAttached(Entity ent, ref PlayerAttachedEvent args) { - if (!TryComp(args.Container.Owner, out var actor)) - return; - - HandOverPvsOverride(actor.PlayerSession, ent.Comp); + HandOverPvsOverride(ent, args.Player); } - private void OnMindRemoved(Entity ent, ref MindRemovedMessage args) + private void OnPlayerDetached(Entity ent, ref PlayerDetachedEvent args) { - CleanupPvsOverride(ent, args.Container.Owner); + CleanupPvsOverride(ent, args.Player); } private void OnMapInit(Entity ent, ref MapInitEvent args) @@ -58,7 +55,8 @@ public sealed class ChangelingIdentitySystem : EntitySystem private void OnShutdown(Entity ent, ref ComponentShutdown args) { - CleanupPvsOverride(ent, ent.Owner); + if (TryComp(ent, out var actor)) + CleanupPvsOverride(ent, actor.PlayerSession); CleanupChangelingNullspaceIdentities(ent); } @@ -106,66 +104,63 @@ public sealed class ChangelingIdentitySystem : EntitySystem // Movercontrollers and mob collisions are currently being calculated even for paused entities. // Spawning all of them in the same spot causes severe performance problems. // Cryopods and Polymorph have the same problem. - var mob = Spawn(speciesPrototype.Prototype, new MapCoordinates(new Vector2(2 * _numberOfStoredIdentities++, 0), PausedMapId!.Value)); + var clone = Spawn(speciesPrototype.Prototype, new MapCoordinates(new Vector2(2 * _numberOfStoredIdentities++, 0), PausedMapId!.Value)); - var storedIdentity = EnsureComp(mob); + var storedIdentity = EnsureComp(clone); storedIdentity.OriginalEntity = target; // TODO: network this once we have WeakEntityReference or the autonetworking source gen is fixed if (TryComp(target, out var actor)) storedIdentity.OriginalSession = actor.PlayerSession; - _humanoidSystem.CloneAppearance(target, mob); - _cloningSystem.CloneComponents(target, mob, settings); + _humanoidSystem.CloneAppearance(target, clone); + _cloningSystem.CloneComponents(target, clone, settings); var targetName = _nameMod.GetBaseName(target); - _metaSystem.SetEntityName(mob, targetName); - ent.Comp.ConsumedIdentities.Add(mob); + _metaSystem.SetEntityName(clone, targetName); + ent.Comp.ConsumedIdentities.Add(clone); Dirty(ent); - HandlePvsOverride(ent, mob); + HandlePvsOverride(ent, clone); - return mob; + return clone; } /// - /// Simple helper to add a PVS override to a Nullspace Identity + /// Simple helper to add a PVS override to a nullspace identity. /// - /// - /// - private void HandlePvsOverride(EntityUid uid, EntityUid target) + /// The actor that should get the override. + /// The identity stored in nullspace. + private void HandlePvsOverride(EntityUid uid, EntityUid identity) { if (!TryComp(uid, out var actor)) return; - _pvsOverrideSystem.AddSessionOverride(target, actor.PlayerSession); + _pvsOverrideSystem.AddSessionOverride(identity, actor.PlayerSession); } /// - /// Cleanup all Pvs Overrides for the owner of the ChangelingIdentity + /// Cleanup all PVS overrides for the owner of the ChangelingIdentity /// - /// the Changeling itself - /// Who specifically to cleanup from, usually just the same owner, but in the case of a mindswap we want to clean up the victim - private void CleanupPvsOverride(Entity ent, EntityUid entityUid) + /// The changeling storing the identities. + /// + private void CleanupPvsOverride(Entity ent, ICommonSession session) { - if (!TryComp(entityUid, out var actor)) - return; - foreach (var identity in ent.Comp.ConsumedIdentities) { - _pvsOverrideSystem.RemoveSessionOverride(identity, actor.PlayerSession); + _pvsOverrideSystem.RemoveSessionOverride(identity, session); } } /// - /// Inform another Session of the entities stored for Transformation + /// Inform another session of the entities stored for transformation. /// - /// The Session you wish to inform - /// The Target storage of identities - public void HandOverPvsOverride(ICommonSession session, ChangelingIdentityComponent comp) + /// The changeling storing the identities. + /// The session you wish to inform. + public void HandOverPvsOverride(Entity ent, ICommonSession session) { - foreach (var entity in comp.ConsumedIdentities) + foreach (var identity in ent.Comp.ConsumedIdentities) { - _pvsOverrideSystem.AddSessionOverride(entity, session); + _pvsOverrideSystem.AddSessionOverride(identity, session); } } diff --git a/Content.Shared/Changeling/Transform/ChangelingTransformSystem.UI.cs b/Content.Shared/Changeling/Transform/ChangelingTransformSystem.UI.cs deleted file mode 100644 index 0383867698..0000000000 --- a/Content.Shared/Changeling/Transform/ChangelingTransformSystem.UI.cs +++ /dev/null @@ -1,33 +0,0 @@ -using Robust.Shared.Serialization; - -namespace Content.Shared.Changeling.Transform; - -/// -/// Send when a player selects an intentity to transform into in the radial menu. -/// -[Serializable, NetSerializable] -public sealed class ChangelingTransformIdentitySelectMessage(NetEntity targetIdentity) : BoundUserInterfaceMessage -{ - /// - /// The uid of the cloned identity. - /// - public readonly NetEntity TargetIdentity = targetIdentity; -} - -// TODO: Replace with component states. -// We are already networking the ChangelingIdentityComponent, which contains all this information, -// so we can just read it from them from the component and update the UI in an AfterAuotHandleState subscription. -[Serializable, NetSerializable] -public sealed class ChangelingTransformBoundUserInterfaceState(List identities) : BoundUserInterfaceState -{ - /// - /// The uids of the cloned identities. - /// - public readonly List Identites = identities; -} - -[Serializable, NetSerializable] -public enum TransformUI : byte -{ - Key, -} diff --git a/Content.Shared/Charges/Components/LimitedChargesComponent.cs b/Content.Shared/Charges/Components/LimitedChargesComponent.cs index e879e0f1df..7891857187 100644 --- a/Content.Shared/Charges/Components/LimitedChargesComponent.cs +++ b/Content.Shared/Charges/Components/LimitedChargesComponent.cs @@ -16,7 +16,7 @@ public sealed partial class LimitedChargesComponent : Component /// /// The max charges this action has. /// - [DataField, AutoNetworkedField, Access(Other = AccessPermissions.Read)] + [DataField, AutoNetworkedField] public int MaxCharges = 3; /// diff --git a/Content.Shared/Charges/Systems/SharedChargesSystem.cs b/Content.Shared/Charges/Systems/SharedChargesSystem.cs index e915580bae..504648c41d 100644 --- a/Content.Shared/Charges/Systems/SharedChargesSystem.cs +++ b/Content.Shared/Charges/Systems/SharedChargesSystem.cs @@ -94,6 +94,12 @@ public abstract class SharedChargesSystem : EntitySystem /// /// Adds the specified charges. Does not reset the accumulator. /// + /// + /// The action to add charges to. If it doesn't have , it will be added. + /// + /// + /// The number of charges to add. Can be negative. Resulting charge count is clamped to [0, MaxCharges]. + /// public void AddCharges(Entity action, int addCharges) { if (addCharges == 0) @@ -170,9 +176,21 @@ public abstract class SharedChargesSystem : EntitySystem Dirty(action); } + /// + /// Set the number of charges an action has. + /// + /// The action in question + /// + /// The number of charges. Clamped to [0, MaxCharges]. + /// + /// + /// This method doesn't implicitly add + /// unlike some other methods in this system. + /// public void SetCharges(Entity action, int value) { - action.Comp ??= EnsureComp(action.Owner); + if (!Resolve(action, ref action.Comp)) + return; var adjusted = Math.Clamp(value, 0, action.Comp.MaxCharges); @@ -186,6 +204,31 @@ public abstract class SharedChargesSystem : EntitySystem Dirty(action); } + /// + /// Sets the maximum charges of a given action. + /// + /// The action being modified. + /// The new maximum charges of the action. Clamped to zero. + /// + /// Does not change the current charge count, or adjust the + /// accumulator for auto-recharge. It also doesn't implicitly add + /// unlike some other methods + /// in this system. + /// + public void SetMaxCharges(Entity action, int value) + { + if (!Resolve(action, ref action.Comp)) + return; + + // You can't have negative max charges (even zero is a bit goofy but eh) + var adjusted = Math.Max(0, value); + if (action.Comp.MaxCharges == adjusted) + return; + + action.Comp.MaxCharges = adjusted; + Dirty(action); + } + /// /// The next time a charge will be considered to be filled. /// diff --git a/Content.Shared/Chat/SharedChatSystem.cs b/Content.Shared/Chat/SharedChatSystem.cs index 34e955a50e..d9f7f5fc57 100644 --- a/Content.Shared/Chat/SharedChatSystem.cs +++ b/Content.Shared/Chat/SharedChatSystem.cs @@ -3,6 +3,7 @@ using System.Text.RegularExpressions; using Content.Shared.Popups; using Content.Shared.Radio; using Content.Shared.Speech; +using Robust.Shared.Audio; using Robust.Shared.Prototypes; using Robust.Shared.Utility; @@ -27,7 +28,8 @@ public abstract class SharedChatSystem : EntitySystem public const int VoiceRange = 10; // how far voice goes in world units public const int WhisperClearRange = 2; // how far whisper goes while still being understandable, in world units public const int WhisperMuffledRange = 5; // how far whisper goes at all, in world units - public const string DefaultAnnouncementSound = "/Audio/Announcements/announce.ogg"; + public static readonly SoundSpecifier DefaultAnnouncementSound + = new SoundPathSpecifier("/Audio/Announcements/announce.ogg"); public static readonly ProtoId CommonChannel = "Common"; diff --git a/Content.Shared/Chemistry/Components/InjectorComponent.cs b/Content.Shared/Chemistry/Components/InjectorComponent.cs index ebd6654d9f..d3a0503c3c 100644 --- a/Content.Shared/Chemistry/Components/InjectorComponent.cs +++ b/Content.Shared/Chemistry/Components/InjectorComponent.cs @@ -8,11 +8,6 @@ using Robust.Shared.Serialization; namespace Content.Shared.Chemistry.Components; -[Serializable, NetSerializable] -public sealed partial class InjectorDoAfterEvent : SimpleDoAfterEvent -{ -} - /// /// Implements draw/inject behavior for droppers and syringes. /// @@ -26,9 +21,18 @@ public sealed partial class InjectorDoAfterEvent : SimpleDoAfterEvent [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class InjectorComponent : Component { + /// + /// The solution to draw into or inject from. + /// [DataField] public string SolutionName = "injector"; + /// + /// A cached reference to the solution. + /// + [ViewVariables] + public Entity? Solution = null; + /// /// Whether or not the injector is able to draw from containers or if it's a single use /// device that can only inject. @@ -37,42 +41,35 @@ public sealed partial class InjectorComponent : Component public bool InjectOnly; /// - /// Whether or not the injector is able to draw from or inject from mobs + /// Whether or not the injector is able to draw from or inject from mobs. /// /// - /// for example: droppers would ignore mobs + /// For example: droppers would ignore mobs. /// [DataField] public bool IgnoreMobs; /// - /// Whether or not the injector is able to draw from or inject into containers that are closed/sealed + /// Whether or not the injector is able to draw from or inject into containers that are closed/sealed. /// /// - /// for example: droppers can not inject into cans, but syringes can + /// For example: droppers can not inject into cans, but syringes can. /// [DataField] public bool IgnoreClosed = true; /// - /// The minimum amount of solution that can be transferred at once from this solution. + /// The transfer amounts for the set-transfer verb. /// - [DataField("minTransferAmount")] - public FixedPoint2 MinimumTransferAmount = FixedPoint2.New(5); - - /// - /// The maximum amount of solution that can be transferred at once from this solution. - /// - [DataField("maxTransferAmount")] - public FixedPoint2 MaximumTransferAmount = FixedPoint2.New(15); + [DataField] + public List TransferAmounts = new() { 1, 5, 10, 15 }; /// /// Amount to inject or draw on each usage. If the injector is inject only, it will /// attempt to inject it's entire contents upon use. /// - [DataField] - [AutoNetworkedField] - public FixedPoint2 TransferAmount = FixedPoint2.New(5); + [DataField, AutoNetworkedField] + public FixedPoint2 CurrentTransferAmount = FixedPoint2.New(5); /// /// Injection delay (seconds) when the target is a mob. @@ -95,8 +92,7 @@ public sealed partial class InjectorComponent : Component /// right SolutionCaps to support injection/drawing. For InjectOnly injectors this should /// only ever be set to Inject /// - [AutoNetworkedField] - [DataField] + [DataField, AutoNetworkedField] public InjectorToggleMode ToggleState = InjectorToggleMode.Draw; /// @@ -127,6 +123,7 @@ public sealed partial class InjectorComponent : Component /// /// Possible modes for an . /// +[Serializable, NetSerializable] public enum InjectorToggleMode : byte { /// @@ -137,5 +134,11 @@ public enum InjectorToggleMode : byte /// /// The injector will try to draw reagent from things. /// - Draw + Draw, } + +/// +/// Raised on the injector when the doafter has finished. +/// +[Serializable, NetSerializable] +public sealed partial class InjectorDoAfterEvent : SimpleDoAfterEvent; diff --git a/Content.Shared/Chemistry/EntitySystems/HypospraySystem.cs b/Content.Shared/Chemistry/EntitySystems/HypospraySystem.cs index 34bc44f1cb..324858afd7 100644 --- a/Content.Shared/Chemistry/EntitySystems/HypospraySystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/HypospraySystem.cs @@ -144,7 +144,7 @@ public sealed class HypospraySystem : EntitySystem return false; } - _popup.PopupClient(Loc.GetString(msgFormat ?? "hypospray-component-inject-other-message", ("other", target)), target, user); + _popup.PopupClient(Loc.GetString(msgFormat ?? "hypospray-component-inject-other-message", ("other", Identity.Entity(target, EntityManager))), target, user); if (target != user) { diff --git a/Content.Shared/Chemistry/EntitySystems/SharedInjectorSystem.cs b/Content.Shared/Chemistry/EntitySystems/SharedInjectorSystem.cs index 1620344652..a39f851457 100644 --- a/Content.Shared/Chemistry/EntitySystems/SharedInjectorSystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/SharedInjectorSystem.cs @@ -1,48 +1,60 @@ +using System.Linq; using Content.Shared.Administration.Logs; +using Content.Shared.Body.Components; +using Content.Shared.Body.Systems; using Content.Shared.Chemistry.Components; +using Content.Shared.Chemistry.Components.SolutionManager; using Content.Shared.CombatMode; +using Content.Shared.Database; using Content.Shared.DoAfter; using Content.Shared.FixedPoint; +using Content.Shared.Forensics.Systems; +using Content.Shared.IdentityManagement; +using Content.Shared.Interaction; using Content.Shared.Interaction.Events; +using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; +using Content.Shared.Nutrition.EntitySystems; using Content.Shared.Popups; +using Content.Shared.Stacks; using Content.Shared.Verbs; -using Robust.Shared.Player; namespace Content.Shared.Chemistry.EntitySystems; public abstract class SharedInjectorSystem : EntitySystem { - /// - /// Default transfer amounts for the set-transfer verb. - /// - public static readonly FixedPoint2[] TransferAmounts = { 1, 5, 10, 15 }; - - [Dependency] protected readonly SharedPopupSystem Popup = default!; - [Dependency] protected readonly SharedSolutionContainerSystem SolutionContainers = default!; - [Dependency] protected readonly MobStateSystem MobState = default!; - [Dependency] protected readonly SharedCombatModeSystem Combat = default!; - [Dependency] protected readonly SharedDoAfterSystem DoAfter = default!; - [Dependency] protected readonly ISharedAdminLogManager AdminLogger = default!; + [Dependency] private readonly SharedBloodstreamSystem _blood = default!; + [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; + [Dependency] private readonly MobStateSystem _mobState = default!; + [Dependency] private readonly OpenableSystem _openable = default!; + [Dependency] private readonly ReactiveSystem _reactiveSystem = default!; + [Dependency] private readonly SharedCombatModeSystem _combatMode = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedForensicsSystem _forensics = default!; + [Dependency] protected readonly SharedSolutionContainerSystem SolutionContainer = default!; public override void Initialize() { SubscribeLocalEvent>(AddSetTransferVerbs); - SubscribeLocalEvent(OnInjectorStartup); SubscribeLocalEvent(OnInjectorUse); + SubscribeLocalEvent(OnInjectorAfterInteract); + SubscribeLocalEvent(OnInjectDoAfter); } - private void AddSetTransferVerbs(Entity entity, ref GetVerbsEvent args) + private void AddSetTransferVerbs(Entity ent, ref GetVerbsEvent args) { if (!args.CanAccess || !args.CanInteract || args.Hands == null) return; - var user = args.User; - var (_, component) = entity; + if (ent.Comp.TransferAmounts.Count <= 1) + return; // No options to cycle between - var min = component.MinimumTransferAmount; - var max = component.MaximumTransferAmount; - var cur = component.TransferAmount; + var user = args.User; + + var min = ent.Comp.TransferAmounts.Min(); + var max = ent.Comp.TransferAmounts.Max(); + var cur = ent.Comp.CurrentTransferAmount; var toggleAmount = cur == max ? min : max; var priority = 0; @@ -52,9 +64,9 @@ public abstract class SharedInjectorSystem : EntitySystem Category = VerbCategory.SetTransferAmount, Act = () => { - component.TransferAmount = toggleAmount; - Popup.PopupClient(Loc.GetString("comp-solution-transfer-set-amount", ("amount", toggleAmount)), user, user); - Dirty(entity); + ent.Comp.CurrentTransferAmount = toggleAmount; + _popup.PopupClient(Loc.GetString("comp-solution-transfer-set-amount", ("amount", toggleAmount)), user, user); + Dirty(ent); }, Priority = priority @@ -63,21 +75,18 @@ public abstract class SharedInjectorSystem : EntitySystem priority -= 1; - // Add specific transfer verbs according to the container's size - foreach (var amount in TransferAmounts) + // Add specific transfer verbs for amounts defined in the component + foreach (var amount in ent.Comp.TransferAmounts) { - if (amount < component.MinimumTransferAmount || amount > component.MaximumTransferAmount) - continue; - AlternativeVerb verb = new() { Text = Loc.GetString("comp-solution-transfer-verb-amount", ("amount", amount)), Category = VerbCategory.SetTransferAmount, Act = () => { - component.TransferAmount = amount; - Popup.PopupClient(Loc.GetString("comp-solution-transfer-set-amount", ("amount", amount)), user, user); - Dirty(entity); + ent.Comp.CurrentTransferAmount = amount; + _popup.PopupClient(Loc.GetString("comp-solution-transfer-set-amount", ("amount", amount)), user, user); + Dirty(ent); }, // we want to sort by size, not alphabetically by the verb text. @@ -90,30 +99,407 @@ public abstract class SharedInjectorSystem : EntitySystem } } - private void OnInjectorStartup(Entity entity, ref ComponentStartup args) - { - // ???? why ????? - Dirty(entity); - } - - private void OnInjectorUse(Entity entity, ref UseInHandEvent args) + private void OnInjectorUse(Entity ent, ref UseInHandEvent args) { if (args.Handled) return; - Toggle(entity, args.User); + Toggle(ent, args.User); args.Handled = true; } + private void OnInjectorAfterInteract(Entity ent, ref AfterInteractEvent args) + { + if (args.Handled || !args.CanReach) + return; + + //Make sure we have the attacking entity + if (args.Target is not { Valid: true } target || !HasComp(ent)) + return; + + // Is the target a mob? If yes, use a do-after to give them time to respond. + if (HasComp(target) || HasComp(target)) + { + // Are use using an injector capable of targeting a mob? + if (ent.Comp.IgnoreMobs) + return; + + InjectDoAfter(ent, target, args.User); + args.Handled = true; + return; + } + + // Instantly draw from or inject into jugs, bottles etc. + args.Handled = TryUseInjector(ent, target, args.User); + } + + private void OnInjectDoAfter(Entity ent, ref InjectorDoAfterEvent args) + { + if (args.Cancelled || args.Handled || args.Args.Target == null) + return; + + args.Handled = TryUseInjector(ent, args.Args.Target.Value, args.Args.User); + } + /// - /// Toggle between draw/inject state if applicable + /// Send informative pop-up messages and wait for a do-after to complete. /// - private void Toggle(Entity injector, EntityUid user) + private void InjectDoAfter(Entity injector, EntityUid target, EntityUid user) + { + // Create a pop-up for the user + if (injector.Comp.ToggleState == InjectorToggleMode.Draw) + { + _popup.PopupClient(Loc.GetString("injector-component-drawing-user"), target, user); + } + else + { + _popup.PopupClient(Loc.GetString("injector-component-injecting-user"), target, user); + } + + if (!SolutionContainer.ResolveSolution(injector.Owner, injector.Comp.SolutionName, ref injector.Comp.Solution, out var solution)) + return; + + var actualDelay = injector.Comp.Delay; + FixedPoint2 amountToInject; + if (injector.Comp.ToggleState == InjectorToggleMode.Draw) + { + // additional delay is based on actual volume left to draw in syringe when smaller than transfer amount + amountToInject = FixedPoint2.Min(injector.Comp.CurrentTransferAmount, solution.MaxVolume - solution.Volume); + } + else + { + // additional delay is based on actual volume left to inject in syringe when smaller than transfer amount + amountToInject = FixedPoint2.Min(injector.Comp.CurrentTransferAmount, solution.Volume); + } + + // Injections take 0.5 seconds longer per 5u of possible space/content + // First 5u(MinimumTransferAmount) doesn't incur delay + actualDelay += injector.Comp.DelayPerVolume * FixedPoint2.Max(0, amountToInject - injector.Comp.TransferAmounts.Min()).Double(); + + // Ensure that minimum delay before incapacitation checks is 1 seconds + actualDelay = MathHelper.Max(actualDelay, TimeSpan.FromSeconds(1)); + + if (user != target) // injecting someone else + { + // Create a pop-up for the target + var userName = Identity.Entity(user, EntityManager); + if (injector.Comp.ToggleState == InjectorToggleMode.Draw) + { + _popup.PopupEntity(Loc.GetString("injector-component-drawing-target", + ("user", userName)), user, target); + } + else + { + _popup.PopupEntity(Loc.GetString("injector-component-injecting-target", + ("user", userName)), user, target); + } + + + // Check if the target is incapacitated or in combat mode and modify time accordingly. + if (_mobState.IsIncapacitated(target)) + { + actualDelay /= 2.5f; + } + else if (_combatMode.IsInCombatMode(target)) + { + // Slightly increase the delay when the target is in combat mode. Helps prevents cheese injections in + // combat with fast syringes & lag. + actualDelay += TimeSpan.FromSeconds(1); + } + + // Add an admin log, using the "force feed" log type. It's not quite feeding, but the effect is the same. + if (injector.Comp.ToggleState == InjectorToggleMode.Inject) + { + _adminLogger.Add(LogType.ForceFeed, + $"{ToPrettyString(user):user} is attempting to inject {ToPrettyString(target):target} with a solution {SharedSolutionContainerSystem.ToPrettyString(solution):solution}"); + } + else + { + _adminLogger.Add(LogType.ForceFeed, + $"{ToPrettyString(user):user} is attempting to draw {injector.Comp.CurrentTransferAmount.ToString()} units from {ToPrettyString(target):target}"); + } + } + else // injecting yourself + { + // Self-injections take half as long. + actualDelay /= 2; + + if (injector.Comp.ToggleState == InjectorToggleMode.Inject) + { + _adminLogger.Add(LogType.Ingestion, + $"{ToPrettyString(user):user} is attempting to inject themselves with a solution {SharedSolutionContainerSystem.ToPrettyString(solution):solution}."); + } + else + { + _adminLogger.Add(LogType.ForceFeed, + $"{ToPrettyString(user):user} is attempting to draw {injector.Comp.CurrentTransferAmount.ToString()} units from themselves."); + } + } + + _doAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, user, actualDelay, new InjectorDoAfterEvent(), injector.Owner, target: target, used: injector.Owner) + { + BreakOnMove = true, + BreakOnWeightlessMove = false, + BreakOnDamage = true, + NeedHand = injector.Comp.NeedHand, + BreakOnHandChange = injector.Comp.BreakOnHandChange, + MovementThreshold = injector.Comp.MovementThreshold, + }); + } + + private bool TryUseInjector(Entity injector, EntityUid target, EntityUid user) + { + var isOpenOrIgnored = injector.Comp.IgnoreClosed || !_openable.IsClosed(target); + // Handle injecting/drawing for solutions + if (injector.Comp.ToggleState == InjectorToggleMode.Inject) + { + if (isOpenOrIgnored && SolutionContainer.TryGetInjectableSolution(target, out var injectableSolution, out _)) + return TryInject(injector, target, injectableSolution.Value, user, false); + + if (isOpenOrIgnored && SolutionContainer.TryGetRefillableSolution(target, out var refillableSolution, out _)) + return TryInject(injector, target, refillableSolution.Value, user, true); + + if (TryComp(target, out var bloodstream)) + return TryInjectIntoBloodstream(injector, (target, bloodstream), user); + + LocId msg = target == user ? "injector-component-cannot-transfer-message-self" : "injector-component-cannot-transfer-message"; + _popup.PopupClient(Loc.GetString(msg, ("target", Identity.Entity(target, EntityManager))), injector, user); + } + else if (injector.Comp.ToggleState == InjectorToggleMode.Draw) + { + // Draw from a bloodstream, if the target has that + if (TryComp(target, out var stream) && + SolutionContainer.ResolveSolution(target, stream.BloodSolutionName, ref stream.BloodSolution)) + { + return TryDraw(injector, (target, stream), stream.BloodSolution.Value, user); + } + + // Draw from an object (food, beaker, etc) + if (isOpenOrIgnored && SolutionContainer.TryGetDrawableSolution(target, out var drawableSolution, out _)) + return TryDraw(injector, target, drawableSolution.Value, user); + + LocId msg = target == user ? "injector-component-cannot-draw-message-self" : "injector-component-cannot-draw-message"; + _popup.PopupClient(Loc.GetString(msg, ("target", Identity.Entity(target, EntityManager))), injector.Owner, user); + } + return false; + } + + private bool TryInject(Entity injector, EntityUid target, + Entity targetSolution, EntityUid user, bool asRefill) + { + if (!SolutionContainer.ResolveSolution(injector.Owner, injector.Comp.SolutionName, ref injector.Comp.Solution, + out var solution) || solution.Volume == 0) + return false; + + // Get transfer amount. May be smaller than _transferAmount if not enough room + var realTransferAmount = + FixedPoint2.Min(injector.Comp.CurrentTransferAmount, targetSolution.Comp.Solution.AvailableVolume); + + if (realTransferAmount <= 0) + { + LocId msg = target == user ? "injector-component-target-already-full-message-self" : "injector-component-target-already-full-message"; + _popup.PopupClient( + Loc.GetString(msg, + ("target", Identity.Entity(target, EntityManager))), + injector.Owner, + user); + return false; + } + + // Move units from attackSolution to targetSolution + Solution removedSolution; + if (TryComp(target, out var stack)) + removedSolution = SolutionContainer.SplitStackSolution(injector.Comp.Solution.Value, realTransferAmount, stack.Count); + else + removedSolution = SolutionContainer.SplitSolution(injector.Comp.Solution.Value, realTransferAmount); + + _reactiveSystem.DoEntityReaction(target, removedSolution, ReactionMethod.Injection); + + if (!asRefill) + SolutionContainer.Inject(target, targetSolution, removedSolution); + else + SolutionContainer.Refill(target, targetSolution, removedSolution); + + LocId msgSuccess = target == user ? "injector-component-transfer-success-message-self" : "injector-component-transfer-success-message"; + _popup.PopupClient( + Loc.GetString(msgSuccess, + ("amount", removedSolution.Volume), + ("target", Identity.Entity(target, EntityManager))), + injector.Owner, user); + + AfterInject(injector, target); + return true; + } + + private bool TryInjectIntoBloodstream(Entity injector, Entity target, + EntityUid user) + { + // Get transfer amount. May be smaller than _transferAmount if not enough room + if (!SolutionContainer.ResolveSolution(target.Owner, target.Comp.ChemicalSolutionName, + ref target.Comp.ChemicalSolution, out var chemSolution)) + { + LocId msg = target.Owner == user ? "injector-component-cannot-inject-message-self" : "injector-component-cannot-inject-message"; + _popup.PopupClient( + Loc.GetString(msg, + ("target", Identity.Entity(target, EntityManager))), + injector.Owner, user); + return false; + } + + var realTransferAmount = FixedPoint2.Min(injector.Comp.CurrentTransferAmount, chemSolution.AvailableVolume); + if (realTransferAmount <= 0) + { + LocId msg = target.Owner == user ? "injector-component-cannot-inject-message-self" : "injector-component-cannot-inject-message"; + _popup.PopupClient( + Loc.GetString(msg, + ("target", Identity.Entity(target, EntityManager))), + injector.Owner, user); + return false; + } + + // Move units from attackSolution to targetSolution + var removedSolution = SolutionContainer.SplitSolution(target.Comp.ChemicalSolution.Value, realTransferAmount); + + _blood.TryAddToChemicals(target.AsNullable(), removedSolution); + + _reactiveSystem.DoEntityReaction(target, removedSolution, ReactionMethod.Injection); + + LocId msgSuccess = target.Owner == user ? "injector-component-inject-success-message-self" : "injector-component-inject-success-message"; + _popup.PopupClient( + Loc.GetString(msgSuccess, + ("amount", removedSolution.Volume), + ("target", Identity.Entity(target, EntityManager))), + injector.Owner, user); + + AfterInject(injector, target); + return true; + } + + private bool TryDraw(Entity injector, Entity target, + Entity targetSolution, EntityUid user) + { + if (!SolutionContainer.ResolveSolution(injector.Owner, injector.Comp.SolutionName, ref injector.Comp.Solution, + out var solution) || solution.AvailableVolume == 0) + { + return false; + } + + var applicableTargetSolution = targetSolution.Comp.Solution; + // If a whitelist exists, remove all non-whitelisted reagents from the target solution temporarily + var temporarilyRemovedSolution = new Solution(); + if (injector.Comp.ReagentWhitelist is { } reagentWhitelist) + { + temporarilyRemovedSolution = applicableTargetSolution.SplitSolutionWithout(applicableTargetSolution.Volume, reagentWhitelist.ToArray()); + } + + // Get transfer amount. May be smaller than _transferAmount if not enough room, also make sure there's room in the injector + var realTransferAmount = FixedPoint2.Min(injector.Comp.CurrentTransferAmount, applicableTargetSolution.Volume, + solution.AvailableVolume); + + if (realTransferAmount <= 0) + { + LocId msg = target.Owner == user ? "injector-component-target-is-empty-message-self" : "injector-component-target-is-empty-message"; + _popup.PopupClient( + Loc.GetString(msg, + ("target", Identity.Entity(target, EntityManager))), + injector.Owner, user); + return false; + } + + // We have some snowflaked behavior for streams. + if (target.Comp != null) + { + DrawFromBlood(injector, (target.Owner, target.Comp), injector.Comp.Solution.Value, realTransferAmount, user); + return true; + } + + // Move units from attackSolution to targetSolution + var removedSolution = SolutionContainer.Draw(target.Owner, targetSolution, realTransferAmount); + + // Add back non-whitelisted reagents to the target solution + SolutionContainer.TryAddSolution(targetSolution, temporarilyRemovedSolution); + + if (!SolutionContainer.TryAddSolution(injector.Comp.Solution.Value, removedSolution)) + { + return false; + } + + LocId msgSuccess = target.Owner == user ? "injector-component-draw-success-message-self" : "injector-component-draw-success-message"; + _popup.PopupClient( + Loc.GetString(msgSuccess, + ("amount", removedSolution.Volume), + ("target", Identity.Entity(target, EntityManager))), + injector.Owner, user); + + AfterDraw(injector, target); + return true; + } + + private void DrawFromBlood(Entity injector, Entity target, + Entity injectorSolution, FixedPoint2 transferAmount, EntityUid user) + { + var drawAmount = (float)transferAmount; + + if (SolutionContainer.ResolveSolution(target.Owner, target.Comp.ChemicalSolutionName, + ref target.Comp.ChemicalSolution)) + { + var chemTemp = SolutionContainer.SplitSolution(target.Comp.ChemicalSolution.Value, drawAmount * 0.15f); + SolutionContainer.TryAddSolution(injectorSolution, chemTemp); + drawAmount -= (float)chemTemp.Volume; + } + + if (SolutionContainer.ResolveSolution(target.Owner, target.Comp.BloodSolutionName, + ref target.Comp.BloodSolution)) + { + var bloodTemp = SolutionContainer.SplitSolution(target.Comp.BloodSolution.Value, drawAmount); + SolutionContainer.TryAddSolution(injectorSolution, bloodTemp); + } + + LocId msg = target.Owner == user ? "injector-component-draw-success-message-self" : "injector-component-draw-success-message"; + _popup.PopupClient( + Loc.GetString(msg, + ("amount", transferAmount), + ("target", Identity.Entity(target, EntityManager))), + injector.Owner, user); + + AfterDraw(injector, target); + } + + private void AfterInject(Entity injector, EntityUid target) + { + // Automatically set syringe to draw after completely draining it. + if (SolutionContainer.ResolveSolution(injector.Owner, injector.Comp.SolutionName, ref injector.Comp.Solution, + out var solution) && solution.Volume == 0) + { + SetMode(injector, InjectorToggleMode.Draw); + } + + // Leave some DNA from the injectee on it + _forensics.TransferDna(injector, target); + } + + private void AfterDraw(Entity injector, EntityUid target) + { + // Automatically set syringe to inject after completely filling it. + if (SolutionContainer.ResolveSolution(injector.Owner, injector.Comp.SolutionName, ref injector.Comp.Solution, + out var solution) && solution.AvailableVolume == 0) + { + SetMode(injector, InjectorToggleMode.Inject); + } + + // Leave some DNA from the drawee on it + _forensics.TransferDna(injector, target); + } + + /// + /// Toggle the injector between draw/inject state if applicable. + /// + public void Toggle(Entity injector, EntityUid user) { if (injector.Comp.InjectOnly) return; - if (!SolutionContainers.TryGetSolution(injector.Owner, injector.Comp.SolutionName, out var solEnt, out var solution)) + if (!SolutionContainer.ResolveSolution(injector.Owner, injector.Comp.SolutionName, ref injector.Comp.Solution, out var solution)) return; string msg; @@ -146,9 +532,12 @@ public abstract class SharedInjectorSystem : EntitySystem throw new ArgumentOutOfRangeException(); } - Popup.PopupClient(Loc.GetString(msg), injector, user); + _popup.PopupClient(Loc.GetString(msg), injector, user); } + /// + /// Set the mode of the injector to draw or inject. + /// public void SetMode(Entity injector, InjectorToggleMode mode) { injector.Comp.ToggleState = mode; diff --git a/Content.Shared/Chemistry/Reagent/ReagentId.cs b/Content.Shared/Chemistry/Reagent/ReagentId.cs index 798dd28db4..88c0abff2a 100644 --- a/Content.Shared/Chemistry/Reagent/ReagentId.cs +++ b/Content.Shared/Chemistry/Reagent/ReagentId.cs @@ -75,7 +75,21 @@ public partial struct ReagentId : IEquatable public override int GetHashCode() { - return HashCode.Combine(Prototype, Data); + // We need to make sure we take the hash code of Data by value in order + // for hashed key lookups to work properly + var hash = 17; + unchecked + { + if (Data?.Count != 0) + { + foreach (var data in Data ?? []) + { + hash = hash * 23 + data.GetHashCode(); + } + } + } + + return HashCode.Combine(Prototype, hash); } public string ToString(FixedPoint2 quantity) diff --git a/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs b/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs index 1a3d17c340..4224fa4bc7 100644 --- a/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs +++ b/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs @@ -63,6 +63,12 @@ namespace Content.Shared.Chemistry.Reagent [DataField] public bool Recognizable; + /// + /// Whether this reagent stands out (blood, slime). + /// + [DataField] + public bool Standsout; + [DataField] public ProtoId? Flavor; @@ -184,14 +190,17 @@ namespace Content.Shared.Chemistry.Reagent return removed; } - public void ReactionPlant(EntityUid? plantHolder, ReagentQuantity amount, Solution solution) + public void ReactionPlant(EntityUid? plantHolder, + ReagentQuantity amount, + Solution solution, + EntityManager entityManager, + IRobustRandom random, + ISharedAdminLogManager logger) { if (plantHolder == null) return; - var entMan = IoCManager.Resolve(); - var random = IoCManager.Resolve(); - var args = new EntityEffectReagentArgs(plantHolder.Value, entMan, null, solution, amount.Quantity, this, null, 1f); + var args = new EntityEffectReagentArgs(plantHolder.Value, entityManager, null, solution, amount.Quantity, this, null, 1f); foreach (var plantMetabolizable in PlantMetabolisms) { if (!plantMetabolizable.ShouldApply(args, random)) @@ -200,8 +209,10 @@ namespace Content.Shared.Chemistry.Reagent if (plantMetabolizable.ShouldLog) { var entity = args.TargetEntity; - entMan.System().Add(LogType.ReagentEffect, plantMetabolizable.LogImpact, - $"Plant metabolism effect {plantMetabolizable.GetType().Name:effect} of reagent {ID:reagent} applied on entity {entMan.ToPrettyString(entity):entity} at {entMan.GetComponent(entity).Coordinates:coordinates}"); + logger.Add( + LogType.ReagentEffect, + plantMetabolizable.LogImpact, + $"Plant metabolism effect {plantMetabolizable.GetType().Name:effect} of reagent {ID} applied on entity {entity}"); } plantMetabolizable.Effect(args); diff --git a/Content.Shared/Chemistry/Reagent/ReagentQuantity.cs b/Content.Shared/Chemistry/Reagent/ReagentQuantity.cs index 4cc87f5bd7..cc5b52fbe2 100644 --- a/Content.Shared/Chemistry/Reagent/ReagentQuantity.cs +++ b/Content.Shared/Chemistry/Reagent/ReagentQuantity.cs @@ -52,7 +52,7 @@ public partial struct ReagentQuantity : IEquatable public bool Equals(ReagentQuantity other) { - return Quantity != other.Quantity && Reagent.Equals(other.Reagent); + return Quantity == other.Quantity && Reagent.Equals(other.Reagent); } public override bool Equals(object? obj) diff --git a/Content.Shared/Clothing/ClothingSpeedModifierComponent.cs b/Content.Shared/Clothing/ClothingSpeedModifierComponent.cs index 866ce38a57..8dc496ec25 100644 --- a/Content.Shared/Clothing/ClothingSpeedModifierComponent.cs +++ b/Content.Shared/Clothing/ClothingSpeedModifierComponent.cs @@ -15,6 +15,13 @@ public sealed partial class ClothingSpeedModifierComponent : Component [DataField] public float SprintModifier = 1.0f; + + /// + /// An optional required standing state. + /// Set to true if you need to be standing, false if you need to not be standing, null if you don't care. + /// + [DataField] + public bool? Standing; } [Serializable, NetSerializable] diff --git a/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs b/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs index 56758654ed..29f063c7fa 100644 --- a/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs +++ b/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs @@ -3,6 +3,7 @@ using Content.Shared.Inventory; using Content.Shared.Item.ItemToggle; using Content.Shared.Item.ItemToggle.Components; using Content.Shared.Movement.Systems; +using Content.Shared.Standing; using Content.Shared.Verbs; using Robust.Shared.Containers; using Robust.Shared.GameStates; @@ -12,10 +13,11 @@ namespace Content.Shared.Clothing; public sealed class ClothingSpeedModifierSystem : EntitySystem { - [Dependency] private readonly SharedContainerSystem _container = default!; [Dependency] private readonly ExamineSystemShared _examine = default!; - [Dependency] private readonly MovementSpeedModifierSystem _movementSpeed = default!; [Dependency] private readonly ItemToggleSystem _toggle = default!; + [Dependency] private readonly MovementSpeedModifierSystem _movementSpeed = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly StandingStateSystem _standing = default!; public override void Initialize() { @@ -54,8 +56,13 @@ public sealed class ClothingSpeedModifierSystem : EntitySystem private void OnRefreshMoveSpeed(EntityUid uid, ClothingSpeedModifierComponent component, InventoryRelayedEvent args) { - if (_toggle.IsActivated(uid)) - args.Args.ModifySpeed(component.WalkModifier, component.SprintModifier); + if (!_toggle.IsActivated(uid)) + return; + + if (component.Standing != null && !_standing.IsMatchingState(args.Owner, component.Standing.Value)) + return; + + args.Args.ModifySpeed(component.WalkModifier, component.SprintModifier); } private void OnClothingVerbExamine(EntityUid uid, ClothingSpeedModifierComponent component, GetVerbsEvent args) diff --git a/Content.Shared/Clothing/Components/ClothingComponent.cs b/Content.Shared/Clothing/Components/ClothingComponent.cs index ff1d422189..2d576637a6 100644 --- a/Content.Shared/Clothing/Components/ClothingComponent.cs +++ b/Content.Shared/Clothing/Components/ClothingComponent.cs @@ -1,4 +1,5 @@ using System.Diagnostics.CodeAnalysis; +using System.Numerics; using Content.Shared.Clothing.EntitySystems; using Content.Shared.DoAfter; using Content.Shared.Inventory; @@ -92,6 +93,13 @@ public sealed partial class ClothingComponent : Component /// [DataField] public TimeSpan StripDelay = TimeSpan.Zero; + + /// + /// A scale applied to all layers. + /// + /// + [DataField] + public Vector2 Scale = Vector2.One; } public enum ClothingMask : byte diff --git a/Content.Shared/Clothing/EntitySystems/AntiGravityClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/AntiGravityClothingSystem.cs index c5b2ee3dfc..554db51a23 100644 --- a/Content.Shared/Clothing/EntitySystems/AntiGravityClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/AntiGravityClothingSystem.cs @@ -1,23 +1,64 @@ using Content.Shared.Clothing.Components; using Content.Shared.Gravity; using Content.Shared.Inventory; +using Content.Shared.Standing; namespace Content.Shared.Clothing.EntitySystems; +/// +/// We check standing state on all clothing because we don't want you to have anti-gravity unless you're standing. +/// This is for balance reasons as it prevents you from wearing anti-grav clothing to cheese being stun cuffed, as +/// well as other worse things. +/// public sealed class AntiGravityClothingSystem : EntitySystem { + [Dependency] private readonly StandingStateSystem _standing = default!; + [Dependency] private readonly SharedGravitySystem _gravity = default!; + /// public override void Initialize() { SubscribeLocalEvent>(OnIsWeightless); + SubscribeLocalEvent(OnEquipped); + SubscribeLocalEvent(OnUnequipped); + SubscribeLocalEvent>(OnDowned); + SubscribeLocalEvent>(OnStood); } private void OnIsWeightless(Entity ent, ref InventoryRelayedEvent args) { - if (args.Args.Handled) + if (args.Args.Handled || _standing.IsDown(args.Owner)) return; args.Args.Handled = true; args.Args.IsWeightless = true; } + + private void OnEquipped(Entity entity, ref ClothingGotEquippedEvent args) + { + // This clothing item does nothing if we're not standing + if (_standing.IsDown(args.Wearer)) + return; + + _gravity.RefreshWeightless(args.Wearer, true); + } + + private void OnUnequipped(Entity entity, ref ClothingGotUnequippedEvent args) + { + // This clothing item does nothing if we're not standing + if (_standing.IsDown(args.Wearer)) + return; + + _gravity.RefreshWeightless(args.Wearer, false); + } + + private void OnDowned(Entity entity, ref InventoryRelayedEvent args) + { + _gravity.RefreshWeightless(args.Owner, false); + } + + private void OnStood(Entity entity, ref InventoryRelayedEvent args) + { + _gravity.RefreshWeightless(args.Owner, true); + } } diff --git a/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs index 233a71acee..4b38d926f6 100644 --- a/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs @@ -5,6 +5,7 @@ using Content.Shared.Contraband; using Content.Shared.Inventory; using Content.Shared.Inventory.Events; using Content.Shared.Item; +using Content.Shared.Lock; using Content.Shared.Tag; using Content.Shared.Verbs; using Robust.Shared.Prototypes; @@ -23,6 +24,7 @@ public abstract class SharedChameleonClothingSystem : EntitySystem [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly TagSystem _tag = default!; [Dependency] protected readonly IGameTiming _timing = default!; + [Dependency] private readonly LockSystem _lock = default!; private static readonly SlotFlags[] IgnoredSlots = { @@ -122,7 +124,7 @@ public abstract class SharedChameleonClothingSystem : EntitySystem private void OnVerb(Entity ent, ref GetVerbsEvent args) { - if (!args.CanAccess || !args.CanInteract || ent.Comp.User != args.User) + if (!args.CanAccess || !args.CanInteract || _lock.IsLocked(ent.Owner)) return; // Can't pass args from a ref event inside of lambdas diff --git a/Content.Shared/Clothing/EntitySystems/ToggleableClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/ToggleableClothingSystem.cs index 334f88af6d..a2b7d01641 100644 --- a/Content.Shared/Clothing/EntitySystems/ToggleableClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/ToggleableClothingSystem.cs @@ -213,7 +213,7 @@ public sealed class ToggleableClothingSystem : EntitySystem if (!TryComp(component.AttachedUid, out ToggleableClothingComponent? toggleComp)) return; - if (toggleComp.LifeStage > ComponentLifeStage.Running) + if (LifeStage(component.AttachedUid) > EntityLifeStage.MapInitialized) return; // As unequipped gets called in the middle of container removal, we cannot call a container-insert without causing issues. diff --git a/Content.Shared/Clothing/LoadoutSystem.cs b/Content.Shared/Clothing/LoadoutSystem.cs index 93b0abfd82..08b4f5f763 100644 --- a/Content.Shared/Clothing/LoadoutSystem.cs +++ b/Content.Shared/Clothing/LoadoutSystem.cs @@ -150,7 +150,7 @@ public sealed class LoadoutSystem : EntitySystem { // First, randomly pick a startingGear profile from those specified, and equip it. if (startingGear != null && startingGear.Count > 0) - _station.EquipStartingGear(uid, _random.Pick(startingGear)); + _station.EquipStartingGear(uid, _random.Pick(startingGear), false); if (loadoutGroups == null) { diff --git a/Content.Shared/Clothing/MagbootsComponent.cs b/Content.Shared/Clothing/MagbootsComponent.cs index 4bef74fd33..c0a8b40866 100644 --- a/Content.Shared/Clothing/MagbootsComponent.cs +++ b/Content.Shared/Clothing/MagbootsComponent.cs @@ -1,4 +1,5 @@ using Content.Shared.Alert; +using Content.Shared.Inventory; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; @@ -16,10 +17,4 @@ public sealed partial class MagbootsComponent : Component /// [DataField] public bool RequiresGrid = true; - - /// - /// Slot the clothing has to be worn in to work. - /// - [DataField] - public string Slot = "shoes"; } diff --git a/Content.Shared/Clothing/MagbootsSystem.cs b/Content.Shared/Clothing/MagbootsSystem.cs index fd5a2cc336..d00211fa65 100644 --- a/Content.Shared/Clothing/MagbootsSystem.cs +++ b/Content.Shared/Clothing/MagbootsSystem.cs @@ -32,14 +32,8 @@ public sealed class SharedMagbootsSystem : EntitySystem private void OnToggled(Entity ent, ref ItemToggledEvent args) { - var (uid, comp) = ent; - // only stick to the floor if being worn in the correct slot - if (_container.TryGetContainingContainer((uid, null, null), out var container) && - _inventory.TryGetSlotEntity(container.Owner, comp.Slot, out var worn) - && uid == worn) - { + if (_container.TryGetContainingContainer((ent.Owner, null, null), out var container)) UpdateMagbootEffects(container.Owner, ent, args.Activated); - } } private void OnGotUnequipped(Entity ent, ref ClothingGotUnequippedEvent args) @@ -58,6 +52,8 @@ public sealed class SharedMagbootsSystem : EntitySystem if (TryComp(user, out var moved)) moved.Enabled = !state; + _gravity.RefreshWeightless(user); + if (state) _alerts.ShowAlert(user, ent.Comp.MagbootsAlert); else diff --git a/Content.Shared/Construction/Components/AnchorableComponent.cs b/Content.Shared/Construction/Components/AnchorableComponent.cs index 064f839efa..e17a49937a 100644 --- a/Content.Shared/Construction/Components/AnchorableComponent.cs +++ b/Content.Shared/Construction/Components/AnchorableComponent.cs @@ -2,7 +2,6 @@ using Content.Shared.Construction.EntitySystems; using Content.Shared.Tools; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.Construction.Components { diff --git a/Content.Shared/Construction/Components/ElectronicsBoardComponent.cs b/Content.Shared/Construction/Components/ElectronicsBoardComponent.cs new file mode 100644 index 0000000000..734edfba23 --- /dev/null +++ b/Content.Shared/Construction/Components/ElectronicsBoardComponent.cs @@ -0,0 +1,16 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.Construction.Components; + +/// +/// Used in construction graphs for building wall-mounted electronic devices. +/// +[RegisterComponent] +public sealed partial class ElectronicsBoardComponent : Component +{ + /// + /// The device that is produced when the construction is completed. + /// + [DataField(required: true)] + public EntProtoId Prototype; +} diff --git a/Content.Shared/Construction/Components/MachineBoardComponent.cs b/Content.Shared/Construction/Components/MachineBoardComponent.cs index 0469b59fd1..292b17dcf1 100644 --- a/Content.Shared/Construction/Components/MachineBoardComponent.cs +++ b/Content.Shared/Construction/Components/MachineBoardComponent.cs @@ -33,6 +33,12 @@ public sealed partial class MachineBoardComponent : Component public EntProtoId Prototype; } +/// +/// Marker component for any item that's machine board-like without necessarily being a MachineBoardComponent +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class CircuitboardComponent : Component; + [DataDefinition, Serializable] public partial struct GenericPartInfo { diff --git a/Content.Shared/Construction/EntitySystems/AnchorableSystem.cs b/Content.Shared/Construction/EntitySystems/AnchorableSystem.cs index e690b93826..d53a100acc 100644 --- a/Content.Shared/Construction/EntitySystems/AnchorableSystem.cs +++ b/Content.Shared/Construction/EntitySystems/AnchorableSystem.cs @@ -102,6 +102,13 @@ public sealed partial class AnchorableSystem : EntitySystem private void OnAnchoredExamine(EntityUid uid, AnchorableComponent component, ExaminedEvent args) { var isAnchored = Comp(uid).Anchored; + + if (isAnchored && (component.Flags & AnchorableFlags.Unanchorable) == 0x0) + return; + + if (!isAnchored && (component.Flags & AnchorableFlags.Anchorable) == 0x0) + return; + var messageId = isAnchored ? "examinable-anchored" : "examinable-unanchored"; args.PushMarkup(Loc.GetString(messageId, ("target", uid))); } diff --git a/Content.Shared/Construction/NodeEntities/BoardNodeEntity.cs b/Content.Shared/Construction/NodeEntities/BoardNodeEntity.cs index c1540c4a64..be55c6f733 100644 --- a/Content.Shared/Construction/NodeEntities/BoardNodeEntity.cs +++ b/Content.Shared/Construction/NodeEntities/BoardNodeEntity.cs @@ -12,7 +12,8 @@ namespace Content.Shared.Construction.NodeEntities; [DataDefinition] public sealed partial class BoardNodeEntity : IGraphNodeEntity { - [DataField("container")] public string Container { get; private set; } = string.Empty; + [DataField] + public string Container { get; private set; } = string.Empty; public string? GetId(EntityUid? uid, EntityUid? userUid, GraphNodeEntityArgs args) { @@ -27,13 +28,16 @@ public sealed partial class BoardNodeEntity : IGraphNodeEntity var board = container.ContainedEntities[0]; - // There should not be a case where both of these components exist on the same entity... + // There should not be a case where more than one of these components exist on the same entity if (args.EntityManager.TryGetComponent(board, out MachineBoardComponent? machine)) return machine.Prototype; if (args.EntityManager.TryGetComponent(board, out ComputerBoardComponent? computer)) return computer.Prototype; + if (args.EntityManager.TryGetComponent(board, out ElectronicsBoardComponent? electronics)) + return electronics.Prototype; + return null; } } diff --git a/Content.Shared/Damage/Systems/SharedStaminaSystem.cs b/Content.Shared/Damage/Systems/SharedStaminaSystem.cs index b2d22391eb..5a168f04a0 100644 --- a/Content.Shared/Damage/Systems/SharedStaminaSystem.cs +++ b/Content.Shared/Damage/Systems/SharedStaminaSystem.cs @@ -94,7 +94,7 @@ public abstract partial class SharedStaminaSystem : EntitySystem { RemCompDeferred(entity); } - _alerts.ClearAlert(entity, entity.Comp.StaminaAlert); + _alerts.ClearAlert(entity.Owner, entity.Comp.StaminaAlert); } private void OnStartup(Entity entity, ref ComponentStartup args) diff --git a/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs b/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs index 31ff034809..c70c7ab61e 100644 --- a/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs +++ b/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs @@ -164,12 +164,11 @@ public abstract partial class SharedDoAfterSystem : EntitySystem if (args.Target is { } target && !xformQuery.TryGetComponent(target, out targetXform)) return true; - TransformComponent? usedXform = null; - if (args.Used is { } @using && !xformQuery.TryGetComponent(@using, out usedXform)) + if (args.Used is { } @using && !xformQuery.HasComp(@using)) return true; // TODO: Re-use existing xform query for these calculations. - if (args.BreakOnMove && !(!args.BreakOnWeightlessMove && _gravity.IsWeightless(args.User, xform: userXform))) + if (args.BreakOnMove && !(!args.BreakOnWeightlessMove && _gravity.IsWeightless(args.User))) { // Whether the user has moved too much from their original position. if (!_transform.InRange(userXform.Coordinates, doAfter.UserPosition, args.MovementThreshold)) diff --git a/Content.Shared/Drunk/DrunkComponent.cs b/Content.Shared/Drunk/DrunkComponent.cs deleted file mode 100644 index 61c195d27e..0000000000 --- a/Content.Shared/Drunk/DrunkComponent.cs +++ /dev/null @@ -1,6 +0,0 @@ -using Robust.Shared.GameStates; - -namespace Content.Shared.Drunk; - -[RegisterComponent, NetworkedComponent] -public sealed partial class DrunkComponent : Component { } diff --git a/Content.Shared/Drunk/DrunkStatusEffectComponent.cs b/Content.Shared/Drunk/DrunkStatusEffectComponent.cs new file mode 100644 index 0000000000..69ad7c3ad9 --- /dev/null +++ b/Content.Shared/Drunk/DrunkStatusEffectComponent.cs @@ -0,0 +1,11 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Drunk; + +/// +/// This is used by a status effect entity to apply the to an entity. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class DrunkStatusEffectComponent : Component +{ +} diff --git a/Content.Shared/Drunk/DrunkSystem.cs b/Content.Shared/Drunk/DrunkSystem.cs deleted file mode 100644 index 236ce2dcd3..0000000000 --- a/Content.Shared/Drunk/DrunkSystem.cs +++ /dev/null @@ -1,48 +0,0 @@ -using Content.Shared.Speech.EntitySystems; -using Content.Shared.StatusEffect; -using Content.Shared.Traits.Assorted; -using Robust.Shared.Prototypes; - -namespace Content.Shared.Drunk; - -public abstract class SharedDrunkSystem : EntitySystem -{ - public static readonly ProtoId DrunkKey = "Drunk"; - - [Dependency] private readonly StatusEffectsSystem _statusEffectsSystem = default!; - [Dependency] private readonly SharedSlurredSystem _slurredSystem = default!; - - public void TryApplyDrunkenness(EntityUid uid, float boozePower, bool applySlur = true, - StatusEffectsComponent? status = null) - { - if (!Resolve(uid, ref status, false)) - return; - - if (TryComp(uid, out var trait)) - boozePower *= trait.BoozeStrengthMultiplier; - - if (applySlur) - { - _slurredSystem.DoSlur(uid, TimeSpan.FromSeconds(boozePower), status); - } - - if (!_statusEffectsSystem.HasStatusEffect(uid, DrunkKey, status)) - { - _statusEffectsSystem.TryAddStatusEffect(uid, DrunkKey, TimeSpan.FromSeconds(boozePower), true, status); - } - else - { - _statusEffectsSystem.TryAddTime(uid, DrunkKey, TimeSpan.FromSeconds(boozePower), status); - } - } - - public void TryRemoveDrunkenness(EntityUid uid) - { - _statusEffectsSystem.TryRemoveStatusEffect(uid, DrunkKey); - } - public void TryRemoveDrunkenessTime(EntityUid uid, double timeRemoved) - { - _statusEffectsSystem.TryRemoveTime(uid, DrunkKey, TimeSpan.FromSeconds(timeRemoved)); - } - -} diff --git a/Content.Shared/Drunk/SharedDrunkSystem.cs b/Content.Shared/Drunk/SharedDrunkSystem.cs new file mode 100644 index 0000000000..96aff82fa0 --- /dev/null +++ b/Content.Shared/Drunk/SharedDrunkSystem.cs @@ -0,0 +1,50 @@ +using Content.Shared.Speech.EntitySystems; +using Content.Shared.StatusEffectNew; +using Content.Shared.Traits.Assorted; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Drunk; + +public abstract class SharedDrunkSystem : EntitySystem +{ + public static EntProtoId Drunk = "StatusEffectDrunk"; + public static EntProtoId Woozy = "StatusEffectWoozy"; + + /* I have no clue why this magic number was chosen, I copied it from slur system and needed it for the overlay + If you have a more intelligent magic number be my guest to completely explode this value. + There were no comments as to why this value was chosen three years ago. */ + public static float MagicNumber = 1100f; + + [Dependency] protected readonly StatusEffectsSystem Status = default!; + + public override void Initialize() + { + SubscribeLocalEvent(OnLightweightDrinking); + } + + public void TryApplyDrunkenness(EntityUid uid, TimeSpan boozePower) + { + var ev = new DrunkEvent(boozePower); + RaiseLocalEvent(uid, ref ev); + + Status.TryAddStatusEffectDuration(uid, Drunk, ev.Duration); + } + + public void TryRemoveDrunkenness(EntityUid uid) + { + Status.TryRemoveStatusEffect(uid, Drunk); + } + + public void TryRemoveDrunkennessTime(EntityUid uid, TimeSpan boozePower) + { + Status.TryAddTime(uid, Drunk, - boozePower); + } + + private void OnLightweightDrinking(Entity entity, ref DrunkEvent args) + { + args.Duration *= entity.Comp.BoozeStrengthMultiplier; + } + + [ByRefEvent] + public record struct DrunkEvent(TimeSpan Duration); +} diff --git a/Content.Shared/Engineering/Components/InflatableSafeDisassemblyComponent.cs b/Content.Shared/Engineering/Components/InflatableSafeDisassemblyComponent.cs new file mode 100644 index 0000000000..47591b6eb9 --- /dev/null +++ b/Content.Shared/Engineering/Components/InflatableSafeDisassemblyComponent.cs @@ -0,0 +1,14 @@ +using Content.Shared.Engineering.Systems; +using Content.Shared.Weapons.Melee.Balloon; + +namespace Content.Shared.Engineering.Components; + +/// +/// Implements logic to allow inflatable objects to be safely deflated by items. +/// +/// +/// The owning entity must have to implement the logic. +/// +/// +[RegisterComponent] +public sealed partial class InflatableSafeDisassemblyComponent : Component; diff --git a/Content.Shared/Engineering/Systems/DisassembleOnAltVerbSystem.cs b/Content.Shared/Engineering/Systems/DisassembleOnAltVerbSystem.cs index 150688d3d4..0c2e5398fc 100644 --- a/Content.Shared/Engineering/Systems/DisassembleOnAltVerbSystem.cs +++ b/Content.Shared/Engineering/Systems/DisassembleOnAltVerbSystem.cs @@ -19,14 +19,12 @@ public sealed partial class DisassembleOnAltVerbSystem : EntitySystem SubscribeLocalEvent>(AddDisassembleVerb); SubscribeLocalEvent(OnDisassembleDoAfter); } - private void AddDisassembleVerb(Entity entity, ref GetVerbsEvent args) - { - if (!args.CanInteract || !args.CanAccess || args.Hands == null) - return; + public void StartDisassembly(Entity entity, EntityUid user) + { // Doafter setup var doAfterArgs = new DoAfterArgs(EntityManager, - args.User, + user, entity.Comp.DisassembleTime, new DisassembleDoAfterEvent(), entity, @@ -35,12 +33,22 @@ public sealed partial class DisassembleOnAltVerbSystem : EntitySystem BreakOnMove = true, }; + _doAfter.TryStartDoAfter(doAfterArgs); + } + + private void AddDisassembleVerb(Entity entity, ref GetVerbsEvent args) + { + if (!args.CanInteract || !args.CanAccess || args.Hands == null) + return; + + var user = args.User; + // Actual verb stuff AlternativeVerb verb = new() { Act = () => { - _doAfter.TryStartDoAfter(doAfterArgs); + StartDisassembly(entity, user); }, Text = Loc.GetString("disassemble-system-verb-disassemble"), Priority = 2 diff --git a/Content.Shared/Engineering/Systems/InflatableSafeDisassemblySystem.cs b/Content.Shared/Engineering/Systems/InflatableSafeDisassemblySystem.cs new file mode 100644 index 0000000000..7852036330 --- /dev/null +++ b/Content.Shared/Engineering/Systems/InflatableSafeDisassemblySystem.cs @@ -0,0 +1,39 @@ +using Content.Shared.Engineering.Components; +using Content.Shared.Interaction; +using Content.Shared.Popups; +using Content.Shared.Weapons.Melee.Balloon; + +namespace Content.Shared.Engineering.Systems; + +/// +/// Implements +/// +public sealed class InflatableSafeDisassemblySystem : EntitySystem +{ + [Dependency] private readonly DisassembleOnAltVerbSystem _disassembleOnAltVerbSystem = null!; + [Dependency] private readonly SharedPopupSystem _popupSystem = null!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(InteractHandler); + } + + private void InteractHandler(Entity ent, ref InteractUsingEvent args) + { + if (args.Handled) + return; + + if (!HasComp(args.Used)) + return; + + _popupSystem.PopupPredicted( + Loc.GetString("inflatable-safe-disassembly", ("item", args.Used), ("target", ent.Owner)), + ent, + args.User); + + _disassembleOnAltVerbSystem.StartDisassembly((ent, Comp(ent)), args.User); + args.Handled = true; + } +} diff --git a/Content.Shared/EntityEffects/EffectConditions/JobCondition.cs b/Content.Shared/EntityEffects/EffectConditions/JobCondition.cs index 7fec087d6b..96f3be64c6 100644 --- a/Content.Shared/EntityEffects/EffectConditions/JobCondition.cs +++ b/Content.Shared/EntityEffects/EffectConditions/JobCondition.cs @@ -3,7 +3,7 @@ using Content.Shared.Localizations; using Content.Shared.Mind; using Content.Shared.Mind.Components; using Content.Shared.Roles; -using Content.Shared.Roles.Jobs; +using Content.Shared.Roles.Components; using Robust.Shared.Prototypes; namespace Content.Shared.EntityEffects.EffectConditions; @@ -16,13 +16,13 @@ public sealed partial class JobCondition : EntityEffectCondition { args.EntityManager.TryGetComponent(args.TargetEntity, out var mindContainer); - if ( mindContainer is null - || !args.EntityManager.TryGetComponent(mindContainer.Mind, out var mind)) + if (mindContainer is null + || !args.EntityManager.TryGetComponent(mindContainer.Mind, out var mind)) return false; - foreach (var roleId in mind.MindRoles) + foreach (var roleId in mind.MindRoleContainer.ContainedEntities) { - if(!args.EntityManager.HasComponent(roleId)) + if (!args.EntityManager.HasComponent(roleId)) continue; if (!args.EntityManager.TryGetComponent(roleId, out var mindRole)) diff --git a/Content.Shared/EntityEffects/Effects/Drunk.cs b/Content.Shared/EntityEffects/Effects/Drunk.cs index 5f7f29c342..aa15df8f3d 100644 --- a/Content.Shared/EntityEffects/Effects/Drunk.cs +++ b/Content.Shared/EntityEffects/Effects/Drunk.cs @@ -9,13 +9,7 @@ public sealed partial class Drunk : EntityEffect /// BoozePower is how long each metabolism cycle will make the drunk effect last for. /// [DataField] - public float BoozePower = 3f; - - /// - /// Whether speech should be slurred. - /// - [DataField] - public bool SlurSpeech = true; + public TimeSpan BoozePower = TimeSpan.FromSeconds(3f); protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) => Loc.GetString("reagent-effect-guidebook-drunk", ("chance", Probability)); @@ -24,11 +18,10 @@ public sealed partial class Drunk : EntityEffect { var boozePower = BoozePower; - if (args is EntityEffectReagentArgs reagentArgs) { + if (args is EntityEffectReagentArgs reagentArgs) boozePower *= reagentArgs.Scale.Float(); - } var drunkSys = args.EntityManager.EntitySysManager.GetEntitySystem(); - drunkSys.TryApplyDrunkenness(args.TargetEntity, boozePower, SlurSpeech); + drunkSys.TryApplyDrunkenness(args.TargetEntity, boozePower); } } diff --git a/Content.Shared/EntityTable/Conditions/HasBudgetCondition.cs b/Content.Shared/EntityTable/Conditions/HasBudgetCondition.cs new file mode 100644 index 0000000000..f2489d04aa --- /dev/null +++ b/Content.Shared/EntityTable/Conditions/HasBudgetCondition.cs @@ -0,0 +1,51 @@ +using Content.Shared.EntityTable.EntitySelectors; +using Content.Shared.GameTicking.Rules; +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityTable.Conditions; + +/// +/// Condition that only succeeds if a table supplies a sufficient "cost" to a given +/// +public sealed partial class HasBudgetCondition : EntityTableCondition +{ + public const string BudgetContextKey = "Budget"; + + /// + /// Used for determining the cost for the budget. + /// If null, attempts to fetch the cost from the attached selector. + /// + [DataField] + public int? CostOverride; + + protected override bool EvaluateImplementation(EntityTableSelector root, + IEntityManager entMan, + IPrototypeManager proto, + EntityTableContext ctx) + { + if (!ctx.TryGetData(BudgetContextKey, out var budget)) + return false; + + int cost; + if (CostOverride != null) + { + cost = CostOverride.Value; + } + else + { + if (root is not EntSelector entSelector) + return false; + + if (!proto.Index(entSelector.Id).TryGetComponent(out DynamicRuleCostComponent? costComponent, entMan.ComponentFactory)) + { + var log = Logger.GetSawmill("HasBudgetCondition"); + log.Error($"Rule {entSelector.Id} does not have a DynamicRuleCostComponent."); + return false; + } + + cost = costComponent.Cost; + } + + return budget >= cost; + } +} diff --git a/Content.Shared/EntityTable/Conditions/MaxRuleOccurenceCondition.cs b/Content.Shared/EntityTable/Conditions/MaxRuleOccurenceCondition.cs new file mode 100644 index 0000000000..1e55feb338 --- /dev/null +++ b/Content.Shared/EntityTable/Conditions/MaxRuleOccurenceCondition.cs @@ -0,0 +1,54 @@ +using System.Linq; +using Content.Shared.EntityTable.EntitySelectors; +using Content.Shared.GameTicking; +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityTable.Conditions; + +/// +/// Condition that succeeds only when the specified gamerule has been run under a certain amount of times +/// +/// +/// This is meant to be attached directly to EntSelector. If it is not, then you'll need to specify what rule +/// is being used inside RuleOverride. +/// +public sealed partial class MaxRuleOccurenceCondition : EntityTableCondition +{ + /// + /// The maximum amount of times this rule can have already be run. + /// + [DataField] + public int Max = 1; + + /// + /// The rule that is being checked for occurrences. + /// If null, it will use the value on the attached selector. + /// + [DataField] + public EntProtoId? RuleOverride; + + protected override bool EvaluateImplementation(EntityTableSelector root, + IEntityManager entMan, + IPrototypeManager proto, + EntityTableContext ctx) + { + string rule; + if (RuleOverride is { } ruleOverride) + { + rule = ruleOverride; + } + else + { + rule = root is EntSelector entSelector + ? entSelector.Id + : string.Empty; + } + + if (rule == string.Empty) + return false; + + var gameTicker = entMan.System(); + + return gameTicker.AllPreviousGameRules.Count(p => p.Item2 == rule) < Max; + } +} diff --git a/Content.Shared/EntityTable/Conditions/ReoccurrenceDelayCondition.cs b/Content.Shared/EntityTable/Conditions/ReoccurrenceDelayCondition.cs new file mode 100644 index 0000000000..0329592a4a --- /dev/null +++ b/Content.Shared/EntityTable/Conditions/ReoccurrenceDelayCondition.cs @@ -0,0 +1,49 @@ +using System.ComponentModel.DataAnnotations; +using System.Linq; +using Content.Shared.EntityTable.EntitySelectors; +using Content.Shared.GameTicking; +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityTable.Conditions; + +public sealed partial class ReoccurrenceDelayCondition : EntityTableCondition +{ + /// + /// The maximum amount of times this rule can have already be run. + /// + [DataField] + public TimeSpan Delay = TimeSpan.Zero; + + /// + /// The rule that is being checked for occurrences. + /// If null, it will use the value on the attached selector. + /// + [DataField] + public EntProtoId? RuleOverride; + + protected override bool EvaluateImplementation(EntityTableSelector root, + IEntityManager entMan, + IPrototypeManager proto, + EntityTableContext ctx) + { + string rule; + if (RuleOverride is { } ruleOverride) + { + rule = ruleOverride; + } + else + { + rule = root is EntSelector entSelector + ? entSelector.Id + : string.Empty; + } + + if (rule == string.Empty) + return false; + + var gameTicker = entMan.System(); + + return gameTicker.AllPreviousGameRules.Any( + p => p.Item2 == rule && p.Item1 + Delay <= gameTicker.RoundDuration()); + } +} diff --git a/Content.Shared/EntityTable/Conditions/RoundDurationCondition.cs b/Content.Shared/EntityTable/Conditions/RoundDurationCondition.cs new file mode 100644 index 0000000000..518faf4bc6 --- /dev/null +++ b/Content.Shared/EntityTable/Conditions/RoundDurationCondition.cs @@ -0,0 +1,34 @@ +using Content.Shared.EntityTable.EntitySelectors; +using Content.Shared.GameTicking; +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityTable.Conditions; + +/// +/// Condition that passes only if the current round time falls between the minimum and maximum time values. +/// +public sealed partial class RoundDurationCondition : EntityTableCondition +{ + /// + /// Minimum time the round must have gone on for this condition to pass. + /// + [DataField] + public TimeSpan Min = TimeSpan.Zero; + + /// + /// Maximum amount of time the round could go on for this condition to pass. + /// + [DataField] + public TimeSpan Max = TimeSpan.MaxValue; + + protected override bool EvaluateImplementation(EntityTableSelector root, + IEntityManager entMan, + IPrototypeManager proto, + EntityTableContext ctx) + { + var gameTicker = entMan.System(); + var duration = gameTicker.RoundDuration(); + + return duration >= Min && duration <= Max; + } +} diff --git a/Content.Shared/EntityTable/EntitySelectors/GroupSelector.cs b/Content.Shared/EntityTable/EntitySelectors/GroupSelector.cs index 25c81a4565..0d2a451bdc 100644 --- a/Content.Shared/EntityTable/EntitySelectors/GroupSelector.cs +++ b/Content.Shared/EntityTable/EntitySelectors/GroupSelector.cs @@ -26,6 +26,9 @@ public sealed partial class GroupSelector : EntityTableSelector children.Add(child, child.Weight); } + if (children.Count == 0) + return Array.Empty(); + var pick = SharedRandomExtensions.Pick(children, rand); return pick.GetSpawns(rand, entMan, proto, ctx); diff --git a/Content.Shared/Flash/SharedFlashSystem.cs b/Content.Shared/Flash/SharedFlashSystem.cs index dd6c9c91c1..7f69e86042 100644 --- a/Content.Shared/Flash/SharedFlashSystem.cs +++ b/Content.Shared/Flash/SharedFlashSystem.cs @@ -21,6 +21,7 @@ using Robust.Shared.Random; using Robust.Shared.Timing; using System.Linq; using Content.Shared.Movement.Systems; +using Content.Shared.Random.Helpers; namespace Content.Shared.Flash; @@ -204,7 +205,8 @@ public abstract class SharedFlashSystem : EntitySystem foreach (var entity in _entSet) { // TODO: Use RandomPredicted https://github.com/space-wizards/RobustToolbox/pull/5849 - var rand = new System.Random((int)_timing.CurTick.Value + GetNetEntity(entity).Id); + var seed = SharedRandomExtensions.HashCodeCombine(new() { (int)_timing.CurTick.Value, GetNetEntity(entity).Id }); + var rand = new System.Random(seed); if (!rand.Prob(probability)) continue; diff --git a/Content.Shared/Fluids/SharedPuddleSystem.Spillable.cs b/Content.Shared/Fluids/SharedPuddleSystem.Spillable.cs index 2ce008da26..7d65dd2424 100644 --- a/Content.Shared/Fluids/SharedPuddleSystem.Spillable.cs +++ b/Content.Shared/Fluids/SharedPuddleSystem.Spillable.cs @@ -60,6 +60,8 @@ public abstract partial class SharedPuddleSystem var puddleSolution = _solutionContainerSystem.SplitSolution(soln.Value, solution.Volume); TrySpillAt(Transform(target).Coordinates, puddleSolution, out _); + // TODO: Make this an event subscription once spilling puddles is predicted. + // Injectors should not be hardcoded here. if (TryComp(entity, out var injectorComp)) { injectorComp.ToggleState = InjectorToggleMode.Draw; diff --git a/Content.Shared/Fluids/SharedPuddleSystem.cs b/Content.Shared/Fluids/SharedPuddleSystem.cs index a2f0764ce0..2d0fffa37b 100644 --- a/Content.Shared/Fluids/SharedPuddleSystem.cs +++ b/Content.Shared/Fluids/SharedPuddleSystem.cs @@ -22,11 +22,7 @@ public abstract partial class SharedPuddleSystem : EntitySystem [Dependency] private readonly SharedSolutionContainerSystem _solutionContainerSystem = default!; [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; - private static readonly ProtoId Blood = "Blood"; - private static readonly ProtoId Slime = "Slime"; - private static readonly ProtoId CopperBlood = "CopperBlood"; - - private static readonly string[] StandoutReagents = [Blood, Slime, CopperBlood]; + private string[] _standoutReagents = []; /// /// The lowest threshold to be considered for puddle sprite states as well as slipperiness of a puddle. @@ -48,9 +44,26 @@ public abstract partial class SharedPuddleSystem : EntitySystem SubscribeLocalEvent(HandlePuddleExamined); SubscribeLocalEvent(OnEntRemoved); + SubscribeLocalEvent(OnPrototypesReloaded); + + CacheStandsout(); InitializeSpillable(); } + private void OnPrototypesReloaded(PrototypesReloadedEventArgs ev) + { + if (ev.WasModified()) + CacheStandsout(); + } + + /// + /// Used to cache standout reagents for future use. + /// + private void CacheStandsout() + { + _standoutReagents = [.. _prototypeManager.EnumeratePrototypes().Where(x => x.Standsout).Select(x => x.ID)]; + } + protected virtual void OnSolutionUpdate(Entity entity, ref SolutionContainerChangedEvent args) { if (args.SolutionId != entity.Comp.SolutionName) @@ -158,10 +171,10 @@ public abstract partial class SharedPuddleSystem : EntitySystem // Kinda EH // Could potentially do alpha per-solution but future problem. - color = solution.GetColorWithout(_prototypeManager, StandoutReagents); + color = solution.GetColorWithout(_prototypeManager, _standoutReagents); color = color.WithAlpha(0.7f); - foreach (var standout in StandoutReagents) + foreach (var standout in _standoutReagents) { var quantity = solution.GetTotalPrototypeQuantity(standout); if (quantity <= FixedPoint2.Zero) diff --git a/Content.Shared/Forensics/Systems/SharedForensicsSystem.cs b/Content.Shared/Forensics/Systems/SharedForensicsSystem.cs index 1220b75fff..be26fd6fd0 100644 --- a/Content.Shared/Forensics/Systems/SharedForensicsSystem.cs +++ b/Content.Shared/Forensics/Systems/SharedForensicsSystem.cs @@ -15,4 +15,13 @@ public abstract class SharedForensicsSystem : EntitySystem /// Does nothing if it does not have the FingerprintComponent. /// public virtual void RandomizeFingerprint(Entity ent) { } + + /// + /// Transfer DNA from one entity onto the forensics of another. + /// + /// The entity receiving the DNA. + /// The entity applying its DNA. + /// If this DNA be cleaned off of the recipient. e.g. cleaning a knife vs cleaning a puddle of blood. + public virtual void TransferDna(EntityUid recipient, EntityUid donor, bool canDnaBeCleaned = true) { } + } diff --git a/Content.Shared/Friction/TileFrictionController.cs b/Content.Shared/Friction/TileFrictionController.cs index 36e971862a..4b29b9a9de 100644 --- a/Content.Shared/Friction/TileFrictionController.cs +++ b/Content.Shared/Friction/TileFrictionController.cs @@ -73,7 +73,7 @@ namespace Content.Shared.Friction // If we're not touching the ground, don't use tileFriction. // TODO: Make IsWeightless event-based; we already have grid traversals tracked so just raise events - if (body.BodyStatus == BodyStatus.InAir || _gravity.IsWeightless(uid, body, xform) || !xform.Coordinates.IsValid(EntityManager)) + if (body.BodyStatus == BodyStatus.InAir || _gravity.IsWeightless(uid) || !xform.Coordinates.IsValid(EntityManager)) friction = xform.GridUid == null || !_gridQuery.HasComp(xform.GridUid) ? _offGridDamping : _airDamping; else friction = _frictionModifier * GetTileFriction(uid, body, xform); diff --git a/Content.Shared/GameTicking/Rules/DynamicRuleComponent.cs b/Content.Shared/GameTicking/Rules/DynamicRuleComponent.cs new file mode 100644 index 0000000000..7782717758 --- /dev/null +++ b/Content.Shared/GameTicking/Rules/DynamicRuleComponent.cs @@ -0,0 +1,71 @@ +using Content.Shared.EntityTable.EntitySelectors; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Shared.GameTicking.Rules; + +/// +/// Gamerule the spawns multiple antags at intervals based on a budget +/// +[RegisterComponent, AutoGenerateComponentPause] +public sealed partial class DynamicRuleComponent : Component +{ + /// + /// The total budget for antags. + /// + [DataField] + public float Budget; + + /// + /// The last time budget was updated. + /// + [DataField] + public TimeSpan LastBudgetUpdate; + + /// + /// The amount of budget accumulated every second. + /// + [DataField] + public float BudgetPerSecond = 0.1f; + + /// + /// The minimum or lower bound for budgets to start at. + /// + [DataField] + public int StartingBudgetMin = 200; + + /// + /// The maximum or upper bound for budgets to start at. + /// + [DataField] + public int StartingBudgetMax = 350; + + /// + /// The time at which the next rule will start + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), AutoPausedField] + public TimeSpan NextRuleTime; + + /// + /// Minimum delay between rules + /// + [DataField] + public TimeSpan MinRuleInterval = TimeSpan.FromMinutes(10); + + /// + /// Maximum delay between rules + /// + [DataField] + public TimeSpan MaxRuleInterval = TimeSpan.FromMinutes(30); + + /// + /// A table of rules that are picked from. + /// + [DataField] + public EntityTableSelector Table = new NoneSelector(); + + /// + /// The rules that have been spawned + /// + [DataField] + public List Rules = new(); +} diff --git a/Content.Shared/GameTicking/Rules/DynamicRuleCostComponent.cs b/Content.Shared/GameTicking/Rules/DynamicRuleCostComponent.cs new file mode 100644 index 0000000000..180b168dc1 --- /dev/null +++ b/Content.Shared/GameTicking/Rules/DynamicRuleCostComponent.cs @@ -0,0 +1,14 @@ +namespace Content.Shared.GameTicking.Rules; + +/// +/// Component that tracks how much a rule "costs" for Dynamic +/// +[RegisterComponent] +public sealed partial class DynamicRuleCostComponent : Component +{ + /// + /// The amount of budget a rule takes up + /// + [DataField(required: true)] + public int Cost; +} diff --git a/Content.Shared/GameTicking/SharedGameTicker.cs b/Content.Shared/GameTicking/SharedGameTicker.cs index 6b8bc8685b..877a849d07 100644 --- a/Content.Shared/GameTicking/SharedGameTicker.cs +++ b/Content.Shared/GameTicking/SharedGameTicker.cs @@ -15,6 +15,12 @@ namespace Content.Shared.GameTicking [Dependency] private readonly IReplayRecordingManager _replay = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; + /// + /// A list storing the start times of all game rules that have been started this round. + /// Game rules can be started and stopped at any time, including midround. + /// + public abstract IReadOnlyList<(TimeSpan, string)> AllPreviousGameRules { get; } + // See ideally these would be pulled from the job definition or something. // But this is easier, and at least it isn't hardcoded. //TODO: Move these, they really belong in StationJobsSystem or a cvar. diff --git a/Content.Shared/Gravity/FloatingVisualsComponent.cs b/Content.Shared/Gravity/FloatingVisualsComponent.cs index 67650baecd..c0064ebf78 100644 --- a/Content.Shared/Gravity/FloatingVisualsComponent.cs +++ b/Content.Shared/Gravity/FloatingVisualsComponent.cs @@ -10,20 +10,17 @@ public sealed partial class FloatingVisualsComponent : Component /// /// How long it takes to go from the bottom of the animation to the top. /// - [ViewVariables(VVAccess.ReadWrite)] [DataField, AutoNetworkedField] public float AnimationTime = 2f; /// /// How far it goes in any direction. /// - [ViewVariables(VVAccess.ReadWrite)] [DataField, AutoNetworkedField] public Vector2 Offset = new(0, 0.2f); - [ViewVariables(VVAccess.ReadWrite)] - [AutoNetworkedField] - public bool CanFloat = false; + [DataField, AutoNetworkedField] + public bool CanFloat; public readonly string AnimationKey = "gravity"; } diff --git a/Content.Shared/Gravity/GravityAffectedComponent.cs b/Content.Shared/Gravity/GravityAffectedComponent.cs new file mode 100644 index 0000000000..7991677759 --- /dev/null +++ b/Content.Shared/Gravity/GravityAffectedComponent.cs @@ -0,0 +1,17 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Gravity; + +/// +/// This Component allows a target to be considered "weightless" when Weightless is true. Without this component, the +/// target will never be weightless. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class GravityAffectedComponent : Component +{ + /// + /// If true, this entity will be considered "weightless" + /// + [ViewVariables, AutoNetworkedField] + public bool Weightless = true; +} diff --git a/Content.Shared/Gravity/GravityComponent.cs b/Content.Shared/Gravity/GravityComponent.cs index bbe3de69ea..ede8f74c7a 100644 --- a/Content.Shared/Gravity/GravityComponent.cs +++ b/Content.Shared/Gravity/GravityComponent.cs @@ -5,34 +5,20 @@ using Robust.Shared.Serialization; namespace Content.Shared.Gravity { [RegisterComponent] + [AutoGenerateComponentState] [NetworkedComponent] public sealed partial class GravityComponent : Component { - [DataField("gravityShakeSound")] + [DataField, AutoNetworkedField] public SoundSpecifier GravityShakeSound { get; set; } = new SoundPathSpecifier("/Audio/Effects/alert.ogg"); - [ViewVariables(VVAccess.ReadWrite)] - public bool EnabledVV - { - get => Enabled; - set - { - if (Enabled == value) return; - Enabled = value; - var ev = new GravityChangedEvent(Owner, value); - IoCManager.Resolve().EventBus.RaiseLocalEvent(Owner, ref ev); - Dirty(); - } - } - - [DataField("enabled")] + [DataField, AutoNetworkedField] public bool Enabled; /// /// Inherent gravity ensures GravitySystem won't change Enabled according to the gravity generators attached to this entity. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("inherent")] + [DataField, AutoNetworkedField] public bool Inherent; } } diff --git a/Content.Shared/Gravity/SharedFloatingVisualizerSystem.cs b/Content.Shared/Gravity/SharedFloatingVisualizerSystem.cs index 6ca974f2ed..ae5c73b498 100644 --- a/Content.Shared/Gravity/SharedFloatingVisualizerSystem.cs +++ b/Content.Shared/Gravity/SharedFloatingVisualizerSystem.cs @@ -8,15 +8,14 @@ namespace Content.Shared.Gravity; /// public abstract class SharedFloatingVisualizerSystem : EntitySystem { - [Dependency] private readonly SharedGravitySystem GravitySystem = default!; + [Dependency] private readonly SharedGravitySystem _gravity = default!; public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnComponentStartup); - SubscribeLocalEvent(OnGravityChanged); - SubscribeLocalEvent(OnEntParentChanged); + SubscribeLocalEvent(OnWeightlessnessChanged); } /// @@ -24,48 +23,28 @@ public abstract class SharedFloatingVisualizerSystem : EntitySystem /// public virtual void FloatAnimation(EntityUid uid, Vector2 offset, string animationKey, float animationTime, bool stop = false) { } - protected bool CanFloat(EntityUid uid, FloatingVisualsComponent component, TransformComponent? transform = null) + protected bool CanFloat(Entity entity) { - if (!Resolve(uid, ref transform)) - return false; - - if (transform.MapID == MapId.Nullspace) - return false; - - component.CanFloat = GravitySystem.IsWeightless(uid, xform: transform); - Dirty(uid, component); - return component.CanFloat; + entity.Comp.CanFloat = _gravity.IsWeightless(entity.Owner); + Dirty(entity); + return entity.Comp.CanFloat; } - private void OnComponentStartup(EntityUid uid, FloatingVisualsComponent component, ComponentStartup args) + private void OnComponentStartup(Entity entity, ref ComponentStartup args) { - if (CanFloat(uid, component)) - FloatAnimation(uid, component.Offset, component.AnimationKey, component.AnimationTime); + if (CanFloat(entity)) + FloatAnimation(entity, entity.Comp.Offset, entity.Comp.AnimationKey, entity.Comp.AnimationTime); } - private void OnGravityChanged(ref GravityChangedEvent args) + private void OnWeightlessnessChanged(Entity entity, ref WeightlessnessChangedEvent args) { - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var floating, out var transform)) - { - if (transform.MapID == MapId.Nullspace) - continue; + if (entity.Comp.CanFloat == args.Weightless) + return; - if (transform.GridUid != args.ChangedGridIndex) - continue; + entity.Comp.CanFloat = CanFloat(entity); + Dirty(entity); - floating.CanFloat = !args.HasGravity; - Dirty(uid, floating); - - if (!args.HasGravity) - FloatAnimation(uid, floating.Offset, floating.AnimationKey, floating.AnimationTime); - } - } - - private void OnEntParentChanged(EntityUid uid, FloatingVisualsComponent component, ref EntParentChangedMessage args) - { - var transform = args.Transform; - if (CanFloat(uid, component, transform)) - FloatAnimation(uid, component.Offset, component.AnimationKey, component.AnimationTime); + if (args.Weightless) + FloatAnimation(entity, entity.Comp.Offset, entity.Comp.AnimationKey, entity.Comp.AnimationTime); } } diff --git a/Content.Shared/Gravity/SharedGravitySystem.cs b/Content.Shared/Gravity/SharedGravitySystem.cs index e20771d603..a8f1be8287 100644 --- a/Content.Shared/Gravity/SharedGravitySystem.cs +++ b/Content.Shared/Gravity/SharedGravitySystem.cs @@ -1,171 +1,255 @@ using Content.Shared.Alert; using Content.Shared.Inventory; -using Content.Shared.Movement.Components; -using Robust.Shared.GameStates; +using Content.Shared.Throwing; +using Content.Shared.Weapons.Ranged.Systems; +using Robust.Shared.Map; using Robust.Shared.Physics; using Robust.Shared.Physics.Components; +using Robust.Shared.Physics.Events; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; using Robust.Shared.Timing; -namespace Content.Shared.Gravity +namespace Content.Shared.Gravity; + +public abstract partial class SharedGravitySystem : EntitySystem { - public abstract partial class SharedGravitySystem : EntitySystem + [Dependency] protected readonly IGameTiming Timing = default!; + [Dependency] private readonly AlertsSystem _alerts = default!; + + public static readonly ProtoId WeightlessAlert = "Weightless"; + + protected EntityQuery GravityQuery; + private EntityQuery _weightlessQuery; + private EntityQuery _physicsQuery; + + public override void Initialize() { - [Dependency] protected readonly IGameTiming Timing = default!; - [Dependency] private readonly AlertsSystem _alerts = default!; + base.Initialize(); + // Grid Gravity + SubscribeLocalEvent(OnGridInit); + SubscribeLocalEvent(OnGravityChange); - public static readonly ProtoId WeightlessAlert = "Weightless"; + // Weightlessness + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnEntParentChanged); + SubscribeLocalEvent(OnBodyTypeChanged); - private EntityQuery _gravityQuery; + // Alerts + SubscribeLocalEvent(OnAlertsSync); + SubscribeLocalEvent(OnWeightlessnessChanged); + SubscribeLocalEvent(OnAlertsParentChange); - public bool IsWeightless(EntityUid uid, PhysicsComponent? body = null, TransformComponent? xform = null) - { - Resolve(uid, ref body, false); + // Impulse + SubscribeLocalEvent(OnShooterImpulse); + SubscribeLocalEvent(OnThrowerImpulse); - if ((body?.BodyType & (BodyType.Static | BodyType.Kinematic)) != 0) - return false; + GravityQuery = GetEntityQuery(); + _weightlessQuery = GetEntityQuery(); + _physicsQuery = GetEntityQuery(); + } - if (TryComp(uid, out var ignoreGravityComponent)) - return ignoreGravityComponent.Weightless; + public override void Update(float frameTime) + { + base.Update(frameTime); + UpdateShake(); + } - var ev = new IsWeightlessEvent(uid); - RaiseLocalEvent(uid, ref ev); - if (ev.Handled) - return ev.IsWeightless; + public bool IsWeightless(Entity entity) + { + // If we can be weightless and are weightless, return true, otherwise return false + return _weightlessQuery.Resolve(entity, ref entity.Comp, false) && entity.Comp.Weightless; + } - if (!Resolve(uid, ref xform)) - return true; + private bool GetWeightless(Entity entity) + { + if (!_physicsQuery.Resolve(entity, ref entity.Comp2, false)) + return false; - // If grid / map has gravity - if (EntityGridOrMapHaveGravity((uid, xform))) - return false; + if (entity.Comp2.BodyType is BodyType.Static or BodyType.Kinematic) + return false; + // Check if something other than the grid or map is overriding our gravity + var ev = new IsWeightlessEvent(); + RaiseLocalEvent(entity, ref ev); + if (ev.Handled) + return ev.IsWeightless; + + return !EntityGridOrMapHaveGravity(entity.Owner); + } + + /// + /// Refreshes weightlessness status, needs to be called anytime it would change. + /// + /// The entity we are updating the weightless status of + public void RefreshWeightless(Entity entity) + { + if (!_weightlessQuery.Resolve(entity, ref entity.Comp)) + return; + + UpdateWeightless(entity!); + } + + /// + /// Overload of which also takes a bool for the weightlessness value we want to change to. + /// This method should only be called if there is no chance something can override the weightless value you're trying to change to. + /// This is really only the case if you're applying a weightless value that overrides non-conditionally from events or are a grid with the gravity component. + /// + /// The entity we are updating the weightless status of + /// The weightless value we are trying to change to, helps avoid needless networking + public void RefreshWeightless(Entity entity, bool weightless) + { + if (!_weightlessQuery.Resolve(entity, ref entity.Comp)) + return; + + // Only update if we're changing our weightless status + if (entity.Comp.Weightless == weightless) + return; + + UpdateWeightless(entity!); + } + + private void UpdateWeightless(Entity entity) + { + var newWeightless = GetWeightless(entity); + + // Don't network or raise events if it's not changing + if (newWeightless == entity.Comp.Weightless) + return; + + entity.Comp.Weightless = newWeightless; + Dirty(entity); + + var ev = new WeightlessnessChangedEvent(entity.Comp.Weightless); + RaiseLocalEvent(entity, ref ev); + } + + private void OnMapInit(Entity entity, ref MapInitEvent args) + { + RefreshWeightless((entity.Owner, entity.Comp)); + } + + private void OnWeightlessnessChanged(Entity entity, ref WeightlessnessChangedEvent args) + { + if (args.Weightless) + _alerts.ShowAlert(entity.AsNullable(), WeightlessAlert); + else + _alerts.ClearAlert(entity.AsNullable(), WeightlessAlert); + } + + private void OnEntParentChanged(Entity entity, ref EntParentChangedMessage args) + { + // If we've moved but are still on the same grid, then don't do anything. + if (args.OldParent == args.Transform.GridUid) + return; + + RefreshWeightless((entity.Owner, entity.Comp)); + } + + private void OnBodyTypeChanged(Entity entity, ref PhysicsBodyTypeChangedEvent args) + { + // No need to update weightlessness if we're not weightless and we're a body type that can't be weightless + if (args.New is BodyType.Static or BodyType.Kinematic && entity.Comp.Weightless == false) + return; + + RefreshWeightless((entity.Owner, entity.Comp)); + } + + /// + /// Checks if a given entity is currently standing on a grid or map that supports having gravity at all. + /// + public bool EntityOnGravitySupportingGridOrMap(Entity entity) + { + entity.Comp ??= Transform(entity); + + return GravityQuery.HasComp(entity.Comp.GridUid) || + GravityQuery.HasComp(entity.Comp.MapUid); + } + + /// + /// Checks if a given entity is currently standing on a grid or map that has gravity of some kind. + /// + public bool EntityGridOrMapHaveGravity(Entity entity) + { + entity.Comp ??= Transform(entity); + + // DO NOT SET TO WEIGHTLESS IF THEY'RE IN NULL-SPACE + // TODO: If entities actually properly pause when leaving PVS rather than entering null-space this can probably go. + if (entity.Comp.MapID == MapId.Nullspace) return true; - } - /// - /// Checks if a given entity is currently standing on a grid or map that supports having gravity at all. - /// - public bool EntityOnGravitySupportingGridOrMap(Entity entity) + return GravityQuery.TryComp(entity.Comp.GridUid, out var gravity) && gravity.Enabled || + GravityQuery.TryComp(entity.Comp.MapUid, out var mapGravity) && mapGravity.Enabled; + } + + private void OnGravityChange(ref GravityChangedEvent args) + { + var gravity = AllEntityQuery(); + while(gravity.MoveNext(out var uid, out var weightless, out var xform)) { - entity.Comp ??= Transform(entity); + if (xform.GridUid != args.ChangedGridIndex) + continue; - return _gravityQuery.HasComp(entity.Comp.GridUid) || - _gravityQuery.HasComp(entity.Comp.MapUid); - } - - - /// - /// Checks if a given entity is currently standing on a grid or map that has gravity of some kind. - /// - public bool EntityGridOrMapHaveGravity(Entity entity) - { - entity.Comp ??= Transform(entity); - - return _gravityQuery.TryComp(entity.Comp.GridUid, out var gravity) && gravity.Enabled || - _gravityQuery.TryComp(entity.Comp.MapUid, out var mapGravity) && mapGravity.Enabled; - } - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnGridInit); - SubscribeLocalEvent(OnAlertsSync); - SubscribeLocalEvent(OnAlertsParentChange); - SubscribeLocalEvent(OnGravityChange); - SubscribeLocalEvent(OnGetState); - SubscribeLocalEvent(OnHandleState); - - _gravityQuery = GetEntityQuery(); - } - - public override void Update(float frameTime) - { - base.Update(frameTime); - UpdateShake(); - } - - private void OnHandleState(EntityUid uid, GravityComponent component, ref ComponentHandleState args) - { - if (args.Current is not GravityComponentState state) - return; - - if (component.EnabledVV == state.Enabled) - return; - component.EnabledVV = state.Enabled; - var ev = new GravityChangedEvent(uid, component.EnabledVV); - RaiseLocalEvent(uid, ref ev, true); - } - - private void OnGetState(EntityUid uid, GravityComponent component, ref ComponentGetState args) - { - args.State = new GravityComponentState(component.EnabledVV); - } - - private void OnGravityChange(ref GravityChangedEvent ev) - { - var alerts = AllEntityQuery(); - while(alerts.MoveNext(out var uid, out _, out var xform)) - { - if (xform.GridUid != ev.ChangedGridIndex) - continue; - - if (!ev.HasGravity) - { - _alerts.ShowAlert(uid, WeightlessAlert); - } - else - { - _alerts.ClearAlert(uid, WeightlessAlert); - } - } - } - - private void OnAlertsSync(AlertSyncEvent ev) - { - if (IsWeightless(ev.Euid)) - { - _alerts.ShowAlert(ev.Euid, WeightlessAlert); - } - else - { - _alerts.ClearAlert(ev.Euid, WeightlessAlert); - } - } - - private void OnAlertsParentChange(EntityUid uid, AlertsComponent component, ref EntParentChangedMessage args) - { - if (IsWeightless(uid)) - { - _alerts.ShowAlert(uid, WeightlessAlert); - } - else - { - _alerts.ClearAlert(uid, WeightlessAlert); - } - } - - private void OnGridInit(GridInitializeEvent ev) - { - EnsureComp(ev.EntityUid); - } - - [Serializable, NetSerializable] - private sealed class GravityComponentState : ComponentState - { - public bool Enabled { get; } - - public GravityComponentState(bool enabled) - { - Enabled = enabled; - } + RefreshWeightless((uid, weightless), !args.HasGravity); } } - [ByRefEvent] - public record struct IsWeightlessEvent(EntityUid Entity, bool IsWeightless = false, bool Handled = false) : IInventoryRelayEvent + private void OnAlertsSync(AlertSyncEvent ev) { - SlotFlags IInventoryRelayEvent.TargetSlots => ~SlotFlags.POCKET; + if (IsWeightless(ev.Euid)) + _alerts.ShowAlert(ev.Euid, WeightlessAlert); + else + _alerts.ClearAlert(ev.Euid, WeightlessAlert); + } + + private void OnAlertsParentChange(Entity entity, ref EntParentChangedMessage args) + { + if (IsWeightless(entity.Owner)) + _alerts.ShowAlert(entity.AsNullable(), WeightlessAlert); + else + _alerts.ClearAlert(entity.AsNullable(), WeightlessAlert); + } + + private void OnGridInit(GridInitializeEvent ev) + { + EnsureComp(ev.EntityUid); + } + + [Serializable, NetSerializable] + private sealed class GravityComponentState : ComponentState + { + public bool Enabled { get; } + + public GravityComponentState(bool enabled) + { + Enabled = enabled; + } + } + + private void OnThrowerImpulse(Entity entity, ref ThrowerImpulseEvent args) + { + args.Push = true; + } + + private void OnShooterImpulse(Entity entity, ref ShooterImpulseEvent args) + { + args.Push = true; } } + +/// +/// Raised to determine if an entity's weightlessness is being overwritten by a component or item with a component. +/// +/// Whether we should be weightless +/// Whether something is trying to override our weightlessness +[ByRefEvent] +public record struct IsWeightlessEvent(bool IsWeightless = false, bool Handled = false) : IInventoryRelayEvent +{ + SlotFlags IInventoryRelayEvent.TargetSlots => ~SlotFlags.POCKET; +} + +/// +/// Raised on an entity when their weightless status changes. +/// +[ByRefEvent] +public readonly record struct WeightlessnessChangedEvent(bool Weightless); diff --git a/Content.Shared/Hands/Components/HandsComponent.cs b/Content.Shared/Hands/Components/HandsComponent.cs index 2aa97e7841..30422210d4 100644 --- a/Content.Shared/Hands/Components/HandsComponent.cs +++ b/Content.Shared/Hands/Components/HandsComponent.cs @@ -1,6 +1,8 @@ using Content.Shared.DisplacementMap; using Content.Shared.Hands.EntitySystems; +using Content.Shared.Whitelist; using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization; namespace Content.Shared.Hands.Components; @@ -106,16 +108,45 @@ public sealed partial class HandsComponent : Component public partial record struct Hand { [DataField] - public HandLocation Location = HandLocation.Right; + public HandLocation Location = HandLocation.Middle; + + /// + /// The label to be displayed for this hand when it does not contain an entity + /// + [DataField] + public LocId? EmptyLabel; + + /// + /// The prototype ID of a "representative" entity prototype for what this hand could hold, used in the UI. + /// It is not map-initted. + /// + [DataField] + public EntProtoId? EmptyRepresentative; + + /// + /// What this hand is allowed to hold + /// + [DataField] + public EntityWhitelist? Whitelist; + + /// + /// What this hand is not allowed to hold + /// + [DataField] + public EntityWhitelist? Blacklist; public Hand() { } - public Hand(HandLocation location) + public Hand(HandLocation location, LocId? emptyLabel = null, EntProtoId? emptyRepresentative = null, EntityWhitelist? whitelist = null, EntityWhitelist? blacklist = null) { Location = location; + EmptyLabel = emptyLabel; + EmptyRepresentative = emptyRepresentative; + Whitelist = whitelist; + Blacklist = blacklist; } } diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs index c1b44efba4..6512bbd7f1 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs @@ -3,6 +3,7 @@ using Content.Shared.Database; using Content.Shared.Hands.Components; using Content.Shared.Interaction; using Content.Shared.Inventory.VirtualItem; +using Content.Shared.Storage.Components; using Content.Shared.Tag; using Robust.Shared.Containers; using Robust.Shared.Map; @@ -20,6 +21,7 @@ public abstract partial class SharedHandsSystem private void InitializeDrop() { SubscribeLocalEvent(HandleEntityRemoved); + SubscribeLocalEvent(OnEntityStorageDump); } protected virtual void HandleEntityRemoved(EntityUid uid, HandsComponent hands, EntRemovedFromContainerMessage args) @@ -39,6 +41,14 @@ public abstract partial class SharedHandsSystem _virtualSystem.DeleteVirtualItem((args.Entity, @virtual), uid); } + + private void OnEntityStorageDump(Entity ent, ref EntityStorageIntoContainerAttemptEvent args) + { + // If you're physically carrying an EntityStroage which tries to dump its contents out, + // we want those contents to fall to the floor. + args.Cancelled = true; + } + private bool ShouldIgnoreRestrictions(EntityUid user) { //Checks if the Entity is something that shouldn't care about drop distance or walls ie Aghost diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Pickup.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Pickup.cs index 4558f6c528..ea13004313 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Pickup.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Pickup.cs @@ -185,6 +185,9 @@ public abstract partial class SharedHandsSystem if (checkActionBlocker && !_actionBlocker.CanPickup(uid, entity)) return false; + if (!CheckWhitelists((uid, handsComp), handId, entity)) + return false; + if (ContainerSystem.TryGetContainingContainer((entity, null, null), out var container)) { if (!ContainerSystem.CanRemove(entity, container)) diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Whitelist.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Whitelist.cs new file mode 100644 index 0000000000..dbb1978ce2 --- /dev/null +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Whitelist.cs @@ -0,0 +1,15 @@ +using Content.Shared.Hands.Components; +using Content.Shared.Whitelist; + +namespace Content.Shared.Hands.EntitySystems; + +public abstract partial class SharedHandsSystem +{ + private bool CheckWhitelists(Entity ent, string handId, EntityUid toTest) + { + if (!TryGetHand(ent, handId, out var hand)) + return false; + + return _entityWhitelist.CheckBoth(toTest, hand.Value.Blacklist, hand.Value.Whitelist); + } +} diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.cs index af5e82f417..8431e27658 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.cs @@ -7,8 +7,10 @@ using Content.Shared.Interaction; using Content.Shared.Inventory; using Content.Shared.Inventory.VirtualItem; using Content.Shared.Storage.EntitySystems; +using Content.Shared.Whitelist; using Robust.Shared.Containers; using Robust.Shared.Input.Binding; +using Robust.Shared.Prototypes; using Robust.Shared.Utility; namespace Content.Shared.Hands.EntitySystems; @@ -23,6 +25,7 @@ public abstract partial class SharedHandsSystem [Dependency] private readonly SharedStorageSystem _storage = default!; [Dependency] protected readonly SharedTransformSystem TransformSystem = default!; [Dependency] private readonly SharedVirtualItemSystem _virtualSystem = default!; + [Dependency] private readonly EntityWhitelistSystem _entityWhitelist = default!; public event Action, string, HandLocation>? OnPlayerAddHand; public event Action, string>? OnPlayerRemoveHand; @@ -66,9 +69,9 @@ public abstract partial class SharedHandsSystem /// /// Adds a hand with the given container id and supplied location to the specified entity. /// - public void AddHand(Entity ent, string handName, HandLocation handLocation) + public void AddHand(Entity ent, string handName, HandLocation handLocation, LocId? emptyLabel = null, EntProtoId? emptyRepresentative = null, EntityWhitelist? whitelist = null, EntityWhitelist? blacklist = null) { - AddHand(ent, handName, new Hand(handLocation)); + AddHand(ent, handName, new Hand(handLocation, emptyLabel, emptyRepresentative, whitelist, blacklist)); } /// diff --git a/Content.Shared/Humanoid/HumanoidVisualLayers.cs b/Content.Shared/Humanoid/HumanoidVisualLayers.cs index ca78564bfd..6b5f163000 100644 --- a/Content.Shared/Humanoid/HumanoidVisualLayers.cs +++ b/Content.Shared/Humanoid/HumanoidVisualLayers.cs @@ -15,6 +15,7 @@ namespace Content.Shared.Humanoid Chest, Head, Snout, + SnoutCover, // things layered over snouts (i.e. noses) HeadSide, // side parts (i.e., frills) HeadTop, // top parts (i.e., ears) Eyes, diff --git a/Content.Shared/Humanoid/HumanoidVisualLayersExtension.cs b/Content.Shared/Humanoid/HumanoidVisualLayersExtension.cs index 0f8b940bd6..1365c488d8 100644 --- a/Content.Shared/Humanoid/HumanoidVisualLayersExtension.cs +++ b/Content.Shared/Humanoid/HumanoidVisualLayersExtension.cs @@ -42,6 +42,11 @@ namespace Content.Shared.Humanoid yield return HumanoidVisualLayers.Hair; yield return HumanoidVisualLayers.FacialHair; yield return HumanoidVisualLayers.Snout; + yield return HumanoidVisualLayers.SnoutCover; + break; + case HumanoidVisualLayers.Snout: + yield return HumanoidVisualLayers.Snout; + yield return HumanoidVisualLayers.SnoutCover; break; case HumanoidVisualLayers.LArm: yield return HumanoidVisualLayers.LArm; diff --git a/Content.Shared/Humanoid/Markings/MarkingCategories.cs b/Content.Shared/Humanoid/Markings/MarkingCategories.cs index 2551175096..a49ac7d416 100644 --- a/Content.Shared/Humanoid/Markings/MarkingCategories.cs +++ b/Content.Shared/Humanoid/Markings/MarkingCategories.cs @@ -12,6 +12,7 @@ namespace Content.Shared.Humanoid.Markings HeadTop, HeadSide, Snout, + SnoutCover, Chest, UndergarmentTop, UndergarmentBottom, diff --git a/Content.Shared/Implants/Components/ReplacementImplantComponent.cs b/Content.Shared/Implants/Components/ReplacementImplantComponent.cs new file mode 100644 index 0000000000..73a6d4d8b4 --- /dev/null +++ b/Content.Shared/Implants/Components/ReplacementImplantComponent.cs @@ -0,0 +1,18 @@ +using Content.Shared.Whitelist; +using Robust.Shared.GameStates; + +namespace Content.Shared.Implants.Components; + +/// +/// Added to implants with the see . +/// When implanted it will cause other implants in the whitelist to be deleted and thus replaced. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class ReplacementImplantComponent : Component +{ + /// + /// Whitelist for which implants to delete. + /// + [DataField(required: true)] + public EntityWhitelist Whitelist = new(); +} diff --git a/Content.Shared/Implants/Components/StorageImplantComponent.cs b/Content.Shared/Implants/Components/StorageImplantComponent.cs new file mode 100644 index 0000000000..289f01bfce --- /dev/null +++ b/Content.Shared/Implants/Components/StorageImplantComponent.cs @@ -0,0 +1,11 @@ +using Content.Shared.Storage; +using Robust.Shared.GameStates; + +namespace Content.Shared.Implants.Components; + +/// +/// Handles emptying the implant's when the implant is removed. +/// Without this the contents would be deleted. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class StorageImplantComponent : Component; diff --git a/Content.Shared/Implants/Components/SubdermalImplantComponent.cs b/Content.Shared/Implants/Components/SubdermalImplantComponent.cs index 390d113dfb..85f2672603 100644 --- a/Content.Shared/Implants/Components/SubdermalImplantComponent.cs +++ b/Content.Shared/Implants/Components/SubdermalImplantComponent.cs @@ -16,13 +16,21 @@ public sealed partial class SubdermalImplantComponent : Component /// /// Used where you want the implant to grant the owner an instant action. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("implantAction")] + [DataField] public EntProtoId? ImplantAction; + /// + /// The provided action entity. + /// [DataField, AutoNetworkedField] public EntityUid? Action; + /// + /// Components to add/remove to the implantee when the implant is injected/extracted. + /// + [DataField] + public ComponentRegistry ImplantComponents = new(); + /// /// The entity this implant is inside /// @@ -32,8 +40,7 @@ public sealed partial class SubdermalImplantComponent : Component /// /// Should this implant be removeable? /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("permanent"), AutoNetworkedField] + [DataField, AutoNetworkedField] public bool Permanent = false; /// @@ -61,23 +68,20 @@ public sealed partial class SubdermalImplantComponent : Component /// /// Used for opening the storage implant via action. /// -public sealed partial class OpenStorageImplantEvent : InstantActionEvent -{ - -} +/// +/// TODO: Delete this and just add a ToggleUIOnTriggerComponent +/// +public sealed partial class OpenStorageImplantEvent : InstantActionEvent; /// /// Used for triggering trigger events on the implant via action /// -public sealed partial class ActivateImplantEvent : InstantActionEvent -{ - -} +public sealed partial class ActivateImplantEvent : InstantActionEvent; /// /// Used for opening the uplink implant via action. /// -public sealed partial class OpenUplinkImplantEvent : InstantActionEvent -{ - -} +/// +/// TODO: Delete this and just add a ToggleUIOnTriggerComponent +/// +public sealed partial class OpenUplinkImplantEvent : InstantActionEvent; diff --git a/Content.Shared/Implants/ReplacementImplantSystem.cs b/Content.Shared/Implants/ReplacementImplantSystem.cs new file mode 100644 index 0000000000..b206091fe3 --- /dev/null +++ b/Content.Shared/Implants/ReplacementImplantSystem.cs @@ -0,0 +1,34 @@ +using Content.Shared.Implants.Components; +using Content.Shared.Whitelist; +using Robust.Shared.Containers; + +namespace Content.Shared.Implants; + +public sealed class ReplacementImplantSystem : EntitySystem +{ + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly EntityWhitelistSystem _whitelist = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnImplantImplanted); + } + + private void OnImplantImplanted(Entity ent, ref ImplantImplantedEvent args) + { + if (!_container.TryGetContainer(args.Implanted, ImplanterComponent.ImplantSlotId, out var implantContainer)) + return; + + foreach (var implant in implantContainer.ContainedEntities) + { + if (implant == ent.Owner) + continue; // don't delete the replacement + + if (_whitelist.IsWhitelistPass(ent.Comp.Whitelist, implant)) + PredictedQueueDel(implant); + } + + } +} diff --git a/Content.Shared/Implants/SharedImplanterSystem.cs b/Content.Shared/Implants/SharedImplanterSystem.cs index 6e806384a0..6ff6d42d3b 100644 --- a/Content.Shared/Implants/SharedImplanterSystem.cs +++ b/Content.Shared/Implants/SharedImplanterSystem.cs @@ -118,7 +118,7 @@ public abstract class SharedImplanterSystem : EntitySystem //Set to draw mode if not implant only public void Implant(EntityUid user, EntityUid target, EntityUid implanter, ImplanterComponent component) { - if (!CanImplant(user, target, implanter, component, out var implant, out var implantComp)) + if (!CanImplant(user, target, implanter, component, out var implant, out _)) return; // Check if we are trying to implant a implant which is already implanted @@ -137,7 +137,6 @@ public abstract class SharedImplanterSystem : EntitySystem if (component.ImplanterSlot.ContainerSlot != null) _container.Remove(implant.Value, component.ImplanterSlot.ContainerSlot); - implantComp.ImplantedEntity = target; implantContainer.OccludesLight = false; _container.Insert(implant.Value, implantContainer); @@ -280,7 +279,6 @@ public abstract class SharedImplanterSystem : EntitySystem private void DrawImplantIntoImplanter(EntityUid implanter, EntityUid target, EntityUid implant, BaseContainer implantContainer, ContainerSlot implanterContainer, SubdermalImplantComponent implantComp) { _container.Remove(implant, implantContainer); - implantComp.ImplantedEntity = null; _container.Insert(implant, implanterContainer); var ev = new TransferDnaEvent { Donor = target, Recipient = implanter }; diff --git a/Content.Shared/Implants/SharedSubdermalImplantSystem.Relays.cs b/Content.Shared/Implants/SharedSubdermalImplantSystem.Relays.cs new file mode 100644 index 0000000000..4c0b2c2361 --- /dev/null +++ b/Content.Shared/Implants/SharedSubdermalImplantSystem.Relays.cs @@ -0,0 +1,50 @@ +using Content.Shared.Implants.Components; +using Content.Shared.Interaction; +using Content.Shared.Interaction.Events; +using Content.Shared.Mobs; + +namespace Content.Shared.Implants; + +public abstract partial class SharedSubdermalImplantSystem +{ + public void InitializeRelay() + { + SubscribeLocalEvent(RelayToImplantEvent); + SubscribeLocalEvent(RelayToImplantEvent); + SubscribeLocalEvent(RelayToImplantEvent); + } + + /// + /// Relays events from the implanted to the implant. + /// + private void RelayToImplantEvent(EntityUid uid, ImplantedComponent component, T args) where T : notnull + { + if (!_container.TryGetContainer(uid, ImplanterComponent.ImplantSlotId, out var implantContainer)) + return; + + var relayEv = new ImplantRelayEvent(args, uid); + foreach (var implant in implantContainer.ContainedEntities) + { + if (args is HandledEntityEventArgs { Handled: true }) + return; + + RaiseLocalEvent(implant, relayEv); + } + } +} + +/// +/// Wrapper for relaying events from an implanted entity to their implants. +/// +public sealed class ImplantRelayEvent where T : notnull +{ + public readonly T Event; + + public readonly EntityUid ImplantedEntity; + + public ImplantRelayEvent(T ev, EntityUid implantedEntity) + { + Event = ev; + ImplantedEntity = implantedEntity; + } +} diff --git a/Content.Shared/Implants/SharedSubdermalImplantSystem.cs b/Content.Shared/Implants/SharedSubdermalImplantSystem.cs index 4c015f1209..630416b598 100644 --- a/Content.Shared/Implants/SharedSubdermalImplantSystem.cs +++ b/Content.Shared/Implants/SharedSubdermalImplantSystem.cs @@ -1,90 +1,76 @@ -using System.Linq; using Content.Shared.Actions; using Content.Shared.Implants.Components; -using Content.Shared.Interaction; -using Content.Shared.Interaction.Events; -using Content.Shared.Mobs; -using Content.Shared.Tag; -using JetBrains.Annotations; using Robust.Shared.Containers; +using Robust.Shared.Network; using Robust.Shared.Prototypes; +using Robust.Shared.Timing; namespace Content.Shared.Implants; -public abstract class SharedSubdermalImplantSystem : EntitySystem +public abstract partial class SharedSubdermalImplantSystem : EntitySystem { - [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; + [Dependency] private readonly SharedActionsSystem _actions = default!; [Dependency] private readonly SharedContainerSystem _container = default!; - [Dependency] private readonly TagSystem _tag = default!; - [Dependency] private readonly SharedTransformSystem _transformSystem = default!; - - public const string BaseStorageId = "storagebase"; - - private static readonly ProtoId MicroBombTag = "MicroBomb"; - private static readonly ProtoId MacroBombTag = "MacroBomb"; + [Dependency] private readonly INetManager _net = default!; + [Dependency] private readonly IGameTiming _timing = default!; public override void Initialize() { + base.Initialize(); + InitializeRelay(); + SubscribeLocalEvent(OnInsert); SubscribeLocalEvent(OnRemoveAttempt); SubscribeLocalEvent(OnRemove); - - SubscribeLocalEvent(RelayToImplantEvent); - SubscribeLocalEvent(RelayToImplantEvent); - SubscribeLocalEvent(RelayToImplantEvent); } - private void OnInsert(EntityUid uid, SubdermalImplantComponent component, EntGotInsertedIntoContainerMessage args) + private void OnInsert(Entity ent, ref EntGotInsertedIntoContainerMessage args) { - if (component.ImplantedEntity == null) + // The results of the container change are already networked on their own + if (_timing.ApplyingState) return; - if (!string.IsNullOrWhiteSpace(component.ImplantAction)) - { - _actionsSystem.AddAction(component.ImplantedEntity.Value, ref component.Action, component.ImplantAction, uid); - } + if (args.Container.ID != ImplanterComponent.ImplantSlotId) + return; - // replace micro bomb with macro bomb - // TODO: this shouldn't be hardcoded here - if (_container.TryGetContainer(component.ImplantedEntity.Value, ImplanterComponent.ImplantSlotId, out var implantContainer) && _tag.HasTag(uid, MacroBombTag)) - { - foreach (var implant in implantContainer.ContainedEntities) - { - if (_tag.HasTag(implant, MicroBombTag)) - { - _container.Remove(implant, implantContainer); - PredictedQueueDel(implant); - } - } - } + ent.Comp.ImplantedEntity = args.Container.Owner; + Dirty(ent); - var ev = new ImplantImplantedEvent(uid, component.ImplantedEntity.Value); - RaiseLocalEvent(uid, ref ev); + EntityManager.AddComponents(ent.Comp.ImplantedEntity.Value, ent.Comp.ImplantComponents); + if (ent.Comp.ImplantAction != null) + _actions.AddAction(ent.Comp.ImplantedEntity.Value, ref ent.Comp.Action, ent.Comp.ImplantAction, ent.Owner); + + var ev = new ImplantImplantedEvent(ent.Owner, ent.Comp.ImplantedEntity.Value); + RaiseLocalEvent(ent.Owner, ref ev); } - private void OnRemoveAttempt(EntityUid uid, SubdermalImplantComponent component, ContainerGettingRemovedAttemptEvent args) + private void OnRemoveAttempt(Entity ent, ref ContainerGettingRemovedAttemptEvent args) { - if (component.Permanent && component.ImplantedEntity != null) + if (ent.Comp.Permanent && ent.Comp.ImplantedEntity != null) args.Cancel(); } - private void OnRemove(EntityUid uid, SubdermalImplantComponent component, EntGotRemovedFromContainerMessage args) + private void OnRemove(Entity ent, ref EntGotRemovedFromContainerMessage args) { - if (component.ImplantedEntity == null || Terminating(component.ImplantedEntity.Value)) + // The results of the container change are already networked on their own + if (_timing.ApplyingState) return; - if (component.ImplantAction != null) - _actionsSystem.RemoveProvidedActions(component.ImplantedEntity.Value, uid); - - if (!_container.TryGetContainer(uid, BaseStorageId, out var storageImplant)) + if (args.Container.ID != ImplanterComponent.ImplantSlotId) return; - var containedEntites = storageImplant.ContainedEntities.ToArray(); + if (ent.Comp.ImplantedEntity == null || Terminating(ent.Comp.ImplantedEntity.Value)) + return; - foreach (var entity in containedEntites) - { - _transformSystem.DropNextTo(entity, uid); - } + EntityManager.RemoveComponents(ent.Comp.ImplantedEntity.Value, ent.Comp.ImplantComponents); + _actions.RemoveAction(ent.Comp.ImplantedEntity.Value, ent.Comp.Action); + ent.Comp.Action = null; + + var ev = new ImplantRemovedEvent(ent.Owner, ent.Comp.ImplantedEntity.Value); + RaiseLocalEvent(ent.Owner, ref ev); + + ent.Comp.ImplantedEntity = null; + Dirty(ent); } /// @@ -106,23 +92,26 @@ public abstract class SharedSubdermalImplantSystem : EntitySystem /// /// The implant, if it was successfully created. Otherwise, null. /// > - public EntityUid? AddImplant(EntityUid uid, String implantId) + public EntityUid? AddImplant(EntityUid target, EntProtoId implantId) { - var coords = Transform(uid).Coordinates; - var ent = Spawn(implantId, coords); + if (_net.IsClient) + return null; // can't interact with predicted spawns yet - if (TryComp(ent, out var implant)) + var coords = Transform(target).Coordinates; + var implant = Spawn(implantId, coords); + + if (TryComp(implant, out var implantComp)) { - ForceImplant(uid, ent, implant); + ForceImplant(target, (implant, implantComp)); } else { - Log.Warning($"Found invalid starting implant '{implantId}' on {uid} {ToPrettyString(uid):implanted}"); - Del(ent); + Log.Warning($"Tried to inject implant '{implantId}' without SubdermalImplantComponent into {ToPrettyString(target):implanted}"); + Del(implant); return null; } - return ent; + return implant; } /// @@ -131,15 +120,16 @@ public abstract class SharedSubdermalImplantSystem : EntitySystem /// /// The entity to be implanted /// The implant - /// The implant component - public void ForceImplant(EntityUid target, EntityUid implant, SubdermalImplantComponent component) + public void ForceImplant(EntityUid target, Entity implant) { + if (!Resolve(implant, ref implant.Comp)) + return; + //If the target doesn't have the implanted component, add it. var implantedComp = EnsureComp(target); - var implantContainer = implantedComp.ImplantContainer; - component.ImplantedEntity = target; - _container.Insert(implant, implantContainer); + implant.Comp.ImplantedEntity = target; + _container.Insert(implant.Owner, implantedComp.ImplantContainer); } /// @@ -147,60 +137,25 @@ public abstract class SharedSubdermalImplantSystem : EntitySystem /// /// the implanted entity /// the implant - [PublicAPI] - public void ForceRemove(EntityUid target, EntityUid implant) + public void ForceRemove(Entity target, EntityUid implant) { - if (!TryComp(target, out var implanted)) + if (!Resolve(target, ref target.Comp)) return; - var implantContainer = implanted.ImplantContainer; - - _container.Remove(implant, implantContainer); - QueueDel(implant); + _container.Remove(implant, target.Comp.ImplantContainer); + PredictedQueueDel(implant); } /// /// Removes and deletes implants by force /// /// The entity to have implants removed - [PublicAPI] - public void WipeImplants(EntityUid target) + public void WipeImplants(Entity target) { - if (!TryComp(target, out var implanted)) + if (!Resolve(target, ref target.Comp, false)) return; - var implantContainer = implanted.ImplantContainer; - - _container.CleanContainer(implantContainer); - } - - //Relays from the implanted to the implant - private void RelayToImplantEvent(EntityUid uid, ImplantedComponent component, T args) where T : notnull - { - if (!_container.TryGetContainer(uid, ImplanterComponent.ImplantSlotId, out var implantContainer)) - return; - - var relayEv = new ImplantRelayEvent(args, uid); - foreach (var implant in implantContainer.ContainedEntities) - { - if (args is HandledEntityEventArgs { Handled : true }) - return; - - RaiseLocalEvent(implant, relayEv); - } - } -} - -public sealed class ImplantRelayEvent where T : notnull -{ - public readonly T Event; - - public readonly EntityUid ImplantedEntity; - - public ImplantRelayEvent(T ev, EntityUid implantedEntity) - { - Event = ev; - ImplantedEntity = implantedEntity; + _container.CleanContainer(target.Comp.ImplantContainer); } } @@ -212,12 +167,30 @@ public sealed class ImplantRelayEvent where T : notnull /// implant implant implant implant /// [ByRefEvent] -public readonly struct ImplantImplantedEvent +public readonly record struct ImplantImplantedEvent { public readonly EntityUid Implant; - public readonly EntityUid? Implanted; + public readonly EntityUid Implanted; - public ImplantImplantedEvent(EntityUid implant, EntityUid? implanted) + public ImplantImplantedEvent(EntityUid implant, EntityUid implanted) + { + Implant = implant; + Implanted = implanted; + } +} + +/// +/// Event that is raised whenever an implant is removed from someone. +/// Raised on the the implant entity. +/// + +[ByRefEvent] +public readonly record struct ImplantRemovedEvent +{ + public readonly EntityUid Implant; + public readonly EntityUid Implanted; + + public ImplantRemovedEvent(EntityUid implant, EntityUid implanted) { Implant = implant; Implanted = implanted; diff --git a/Content.Shared/Implants/StorageImplantSystem.cs b/Content.Shared/Implants/StorageImplantSystem.cs new file mode 100644 index 0000000000..748f9f3ad2 --- /dev/null +++ b/Content.Shared/Implants/StorageImplantSystem.cs @@ -0,0 +1,36 @@ +using System.Linq; +using Content.Shared.Implants.Components; +using Content.Shared.Storage; +using Robust.Shared.Containers; +using Robust.Shared.Network; + +namespace Content.Shared.Implants; + +public sealed class StorageImplantSystem : EntitySystem +{ + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly INetManager _net = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnImplantRemoved); + } + + private void OnImplantRemoved(Entity ent, ref ImplantRemovedEvent args) + { + if (_net.IsClient) + return; // TODO: RandomPredicted and DropNextToPredicted + + if (!_container.TryGetContainer(ent.Owner, StorageComponent.ContainerId, out var storageImplant)) + return; + + var contained = storageImplant.ContainedEntities.ToArray(); + foreach (var entity in contained) + { + _transform.DropNextTo(entity, ent.Owner); + } + } +} diff --git a/Content.Shared/Interaction/SharedInteractionSystem.cs b/Content.Shared/Interaction/SharedInteractionSystem.cs index 68e9d8a671..d29c3436ac 100644 --- a/Content.Shared/Interaction/SharedInteractionSystem.cs +++ b/Content.Shared/Interaction/SharedInteractionSystem.cs @@ -515,7 +515,7 @@ namespace Content.Shared.Interaction // all interactions should only happen when in range / unobstructed, so no range check is needed var message = new InteractHandEvent(user, target); RaiseLocalEvent(target, message, true); - _adminLogger.Add(LogType.InteractHand, LogImpact.Low, $"{ToPrettyString(user):user} interacted with {ToPrettyString(target):target}"); + _adminLogger.Add(LogType.InteractHand, LogImpact.Low, $"{user} interacted with {target}"); DoContactInteraction(user, target, message); if (message.Handled) return; diff --git a/Content.Shared/Interaction/SmartEquipSystem.cs b/Content.Shared/Interaction/SmartEquipSystem.cs index da79fc1e69..553a4475cb 100644 --- a/Content.Shared/Interaction/SmartEquipSystem.cs +++ b/Content.Shared/Interaction/SmartEquipSystem.cs @@ -150,7 +150,7 @@ public sealed class SmartEquipSystem : EntitySystem } _hands.TryDrop((uid, hands), hands.ActiveHandId!); - _storage.Insert(slotItem, handItem.Value, out var stacked, out _); + _storage.Insert(slotItem, handItem.Value, out var stacked, out _, user: uid); // if the hand item stacked with the things in inventory, but there's no more space left for the rest // of the stack, place the stack back in hand rather than dropping it on the floor diff --git a/Content.Shared/Inventory/InventorySystem.Relay.cs b/Content.Shared/Inventory/InventorySystem.Relay.cs index f4a0ccb5de..5109930a2d 100644 --- a/Content.Shared/Inventory/InventorySystem.Relay.cs +++ b/Content.Shared/Inventory/InventorySystem.Relay.cs @@ -24,6 +24,7 @@ using Content.Shared.Overlays; using Content.Shared.Projectiles; using Content.Shared.Radio; using Content.Shared.Slippery; +using Content.Shared.Standing; using Content.Shared.Strip.Components; using Content.Shared.Temperature; using Content.Shared.Verbs; @@ -57,6 +58,8 @@ public partial class InventorySystem SubscribeLocalEvent(RelayInventoryEvent); SubscribeLocalEvent(RelayInventoryEvent); SubscribeLocalEvent(RelayInventoryEvent); + SubscribeLocalEvent(RelayInventoryEvent); + SubscribeLocalEvent(RelayInventoryEvent); // by-ref events SubscribeLocalEvent(RefRelayInventoryEvent); @@ -114,7 +117,7 @@ public partial class InventorySystem return; // this copies the by-ref event if it is a struct - var ev = new InventoryRelayedEvent(args); + var ev = new InventoryRelayedEvent(args, inventory.Owner); var enumerator = new InventorySlotEnumerator(inventory, args.TargetSlots); while (enumerator.NextItem(out var item)) { @@ -130,7 +133,7 @@ public partial class InventorySystem if (args.TargetSlots == SlotFlags.NONE) return; - var ev = new InventoryRelayedEvent(args); + var ev = new InventoryRelayedEvent(args, inventory.Owner); var enumerator = new InventorySlotEnumerator(inventory, args.TargetSlots); while (enumerator.NextItem(out var item)) { @@ -141,7 +144,7 @@ public partial class InventorySystem private void OnGetEquipmentVerbs(EntityUid uid, InventoryComponent component, GetVerbsEvent args) { // Automatically relay stripping related verbs to all equipped clothing. - var ev = new InventoryRelayedEvent>(args); + var ev = new InventoryRelayedEvent>(args, uid); var enumerator = new InventorySlotEnumerator(component); while (enumerator.NextItem(out var item, out var slotDef)) { @@ -153,7 +156,7 @@ public partial class InventorySystem private void OnGetInnateVerbs(EntityUid uid, InventoryComponent component, GetVerbsEvent args) { // Automatically relay stripping related verbs to all equipped clothing. - var ev = new InventoryRelayedEvent>(args); + var ev = new InventoryRelayedEvent>(args, uid); var enumerator = new InventorySlotEnumerator(component, SlotFlags.WITHOUT_POCKET); while (enumerator.NextItem(out var item)) { @@ -176,9 +179,12 @@ public sealed class InventoryRelayedEvent : EntityEventArgs { public TEvent Args; - public InventoryRelayedEvent(TEvent args) + public EntityUid Owner; + + public InventoryRelayedEvent(TEvent args, EntityUid owner) { Args = args; + Owner = owner; } } diff --git a/Content.Shared/Inventory/VirtualItem/SharedVirtualItemSystem.cs b/Content.Shared/Inventory/VirtualItem/SharedVirtualItemSystem.cs index 8842223afc..db3a4fd95c 100644 --- a/Content.Shared/Inventory/VirtualItem/SharedVirtualItemSystem.cs +++ b/Content.Shared/Inventory/VirtualItem/SharedVirtualItemSystem.cs @@ -103,13 +103,14 @@ public abstract class SharedVirtualItemSystem : EntitySystem /// The entity we will make a virtual entity copy of /// The entity that we want to insert the virtual entity /// Whether or not to try and drop other items to make space - public bool TrySpawnVirtualItemInHand(EntityUid blockingEnt, EntityUid user, bool dropOthers = false) + /// If true this won't show a popup when dropping other items + public bool TrySpawnVirtualItemInHand(EntityUid blockingEnt, EntityUid user, bool dropOthers = false, bool silent = false) { - return TrySpawnVirtualItemInHand(blockingEnt, user, out _, dropOthers); + return TrySpawnVirtualItemInHand(blockingEnt, user, out _, dropOthers, silent: silent); } /// - public bool TrySpawnVirtualItemInHand(EntityUid blockingEnt, EntityUid user, [NotNullWhen(true)] out EntityUid? virtualItem, bool dropOthers = false, string? empty = null) + public bool TrySpawnVirtualItemInHand(EntityUid blockingEnt, EntityUid user, [NotNullWhen(true)] out EntityUid? virtualItem, bool dropOthers = false, string? empty = null, bool silent = false) { virtualItem = null; if (empty == null && !_handsSystem.TryGetEmptyHand(user, out empty)) @@ -128,7 +129,7 @@ public abstract class SharedVirtualItemSystem : EntitySystem if (!_handsSystem.TryDrop(user, hand)) continue; - if (!TerminatingOrDeleted(held)) + if (!silent && !TerminatingOrDeleted(held)) _popup.PopupClient(Loc.GetString("virtual-item-dropped-other", ("dropped", held)), user, user); empty = hand; diff --git a/Content.Shared/Item/ItemToggle/ItemToggleSystem.cs b/Content.Shared/Item/ItemToggle/ItemToggleSystem.cs index ff31faaaa1..367b078f23 100644 --- a/Content.Shared/Item/ItemToggle/ItemToggleSystem.cs +++ b/Content.Shared/Item/ItemToggle/ItemToggleSystem.cs @@ -78,7 +78,7 @@ public sealed class ItemToggleSystem : EntitySystem if (ent.Comp.Activated) { - var ev = new ItemToggleActivateAttemptEvent(args.User); + var ev = new ItemToggleDeactivateAttemptEvent(args.User); RaiseLocalEvent(ent.Owner, ref ev); if (ev.Cancelled) @@ -86,7 +86,7 @@ public sealed class ItemToggleSystem : EntitySystem } else { - var ev = new ItemToggleDeactivateAttemptEvent(args.User); + var ev = new ItemToggleActivateAttemptEvent(args.User); RaiseLocalEvent(ent.Owner, ref ev); if (ev.Cancelled) diff --git a/Content.Shared/Kitchen/Components/KitchenSpikeComponent.cs b/Content.Shared/Kitchen/Components/KitchenSpikeComponent.cs index 3057a75a4c..b4fdc5ed3c 100644 --- a/Content.Shared/Kitchen/Components/KitchenSpikeComponent.cs +++ b/Content.Shared/Kitchen/Components/KitchenSpikeComponent.cs @@ -1,40 +1,143 @@ +using Content.Shared.Damage; +using Content.Shared.FixedPoint; +using Content.Shared.Nutrition.Components; using Robust.Shared.Audio; +using Robust.Shared.Containers; using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; namespace Content.Shared.Kitchen.Components; +/// +/// Used to mark entity that should act as a spike. +/// [RegisterComponent, NetworkedComponent] +[AutoGenerateComponentState, AutoGenerateComponentPause] [Access(typeof(SharedKitchenSpikeSystem))] public sealed partial class KitchenSpikeComponent : Component { - [DataField("delay")] - public float SpikeDelay = 7.0f; + /// + /// Default sound to play when the victim is hooked or unhooked. + /// + private static readonly ProtoId DefaultSpike = new("Spike"); - [ViewVariables(VVAccess.ReadWrite)] - [DataField("sound")] - public SoundSpecifier SpikeSound = new SoundPathSpecifier("/Audio/Effects/Fluids/splat.ogg"); + /// + /// Default sound to play when the victim is butchered. + /// + private static readonly ProtoId DefaultSpikeButcher = new("SpikeButcher"); - public List? PrototypesToSpawn; + /// + /// ID of the container where the victim will be stored. + /// + [DataField, AutoNetworkedField] + public string ContainerId = "body"; - // TODO: Spiking alive mobs? (Replace with uid) (deal damage to their limbs on spiking, kill on first butcher attempt?) - public string MeatSource1p = "?"; - public string MeatSource0 = "?"; - public string Victim = "?"; + /// + /// Container where the victim will be stored. + /// + [ViewVariables] + public ContainerSlot BodyContainer = default!; - // Prevents simultaneous spiking of two bodies (could be replaced with CancellationToken, but I don't see any situation where Cancel could be called) - public bool InUse; + /// + /// Sound to play when the victim is hooked or unhooked. + /// + [DataField, AutoNetworkedField] + public SoundSpecifier SpikeSound = new SoundCollectionSpecifier(DefaultSpike); - [Serializable, NetSerializable] - public enum KitchenSpikeVisuals : byte + /// + /// Sound to play when the victim is butchered. + /// + [DataField, AutoNetworkedField] + public SoundSpecifier ButcherSound = new SoundCollectionSpecifier(DefaultSpikeButcher); + + /// + /// Damage that will be applied to the victim when they are hooked or unhooked. + /// + [DataField, AutoNetworkedField] + public DamageSpecifier SpikeDamage = new() { - Status - } + DamageDict = new Dictionary + { + { "Piercing", 10 }, + }, + }; - [Serializable, NetSerializable] - public enum KitchenSpikeStatus : byte + /// + /// Damage that will be applied to the victim when they are butchered. + /// + [DataField, AutoNetworkedField] + public DamageSpecifier ButcherDamage = new() { - Empty, - Bloody - } + DamageDict = new Dictionary + { + { "Slash", 20 }, + }, + }; + + /// + /// Damage that the victim will receive over time. + /// + [DataField, AutoNetworkedField] + public DamageSpecifier TimeDamage = new() + { + DamageDict = new Dictionary + { + { "Blunt", 1 }, // Mobs are only gibbed from blunt (at least for now). + }, + }; + + /// + /// The next time when the damage will be applied to the victim. + /// + [AutoPausedField, AutoNetworkedField] + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] + public TimeSpan NextDamage; + + /// + /// How often the damage should be applied to the victim. + /// + [DataField, AutoNetworkedField] + public TimeSpan DamageInterval = TimeSpan.FromSeconds(10); + + /// + /// Time that it will take to put the victim on the spike. + /// + [DataField, AutoNetworkedField] + public TimeSpan HookDelay = TimeSpan.FromSeconds(7); + + /// + /// Time that it will take to put the victim off the spike. + /// + [DataField, AutoNetworkedField] + public TimeSpan UnhookDelay = TimeSpan.FromSeconds(10); + + /// + /// Time that it will take to butcher the victim while they are alive. + /// + /// + /// This is summed up with a 's butcher delay in butcher DoAfter. + /// + [DataField, AutoNetworkedField] + public TimeSpan ButcherDelayAlive = TimeSpan.FromSeconds(8); + + /// + /// Value by which the butchering delay will be multiplied if the victim is dead. + /// + [DataField, AutoNetworkedField] + public float ButcherModifierDead = 0.5f; +} + +[Serializable, NetSerializable] +public enum KitchenSpikeVisuals : byte +{ + Status, +} + +[Serializable, NetSerializable] +public enum KitchenSpikeStatus : byte +{ + Empty, + Bloody, // TODO: Add sprites for different species. } diff --git a/Content.Shared/Kitchen/Components/KitchenSpikeHookedComponent.cs b/Content.Shared/Kitchen/Components/KitchenSpikeHookedComponent.cs new file mode 100644 index 0000000000..c255db986e --- /dev/null +++ b/Content.Shared/Kitchen/Components/KitchenSpikeHookedComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Kitchen.Components; + +/// +/// Used to mark entities that are currently hooked on the spike. +/// +[RegisterComponent, NetworkedComponent] +[Access(typeof(SharedKitchenSpikeSystem))] +public sealed partial class KitchenSpikeHookedComponent : Component; diff --git a/Content.Shared/Kitchen/Components/KitchenSpikeVictimComponent.cs b/Content.Shared/Kitchen/Components/KitchenSpikeVictimComponent.cs new file mode 100644 index 0000000000..dc37592a87 --- /dev/null +++ b/Content.Shared/Kitchen/Components/KitchenSpikeVictimComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Kitchen.Components; + +/// +/// Used to mark entity that was butchered on the spike. +/// +[RegisterComponent, NetworkedComponent] +[Access(typeof(SharedKitchenSpikeSystem))] +public sealed partial class KitchenSpikeVictimComponent : Component; diff --git a/Content.Shared/Kitchen/Components/SharpComponent.cs b/Content.Shared/Kitchen/Components/SharpComponent.cs new file mode 100644 index 0000000000..3dd5e01af7 --- /dev/null +++ b/Content.Shared/Kitchen/Components/SharpComponent.cs @@ -0,0 +1,26 @@ +using Content.Shared.Nutrition.Components; +using Robust.Shared.GameStates; + +namespace Content.Shared.Kitchen.Components; + +/// +/// Applies to items that are capable of butchering entities, or +/// are otherwise sharp for some purpose. +/// +[RegisterComponent, NetworkedComponent] +[AutoGenerateComponentState] +public sealed partial class SharpComponent : Component +{ + /// + /// List of the entities that are currently being butchered. + /// + // TODO just make this a tool type. Move SharpSystem to shared. + [AutoNetworkedField] + public readonly HashSet Butchering = []; + + /// + /// Affects butcher delay of the . + /// + [DataField, AutoNetworkedField] + public float ButcherDelayModifier = 1.0f; +} diff --git a/Content.Shared/Kitchen/SharedKitchenSpikeSystem.cs b/Content.Shared/Kitchen/SharedKitchenSpikeSystem.cs index 2f740f99ad..c691a973f9 100644 --- a/Content.Shared/Kitchen/SharedKitchenSpikeSystem.cs +++ b/Content.Shared/Kitchen/SharedKitchenSpikeSystem.cs @@ -1,38 +1,473 @@ +using Content.Shared.Administration.Logs; +using Content.Shared.Body.Systems; +using Content.Shared.Damage; +using Content.Shared.Database; +using Content.Shared.Destructible; using Content.Shared.DoAfter; using Content.Shared.DragDrop; +using Content.Shared.Examine; +using Content.Shared.Hands; +using Content.Shared.IdentityManagement; +using Content.Shared.Interaction; +using Content.Shared.Interaction.Events; +using Content.Shared.Inventory.Events; +using Content.Shared.Item; using Content.Shared.Kitchen.Components; +using Content.Shared.Mobs.Systems; +using Content.Shared.Movement.Events; using Content.Shared.Nutrition.Components; +using Content.Shared.Popups; +using Content.Shared.Random.Helpers; +using Content.Shared.Throwing; +using Content.Shared.Verbs; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Containers; using Robust.Shared.Serialization; +using Robust.Shared.Timing; namespace Content.Shared.Kitchen; -public abstract class SharedKitchenSpikeSystem : EntitySystem +/// +/// Used to butcher some entities like monkeys. +/// +public sealed class SharedKitchenSpikeSystem : EntitySystem { + [Dependency] private readonly SharedAppearanceSystem _appearanceSystem = default!; + [Dependency] private readonly SharedContainerSystem _containerSystem = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; + [Dependency] private readonly DamageableSystem _damageableSystem = default!; + [Dependency] private readonly ExamineSystemShared _examineSystem = default!; + [Dependency] private readonly MobStateSystem _mobStateSystem = default!; + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + [Dependency] private readonly MetaDataSystem _metaDataSystem = default!; + [Dependency] private readonly ISharedAdminLogManager _logger = default!; + [Dependency] private readonly SharedAudioSystem _audioSystem = default!; + [Dependency] private readonly SharedBodySystem _bodySystem = default!; + [Dependency] private readonly IGameTiming _gameTiming = default!; + public override void Initialize() { base.Initialize(); + + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnInsertAttempt); + SubscribeLocalEvent(OnEntInsertedIntoContainer); + SubscribeLocalEvent(OnEntRemovedFromContainer); + SubscribeLocalEvent(OnInteractHand); + SubscribeLocalEvent(OnInteractUsing); SubscribeLocalEvent(OnCanDrop); + SubscribeLocalEvent(OnDragDrop); + SubscribeLocalEvent(OnSpikeHookDoAfter); + SubscribeLocalEvent(OnSpikeUnhookDoAfter); + SubscribeLocalEvent(OnSpikeButcherDoAfter); + SubscribeLocalEvent(OnSpikeExamined); + SubscribeLocalEvent>(OnGetVerbs); + SubscribeLocalEvent(OnDestruction); + + SubscribeLocalEvent(OnVictimExamined); + + // Prevent the victim from doing anything while on the spike. + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); } - private void OnCanDrop(EntityUid uid, KitchenSpikeComponent component, ref CanDropTargetEvent args) + private void OnInit(Entity ent, ref ComponentInit args) { - if (args.Handled) + ent.Comp.BodyContainer = _containerSystem.EnsureContainer(ent, ent.Comp.ContainerId); + } + + private void OnInsertAttempt(Entity ent, ref ContainerIsInsertingAttemptEvent args) + { + if (args.Cancelled || TryComp(args.EntityUid, out var butcherable) && butcherable.Type == ButcheringType.Spike) + return; + + args.Cancel(); + } + + private void OnEntInsertedIntoContainer(Entity ent, ref EntInsertedIntoContainerMessage args) + { + if (_gameTiming.ApplyingState) + return; + + EnsureComp(args.Entity); + _damageableSystem.TryChangeDamage(args.Entity, ent.Comp.SpikeDamage, true); + + ent.Comp.NextDamage = _gameTiming.CurTime + ent.Comp.DamageInterval; + Dirty(ent); + + // TODO: Add sprites for different species. + _appearanceSystem.SetData(ent.Owner, KitchenSpikeVisuals.Status, KitchenSpikeStatus.Bloody); + } + + private void OnEntRemovedFromContainer(Entity ent, ref EntRemovedFromContainerMessage args) + { + if (_gameTiming.ApplyingState) + return; + + RemComp(args.Entity); + _damageableSystem.TryChangeDamage(args.Entity, ent.Comp.SpikeDamage, true); + + _appearanceSystem.SetData(ent.Owner, KitchenSpikeVisuals.Status, KitchenSpikeStatus.Empty); + } + + private void OnInteractHand(Entity ent, ref InteractHandEvent args) + { + var victim = ent.Comp.BodyContainer.ContainedEntity; + + if (args.Handled || !victim.HasValue) + return; + + _popupSystem.PopupClient(Loc.GetString("butcherable-need-knife", + ("target", Identity.Entity(victim.Value, EntityManager))), + ent, + args.User, + PopupType.Medium); + + args.Handled = true; + } + + private void OnInteractUsing(Entity ent, ref InteractUsingEvent args) + { + var victim = ent.Comp.BodyContainer.ContainedEntity; + + if (args.Handled || !TryComp(victim, out var butcherable) || butcherable.SpawnedEntities.Count == 0) return; args.Handled = true; - if (!HasComp(args.Dragged)) + if (!TryComp(args.Used, out var sharp)) { - args.CanDrop = false; + _popupSystem.PopupClient(Loc.GetString("butcherable-need-knife", + ("target", Identity.Entity(victim.Value, EntityManager))), + ent, + args.User, + PopupType.Medium); + return; } - // TODO: Once we get silicons need to check organic - args.CanDrop = true; + var victimIdentity = Identity.Entity(victim.Value, EntityManager); + + _popupSystem.PopupPredicted(Loc.GetString("comp-kitchen-spike-begin-butcher-self", ("victim", victimIdentity)), + Loc.GetString("comp-kitchen-spike-begin-butcher", ("user", Identity.Entity(args.User, EntityManager)), ("victim", victimIdentity)), + ent, + args.User, + PopupType.MediumCaution); + + var delay = TimeSpan.FromSeconds(sharp.ButcherDelayModifier * butcherable.ButcherDelay); + + if (_mobStateSystem.IsAlive(victim.Value)) + delay += ent.Comp.ButcherDelayAlive; + else + delay *= ent.Comp.ButcherModifierDead; + + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, + args.User, + delay, + new SpikeButcherDoAfterEvent(), + ent, + target: victim, + used: args.Used) + { + BreakOnDamage = true, + BreakOnMove = true, + NeedHand = true, + }); + } + + private void OnCanDrop(Entity ent, ref CanDropTargetEvent args) + { + if (args.Handled) + return; + + args.CanDrop = _containerSystem.CanInsert(args.Dragged, ent.Comp.BodyContainer); + args.Handled = true; + } + + private void OnDragDrop(Entity ent, ref DragDropTargetEvent args) + { + if (args.Handled) + return; + + ShowPopups("comp-kitchen-spike-begin-hook-self", + "comp-kitchen-spike-begin-hook-self-other", + "comp-kitchen-spike-begin-hook-other-self", + "comp-kitchen-spike-begin-hook-other", + args.User, + args.Dragged, + ent); + + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, + args.User, + ent.Comp.HookDelay, + new SpikeHookDoAfterEvent(), + ent, + target: args.Dragged) + { + BreakOnDamage = true, + BreakOnMove = true, + NeedHand = true, + }); + + args.Handled = true; + } + + private void OnSpikeHookDoAfter(Entity ent, ref SpikeHookDoAfterEvent args) + { + if (args.Handled || args.Cancelled || !args.Target.HasValue) + return; + + if (_containerSystem.Insert(args.Target.Value, ent.Comp.BodyContainer)) + { + ShowPopups("comp-kitchen-spike-hook-self", + "comp-kitchen-spike-hook-self-other", + "comp-kitchen-spike-hook-other-self", + "comp-kitchen-spike-hook-other", + args.User, + args.Target.Value, + ent); + + _logger.Add(LogType.Action, + LogImpact.High, + $"{ToPrettyString(args.User):user} put {ToPrettyString(args.Target):target} on the {ToPrettyString(ent):spike}"); + + _audioSystem.PlayPredicted(ent.Comp.SpikeSound, ent, args.User); + } + + args.Handled = true; + } + + private void OnSpikeUnhookDoAfter(Entity ent, ref SpikeUnhookDoAfterEvent args) + { + if (args.Handled || args.Cancelled || !args.Target.HasValue) + return; + + if (_containerSystem.Remove(args.Target.Value, ent.Comp.BodyContainer)) + { + ShowPopups("comp-kitchen-spike-unhook-self", + "comp-kitchen-spike-unhook-self-other", + "comp-kitchen-spike-unhook-other-self", + "comp-kitchen-spike-unhook-other", + args.User, + args.Target.Value, + ent); + + _logger.Add(LogType.Action, + LogImpact.Medium, + $"{ToPrettyString(args.User):user} took {ToPrettyString(args.Target):target} off the {ToPrettyString(ent):spike}"); + + _audioSystem.PlayPredicted(ent.Comp.SpikeSound, ent, args.User); + } + + args.Handled = true; + } + + private void OnSpikeButcherDoAfter(Entity ent, ref SpikeButcherDoAfterEvent args) + { + if (args.Handled || args.Cancelled || !args.Target.HasValue || !args.Used.HasValue || !TryComp(args.Target, out var butcherable)) + return; + + var victimIdentity = Identity.Entity(args.Target.Value, EntityManager); + + _popupSystem.PopupPredicted(Loc.GetString("comp-kitchen-spike-butcher-self", ("victim", victimIdentity)), + Loc.GetString("comp-kitchen-spike-butcher", ("user", Identity.Entity(args.User, EntityManager)), ("victim", victimIdentity)), + ent, + args.User, + PopupType.MediumCaution); + + // Get a random entry to spawn. + // TODO: Replace with RandomPredicted once the engine PR is merged + var seed = SharedRandomExtensions.HashCodeCombine(new() { (int)_gameTiming.CurTick.Value, GetNetEntity(ent).Id }); + var rand = new System.Random(seed); + + var index = rand.Next(butcherable.SpawnedEntities.Count); + var entry = butcherable.SpawnedEntities[index]; + + var uid = PredictedSpawnNextToOrDrop(entry.PrototypeId, ent); + _metaDataSystem.SetEntityName(uid, + Loc.GetString("comp-kitchen-spike-meat-name", + ("name", Name(uid)), + ("victim", args.Target))); + + // Decrease the amount since we spawned an entity from that entry. + entry.Amount--; + + // Remove the entry if its new amount is zero, or update it. + if (entry.Amount <= 0) + butcherable.SpawnedEntities.RemoveAt(index); + else + butcherable.SpawnedEntities[index] = entry; + + Dirty(args.Target.Value, butcherable); + + // Gib the victim if there is nothing else to butcher. + if (butcherable.SpawnedEntities.Count == 0) + { + _bodySystem.GibBody(args.Target.Value, true); + + _logger.Add(LogType.Gib, + LogImpact.Extreme, + $"{ToPrettyString(args.User):user} finished butchering {ToPrettyString(args.Target):target} on the {ToPrettyString(ent):spike}"); + } + else + { + EnsureComp(args.Target.Value); + + _damageableSystem.TryChangeDamage(args.Target, ent.Comp.ButcherDamage, true); + _logger.Add(LogType.Action, + LogImpact.Extreme, + $"{ToPrettyString(args.User):user} butchered {ToPrettyString(args.Target):target} on the {ToPrettyString(ent):spike}"); + } + + _audioSystem.PlayPredicted(ent.Comp.ButcherSound, ent, args.User); + + _popupSystem.PopupClient(Loc.GetString("butcherable-knife-butchered-success", + ("target", Identity.Entity(args.Target.Value, EntityManager)), + ("knife", args.Used.Value)), + ent, + args.User, + PopupType.Medium); + + args.Handled = true; + } + + private void OnSpikeExamined(Entity ent, ref ExaminedEvent args) + { + var victim = ent.Comp.BodyContainer.ContainedEntity; + + if (!victim.HasValue) + return; + + // Show it at the end of the examine so it looks good. + args.PushMarkup(Loc.GetString("comp-kitchen-spike-hooked", ("victim", Identity.Entity(victim.Value, EntityManager))), -1); + args.PushMessage(_examineSystem.GetExamineText(victim.Value, args.Examiner), -2); + } + + private void OnGetVerbs(Entity ent, ref GetVerbsEvent args) + { + var victim = ent.Comp.BodyContainer.ContainedEntity; + + if (!victim.HasValue || !_containerSystem.CanRemove(victim.Value, ent.Comp.BodyContainer)) + return; + + var user = args.User; + + args.Verbs.Add(new Verb() + { + Text = Loc.GetString("comp-kitchen-spike-unhook-verb"), + Act = () => TryUnhook(ent, user, victim.Value), + Impact = LogImpact.Medium, + }); + } + + private void OnDestruction(Entity ent, ref DestructionEventArgs args) + { + _containerSystem.EmptyContainer(ent.Comp.BodyContainer, destination: Transform(ent).Coordinates); + } + + private void OnVictimExamined(Entity ent, ref ExaminedEvent args) + { + args.PushMarkup(Loc.GetString("comp-kitchen-spike-victim-examine", ("target", Identity.Entity(ent, EntityManager)))); + } + + private static void OnAttempt(EntityUid uid, KitchenSpikeHookedComponent component, CancellableEntityEventArgs args) + { + args.Cancel(); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var query = AllEntityQuery(); + + while (query.MoveNext(out var uid, out var kitchenSpike)) + { + var contained = kitchenSpike.BodyContainer.ContainedEntity; + + if (!contained.HasValue) + continue; + + if (kitchenSpike.NextDamage > _gameTiming.CurTime) + continue; + + kitchenSpike.NextDamage += kitchenSpike.DamageInterval; + Dirty(uid, kitchenSpike); + + _damageableSystem.TryChangeDamage(contained, kitchenSpike.TimeDamage, true); + } + } + + /// + /// A helper method to show predicted popups that can be targeted towards yourself or somebody else. + /// + private void ShowPopups(string selfLocMessageSelf, + string selfLocMessageOthers, + string locMessageSelf, + string locMessageOthers, + EntityUid user, + EntityUid victim, + EntityUid hook) + { + string messageSelf, messageOthers; + + var victimIdentity = Identity.Entity(victim, EntityManager); + + if (user == victim) + { + messageSelf = Loc.GetString(selfLocMessageSelf, ("hook", hook)); + messageOthers = Loc.GetString(selfLocMessageOthers, ("victim", victimIdentity), ("hook", hook)); + } + else + { + messageSelf = Loc.GetString(locMessageSelf, ("victim", victimIdentity), ("hook", hook)); + messageOthers = Loc.GetString(locMessageOthers, + ("user", Identity.Entity(user, EntityManager)), + ("victim", victimIdentity), + ("hook", hook)); + } + + _popupSystem.PopupPredicted(messageSelf, messageOthers, hook, user, PopupType.MediumCaution); + } + + /// + /// Tries to unhook the victim. + /// + private void TryUnhook(Entity ent, EntityUid user, EntityUid target) + { + ShowPopups("comp-kitchen-spike-begin-unhook-self", + "comp-kitchen-spike-begin-unhook-self-other", + "comp-kitchen-spike-begin-unhook-other-self", + "comp-kitchen-spike-begin-unhook-other", + user, + target, + ent); + + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, + user, + ent.Comp.UnhookDelay, + new SpikeUnhookDoAfterEvent(), + ent, + target: target) + { + BreakOnDamage = user != target, + BreakOnMove = true, + }); } } [Serializable, NetSerializable] -public sealed partial class SpikeDoAfterEvent : SimpleDoAfterEvent -{ -} +public sealed partial class SpikeHookDoAfterEvent : SimpleDoAfterEvent; + +[Serializable, NetSerializable] +public sealed partial class SpikeUnhookDoAfterEvent : SimpleDoAfterEvent; + +[Serializable, NetSerializable] +public sealed partial class SpikeButcherDoAfterEvent : SimpleDoAfterEvent; diff --git a/Content.Shared/Lathe/LatheComponent.cs b/Content.Shared/Lathe/LatheComponent.cs index 8b701ff64e..7bd7764514 100644 --- a/Content.Shared/Lathe/LatheComponent.cs +++ b/Content.Shared/Lathe/LatheComponent.cs @@ -26,10 +26,14 @@ namespace Content.Shared.Lathe // Otherwise the material arbitrage test and/or LatheSystem.GetAllBaseRecipes needs to be updated /// - /// The lathe's construction queue + /// The lathe's construction queue. /// + /// + /// This is a LinkedList to allow for constant time insertion/deletion (vs a List), and more efficient + /// moves (vs a Queue). + /// [DataField] - public Queue> Queue = new(); + public LinkedList Queue = new(); /// /// The sound that plays when the lathe is producing an item, if any @@ -97,6 +101,21 @@ namespace Content.Shared.Lathe } } + [Serializable] + public sealed partial class LatheRecipeBatch + { + public ProtoId Recipe; + public int ItemsPrinted; + public int ItemsRequested; + + public LatheRecipeBatch(ProtoId recipe, int itemsPrinted, int itemsRequested) + { + Recipe = recipe; + ItemsPrinted = itemsPrinted; + ItemsRequested = itemsRequested; + } + } + /// /// Event raised on a lathe when it starts producing a recipe. /// diff --git a/Content.Shared/Lathe/LatheMessages.cs b/Content.Shared/Lathe/LatheMessages.cs index 1c1c6440f1..fe72eed367 100644 --- a/Content.Shared/Lathe/LatheMessages.cs +++ b/Content.Shared/Lathe/LatheMessages.cs @@ -10,11 +10,11 @@ public sealed class LatheUpdateState : BoundUserInterfaceState { public List> Recipes; - public ProtoId[] Queue; + public LatheRecipeBatch[] Queue; public ProtoId? CurrentlyProducing; - public LatheUpdateState(List> recipes, ProtoId[] queue, ProtoId? currentlyProducing = null) + public LatheUpdateState(List> recipes, LatheRecipeBatch[] queue, ProtoId? currentlyProducing = null) { Recipes = recipes; Queue = queue; @@ -46,6 +46,33 @@ public sealed class LatheQueueRecipeMessage : BoundUserInterfaceMessage } } +/// +/// Sent to the server to remove a batch from the queue. +/// +[Serializable, NetSerializable] +public sealed class LatheDeleteRequestMessage(int index) : BoundUserInterfaceMessage +{ + public int Index = index; +} + +/// +/// Sent to the server to move the position of a batch in the queue. +/// +[Serializable, NetSerializable] +public sealed class LatheMoveRequestMessage(int index, int change) : BoundUserInterfaceMessage +{ + public int Index = index; + public int Change = change; +} + +/// +/// Sent to the server to stop producing the current item. +/// +[Serializable, NetSerializable] +public sealed class LatheAbortFabricationMessage() : BoundUserInterfaceMessage +{ +} + [NetSerializable, Serializable] public enum LatheUiKey { diff --git a/Content.Shared/Lathe/PrototypeIdLinkedListSerializer.cs b/Content.Shared/Lathe/PrototypeIdLinkedListSerializer.cs new file mode 100644 index 0000000000..1c616ff105 --- /dev/null +++ b/Content.Shared/Lathe/PrototypeIdLinkedListSerializer.cs @@ -0,0 +1,81 @@ +using Robust.Shared.Serialization; +using Robust.Shared.Serialization.Manager; +using Robust.Shared.Serialization.Markdown; +using Robust.Shared.Serialization.Markdown.Sequence; +using Robust.Shared.Serialization.Markdown.Validation; +using Robust.Shared.Serialization.TypeSerializers.Interfaces; + +namespace Content.Shared.Lathe; + +/// +/// Handles reading, writing, and validation for linked lists of prototypes. +/// +/// The type of prototype this linked list represents +/// +/// This is in the Content.Shared.Lathe namespace as there are no other LinkedList ProtoId instances. +/// +[TypeSerializer] +public sealed class LinkedListSerializer : ITypeSerializer, SequenceDataNode>, ITypeCopier> where T : class +{ + public ValidationNode Validate(ISerializationManager serializationManager, SequenceDataNode node, + IDependencyCollection dependencies, ISerializationContext? context = null) + { + var list = new List(); + + foreach (var elem in node.Sequence) + { + list.Add(serializationManager.ValidateNode(elem, context)); + } + + return new ValidatedSequenceNode(list); + } + + public DataNode Write(ISerializationManager serializationManager, LinkedList value, + IDependencyCollection dependencies, + bool alwaysWrite = false, + ISerializationContext? context = null) + { + var sequence = new SequenceDataNode(); + + foreach (var elem in value) + { + sequence.Add(serializationManager.WriteValue(elem, alwaysWrite, context)); + } + + return sequence; + } + + LinkedList ITypeReader, SequenceDataNode>.Read(ISerializationManager serializationManager, + SequenceDataNode node, + IDependencyCollection dependencies, + SerializationHookContext hookCtx, + ISerializationContext? context, ISerializationManager.InstantiationDelegate>? instanceProvider) + { + var list = instanceProvider != null ? instanceProvider() : new LinkedList(); + + foreach (var dataNode in node.Sequence) + { + list.AddLast(serializationManager.Read(dataNode, hookCtx, context)); + } + + return list; + } + + public void CopyTo( + ISerializationManager serializationManager, + LinkedList source, + ref LinkedList target, + IDependencyCollection dependencies, + SerializationHookContext hookCtx, + ISerializationContext? context = null) + { + target.Clear(); + using var enumerator = source.GetEnumerator(); + + while (enumerator.MoveNext()) + { + var current = enumerator.Current; + target.AddLast(current); + } + } +} diff --git a/Content.Shared/Lathe/SharedLatheSystem.cs b/Content.Shared/Lathe/SharedLatheSystem.cs index 524d83fd84..5942f4bf6c 100644 --- a/Content.Shared/Lathe/SharedLatheSystem.cs +++ b/Content.Shared/Lathe/SharedLatheSystem.cs @@ -22,6 +22,7 @@ public abstract class SharedLatheSystem : EntitySystem [Dependency] private readonly EmagSystem _emag = default!; public readonly Dictionary> InverseRecipes = new(); + public const int MaxItemsPerRequest = 10_000; public override void Initialize() { @@ -86,6 +87,8 @@ public abstract class SharedLatheSystem : EntitySystem return false; if (!HasRecipe(uid, recipe, component)) return false; + if (amount <= 0) + return false; foreach (var (material, needed) in recipe.Materials) { diff --git a/Content.Shared/Light/Components/LightBulbComponent.cs b/Content.Shared/Light/Components/LightBulbComponent.cs index 35b04be897..fcd3840a0c 100644 --- a/Content.Shared/Light/Components/LightBulbComponent.cs +++ b/Content.Shared/Light/Components/LightBulbComponent.cs @@ -8,69 +8,61 @@ namespace Content.Shared.Light.Components; /// Component that represents a light bulb. Can be broken, or burned, which turns them mostly useless. /// TODO: Breaking and burning should probably be moved to another component eventually. /// -[RegisterComponent, NetworkedComponent] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class LightBulbComponent : Component { /// /// The color of the lightbulb and the light it produces. /// - [DataField("color")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField, AutoNetworkedField] public Color Color = Color.White; /// /// The type of lightbulb. Tube/bulb/etc... /// [DataField("bulb")] - [ViewVariables(VVAccess.ReadWrite)] public LightBulbType Type = LightBulbType.Tube; /// /// The initial state of the lightbulb. /// - [DataField("startingState")] + [DataField("startingState"), AutoNetworkedField] public LightBulbState State = LightBulbState.Normal; /// /// The temperature the air around the lightbulb is exposed to when the lightbulb burns out. /// [DataField("BurningTemperature")] - [ViewVariables(VVAccess.ReadWrite)] public int BurningTemperature = 1400; /// /// Relates to how bright the light produced by the lightbulb is. /// - [DataField("lightEnergy")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float LightEnergy = 0.8f; /// /// The maximum radius of the point light source this light produces. /// - [DataField("lightRadius")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float LightRadius = 10; /// /// Relates to the falloff constant of the light produced by the lightbulb. /// - [DataField("lightSoftness")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float LightSoftness = 1; /// /// The amount of power used by the lightbulb when it's active. /// [DataField("PowerUse")] - [ViewVariables(VVAccess.ReadWrite)] public int PowerUse = 60; /// /// The sound produced when the lightbulb breaks. /// - [DataField("breakSound")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public SoundSpecifier BreakSound = new SoundCollectionSpecifier("GlassBreak", AudioParams.Default.WithVolume(-6f)); #region Appearance @@ -78,22 +70,19 @@ public sealed partial class LightBulbComponent : Component /// /// The sprite state used when the lightbulb is intact. /// - [DataField("normalSpriteState")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public string NormalSpriteState = "normal"; /// /// The sprite state used when the lightbulb is broken. /// - [DataField("brokenSpriteState")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public string BrokenSpriteState = "broken"; /// /// The sprite state used when the lightbulb is burned. /// - [DataField("burnedSpriteState")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public string BurnedSpriteState = "burned"; #endregion Appearance diff --git a/Content.Shared/Light/Components/LightReplacerComponent.cs b/Content.Shared/Light/Components/LightReplacerComponent.cs index 3ce9647c88..1276ff9edc 100644 --- a/Content.Shared/Light/Components/LightReplacerComponent.cs +++ b/Content.Shared/Light/Components/LightReplacerComponent.cs @@ -1,3 +1,4 @@ +using Content.Shared.Light.Components; using Content.Shared.Light.EntitySystems; using Content.Shared.Storage; using Robust.Shared.Audio; diff --git a/Content.Server/Light/Components/PoweredLightComponent.cs b/Content.Shared/Light/Components/PoweredLightComponent.cs similarity index 54% rename from Content.Server/Light/Components/PoweredLightComponent.cs rename to Content.Shared/Light/Components/PoweredLightComponent.cs index 1a6f610516..ad9a9d401c 100644 --- a/Content.Server/Light/Components/PoweredLightComponent.cs +++ b/Content.Shared/Light/Components/PoweredLightComponent.cs @@ -1,80 +1,87 @@ -using Content.Server.Light.EntitySystems; -using Content.Shared.Damage; using Content.Shared.DeviceLinking; -using Content.Shared.Light.Components; +using Content.Shared.Light.EntitySystems; using Robust.Shared.Audio; using Robust.Shared.Containers; +using Robust.Shared.GameStates; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -namespace Content.Server.Light.Components +namespace Content.Shared.Light.Components { /// /// Component that represents a wall light. It has a light bulb that can be replaced when broken. /// - [RegisterComponent, Access(typeof(PoweredLightSystem))] + [RegisterComponent, NetworkedComponent, AutoGenerateComponentState, AutoGenerateComponentPause, Access(typeof(SharedPoweredLightSystem))] public sealed partial class PoweredLightComponent : Component { - [DataField("burnHandSound")] + /* + * Stop adding more fields, use components or I will shed you. + */ + + [DataField] public SoundSpecifier BurnHandSound = new SoundPathSpecifier("/Audio/Effects/lightburn.ogg"); - [DataField("turnOnSound")] + [DataField] public SoundSpecifier TurnOnSound = new SoundPathSpecifier("/Audio/Machines/light_tube_on.ogg"); - [DataField("hasLampOnSpawn", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string? HasLampOnSpawn = null; + // Should be using containerfill? + [DataField] + public EntProtoId? HasLampOnSpawn = null; [DataField("bulb")] public LightBulbType BulbType; - [DataField("on")] + [DataField, AutoNetworkedField] public bool On = true; - [DataField("ignoreGhostsBoo")] + [DataField] public bool IgnoreGhostsBoo; - [DataField("ghostBlinkingTime")] + [DataField] public TimeSpan GhostBlinkingTime = TimeSpan.FromSeconds(10); - [DataField("ghostBlinkingCooldown")] + [DataField] public TimeSpan GhostBlinkingCooldown = TimeSpan.FromSeconds(60); [ViewVariables] public ContainerSlot LightBulbContainer = default!; - [ViewVariables] + + [AutoNetworkedField] public bool CurrentLit; - [ViewVariables] + + [DataField, AutoNetworkedField] public bool IsBlinking; - [ViewVariables] + + [DataField, AutoNetworkedField, AutoPausedField] public TimeSpan LastThunk; - [ViewVariables] + + [DataField, AutoPausedField] public TimeSpan? LastGhostBlink; - [DataField("onPort", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string OnPort = "On"; + [DataField] + public ProtoId OnPort = "On"; - [DataField("offPort", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string OffPort = "Off"; + [DataField] + public ProtoId OffPort = "Off"; - [DataField("togglePort", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string TogglePort = "Toggle"; + [DataField] + public ProtoId TogglePort = "Toggle"; /// /// How long it takes to eject a bulb from this /// - [DataField("ejectBulbDelay")] + [DataField] public float EjectBulbDelay = 2; /// /// Shock damage done to a mob that hits the light with an unarmed attack /// - [DataField("unarmedHitShock")] + [DataField] public int UnarmedHitShock = 20; /// /// Stun duration applied to a mob that hits the light with an unarmed attack /// - [DataField("unarmedHitStun")] + [DataField] public TimeSpan UnarmedHitStun = TimeSpan.FromSeconds(5); } } diff --git a/Content.Shared/Light/EntitySystems/SharedLightBulbSystem.cs b/Content.Shared/Light/EntitySystems/SharedLightBulbSystem.cs new file mode 100644 index 0000000000..b2e9720984 --- /dev/null +++ b/Content.Shared/Light/EntitySystems/SharedLightBulbSystem.cs @@ -0,0 +1,83 @@ +using Content.Shared.Destructible; +using Content.Shared.Light.Components; +using Content.Shared.Throwing; +using Robust.Shared.Audio.Systems; + +namespace Content.Shared.Light.EntitySystems; + +public abstract class SharedLightBulbSystem : EntitySystem +{ + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(HandleLand); + SubscribeLocalEvent(OnBreak); + } + + private void OnInit(EntityUid uid, LightBulbComponent bulb, ComponentInit args) + { + // update default state of bulbs + UpdateAppearance(uid, bulb); + } + + private void HandleLand(EntityUid uid, LightBulbComponent bulb, ref LandEvent args) + { + PlayBreakSound(uid, bulb); + SetState(uid, LightBulbState.Broken, bulb); + } + + private void OnBreak(EntityUid uid, LightBulbComponent component, BreakageEventArgs args) + { + SetState(uid, LightBulbState.Broken, component); + } + + /// + /// Set a new color for a light bulb and raise event about change + /// + public void SetColor(EntityUid uid, Color color, LightBulbComponent? bulb = null) + { + if (!Resolve(uid, ref bulb) || bulb.Color.Equals(color)) + return; + + bulb.Color = color; + Dirty(uid, bulb); + UpdateAppearance(uid, bulb); + } + + /// + /// Set a new state for a light bulb (broken, burned) and raise event about change + /// + public void SetState(EntityUid uid, LightBulbState state, LightBulbComponent? bulb = null) + { + if (!Resolve(uid, ref bulb) || bulb.State == state) + return; + + bulb.State = state; + Dirty(uid, bulb); + UpdateAppearance(uid, bulb); + } + + public void PlayBreakSound(EntityUid uid, LightBulbComponent? bulb = null, EntityUid? user = null) + { + if (!Resolve(uid, ref bulb)) + return; + + _audio.PlayPredicted(bulb.BreakSound, uid, user: user); + } + + private void UpdateAppearance(EntityUid uid, LightBulbComponent? bulb = null, + AppearanceComponent? appearance = null) + { + if (!Resolve(uid, ref bulb, ref appearance, logMissing: false)) + return; + + // try to update appearance and color + _appearance.SetData(uid, LightBulbVisuals.State, bulb.State, appearance); + _appearance.SetData(uid, LightBulbVisuals.Color, bulb.Color, appearance); + } +} diff --git a/Content.Shared/Light/EntitySystems/SharedPoweredLightSystem.cs b/Content.Shared/Light/EntitySystems/SharedPoweredLightSystem.cs new file mode 100644 index 0000000000..65097f0d06 --- /dev/null +++ b/Content.Shared/Light/EntitySystems/SharedPoweredLightSystem.cs @@ -0,0 +1,425 @@ +using Content.Shared.Audio; +using Content.Shared.Damage; +using Content.Shared.Damage.Components; +using Content.Shared.Damage.Systems; +using Content.Shared.DeviceLinking; +using Content.Shared.DeviceLinking.Events; +using Content.Shared.DeviceNetwork; +using Content.Shared.DeviceNetwork.Events; +using Content.Shared.DoAfter; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Interaction; +using Content.Shared.Light.Components; +using Content.Shared.Power; +using Content.Shared.Power.Components; +using Content.Shared.Power.EntitySystems; +using Content.Shared.Storage.EntitySystems; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Containers; +using Robust.Shared.Timing; + +namespace Content.Shared.Light.EntitySystems; + +public abstract class SharedPoweredLightSystem : EntitySystem +{ + [Dependency] protected readonly IGameTiming GameTiming = default!; + [Dependency] private readonly DamageOnInteractSystem _damageOnInteractSystem = default!; + [Dependency] private readonly SharedAmbientSoundSystem _ambientSystem = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] protected readonly SharedContainerSystem ContainerSystem = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; + [Dependency] private readonly SharedLightBulbSystem _bulbSystem = default!; + [Dependency] private readonly SharedHandsSystem _handsSystem = default!; + [Dependency] private readonly SharedPowerReceiverSystem _receiver = default!; + [Dependency] private readonly SharedPointLightSystem _pointLight = default!; + [Dependency] private readonly SharedStorageSystem _storage = default!; + [Dependency] private readonly SharedDeviceLinkSystem _deviceLink = default!; + + private static readonly TimeSpan ThunkDelay = TimeSpan.FromSeconds(2); + public const string LightBulbContainer = "light_bulb"; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnRemoved); + SubscribeLocalEvent(OnInserted); + SubscribeLocalEvent(OnInteractUsing); + SubscribeLocalEvent(OnInteractHand); + SubscribeLocalEvent(OnSignalReceived); + SubscribeLocalEvent(OnPacketReceived); + SubscribeLocalEvent(OnPowerChanged); + SubscribeLocalEvent(OnDoAfter); + SubscribeLocalEvent(HandleLightDamaged); + } + + private void OnInit(EntityUid uid, PoweredLightComponent light, ComponentInit args) + { + light.LightBulbContainer = ContainerSystem.EnsureContainer(uid, LightBulbContainer); + _deviceLink.EnsureSinkPorts(uid, light.OnPort, light.OffPort, light.TogglePort); + } + + private void OnRemoved(Entity light, ref EntRemovedFromContainerMessage args) + { + if (args.Container.ID != LightBulbContainer) + return; + + UpdateLight(light, light); + } + + private void OnInserted(Entity light, ref EntInsertedIntoContainerMessage args) + { + if (args.Container.ID != LightBulbContainer) + return; + + UpdateLight(light, light); + } + + private void OnInteractUsing(EntityUid uid, PoweredLightComponent component, InteractUsingEvent args) + { + if (args.Handled) + return; + + args.Handled = InsertBulb(uid, args.Used, component, user: args.User, playAnimation: true); + } + + private void OnInteractHand(EntityUid uid, PoweredLightComponent light, InteractHandEvent args) + { + if (args.Handled) + return; + + // check if light has bulb to eject + var bulbUid = GetBulb(uid, light); + if (bulbUid == null) + return; + + var userUid = args.User; + //removing a broken/burned bulb, so allow instant removal + if (TryComp(bulbUid.Value, out var bulb) && bulb.State != LightBulbState.Normal) + { + args.Handled = EjectBulb(uid, userUid, light) != null; + return; + } + + // removing a working bulb, so require a delay + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, userUid, light.EjectBulbDelay, new PoweredLightDoAfterEvent(), uid, target: uid) + { + BreakOnMove = true, + BreakOnDamage = true, + }); + + args.Handled = true; + } + + private void OnSignalReceived(Entity ent, ref SignalReceivedEvent args) + { + if (args.Port == ent.Comp.OffPort) + SetState(ent, false, ent.Comp); + else if (args.Port == ent.Comp.OnPort) + SetState(ent, true, ent.Comp); + else if (args.Port == ent.Comp.TogglePort) + ToggleLight(ent, ent.Comp); + } + + /// + /// Turns the light on or of when receiving a command. + /// The light is turned on or of according to the value + /// + private void OnPacketReceived(EntityUid uid, PoweredLightComponent component, DeviceNetworkPacketEvent args) + { + if (!args.Data.TryGetValue(DeviceNetworkConstants.Command, out string? command) || command != DeviceNetworkConstants.CmdSetState) return; + if (!args.Data.TryGetValue(DeviceNetworkConstants.StateEnabled, out bool enabled)) return; + + SetState(uid, enabled, component); + } + + /// + /// Inserts the bulb if possible. + /// + /// True if it could insert it, false if it couldn't. + public bool InsertBulb(EntityUid uid, EntityUid bulbUid, PoweredLightComponent? light = null, EntityUid? user = null, bool playAnimation = false) + { + if (!Resolve(uid, ref light)) + return false; + + // check if light already has bulb + if (GetBulb(uid, light) != null) + return false; + + // check if bulb fits + if (!TryComp(bulbUid, out var lightBulb)) + return false; + + if (lightBulb.Type != light.BulbType) + return false; + + // try to insert bulb in container + if (!ContainerSystem.Insert(bulbUid, light.LightBulbContainer)) + return false; + + if (playAnimation && TryComp(user, out TransformComponent? xform)) + { + var itemXform = Transform(uid); + _storage.PlayPickupAnimation(bulbUid, xform.Coordinates, itemXform.Coordinates, itemXform.LocalRotation, user: user); + } + + return true; + } + + /// + /// Ejects the bulb to a mob's hand if possible. + /// + /// Bulb uid if it was successfully ejected, null otherwise + public EntityUid? EjectBulb(EntityUid uid, EntityUid? userUid = null, PoweredLightComponent? light = null) + { + if (!Resolve(uid, ref light)) + return null; + + // check if light has bulb + if (GetBulb(uid, light) is not { Valid: true } bulb) + return null; + + // try to remove bulb from container + if (!ContainerSystem.Remove(bulb, light.LightBulbContainer)) + return null; + + // try to place bulb in hands + _handsSystem.PickupOrDrop(userUid, bulb); + + return bulb; + } + + /// + /// Replaces the spawned prototype of a pre-mapinit powered light with a different variant. + /// + public bool ReplaceSpawnedPrototype(Entity light, string bulb) + { + if (light.Comp.LightBulbContainer.ContainedEntity != null) + return false; + + if (LifeStage(light.Owner) >= EntityLifeStage.MapInitialized) + return false; + + light.Comp.HasLampOnSpawn = bulb; + return true; + } + + /// + /// Try to replace current bulb with a new one + /// If succeed old bulb just drops on floor + /// + public bool ReplaceBulb(EntityUid uid, EntityUid bulb, PoweredLightComponent? light = null) + { + EjectBulb(uid, null, light); + return InsertBulb(uid, bulb, light); + } + + /// + /// Try to get light bulb inserted in powered light + /// + /// Bulb uid if it exist, null otherwise + public EntityUid? GetBulb(EntityUid uid, PoweredLightComponent? light = null) + { + if (!Resolve(uid, ref light)) + return null; + + return light.LightBulbContainer?.ContainedEntity; + } + + /// + /// Try to break bulb inside light fixture + /// + public bool TryDestroyBulb(EntityUid uid, PoweredLightComponent? light = null) + { + if (!Resolve(uid, ref light, false)) + return false; + + // if we aren't mapinited, + // just null the spawned bulb + if (LifeStage(uid) < EntityLifeStage.MapInitialized) + { + light.HasLampOnSpawn = null; + return true; + } + + // check bulb state + var bulbUid = GetBulb(uid, light); + if (bulbUid == null || !EntityManager.TryGetComponent(bulbUid.Value, out LightBulbComponent? lightBulb)) + return false; + if (lightBulb.State == LightBulbState.Broken) + return false; + + // break it + _bulbSystem.SetState(bulbUid.Value, LightBulbState.Broken, lightBulb); + _bulbSystem.PlayBreakSound(bulbUid.Value, lightBulb); + UpdateLight(uid, light); + return true; + } + + protected void UpdateLight(EntityUid uid, + PoweredLightComponent? light = null, + SharedApcPowerReceiverComponent? powerReceiver = null, + AppearanceComponent? appearance = null, + EntityUid? user = null) + { + // We don't do anything during state application on the client as if + // it's due to an entity spawn, we'd have to wait for component init to + // be able to do anything, despite the server having already sent us the + // state that we need. On the other hand, we still want this to run in + // prediction so we can, well, predict lights turning on. + if (GameTiming.ApplyingState) + return; + + if (!Resolve(uid, ref light, false)) + return; + + if (!_receiver.ResolveApc(uid, ref powerReceiver)) + return; + + // Optional component. + Resolve(uid, ref appearance, false); + + // check if light has bulb + var bulbUid = GetBulb(uid, light); + if (bulbUid == null || !TryComp(bulbUid.Value, out var lightBulb)) + { + SetLight(uid, false, light: light); + powerReceiver.Load = 0; + _appearance.SetData(uid, PoweredLightVisuals.BulbState, PoweredLightState.Empty, appearance); + return; + } + + switch (lightBulb.State) + { + case LightBulbState.Normal: + if (powerReceiver.Powered && light.On) + { + SetLight(uid, true, lightBulb.Color, light, lightBulb.LightRadius, lightBulb.LightEnergy, lightBulb.LightSoftness); + _appearance.SetData(uid, PoweredLightVisuals.BulbState, PoweredLightState.On, appearance); + var time = GameTiming.CurTime; + if (time > light.LastThunk + ThunkDelay) + { + light.LastThunk = time; + Dirty(uid, light); + _audio.PlayPredicted(light.TurnOnSound, uid, user: user, light.TurnOnSound.Params.AddVolume(-10f)); + } + } + else + { + SetLight(uid, false, light: light); + _appearance.SetData(uid, PoweredLightVisuals.BulbState, PoweredLightState.Off, appearance); + } + break; + case LightBulbState.Broken: + SetLight(uid, false, light: light); + _appearance.SetData(uid, PoweredLightVisuals.BulbState, PoweredLightState.Broken, appearance); + break; + case LightBulbState.Burned: + SetLight(uid, false, light: light); + _appearance.SetData(uid, PoweredLightVisuals.BulbState, PoweredLightState.Burned, appearance); + break; + } + + powerReceiver.Load = (light.On && lightBulb.State == LightBulbState.Normal) ? lightBulb.PowerUse : 0; + } + + /// + /// Destroy the light bulb if the light took any damage. + /// + public void HandleLightDamaged(EntityUid uid, PoweredLightComponent component, DamageChangedEvent args) + { + // Was it being repaired, or did it take damage? + if (args.DamageIncreased) + { + // Eventually, this logic should all be done by this (or some other) system, not a component. + TryDestroyBulb(uid, component); + } + } + + private void OnPowerChanged(EntityUid uid, PoweredLightComponent component, ref PowerChangedEvent args) + { + // TODO: Power moment + var metadata = MetaData(uid); + + if (metadata.EntityPaused || TerminatingOrDeleted(uid, metadata)) + return; + + UpdateLight(uid, component); + } + + public void ToggleBlinkingLight(EntityUid uid, PoweredLightComponent light, bool isNowBlinking) + { + if (light.IsBlinking == isNowBlinking) + return; + + light.IsBlinking = isNowBlinking; + Dirty(uid, light); + + if (!TryComp(uid, out var appearance)) + return; + + _appearance.SetData(uid, PoweredLightVisuals.Blinking, isNowBlinking, appearance); + } + + private void SetLight(EntityUid uid, bool value, Color? color = null, PoweredLightComponent? light = null, float? radius = null, float? energy = null, float? softness = null) + { + if (!Resolve(uid, ref light)) + return; + + if (light.CurrentLit != value) + { + light.CurrentLit = value; + Dirty(uid, light); + } + + _ambientSystem.SetAmbience(uid, value); + + if (_pointLight.TryGetLight(uid, out var pointLight)) + { + _pointLight.SetEnabled(uid, value, pointLight); + + if (color != null) + _pointLight.SetColor(uid, color.Value, pointLight); + if (radius != null) + _pointLight.SetRadius(uid, (float)radius, pointLight); + if (energy != null) + _pointLight.SetEnergy(uid, (float)energy, pointLight); + if (softness != null) + _pointLight.SetSoftness(uid, (float)softness, pointLight); + } + + // light bulbs burn your hands! + if (TryComp(uid, out var damageOnInteractComp)) + _damageOnInteractSystem.SetIsDamageActiveTo((uid, damageOnInteractComp), value); + } + + public void ToggleLight(EntityUid uid, PoweredLightComponent? light = null) + { + if (!Resolve(uid, ref light)) + return; + + light.On = !light.On; + UpdateLight(uid, light); + } + + public void SetState(EntityUid uid, bool state, PoweredLightComponent? light = null) + { + if (!Resolve(uid, ref light)) + return; + + light.On = state; + Dirty(uid, light); + UpdateLight(uid, light); + } + + private void OnDoAfter(EntityUid uid, PoweredLightComponent component, DoAfterEvent args) + { + if (args.Handled || args.Cancelled || args.Args.Target == null) + return; + + EjectBulb(args.Args.Target.Value, args.Args.User, component); + + args.Handled = true; + } +} diff --git a/Content.Shared/Lock/ItemToggleRequiresLockComponent.cs b/Content.Shared/Lock/ItemToggleRequiresLockComponent.cs index 94b8729476..1f257a90c8 100644 --- a/Content.Shared/Lock/ItemToggleRequiresLockComponent.cs +++ b/Content.Shared/Lock/ItemToggleRequiresLockComponent.cs @@ -5,13 +5,19 @@ namespace Content.Shared.Lock; /// /// This is used for toggleable items that require the entity to have a lock in a certain state. /// -[RegisterComponent, NetworkedComponent, Access(typeof(LockSystem))] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, Access(typeof(LockSystem))] public sealed partial class ItemToggleRequiresLockComponent : Component { /// /// TRUE: the lock must be locked to toggle the item. /// FALSE: the lock must be unlocked to toggle the item. /// - [DataField] + [DataField, AutoNetworkedField] public bool RequireLocked; + + /// + /// Popup text for when someone tries to toggle the item, but it's locked. If null, no popup will be shown. + /// + [DataField] + public LocId? LockedPopup = "lock-comp-generic-fail"; } diff --git a/Content.Shared/Lock/LockComponent.cs b/Content.Shared/Lock/LockComponent.cs index 0fdee2477f..1e5f0fdd50 100644 --- a/Content.Shared/Lock/LockComponent.cs +++ b/Content.Shared/Lock/LockComponent.cs @@ -21,6 +21,18 @@ public sealed partial class LockComponent : Component [AutoNetworkedField] public bool Locked = true; + /// + /// If true, will show verbs to lock and unlock the item. Otherwise, it will not. + /// + [DataField, AutoNetworkedField] + public bool ShowLockVerbs = true; + + /// + /// If true will show examine text. + /// + [DataField, AutoNetworkedField] + public bool ShowExamine = true; + /// /// Whether or not the lock is locked by simply clicking. /// @@ -44,7 +56,7 @@ public sealed partial class LockComponent : Component /// The sound played when unlocked. /// [DataField("unlockingSound"), ViewVariables(VVAccess.ReadWrite)] - public SoundSpecifier UnlockSound = new SoundPathSpecifier("/Audio/Machines/door_lock_off.ogg") + public SoundSpecifier? UnlockSound = new SoundPathSpecifier("/Audio/Machines/door_lock_off.ogg") { Params = AudioParams.Default.WithVolume(-5f), }; @@ -53,7 +65,7 @@ public sealed partial class LockComponent : Component /// The sound played when locked. /// [DataField("lockingSound"), ViewVariables(VVAccess.ReadWrite)] - public SoundSpecifier LockSound = new SoundPathSpecifier("/Audio/Machines/door_lock_on.ogg") + public SoundSpecifier? LockSound = new SoundPathSpecifier("/Audio/Machines/door_lock_on.ogg") { Params = AudioParams.Default.WithVolume(-5f) }; diff --git a/Content.Shared/Lock/LockSystem.cs b/Content.Shared/Lock/LockSystem.cs index 397a3636bb..2abb45d878 100644 --- a/Content.Shared/Lock/LockSystem.cs +++ b/Content.Shared/Lock/LockSystem.cs @@ -28,12 +28,12 @@ public sealed class LockSystem : EntitySystem { [Dependency] private readonly AccessReaderSystem _accessReader = default!; [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; - [Dependency] private readonly ActivatableUISystem _activatableUI = default!; [Dependency] private readonly EmagSystem _emag = default!; [Dependency] private readonly SharedAppearanceSystem _appearanceSystem = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedPopupSystem _sharedPopupSystem = default!; [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; + [Dependency] private readonly SharedUserInterfaceSystem _ui = default!; /// public override void Initialize() @@ -48,14 +48,15 @@ public sealed class LockSystem : EntitySystem SubscribeLocalEvent(OnEmagged); SubscribeLocalEvent(OnDoAfterLock); SubscribeLocalEvent(OnDoAfterUnlock); - SubscribeLocalEvent(OnStorageInteractAttempt); + SubscribeLocalEvent(OnLockToggleAttempt); SubscribeLocalEvent(OnAttemptChangePanel); SubscribeLocalEvent(OnUnanchorAttempt); + SubscribeLocalEvent(OnStorageInteractAttempt); - SubscribeLocalEvent(OnUIOpenAttempt); - SubscribeLocalEvent(LockToggled); + SubscribeLocalEvent(OnUIOpenAttempt); + SubscribeLocalEvent(LockToggled); SubscribeLocalEvent(OnActivateAttempt); } @@ -96,6 +97,9 @@ public sealed class LockSystem : EntitySystem private void OnExamined(EntityUid uid, LockComponent lockComp, ExaminedEvent args) { + if (!lockComp.ShowExamine) + return; + args.PushText(Loc.GetString(lockComp.Locked ? "lock-comp-on-examined-is-locked" : "lock-comp-on-examined-is-unlocked", @@ -239,6 +243,20 @@ public sealed class LockSystem : EntitySystem return true; } + /// + /// Toggle the lock to locked if unlocked, and unlocked if locked. + /// + /// Entity to toggle the lock state of. + /// The person trying to toggle the lock + /// Entities lock comp (will be resolved) + public void ToggleLock(EntityUid uid, EntityUid? user, LockComponent? lockComp = null) + { + if (IsLocked((uid, lockComp))) + Unlock(uid, user, lockComp); + else + Lock(uid, user, lockComp); + } + /// /// Returns true if the entity is locked. /// Entities with no lock component are considered unlocked. @@ -287,11 +305,12 @@ public sealed class LockSystem : EntitySystem private void AddToggleLockVerb(EntityUid uid, LockComponent component, GetVerbsEvent args) { - if (!args.CanAccess || !args.CanInteract || !args.CanComplexInteract) + if (!args.CanAccess || !args.CanInteract || !args.CanComplexInteract || !component.ShowLockVerbs) return; AlternativeVerb verb = new() { + Disabled = !CanToggleLock(uid, args.User), Act = component.Locked ? () => TryUnlock(uid, args.User, component) : () => TryLock(uid, args.User, component), @@ -340,9 +359,9 @@ public sealed class LockSystem : EntitySystem TryUnlock(uid, args.User, skipDoAfter: true); } - private void OnStorageInteractAttempt(Entity ent, ref StorageInteractAttemptEvent args) + private void OnStorageInteractAttempt(Entity ent, ref StorageInteractAttemptEvent args) { - if (ent.Comp.Locked) + if (IsLocked(ent.Owner)) args.Cancelled = true; } @@ -394,41 +413,54 @@ public sealed class LockSystem : EntitySystem args.Cancel(); } - private void OnUIOpenAttempt(EntityUid uid, ActivatableUIRequiresLockComponent component, ActivatableUIOpenAttemptEvent args) + private void OnUIOpenAttempt(EntityUid uid, UIRequiresLockComponent component, ActivatableUIOpenAttemptEvent args) { if (args.Cancelled) return; - if (TryComp(uid, out var lockComp) && lockComp.Locked != component.RequireLocked) - { - args.Cancel(); - if (lockComp.Locked) - { - _sharedPopupSystem.PopupClient(Loc.GetString("entity-storage-component-locked-message"), uid, args.User); - } + if (!TryComp(uid, out var lockComp) || lockComp.Locked == component.RequireLocked) + return; - _audio.PlayPredicted(component.AccessDeniedSound, uid, args.User); + args.Cancel(); + if (lockComp.Locked && component.Popup != null) + { + _sharedPopupSystem.PopupClient(Loc.GetString(component.Popup), uid, args.User); } + + _audio.PlayPredicted(component.AccessDeniedSound, uid, args.User); } - private void LockToggled(EntityUid uid, ActivatableUIRequiresLockComponent component, LockToggledEvent args) + private void LockToggled(EntityUid uid, UIRequiresLockComponent component, LockToggledEvent args) { if (!TryComp(uid, out var lockComp) || lockComp.Locked == component.RequireLocked) return; - _activatableUI.CloseAll(uid); + if (component.UserInterfaceKeys == null) + { + _ui.CloseUis(uid); + return; + } + + foreach (var key in component.UserInterfaceKeys) + { + _ui.CloseUi(uid, key); + } } + private void OnActivateAttempt(EntityUid uid, ItemToggleRequiresLockComponent component, ref ItemToggleActivateAttemptEvent args) { if (args.Cancelled) return; - if (TryComp(uid, out var lockComp) && lockComp.Locked != component.RequireLocked) + if (!TryComp(uid, out var lockComp) || lockComp.Locked == component.RequireLocked) + return; + + args.Cancelled = true; + + if (lockComp.Locked && component.LockedPopup != null) { - args.Cancelled = true; - if (lockComp.Locked) - _sharedPopupSystem.PopupClient(Loc.GetString("lock-comp-generic-fail", - ("target", Identity.Entity(uid, EntityManager))), + _sharedPopupSystem.PopupClient(Loc.GetString(component.LockedPopup, + ("target", Identity.Entity(uid, EntityManager))), uid, args.User); } diff --git a/Content.Shared/Lock/LockedStorageComponent.cs b/Content.Shared/Lock/LockedStorageComponent.cs new file mode 100644 index 0000000000..25d6dba381 --- /dev/null +++ b/Content.Shared/Lock/LockedStorageComponent.cs @@ -0,0 +1,10 @@ +using Content.Shared.Storage; +using Robust.Shared.GameStates; + +namespace Content.Shared.Lock; + +/// +/// Prevents using an entity's if its is locked. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class LockedStorageComponent : Component; diff --git a/Content.Shared/Lock/ActivatableUIRequiresLockComponent.cs b/Content.Shared/Lock/UIRequiresLockComponent.cs similarity index 67% rename from Content.Shared/Lock/ActivatableUIRequiresLockComponent.cs rename to Content.Shared/Lock/UIRequiresLockComponent.cs index a2a9d8c556..ab10526103 100644 --- a/Content.Shared/Lock/ActivatableUIRequiresLockComponent.cs +++ b/Content.Shared/Lock/UIRequiresLockComponent.cs @@ -7,8 +7,15 @@ namespace Content.Shared.Lock; /// This is used for activatable UIs that require the entity to have a lock in a certain state. /// [RegisterComponent, NetworkedComponent, Access(typeof(LockSystem))] -public sealed partial class ActivatableUIRequiresLockComponent : Component +public sealed partial class UIRequiresLockComponent : Component { + /// + /// UIs that are locked behind this component. + /// If null, will close all UIs. + /// + [DataField] + public List? UserInterfaceKeys; + /// /// TRUE: the lock must be locked to access the UI. /// FALSE: the lock must be unlocked to access the UI. @@ -21,4 +28,7 @@ public sealed partial class ActivatableUIRequiresLockComponent : Component /// [DataField] public SoundSpecifier? AccessDeniedSound = new SoundPathSpecifier("/Audio/Machines/custom_deny.ogg"); + + [DataField] + public LocId? Popup = "entity-storage-component-locked-message"; } diff --git a/Content.Shared/Magic/SpellbookSystem.cs b/Content.Shared/Magic/SpellbookSystem.cs index ca01819bce..90038fa9ba 100644 --- a/Content.Shared/Magic/SpellbookSystem.cs +++ b/Content.Shared/Magic/SpellbookSystem.cs @@ -1,5 +1,6 @@ using Content.Shared.Actions; -using Content.Shared.Actions.Components; +using Content.Shared.Actions.Components; +using Content.Shared.Charges.Components; using Content.Shared.Charges.Systems; using Content.Shared.DoAfter; using Content.Shared.Interaction.Events; @@ -29,14 +30,19 @@ public sealed class SpellbookSystem : EntitySystem { foreach (var (id, charges) in ent.Comp.SpellActions) { - var spell = _actionContainer.AddAction(ent, id); - if (spell == null) + var action = _actionContainer.AddAction(ent, id); + if (action is not { } spell) continue; // Null means infinite charges. if (charges is { } count) - _sharedCharges.SetCharges(spell.Value, count); - ent.Comp.Spells.Add(spell.Value); + { + EnsureComp(spell, out var chargeComp); + _sharedCharges.SetMaxCharges((spell, chargeComp), count); + _sharedCharges.SetCharges((spell, chargeComp), count); + } + + ent.Comp.Spells.Add(spell); } } @@ -75,9 +81,13 @@ public sealed class SpellbookSystem : EntitySystem foreach (var (id, charges) in ent.Comp.SpellActions) { EntityUid? actionId = null; - if (_actions.AddAction(args.Args.User, ref actionId, id) - && charges is { } count) // Null means infinite charges - _sharedCharges.SetCharges(actionId.Value, count); + if (!_actions.AddAction(args.Args.User, ref actionId, id) + || charges is not { } count // Null means infinite charges + || !TryComp(actionId, out var chargeComp)) + continue; + + _sharedCharges.SetMaxCharges((actionId.Value, chargeComp), count); + _sharedCharges.SetCharges((actionId.Value, chargeComp), count); } } diff --git a/Content.Shared/Materials/MaterialReclaimerComponent.cs b/Content.Shared/Materials/MaterialReclaimerComponent.cs index f48a1cb478..ff0adf8753 100644 --- a/Content.Shared/Materials/MaterialReclaimerComponent.cs +++ b/Content.Shared/Materials/MaterialReclaimerComponent.cs @@ -69,6 +69,20 @@ public sealed partial class MaterialReclaimerComponent : Component [DataField] public string? SolutionContainerId; + /// + /// Can this reclaimer reclaim materials? + /// They will be spawned as material stacks. + /// + [DataField] + public bool ReclaimMaterials = true; + + /// + /// Can this reclaimer reclaim solutions? + /// The reclaimed reagents will be stored in a buffer or spilled on the ground if that is full. + /// + [DataField] + public bool ReclaimSolutions = true; + /// /// If the reclaimer should attempt to reclaim all solutions or just drainable ones /// Difference between Recycler and Industrial Reagent Grinder diff --git a/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs b/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs index ab0f658af0..c461b588b1 100644 --- a/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs +++ b/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs @@ -14,6 +14,7 @@ using Content.Shared.Mech.Equipment.Components; using Content.Shared.Movement.Components; using Content.Shared.Movement.Systems; using Content.Shared.Popups; +using Content.Shared.Storage.Components; using Content.Shared.Weapons.Melee; using Content.Shared.Whitelist; using Robust.Shared.Containers; @@ -48,6 +49,7 @@ public abstract partial class SharedMechSystem : EntitySystem SubscribeLocalEvent(RelayInteractionEvent); SubscribeLocalEvent(OnStartup); SubscribeLocalEvent(OnDestruction); + SubscribeLocalEvent(OnEntityStorageDump); SubscribeLocalEvent(OnGetAdditionalAccess); SubscribeLocalEvent(OnDragDrop); SubscribeLocalEvent(OnCanDragDrop); @@ -104,6 +106,12 @@ public abstract partial class SharedMechSystem : EntitySystem BreakMech(uid, component); } + private void OnEntityStorageDump(Entity entity, ref EntityStorageIntoContainerAttemptEvent args) + { + // There's no reason we should dump into /any/ of the mech's containers. + args.Cancelled = true; + } + private void OnGetAdditionalAccess(EntityUid uid, MechComponent component, ref GetAdditionalAccessEvent args) { var pilot = component.PilotSlot.ContainedEntity; @@ -147,7 +155,7 @@ public abstract partial class SharedMechSystem : EntitySystem } /// - /// Destroys the mech, removing the user and ejecting all installed equipment. + /// Destroys the mech, removing the user and ejecting anything contained. /// /// /// @@ -237,14 +245,19 @@ public abstract partial class SharedMechSystem : EntitySystem /// /// /// - /// Whether or not the removal can be cancelled + /// + /// Whether or not the removal can be cancelled, and if non-mech equipment should be ejected. + /// public void RemoveEquipment(EntityUid uid, EntityUid toRemove, MechComponent? component = null, MechEquipmentComponent? equipmentComponent = null, bool forced = false) { if (!Resolve(uid, ref component)) return; - if (!Resolve(toRemove, ref equipmentComponent)) + // When forced, we also want to handle the possibility that the "equipment" isn't actually equipment. + // This /shouldn't/ be possible thanks to OnEntityStorageDump, but there's been quite a few regressions + // with entities being hardlock stuck inside mechs. + if (!Resolve(toRemove, ref equipmentComponent) && !forced) return; if (!forced) @@ -261,7 +274,9 @@ public abstract partial class SharedMechSystem : EntitySystem if (component.CurrentSelectedEquipment == toRemove) CycleEquipment(uid, component); - equipmentComponent.EquipmentOwner = null; + if (forced && equipmentComponent != null) + equipmentComponent.EquipmentOwner = null; + _container.Remove(toRemove, component.EquipmentContainer); UpdateUserInterface(uid, component); } diff --git a/Content.Shared/Medical/Healing/HealingComponent.cs b/Content.Shared/Medical/Healing/HealingComponent.cs index 53358fd28d..40fb180700 100644 --- a/Content.Shared/Medical/Healing/HealingComponent.cs +++ b/Content.Shared/Medical/Healing/HealingComponent.cs @@ -43,7 +43,7 @@ public sealed partial class HealingComponent : Component /// How long it takes to apply the damage. /// [DataField, AutoNetworkedField] - public float Delay = 3f; + public TimeSpan Delay = TimeSpan.FromSeconds(3f); /// /// Delay multiplier when healing yourself. diff --git a/Content.Shared/Medical/Healing/HealingSystem.cs b/Content.Shared/Medical/Healing/HealingSystem.cs index 74cb8881f4..b737914dcb 100644 --- a/Content.Shared/Medical/Healing/HealingSystem.cs +++ b/Content.Shared/Medical/Healing/HealingSystem.cs @@ -112,9 +112,17 @@ public sealed class HealingSystem : EntitySystem // Logic to determine the whether or not to repeat the healing action args.Repeat = HasDamage((args.Used.Value, healing), target) && !dontRepeat; - if (!args.Repeat && !dontRepeat) - _popupSystem.PopupClient(Loc.GetString("medical-item-finished-using", ("item", args.Used)), target.Owner, args.User); args.Handled = true; + + if (!args.Repeat) + { + _popupSystem.PopupClient(Loc.GetString("medical-item-finished-using", ("item", args.Used)), target.Owner, args.User); + return; + } + + // Update our self heal delay so it shortens as we heal more damage. + if (args.User == target.Owner) + args.Args.Delay = healing.Delay * GetScaledHealingPenalty(target.Owner, healing.SelfHealPenaltyMultiplier); } private bool HasDamage(Entity healing, Entity target) @@ -203,7 +211,7 @@ public sealed class HealingSystem : EntitySystem var delay = isNotSelf ? healing.Comp.Delay - : healing.Comp.Delay * GetScaledHealingPenalty(healing); + : healing.Comp.Delay * GetScaledHealingPenalty(target, healing.Comp.SelfHealPenaltyMultiplier); var doAfterEventArgs = new DoAfterArgs(EntityManager, user, delay, new HealingDoAfterEvent(), target, target: target, used: healing) @@ -222,21 +230,21 @@ public sealed class HealingSystem : EntitySystem /// /// Scales the self-heal penalty based on the amount of damage taken /// - /// - /// - /// - public float GetScaledHealingPenalty(Entity healing) + /// Entity we're healing + /// Maximum modifier we can have. + /// Modifier we multiply our healing time by + public float GetScaledHealingPenalty(Entity ent, float mod) { - var output = healing.Comp.Delay; - if (!TryComp(healing, out var mobThreshold) || - !TryComp(healing, out var damageable)) - return output; - if (!_mobThresholdSystem.TryGetThresholdForState(healing, MobState.Critical, out var amount, mobThreshold)) + if (!Resolve(ent, ref ent.Comp1, ref ent.Comp2, false)) + return mod; + + if (!_mobThresholdSystem.TryGetThresholdForState(ent, MobState.Critical, out var amount, ent.Comp2)) return 1; - var percentDamage = (float)(damageable.TotalDamage / amount); + var percentDamage = (float)(ent.Comp1.TotalDamage / amount); //basically make it scale from 1 to the multiplier. - var modifier = percentDamage * (healing.Comp.SelfHealPenaltyMultiplier - 1) + 1; - return Math.Max(modifier, 1); + + var output = percentDamage * (mod - 1) + 1; + return Math.Max(output, 1); } } diff --git a/Content.Shared/Medical/SuitSensor/SharedSuitSensor.cs b/Content.Shared/Medical/SuitSensors/SharedSuitSensor.cs similarity index 100% rename from Content.Shared/Medical/SuitSensor/SharedSuitSensor.cs rename to Content.Shared/Medical/SuitSensors/SharedSuitSensor.cs diff --git a/Content.Shared/Medical/SuitSensors/SharedSuitSensorSystem.cs b/Content.Shared/Medical/SuitSensors/SharedSuitSensorSystem.cs new file mode 100644 index 0000000000..2ed1089ba8 --- /dev/null +++ b/Content.Shared/Medical/SuitSensors/SharedSuitSensorSystem.cs @@ -0,0 +1,468 @@ +using System.Numerics; +using Content.Shared.Access.Systems; +using Content.Shared.ActionBlocker; +using Content.Shared.Clothing; +using Content.Shared.Damage; +using Content.Shared.DeviceNetwork; +using Content.Shared.DoAfter; +using Content.Shared.Examine; +using Content.Shared.GameTicking; +using Content.Shared.Interaction; +using Content.Shared.Inventory; +using Content.Shared.Medical.SuitSensor; +using Content.Shared.Mobs; +using Content.Shared.Mobs.Components; +using Content.Shared.Mobs.Systems; +using Content.Shared.Popups; +using Content.Shared.Station; +using Content.Shared.Verbs; +using Robust.Shared.Containers; +using Robust.Shared.Map; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; +using Robust.Shared.Timing; + +namespace Content.Shared.Medical.SuitSensors; + +public abstract class SharedSuitSensorSystem : EntitySystem +{ + [Dependency] private readonly SharedStationSystem _stationSystem = default!; + [Dependency] private readonly MobStateSystem _mobStateSystem = default!; + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly MobThresholdSystem _mobThresholdSystem = default!; + [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; + [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; + [Dependency] private readonly IPrototypeManager _proto = default!; + [Dependency] private readonly InventorySystem _inventory = default!; + [Dependency] private readonly SharedIdCardSystem _idCardSystem = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly IGameTiming _timing = default!; + + private EntityQuery _sensorQuery; + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnPlayerSpawn); + SubscribeLocalEvent(OnEquipped); + SubscribeLocalEvent(OnUnequipped); + SubscribeLocalEvent(OnExamine); + SubscribeLocalEvent>(OnVerb); + SubscribeLocalEvent(OnInsert); + SubscribeLocalEvent(OnRemove); + SubscribeLocalEvent(OnSuitSensorDoAfter); + + _sensorQuery = GetEntityQuery(); + } + + /// + /// Checks whether the sensor is assigned to a station or not + /// and tries to assign an unassigned sensor to a station if it's currently on a grid. + /// + /// True if the sensor is assigned to a station or assigning it was successful. False otherwise. + public bool CheckSensorAssignedStation(Entity sensor) + { + if (!sensor.Comp.StationId.HasValue && Transform(sensor.Owner).GridUid == null) + return false; + + sensor.Comp.StationId = _stationSystem.GetOwningStation(sensor.Owner); + Dirty(sensor); + return sensor.Comp.StationId.HasValue; + } + + private void OnMapInit(Entity ent, ref MapInitEvent args) + { + // Fallback + ent.Comp.StationId ??= _stationSystem.GetOwningStation(ent.Owner); + + // generate random mode + if (ent.Comp.RandomMode) + { + //make the sensor mode favor higher levels, except coords. + var modesDist = new[] + { + SuitSensorMode.SensorOff, + SuitSensorMode.SensorBinary, SuitSensorMode.SensorBinary, + SuitSensorMode.SensorVitals, SuitSensorMode.SensorVitals, SuitSensorMode.SensorVitals, + SuitSensorMode.SensorCords, SuitSensorMode.SensorCords + }; + ent.Comp.Mode = _random.Pick(modesDist); + } + + ent.Comp.NextUpdate = _timing.CurTime; + Dirty(ent); + } + + private void OnPlayerSpawn(PlayerSpawnCompleteEvent ev) + { + // If the player spawns in arrivals then the grid underneath them may not be appropriate. + // in which case we'll just use the station spawn code told us they are attached to and set all of their + // sensors. + RecursiveSensor(ev.Mob, ev.Station); + } + + private void RecursiveSensor(EntityUid uid, EntityUid stationUid) + { + var xform = Transform(uid); + var enumerator = xform.ChildEnumerator; + + while (enumerator.MoveNext(out var child)) + { + if (_sensorQuery.TryComp(child, out var sensor)) + { + sensor.StationId = stationUid; + Dirty(child, sensor); + } + + RecursiveSensor(child, stationUid); + } + } + + private void OnEquipped(Entity ent, ref ClothingGotEquippedEvent args) + { + ent.Comp.User = args.Wearer; + Dirty(ent); + } + + private void OnUnequipped(Entity ent, ref ClothingGotUnequippedEvent args) + { + ent.Comp.User = null; + Dirty(ent); + } + + private void OnExamine(Entity ent, ref ExaminedEvent args) + { + if (!args.IsInDetailsRange) + return; + + string msg; + switch (ent.Comp.Mode) + { + case SuitSensorMode.SensorOff: + msg = "suit-sensor-examine-off"; + break; + case SuitSensorMode.SensorBinary: + msg = "suit-sensor-examine-binary"; + break; + case SuitSensorMode.SensorVitals: + msg = "suit-sensor-examine-vitals"; + break; + case SuitSensorMode.SensorCords: + msg = "suit-sensor-examine-cords"; + break; + default: + return; + } + + args.PushMarkup(Loc.GetString(msg)); + } + + private void OnVerb(Entity ent, ref GetVerbsEvent args) + { + // check if user can change sensor + if (ent.Comp.ControlsLocked) + return; + + // standard interaction checks + if (!args.CanInteract || args.Hands == null) + return; + + if (!_interactionSystem.InRangeUnobstructed(args.User, args.Target)) + return; + + // check if target is incapacitated (cuffed, dead, etc) + if (ent.Comp.User != null && args.User != ent.Comp.User && _actionBlocker.CanInteract(ent.Comp.User.Value, null)) + return; + + args.Verbs.UnionWith(new[] + { + CreateVerb(ent, args.User, SuitSensorMode.SensorOff), + CreateVerb(ent, args.User, SuitSensorMode.SensorBinary), + CreateVerb(ent, args.User, SuitSensorMode.SensorVitals), + CreateVerb(ent, args.User, SuitSensorMode.SensorCords) + }); + } + + private void OnInsert(Entity ent, ref EntGotInsertedIntoContainerMessage args) + { + if (args.Container.ID != ent.Comp.ActivationContainer) + return; + + ent.Comp.User = args.Container.Owner; + Dirty(ent); + } + + private void OnRemove(Entity ent, ref EntGotRemovedFromContainerMessage args) + { + if (args.Container.ID != ent.Comp.ActivationContainer) + return; + + ent.Comp.User = null; + Dirty(ent); + } + + private Verb CreateVerb(Entity ent, EntityUid userUid, SuitSensorMode mode) + { + return new Verb() + { + Text = GetModeName(mode), + Disabled = ent.Comp.Mode == mode, + Priority = -(int)mode, // sort them in descending order + Category = VerbCategory.SetSensor, + Act = () => TrySetSensor(ent.AsNullable(), mode, userUid) + }; + } + + public string GetModeName(SuitSensorMode mode) + { + string name; + switch (mode) + { + case SuitSensorMode.SensorOff: + name = "suit-sensor-mode-off"; + break; + case SuitSensorMode.SensorBinary: + name = "suit-sensor-mode-binary"; + break; + case SuitSensorMode.SensorVitals: + name = "suit-sensor-mode-vitals"; + break; + case SuitSensorMode.SensorCords: + name = "suit-sensor-mode-cords"; + break; + default: + return ""; + } + + return Loc.GetString(name); + } + + /// + /// Attempts to set mode of the entity to the selected in params. + /// Works instantly if the user is the player wearing the sensors and will start a DoAfter otherwise. + /// + /// Entity and its component that should be changed. + /// Selected mode + /// userUid, when not equal to the , creates doafter + public bool TrySetSensor(Entity sensors, SuitSensorMode mode, EntityUid userUid) + { + if (!Resolve(sensors, ref sensors.Comp, false)) + return false; + + if (sensors.Comp.User == null || userUid == sensors.Comp.User) + SetSensor(sensors, mode, userUid); + else + { + var doAfterEvent = new SuitSensorChangeDoAfterEvent(mode); + var doAfterArgs = new DoAfterArgs(EntityManager, userUid, sensors.Comp.SensorsTime, doAfterEvent, sensors) + { + BreakOnMove = true, + BreakOnDamage = true + }; + + _doAfterSystem.TryStartDoAfter(doAfterArgs); + } + return true; + } + + private void OnSuitSensorDoAfter(Entity sensors, ref SuitSensorChangeDoAfterEvent args) + { + if (args.Handled || args.Cancelled) + return; + + SetSensor(sensors.AsNullable(), args.Mode, args.User); + } + + /// + /// Sets mode of the of the chosen entity. + /// Makes popup when not null + /// + /// Entity and it's component that should be changed + /// Selected mode + /// uid, required for the popup + public void SetSensor(Entity sensors, SuitSensorMode mode, EntityUid? userUid = null) + { + if (!Resolve(sensors, ref sensors.Comp, false)) + return; + + sensors.Comp.Mode = mode; + Dirty(sensors); + + if (userUid != null) + { + var msg = Loc.GetString("suit-sensor-mode-state", ("mode", GetModeName(mode))); + _popupSystem.PopupClient(msg, sensors, userUid.Value); + } + } + + /// + /// Set all suit sensors on the equipment someone is wearing to the specified mode. + /// + public void SetAllSensors(EntityUid target, SuitSensorMode mode, SlotFlags slots = SlotFlags.All) + { + // iterate over all inventory slots + var slotEnumerator = _inventory.GetSlotEnumerator(target, slots); + while (slotEnumerator.NextItem(out var item, out _)) + { + if (TryComp(item, out var sensorComp)) + SetSensor((item, sensorComp), mode); + } + } + + /// + /// Attempts to get full from the + /// + /// Entity to get status + /// Full of the chosen uid + public SuitSensorStatus? GetSensorState(Entity ent) + { + if (!Resolve(ent, ref ent.Comp1, ref ent.Comp2, false)) + return null; + + var sensor = ent.Comp1; + var transform = ent.Comp2; + + // check if sensor is enabled and worn by user + if (sensor.Mode == SuitSensorMode.SensorOff || sensor.User == null || !HasComp(sensor.User) || transform.GridUid == null) + return null; + + // try to get mobs id from ID slot + var userName = Loc.GetString("suit-sensor-component-unknown-name"); + var userJob = Loc.GetString("suit-sensor-component-unknown-job"); + var userJobIcon = "JobIconNoId"; + var userJobDepartments = new List(); + + if (_idCardSystem.TryFindIdCard(sensor.User.Value, out var card)) + { + if (card.Comp.FullName != null) + userName = card.Comp.FullName; + if (card.Comp.LocalizedJobTitle != null) + userJob = card.Comp.LocalizedJobTitle; + userJobIcon = card.Comp.JobIcon; + + foreach (var department in card.Comp.JobDepartments) + userJobDepartments.Add(Loc.GetString(_proto.Index(department).Name)); + } + + // get health mob state + var isAlive = false; + if (TryComp(sensor.User.Value, out MobStateComponent? mobState)) + isAlive = !_mobStateSystem.IsDead(sensor.User.Value, mobState); + + // get mob total damage + var totalDamage = 0; + if (TryComp(sensor.User.Value, out var damageable)) + totalDamage = damageable.TotalDamage.Int(); + + // Get mob total damage crit threshold + int? totalDamageThreshold = null; + if (_mobThresholdSystem.TryGetThresholdForState(sensor.User.Value, MobState.Critical, out var critThreshold)) + totalDamageThreshold = critThreshold.Value.Int(); + + // finally, form suit sensor status + var status = new SuitSensorStatus(GetNetEntity(sensor.User.Value), GetNetEntity(ent.Owner), userName, userJob, userJobIcon, userJobDepartments); + switch (sensor.Mode) + { + case SuitSensorMode.SensorBinary: + status.IsAlive = isAlive; + break; + case SuitSensorMode.SensorVitals: + status.IsAlive = isAlive; + status.TotalDamage = totalDamage; + status.TotalDamageThreshold = totalDamageThreshold; + break; + case SuitSensorMode.SensorCords: + status.IsAlive = isAlive; + status.TotalDamage = totalDamage; + status.TotalDamageThreshold = totalDamageThreshold; + EntityCoordinates coordinates; + var xformQuery = GetEntityQuery(); + + if (transform.GridUid != null) + { + coordinates = new EntityCoordinates(transform.GridUid.Value, + Vector2.Transform(_transform.GetWorldPosition(transform, xformQuery), + _transform.GetInvWorldMatrix(xformQuery.GetComponent(transform.GridUid.Value), xformQuery))); + } + else if (transform.MapUid != null) + { + coordinates = new EntityCoordinates(transform.MapUid.Value, + _transform.GetWorldPosition(transform, xformQuery)); + } + else + { + coordinates = EntityCoordinates.Invalid; + } + + status.Coordinates = GetNetCoordinates(coordinates); + break; + } + + return status; + } + + /// + /// Create a device network package from the suit sensors status. + /// + public NetworkPayload SuitSensorToPacket(SuitSensorStatus status) + { + var payload = new NetworkPayload() + { + [DeviceNetworkConstants.Command] = DeviceNetworkConstants.CmdUpdatedState, + [SuitSensorConstants.NET_NAME] = status.Name, + [SuitSensorConstants.NET_JOB] = status.Job, + [SuitSensorConstants.NET_JOB_ICON] = status.JobIcon, + [SuitSensorConstants.NET_JOB_DEPARTMENTS] = status.JobDepartments, + [SuitSensorConstants.NET_IS_ALIVE] = status.IsAlive, + [SuitSensorConstants.NET_SUIT_SENSOR_UID] = status.SuitSensorUid, + [SuitSensorConstants.NET_OWNER_UID] = status.OwnerUid, + }; + + if (status.TotalDamage != null) + payload.Add(SuitSensorConstants.NET_TOTAL_DAMAGE, status.TotalDamage); + if (status.TotalDamageThreshold != null) + payload.Add(SuitSensorConstants.NET_TOTAL_DAMAGE_THRESHOLD, status.TotalDamageThreshold); + if (status.Coordinates != null) + payload.Add(SuitSensorConstants.NET_COORDINATES, status.Coordinates); + + return payload; + } + + /// + /// Try to create the suit sensors status from the device network message. + /// + public SuitSensorStatus? PacketToSuitSensor(NetworkPayload payload) + { + // check command + if (!payload.TryGetValue(DeviceNetworkConstants.Command, out string? command)) + return null; + if (command != DeviceNetworkConstants.CmdUpdatedState) + return null; + + // check name, job and alive + if (!payload.TryGetValue(SuitSensorConstants.NET_NAME, out string? name)) return null; + if (!payload.TryGetValue(SuitSensorConstants.NET_JOB, out string? job)) return null; + if (!payload.TryGetValue(SuitSensorConstants.NET_JOB_ICON, out string? jobIcon)) return null; + if (!payload.TryGetValue(SuitSensorConstants.NET_JOB_DEPARTMENTS, out List? jobDepartments)) return null; + if (!payload.TryGetValue(SuitSensorConstants.NET_IS_ALIVE, out bool? isAlive)) return null; + if (!payload.TryGetValue(SuitSensorConstants.NET_SUIT_SENSOR_UID, out NetEntity suitSensorUid)) return null; + if (!payload.TryGetValue(SuitSensorConstants.NET_OWNER_UID, out NetEntity ownerUid)) return null; + + // try get total damage and cords (optionals) + payload.TryGetValue(SuitSensorConstants.NET_TOTAL_DAMAGE, out int? totalDamage); + payload.TryGetValue(SuitSensorConstants.NET_TOTAL_DAMAGE_THRESHOLD, out int? totalDamageThreshold); + payload.TryGetValue(SuitSensorConstants.NET_COORDINATES, out NetCoordinates? coords); + + var status = new SuitSensorStatus(ownerUid, suitSensorUid, name, job, jobIcon, jobDepartments) + { + IsAlive = isAlive.Value, + TotalDamage = totalDamage, + TotalDamageThreshold = totalDamageThreshold, + Coordinates = coords, + }; + return status; + } +} diff --git a/Content.Server/Medical/SuitSensors/SuitSensorComponent.cs b/Content.Shared/Medical/SuitSensors/SuitSensorComponent.cs similarity index 89% rename from Content.Server/Medical/SuitSensors/SuitSensorComponent.cs rename to Content.Shared/Medical/SuitSensors/SuitSensorComponent.cs index 91039712e5..b20b7af2c9 100644 --- a/Content.Server/Medical/SuitSensors/SuitSensorComponent.cs +++ b/Content.Shared/Medical/SuitSensors/SuitSensorComponent.cs @@ -1,14 +1,16 @@ using Content.Shared.Medical.SuitSensor; +using Robust.Shared.GameStates; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; -namespace Content.Server.Medical.SuitSensors; +namespace Content.Shared.Medical.SuitSensors; /// /// Tracking device, embedded in almost all uniforms and jumpsuits. /// If enabled, will report to crew monitoring console owners position and status. /// -[RegisterComponent, AutoGenerateComponentPause] -[Access(typeof(SuitSensorSystem))] +[RegisterComponent, NetworkedComponent] +[Access(typeof(SharedSuitSensorSystem))] +[AutoGenerateComponentState, AutoGenerateComponentPause] public sealed partial class SuitSensorComponent : Component { /// @@ -20,7 +22,7 @@ public sealed partial class SuitSensorComponent : Component /// /// If true user can't change suit sensor mode /// - [DataField] + [DataField, AutoNetworkedField] public bool ControlsLocked = false; /// @@ -32,7 +34,7 @@ public sealed partial class SuitSensorComponent : Component /// /// Current sensor mode. Can be switched by user verbs. /// - [DataField] + [DataField, AutoNetworkedField] public SuitSensorMode Mode = SuitSensorMode.SensorOff; /// @@ -56,7 +58,7 @@ public sealed partial class SuitSensorComponent : Component /// /// Current user that wears suit sensor. Null if nobody wearing it. /// - [ViewVariables] + [DataField, AutoNetworkedField] public EntityUid? User = null; /// @@ -69,7 +71,7 @@ public sealed partial class SuitSensorComponent : Component /// /// The station this suit sensor belongs to. If it's null the suit didn't spawn on a station and the sensor doesn't work. /// - [DataField("station")] + [DataField("station"), AutoNetworkedField] public EntityUid? StationId = null; /// diff --git a/Content.Shared/Mind/Filters/HasRoleMindFilter.cs b/Content.Shared/Mind/Filters/HasRoleMindFilter.cs index 22f250dd29..e8098d72a2 100644 --- a/Content.Shared/Mind/Filters/HasRoleMindFilter.cs +++ b/Content.Shared/Mind/Filters/HasRoleMindFilter.cs @@ -17,6 +17,6 @@ public sealed partial class HasRoleMindFilter : MindFilter protected override bool ShouldRemove(Entity mind, EntityUid? exclude, IEntityManager entMan, SharedMindSystem mindSys) { var roleSys = entMan.System(); - return roleSys.MindHasRole(mind, Whitelist); + return !roleSys.MindHasRole(mind, Whitelist); } } diff --git a/Content.Shared/Mind/MindComponent.cs b/Content.Shared/Mind/MindComponent.cs index 57cd628f90..efb8e45b94 100644 --- a/Content.Shared/Mind/MindComponent.cs +++ b/Content.Shared/Mind/MindComponent.cs @@ -1,8 +1,7 @@ -using Content.Shared.GameTicking; using Content.Shared.Mind.Components; +using Robust.Shared.Containers; using Robust.Shared.GameStates; using Robust.Shared.Network; -using Robust.Shared.Player; using Robust.Shared.Prototypes; namespace Content.Shared.Mind; @@ -100,10 +99,16 @@ public sealed partial class MindComponent : Component public bool PreventSuicide { get; set; } /// - /// Mind Role Entities belonging to this Mind + /// Mind Role Entities belonging to this Mind are stored in this container. /// - [DataField, AutoNetworkedField] - public List MindRoles = new List(); + [ViewVariables] + public Container MindRoleContainer = default!; + + /// + /// The id for the MindRoleContainer. + /// + [ViewVariables] + public const string MindRoleContainerId = "mind_roles"; /// /// The mind's current antagonist/special role, or lack thereof; diff --git a/Content.Shared/Mind/SharedMindSystem.Relay.cs b/Content.Shared/Mind/SharedMindSystem.Relay.cs index 60ad2fc30a..0ad18e2e08 100644 --- a/Content.Shared/Mind/SharedMindSystem.Relay.cs +++ b/Content.Shared/Mind/SharedMindSystem.Relay.cs @@ -23,7 +23,7 @@ public abstract partial class SharedMindSystem : EntitySystem { RaiseLocalEvent(mindId, ref ev); - foreach (var role in mindComp.MindRoles) + foreach (var role in mindComp.MindRoleContainer.ContainedEntities) RaiseLocalEvent(role, ref ev); } } @@ -36,7 +36,7 @@ public abstract partial class SharedMindSystem : EntitySystem { RaiseLocalEvent(mindId, ref ev); - foreach (var role in mindComp.MindRoles) + foreach (var role in mindComp.MindRoleContainer.ContainedEntities) RaiseLocalEvent(role, ref ev); } diff --git a/Content.Shared/Mind/SharedMindSystem.cs b/Content.Shared/Mind/SharedMindSystem.cs index 98ff77810c..309f37be3f 100644 --- a/Content.Shared/Mind/SharedMindSystem.cs +++ b/Content.Shared/Mind/SharedMindSystem.cs @@ -15,8 +15,8 @@ using Content.Shared.Mobs.Systems; using Content.Shared.Objectives.Systems; using Content.Shared.Players; using Content.Shared.Speech; - using Content.Shared.Whitelist; +using Robust.Shared.Containers; using Robust.Shared.Map; using Robust.Shared.Network; using Robust.Shared.Player; @@ -36,6 +36,7 @@ public abstract partial class SharedMindSystem : EntitySystem [Dependency] private readonly ISharedPlayerManager _playerManager = default!; [Dependency] private readonly MetaDataSystem _metadata = default!; [Dependency] private readonly EntityWhitelistSystem _whitelist = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; [ViewVariables] protected readonly Dictionary UserMinds = new(); @@ -64,6 +65,8 @@ public abstract partial class SharedMindSystem : EntitySystem private void OnMindStartup(EntityUid uid, MindComponent component, ComponentStartup args) { + component.MindRoleContainer = _container.EnsureContainer(uid, MindComponent.MindRoleContainerId); + if (component.UserId == null) return; @@ -605,15 +608,14 @@ public abstract partial class SharedMindSystem : EntitySystem } /// - /// A string to represent the mind for logging + /// A string to represent the mind for logging. /// - public string MindOwnerLoggingString(MindComponent mind) + public MindStringRepresentation MindOwnerLoggingString(MindComponent mind) { - if (mind.OwnedEntity != null) - return ToPrettyString(mind.OwnedEntity.Value); - if (mind.UserId != null) - return mind.UserId.Value.ToString(); - return "(originally " + mind.OriginalOwnerUserId + ")"; + return new MindStringRepresentation( + ToPrettyString(mind.OwnedEntity), + mind.UserId != null, + mind.UserId ?? mind.OriginalOwnerUserId); } public string? GetCharacterName(NetUserId userId) @@ -730,3 +732,16 @@ public record struct GetCharactedDeadIcEvent(bool? Dead); /// [ByRefEvent] public record struct GetCharacterUnrevivableIcEvent(bool? Unrevivable); + +public sealed record MindStringRepresentation(EntityStringRepresentation? OwnedEntity, bool PlayerPresent, NetUserId? Player) : IAdminLogsPlayerValue +{ + public override string ToString() + { + var str = OwnedEntity?.ToString() ?? "mind without entity"; + if (Player != null) + str += $" ({(PlayerPresent ? "" : "originally ")} {Player})"; + return str; + } + + IEnumerable IAdminLogsPlayerValue.Players => Player == null ? [] : [Player.Value]; +} diff --git a/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindshieldSystem.cs b/Content.Shared/Mindshield/FakeMindShield/FakeMindshieldSystem.cs similarity index 94% rename from Content.Shared/Mindshield/FakeMindShield/SharedFakeMindshieldSystem.cs rename to Content.Shared/Mindshield/FakeMindShield/FakeMindshieldSystem.cs index c82f2b2863..4d7d457321 100644 --- a/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindshieldSystem.cs +++ b/Content.Shared/Mindshield/FakeMindShield/FakeMindshieldSystem.cs @@ -8,7 +8,7 @@ using Robust.Shared.Timing; namespace Content.Shared.Mindshield.FakeMindShield; -public sealed class SharedFakeMindShieldSystem : EntitySystem +public sealed class FakeMindShieldSystem : EntitySystem { [Dependency] private readonly SharedActionsSystem _actions = default!; [Dependency] private readonly TagSystem _tag = default!; @@ -24,9 +24,11 @@ public sealed class SharedFakeMindShieldSystem : EntitySystem SubscribeLocalEvent(OnChameleonControllerOutfitSelected); } - private void OnToggleMindshield(EntityUid uid, FakeMindShieldComponent comp, FakeMindShieldToggleEvent toggleEvent) + private void OnToggleMindshield(EntityUid uid, FakeMindShieldComponent comp, FakeMindShieldToggleEvent args) { comp.IsEnabled = !comp.IsEnabled; + args.Toggle = true; + args.Handled = true; Dirty(uid, comp); } diff --git a/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindShieldImplantSystem.cs b/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindShieldImplantSystem.cs deleted file mode 100644 index a597e03406..0000000000 --- a/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindShieldImplantSystem.cs +++ /dev/null @@ -1,45 +0,0 @@ -using Content.Shared.Actions; -using Content.Shared.Implants; -using Content.Shared.Implants.Components; -using Content.Shared.Mindshield.Components; -using Robust.Shared.Containers; - -namespace Content.Shared.Mindshield.FakeMindShield; - -public sealed class SharedFakeMindShieldImplantSystem : EntitySystem -{ - [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnFakeMindShieldToggle); - SubscribeLocalEvent(ImplantCheck); - SubscribeLocalEvent(ImplantDraw); - } - - /// - /// Raise the Action of a Implanted user toggling their implant to the FakeMindshieldComponent on their entity - /// - private void OnFakeMindShieldToggle(Entity entity, ref FakeMindShieldToggleEvent ev) - { - ev.Handled = true; - if (entity.Comp.ImplantedEntity is not { } ent) - return; - - if (!TryComp(ent, out var comp)) - return; - // TODO: is there a reason this cant set ev.Toggle = true; - _actionsSystem.SetToggled((ev.Action, ev.Action), !comp.IsEnabled); // Set it to what the Mindshield component WILL be after this - RaiseLocalEvent(ent, ev); //this reraises the action event to support an eventual future Changeling Antag which will also be using this component for it's "mindshield" ability - } - private void ImplantCheck(EntityUid uid, FakeMindShieldImplantComponent component ,ref ImplantImplantedEvent ev) - { - if (ev.Implanted != null) - EnsureComp(ev.Implanted.Value); - } - - private void ImplantDraw(Entity ent, ref EntGotRemovedFromContainerMessage ev) - { - RemComp(ev.Container.Owner); - } -} diff --git a/Content.Shared/Morgue/Components/ActiveCrematoriumComponent.cs b/Content.Shared/Morgue/Components/ActiveCrematoriumComponent.cs new file mode 100644 index 0000000000..6d3707c0f7 --- /dev/null +++ b/Content.Shared/Morgue/Components/ActiveCrematoriumComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Morgue.Components; + +/// +/// Used to track actively cooking crematoriums. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class ActiveCrematoriumComponent : Component; diff --git a/Content.Shared/Morgue/Components/CrematoriumComponent.cs b/Content.Shared/Morgue/Components/CrematoriumComponent.cs new file mode 100644 index 0000000000..c372e1f71b --- /dev/null +++ b/Content.Shared/Morgue/Components/CrematoriumComponent.cs @@ -0,0 +1,42 @@ +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Shared.Morgue.Components; + +/// +/// Allows an entity storage to dispose bodies by turning them into ash. +/// +[RegisterComponent, NetworkedComponent] +[AutoGenerateComponentState, AutoGenerateComponentPause] +public sealed partial class CrematoriumComponent : Component +{ + /// + /// The entity to spawn when something was burned. + /// + [DataField, AutoNetworkedField] + public EntProtoId LeftOverProtoId = "Ash"; + + /// + /// The time it takes to cremate something. + /// + [DataField, AutoNetworkedField] + public TimeSpan CookTime = TimeSpan.FromSeconds(5); + + /// + /// The timestamp at which cremating is finished. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] + [AutoNetworkedField, AutoPausedField] + public TimeSpan ActiveUntil = TimeSpan.Zero; + + [DataField] + public SoundSpecifier CremateStartSound = new SoundPathSpecifier("/Audio/Items/Lighters/lighter1.ogg"); + + [DataField] + public SoundSpecifier CrematingSound = new SoundPathSpecifier("/Audio/Effects/burning.ogg"); + + [DataField] + public SoundSpecifier CremateFinishSound = new SoundPathSpecifier("/Audio/Machines/ding.ogg"); +} diff --git a/Content.Shared/Morgue/Components/EntityStorageLayingDownOverrideComponent.cs b/Content.Shared/Morgue/Components/EntityStorageLayingDownOverrideComponent.cs index 6b15a0cdb6..30a2637314 100644 --- a/Content.Shared/Morgue/Components/EntityStorageLayingDownOverrideComponent.cs +++ b/Content.Shared/Morgue/Components/EntityStorageLayingDownOverrideComponent.cs @@ -1,6 +1,10 @@ +using Robust.Shared.GameStates; + namespace Content.Shared.Morgue.Components; -[RegisterComponent] -public sealed partial class EntityStorageLayingDownOverrideComponent : Component -{ -} +/// +/// Makes an entity storage only accept entities that are laying down. +/// This is true for mobs that are crit, dead or crawling. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class EntityStorageLayingDownOverrideComponent : Component; diff --git a/Content.Shared/Morgue/Components/MorgueComponent.cs b/Content.Shared/Morgue/Components/MorgueComponent.cs index 5d3fa45161..176e2269c8 100644 --- a/Content.Shared/Morgue/Components/MorgueComponent.cs +++ b/Content.Shared/Morgue/Components/MorgueComponent.cs @@ -1,26 +1,38 @@ using Robust.Shared.Audio; using Robust.Shared.GameStates; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; namespace Content.Shared.Morgue.Components; +/// +/// When added to an entity storage this component will keep track of the mind status of the player inside. +/// [RegisterComponent, NetworkedComponent] +[AutoGenerateComponentState, AutoGenerateComponentPause] public sealed partial class MorgueComponent : Component { /// - /// Whether or not the morgue beeps if a living player is inside. + /// Whether or not the morgue beeps if a living player is inside. /// - [DataField] + [DataField, AutoNetworkedField] public bool DoSoulBeep = true; - [DataField] - public float AccumulatedFrameTime = 0f; + /// + /// The timestamp for the next beep. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] + [AutoPausedField] + public TimeSpan NextBeep = TimeSpan.Zero; /// - /// The amount of time between each beep. + /// The amount of time between each beep. /// [DataField] - public float BeepTime = 10f; + public TimeSpan BeepTime = TimeSpan.FromSeconds(10); + /// + /// The beep sound to play. + /// [DataField] public SoundSpecifier OccupantHasSoulAlarmSound = new SoundPathSpecifier("/Audio/Weapons/Guns/EmptyAlarm/smg_empty_alarm.ogg"); } diff --git a/Content.Shared/Morgue/EntityStorageLayingDownOverrideSystem.cs b/Content.Shared/Morgue/EntityStorageLayingDownOverrideSystem.cs index 630135f36a..d11695321b 100644 --- a/Content.Shared/Morgue/EntityStorageLayingDownOverrideSystem.cs +++ b/Content.Shared/Morgue/EntityStorageLayingDownOverrideSystem.cs @@ -21,7 +21,7 @@ public sealed class EntityStorageLayingDownOverrideSystem : EntitySystem { // Explicitly check for standing state component, as entities without it will return false for IsDown() // which prevents inserting any kind of non-mobs into this container (which is unintended) - if (TryComp(ent, out var standingState) && !_standing.IsDown(ent, standingState)) + if (TryComp(ent, out var standingState) && !_standing.IsDown((ent, standingState))) args.Contents.Remove(ent); } } diff --git a/Content.Shared/Morgue/SharedCrematoriumSystem.cs b/Content.Shared/Morgue/SharedCrematoriumSystem.cs new file mode 100644 index 0000000000..6c216f0232 --- /dev/null +++ b/Content.Shared/Morgue/SharedCrematoriumSystem.cs @@ -0,0 +1,170 @@ +using Content.Shared.Database; +using Content.Shared.Examine; +using Content.Shared.Mind; +using Content.Shared.Morgue.Components; +using Content.Shared.Popups; +using Content.Shared.Standing; +using Content.Shared.Storage; +using Content.Shared.Storage.Components; +using Content.Shared.Storage.EntitySystems; +using Content.Shared.Verbs; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Containers; +using Robust.Shared.Network; +using Robust.Shared.Timing; + +namespace Content.Shared.Morgue; + +public abstract class SharedCrematoriumSystem : EntitySystem +{ + [Dependency] protected readonly SharedEntityStorageSystem EntityStorage = default!; + [Dependency] protected readonly SharedPopupSystem Popup = default!; + [Dependency] protected readonly StandingStateSystem Standing = default!; + [Dependency] protected readonly SharedMindSystem Mind = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly INetManager _net = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnExamine); + SubscribeLocalEvent>(AddCremateVerb); + SubscribeLocalEvent(OnAttemptOpen); + } + + private void OnExamine(Entity ent, ref ExaminedEvent args) + { + if (!TryComp(ent, out var appearance)) + return; + + using (args.PushGroup(nameof(CrematoriumComponent))) + { + if (_appearance.TryGetData(ent.Owner, CrematoriumVisuals.Burning, out var isBurning, appearance) && + isBurning) + { + args.PushMarkup(Loc.GetString("crematorium-entity-storage-component-on-examine-details-is-burning", + ("owner", ent.Owner))); + } + + if (_appearance.TryGetData(ent.Owner, StorageVisuals.HasContents, out var hasContents, appearance) && + hasContents) + { + args.PushMarkup(Loc.GetString("crematorium-entity-storage-component-on-examine-details-has-contents")); + } + else + { + args.PushMarkup(Loc.GetString("crematorium-entity-storage-component-on-examine-details-empty")); + } + } + } + + private void OnAttemptOpen(Entity ent, ref StorageOpenAttemptEvent args) + { + args.Cancelled = true; + } + + private void AddCremateVerb(EntityUid uid, CrematoriumComponent component, GetVerbsEvent args) + { + if (!TryComp(uid, out var storage)) + return; + + if (!args.CanAccess || !args.CanInteract || args.Hands == null || storage.Open) + return; + + if (HasComp(uid)) + return; + + AlternativeVerb verb = new() + { + Text = Loc.GetString("cremate-verb-get-data-text"), + // TODO VERB ICON add flame/burn symbol? + Act = () => TryCremate((uid, component, storage), args.User), + Impact = LogImpact.High // could be a body? or evidence? I dunno. + }; + args.Verbs.Add(verb); + } + + /// + /// Start the cremation. + /// + public bool Cremate(Entity ent, EntityUid? user = null) + { + if (!Resolve(ent, ref ent.Comp)) + return false; + + if (HasComp(ent)) + return false; + + _audio.PlayPredicted(ent.Comp.CremateStartSound, ent.Owner, user); + _audio.PlayPredicted(ent.Comp.CrematingSound, ent.Owner, user); + _appearance.SetData(ent.Owner, CrematoriumVisuals.Burning, true); + + AddComp(ent); + ent.Comp.ActiveUntil = _timing.CurTime + ent.Comp.CookTime; + Dirty(ent); + return true; + } + + /// + /// Try to start to start the cremation. + /// Only works when the crematorium is closed and there are entities inside. + /// + public bool TryCremate(Entity ent, EntityUid? user = null) + { + if (!Resolve(ent, ref ent.Comp1, ref ent.Comp2)) + return false; + + if (ent.Comp2.Open || ent.Comp2.Contents.ContainedEntities.Count < 1) + return false; + + return Cremate((ent.Owner, ent.Comp1), user); + } + + /// + /// Finish the cremation process. + /// This will delete the entities inside and spawn ash. + /// + private void FinishCooking(Entity ent) + { + if (!Resolve(ent, ref ent.Comp1, ref ent.Comp2)) + return; + + _appearance.SetData(ent.Owner, CrematoriumVisuals.Burning, false); + RemComp(ent); + + if (ent.Comp2.Contents.ContainedEntities.Count > 0) + { + for (var i = ent.Comp2.Contents.ContainedEntities.Count - 1; i >= 0; i--) + { + var item = ent.Comp2.Contents.ContainedEntities[i]; + _container.Remove(item, ent.Comp2.Contents); + PredictedDel(item); + } + PredictedTrySpawnInContainer(ent.Comp1.LeftOverProtoId, ent.Owner, ent.Comp2.Contents.ID, out _); + } + + EntityStorage.OpenStorage(ent.Owner, ent.Comp2); + + if (_net.IsServer) // can't predict without the user + _audio.PlayPvs(ent.Comp1.CremateFinishSound, ent.Owner); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var curTime = _timing.CurTime; + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out _, out var crematorium)) + { + if (curTime < crematorium.ActiveUntil) + continue; + + FinishCooking((uid, crematorium, null)); + } + } +} diff --git a/Content.Shared/Morgue/SharedMorgueSystem.cs b/Content.Shared/Morgue/SharedMorgueSystem.cs new file mode 100644 index 0000000000..3da92d798a --- /dev/null +++ b/Content.Shared/Morgue/SharedMorgueSystem.cs @@ -0,0 +1,83 @@ +using Content.Shared.Mobs.Components; +using Content.Shared.Storage.Components; +using Content.Shared.Examine; +using Content.Shared.Morgue.Components; +using Robust.Shared.Player; + +namespace Content.Shared.Morgue; + +public abstract class SharedMorgueSystem : EntitySystem +{ + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnExamine); + SubscribeLocalEvent(OnClosed); + SubscribeLocalEvent(OnOpened); + } + + /// + /// Handles the examination text for looking at a morgue. + /// + private void OnExamine(Entity ent, ref ExaminedEvent args) + { + if (!args.IsInDetailsRange) + return; + + _appearance.TryGetData(ent.Owner, MorgueVisuals.Contents, out var contents); + + var text = contents switch + { + MorgueContents.HasSoul => "morgue-entity-storage-component-on-examine-details-body-has-soul", + MorgueContents.HasContents => "morgue-entity-storage-component-on-examine-details-has-contents", + MorgueContents.HasMob => "morgue-entity-storage-component-on-examine-details-body-has-no-soul", + _ => "morgue-entity-storage-component-on-examine-details-empty" + }; + + args.PushMarkup(Loc.GetString(text)); + } + + private void OnClosed(Entity ent, ref StorageAfterCloseEvent args) + { + CheckContents(ent.Owner, ent.Comp); + } + + private void OnOpened(Entity ent, ref StorageAfterOpenEvent args) + { + CheckContents(ent.Owner, ent.Comp); + } + + /// + /// Updates data in case something died/got deleted in the morgue. + /// + public void CheckContents(EntityUid uid, MorgueComponent? morgue = null, EntityStorageComponent? storage = null, AppearanceComponent? app = null) + { + if (!Resolve(uid, ref morgue, ref storage, ref app)) + return; + + if (storage.Contents.ContainedEntities.Count == 0) + { + _appearance.SetData(uid, MorgueVisuals.Contents, MorgueContents.Empty, app); + return; + } + + var hasMob = false; + + foreach (var ent in storage.Contents.ContainedEntities) + { + if (!hasMob && HasComp(ent)) + hasMob = true; + + if (HasComp(ent)) + { + _appearance.SetData(uid, MorgueVisuals.Contents, MorgueContents.HasSoul, app); + return; + } + } + + _appearance.SetData(uid, MorgueVisuals.Contents, hasMob ? MorgueContents.HasMob : MorgueContents.HasContents, app); + } +} diff --git a/Content.Shared/Movement/Components/ActiveLeaperComponent.cs b/Content.Shared/Movement/Components/ActiveLeaperComponent.cs new file mode 100644 index 0000000000..cb5a237af4 --- /dev/null +++ b/Content.Shared/Movement/Components/ActiveLeaperComponent.cs @@ -0,0 +1,16 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Movement.Components; + +/// +/// Marker component given to the users of the if they are meant to collide with environment. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class ActiveLeaperComponent : Component +{ + /// + /// The duration to stun the owner on collide with environment. + /// + [DataField, AutoNetworkedField] + public TimeSpan KnockdownDuration; +} diff --git a/Content.Shared/Movement/Components/JumpAbilityComponent.cs b/Content.Shared/Movement/Components/JumpAbilityComponent.cs index 6da9161578..a6e33d5b87 100644 --- a/Content.Shared/Movement/Components/JumpAbilityComponent.cs +++ b/Content.Shared/Movement/Components/JumpAbilityComponent.cs @@ -2,6 +2,7 @@ using Content.Shared.Actions; using Content.Shared.Movement.Systems; using Robust.Shared.Audio; using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; namespace Content.Shared.Movement.Components; @@ -13,6 +14,18 @@ namespace Content.Shared.Movement.Components; [RegisterComponent, NetworkedComponent, AutoGenerateComponentState, Access(typeof(SharedJumpAbilitySystem))] public sealed partial class JumpAbilityComponent : Component { + /// + /// The action prototype that allows you to jump. + /// + [DataField] + public EntProtoId Action = "ActionGravityJump"; + + /// + /// Entity to hold the action prototype. + /// + [DataField, AutoNetworkedField] + public EntityUid? ActionEntity; + /// /// How far you will jump (in tiles). /// @@ -25,11 +38,29 @@ public sealed partial class JumpAbilityComponent : Component [DataField, AutoNetworkedField] public float JumpThrowSpeed = 10f; + /// + /// Whether this entity can collide with another entity, leading to it getting knocked down. + /// + [DataField, AutoNetworkedField] + public bool CanCollide = false; + + /// + /// The duration of the knockdown in case of a collision from CanCollide. + /// + [DataField, AutoNetworkedField] + public TimeSpan CollideKnockdown = TimeSpan.FromSeconds(2); + /// /// This gets played whenever the jump action is used. /// [DataField, AutoNetworkedField] public SoundSpecifier? JumpSound; + + /// + /// The popup to show if the entity is unable to perform a jump. + /// + [DataField, AutoNetworkedField] + public LocId? JumpFailedPopup = "jump-ability-failure"; } public sealed partial class GravityJumpEvent : InstantActionEvent; diff --git a/Content.Shared/Movement/Components/MovementIgnoreGravityComponent.cs b/Content.Shared/Movement/Components/MovementIgnoreGravityComponent.cs index 77c468e871..1723600ad1 100644 --- a/Content.Shared/Movement/Components/MovementIgnoreGravityComponent.cs +++ b/Content.Shared/Movement/Components/MovementIgnoreGravityComponent.cs @@ -1,34 +1,17 @@ -using Content.Shared.Clothing; -using Content.Shared.Gravity; -using Content.Shared.Inventory; using Robust.Shared.GameStates; -using Robust.Shared.Map; -using Robust.Shared.Physics; -using Robust.Shared.Physics.Components; -using Robust.Shared.Serialization; namespace Content.Shared.Movement.Components { /// /// Ignores gravity entirely. /// - [RegisterComponent, NetworkedComponent] + [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class MovementIgnoreGravityComponent : Component { /// - /// Whether or not gravity is on or off for this object. + /// Whether gravity is on or off for this object. This will always override the current Gravity State. /// - [DataField("gravityState")] public bool Weightless = false; - } - - [NetSerializable, Serializable] - public sealed class MovementIgnoreGravityComponentState : ComponentState - { + [DataField, AutoNetworkedField] public bool Weightless; - - public MovementIgnoreGravityComponentState(MovementIgnoreGravityComponent component) - { - Weightless = component.Weightless; - } } } diff --git a/Content.Shared/Movement/Pulling/Events/PullStoppedMessage.cs b/Content.Shared/Movement/Pulling/Events/PullStoppedMessage.cs index 6df4d17483..7c367f2951 100644 --- a/Content.Shared/Movement/Pulling/Events/PullStoppedMessage.cs +++ b/Content.Shared/Movement/Pulling/Events/PullStoppedMessage.cs @@ -1,6 +1,6 @@ -namespace Content.Shared.Movement.Pulling.Events; +namespace Content.Shared.Movement.Pulling.Events; /// -/// Event raised directed BOTH at the puller and pulled entity when a pull starts. +/// Event raised directed BOTH at the puller and pulled entity when a pull stops. /// public sealed class PullStoppedMessage(EntityUid pullerUid, EntityUid pulledUid) : PullMessage(pullerUid, pulledUid); diff --git a/Content.Shared/Movement/Systems/FrictionContactsSystem.cs b/Content.Shared/Movement/Systems/FrictionContactsSystem.cs index 44fc3933e3..3ffdd6ec26 100644 --- a/Content.Shared/Movement/Systems/FrictionContactsSystem.cs +++ b/Content.Shared/Movement/Systems/FrictionContactsSystem.cs @@ -84,7 +84,7 @@ public sealed class FrictionContactsSystem : EntitySystem var frictionNoInput = 0.0f; var acceleration = 0.0f; - var isAirborne = physicsComponent.BodyStatus == BodyStatus.InAir || _gravity.IsWeightless(entity, physicsComponent); + var isAirborne = physicsComponent.BodyStatus == BodyStatus.InAir || _gravity.IsWeightless(entity.Owner); var remove = true; var entries = 0; diff --git a/Content.Shared/Movement/Systems/MovementIgnoreGravitySystem.cs b/Content.Shared/Movement/Systems/MovementIgnoreGravitySystem.cs index 52cdf219e5..93f6650fa9 100644 --- a/Content.Shared/Movement/Systems/MovementIgnoreGravitySystem.cs +++ b/Content.Shared/Movement/Systems/MovementIgnoreGravitySystem.cs @@ -1,33 +1,35 @@ -using Content.Shared.Movement.Components; +using Content.Shared.Gravity; +using Content.Shared.Movement.Components; using Content.Shared.Movement.Events; -using Robust.Shared.GameStates; namespace Content.Shared.Movement.Systems; public sealed class MovementIgnoreGravitySystem : EntitySystem { + [Dependency] SharedGravitySystem _gravity = default!; public override void Initialize() { - SubscribeLocalEvent(GetState); - SubscribeLocalEvent(HandleState); SubscribeLocalEvent(OnWeightless); + SubscribeLocalEvent(OnIsWeightless); + SubscribeLocalEvent(OnComponentStartup); } - private void OnWeightless(EntityUid uid, MovementAlwaysTouchingComponent component, ref CanWeightlessMoveEvent args) + private void OnWeightless(Entity entity, ref CanWeightlessMoveEvent args) { args.CanMove = true; } - private void HandleState(EntityUid uid, MovementIgnoreGravityComponent component, ref ComponentHandleState args) + private void OnIsWeightless(Entity entity, ref IsWeightlessEvent args) { - if (args.Next is null) - return; + // We don't check if the event has been handled as this component takes precedent over other things. - component.Weightless = ((MovementIgnoreGravityComponentState) args.Next).Weightless; + args.IsWeightless = entity.Comp.Weightless; + args.Handled = true; } - private void GetState(EntityUid uid, MovementIgnoreGravityComponent component, ref ComponentGetState args) + private void OnComponentStartup(Entity entity, ref ComponentStartup args) { - args.State = new MovementIgnoreGravityComponentState(component); + EnsureComp(entity); + _gravity.RefreshWeightless(entity.Owner, entity.Comp.Weightless); } } diff --git a/Content.Shared/Movement/Systems/MovementModStatusSystem.cs b/Content.Shared/Movement/Systems/MovementModStatusSystem.cs index 37039fa6d4..99ac22e330 100644 --- a/Content.Shared/Movement/Systems/MovementModStatusSystem.cs +++ b/Content.Shared/Movement/Systems/MovementModStatusSystem.cs @@ -194,6 +194,16 @@ public sealed class MovementModStatusSystem : EntitySystem return TryUpdateMovementStatus(uid, status, speedModifier, speedModifier); } + /// + public bool TryAddFrictionModDuration( + EntityUid uid, + TimeSpan duration, + float friction + ) + { + return TryAddFrictionModDuration(uid, duration, friction, friction); + } + /// /// Apply friction modifier with provided duration, /// or incrementing duration of existing. @@ -210,8 +220,18 @@ public sealed class MovementModStatusSystem : EntitySystem float acceleration ) { - return _status.TryAddStatusEffectDuration(uid, StatusEffectFriction, out var status, duration) - && TrySetFrictionStatus(status.Value, friction, acceleration, uid); + return _status.TryAddStatusEffectDuration(uid, StatusEffectFriction, out var status, duration) + && TrySetFrictionStatus(status.Value, friction, acceleration, uid); + } + + /// + public bool TryUpdateFrictionModDuration( + EntityUid uid, + TimeSpan duration, + float friction + ) + { + return TryUpdateFrictionModDuration(uid,duration, friction, friction); } /// diff --git a/Content.Shared/Movement/Systems/SharedJumpAbilitySystem.cs b/Content.Shared/Movement/Systems/SharedJumpAbilitySystem.cs index ac720cae68..598e4b564a 100644 --- a/Content.Shared/Movement/Systems/SharedJumpAbilitySystem.cs +++ b/Content.Shared/Movement/Systems/SharedJumpAbilitySystem.cs @@ -1,7 +1,14 @@ +using Content.Shared.Actions; +using Content.Shared.Actions.Components; +using Content.Shared.Cloning.Events; using Content.Shared.Gravity; using Content.Shared.Movement.Components; +using Content.Shared.Popups; +using Content.Shared.Standing; +using Content.Shared.Stunnable; using Content.Shared.Throwing; using Robust.Shared.Audio.Systems; +using Robust.Shared.Physics.Events; namespace Content.Shared.Movement.Systems; @@ -10,18 +17,64 @@ public sealed partial class SharedJumpAbilitySystem : EntitySystem [Dependency] private readonly ThrowingSystem _throwing = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedGravitySystem _gravity = default!; + [Dependency] private readonly SharedActionsSystem _actions = default!; + [Dependency] private readonly SharedStunSystem _stun = default!; + [Dependency] private readonly StandingStateSystem _standing = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; public override void Initialize() { base.Initialize(); + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnShutdown); + SubscribeLocalEvent(OnGravityJump); + + SubscribeLocalEvent(OnLeaperCollide); + SubscribeLocalEvent(OnLeaperLand); + SubscribeLocalEvent(OnLeaperStopThrow); + + SubscribeLocalEvent(OnClone); + } + + private void OnInit(Entity entity, ref MapInitEvent args) + { + if (!TryComp(entity, out ActionsComponent? comp)) + return; + + _actions.AddAction(entity, ref entity.Comp.ActionEntity, entity.Comp.Action, component: comp); + } + + private void OnShutdown(Entity entity, ref ComponentShutdown args) + { + _actions.RemoveAction(entity.Owner, entity.Comp.ActionEntity); + } + + private void OnLeaperCollide(Entity entity, ref StartCollideEvent args) + { + _stun.TryKnockdown(entity.Owner, entity.Comp.KnockdownDuration, force: true); + RemCompDeferred(entity); + } + + private void OnLeaperLand(Entity entity, ref LandEvent args) + { + RemCompDeferred(entity); + } + + private void OnLeaperStopThrow(Entity entity, ref StopThrowEvent args) + { + RemCompDeferred(entity); } private void OnGravityJump(Entity entity, ref GravityJumpEvent args) { - if (_gravity.IsWeightless(args.Performer)) + if (_gravity.IsWeightless(args.Performer) || _standing.IsDown(args.Performer)) + { + if (entity.Comp.JumpFailedPopup != null) + _popup.PopupClient(Loc.GetString(entity.Comp.JumpFailedPopup.Value), args.Performer, args.Performer); return; + } var xform = Transform(args.Performer); var throwing = xform.LocalRotation.ToWorldVec() * entity.Comp.JumpDistance; @@ -30,6 +83,29 @@ public sealed partial class SharedJumpAbilitySystem : EntitySystem _throwing.TryThrow(args.Performer, direction, entity.Comp.JumpThrowSpeed); _audio.PlayPredicted(entity.Comp.JumpSound, args.Performer, args.Performer); + + if (entity.Comp.CanCollide) + { + EnsureComp(entity, out var leaperComp); + leaperComp.KnockdownDuration = entity.Comp.CollideKnockdown; + Dirty(entity.Owner, leaperComp); + } + args.Handled = true; } + + private void OnClone(Entity ent, ref CloningEvent args) + { + if (!args.Settings.EventComponents.Contains(Factory.GetRegistration(ent.Comp.GetType()).Name)) + return; + + var targetComp = Factory.GetComponent(); + targetComp.Action = ent.Comp.Action; + targetComp.CanCollide = ent.Comp.CanCollide; + targetComp.JumpSound = ent.Comp.JumpSound; + targetComp.CollideKnockdown = ent.Comp.CollideKnockdown; + targetComp.JumpDistance = ent.Comp.JumpDistance; + targetComp.JumpThrowSpeed = ent.Comp.JumpThrowSpeed; + AddComp(args.CloneUid, targetComp, true); + } } diff --git a/Content.Shared/Movement/Systems/SharedMoverController.cs b/Content.Shared/Movement/Systems/SharedMoverController.cs index f8495fcd18..b3c84aed4d 100644 --- a/Content.Shared/Movement/Systems/SharedMoverController.cs +++ b/Content.Shared/Movement/Systems/SharedMoverController.cs @@ -195,8 +195,7 @@ public abstract partial class SharedMoverController : VirtualController } // If the body is in air but isn't weightless then it can't move - // TODO: MAKE ISWEIGHTLESS EVENT BASED - var weightless = _gravity.IsWeightless(uid, physicsComponent, xform); + var weightless = _gravity.IsWeightless(uid); var inAirHelpless = false; if (physicsComponent.BodyStatus != BodyStatus.OnGround && !CanMoveInAirQuery.HasComponent(uid)) @@ -624,8 +623,7 @@ public abstract partial class SharedMoverController : VirtualController if (!TryComp(ent, out var physicsComponent) || !XformQuery.TryComp(ent, out var xform)) return; - // TODO: Make IsWeightless event based!!! - if (physicsComponent.BodyStatus != BodyStatus.OnGround || _gravity.IsWeightless(ent, physicsComponent, xform)) + if (physicsComponent.BodyStatus != BodyStatus.OnGround || _gravity.IsWeightless(ent.Owner)) args.Modifier *= ent.Comp.BaseWeightlessFriction; else args.Modifier *= ent.Comp.BaseFriction; diff --git a/Content.Shared/Movement/Systems/SpeedModifierContactsSystem.cs b/Content.Shared/Movement/Systems/SpeedModifierContactsSystem.cs index 8a0b085a83..2dda244163 100644 --- a/Content.Shared/Movement/Systems/SpeedModifierContactsSystem.cs +++ b/Content.Shared/Movement/Systems/SpeedModifierContactsSystem.cs @@ -85,7 +85,7 @@ public sealed class SpeedModifierContactsSystem : EntitySystem var sprintSpeed = 0.0f; // Cache the result of the airborne check, as it's expensive and independent of contacting entities, hence need only be done once. - var isAirborne = physicsComponent.BodyStatus == BodyStatus.InAir || _gravity.IsWeightless(uid, physicsComponent); + var isAirborne = physicsComponent.BodyStatus == BodyStatus.InAir || _gravity.IsWeightless(uid); bool remove = true; var entries = 0; diff --git a/Content.Shared/Movement/Systems/WormSystem.cs b/Content.Shared/Movement/Systems/WormSystem.cs index 8dc7f86a08..cb1dbaf809 100644 --- a/Content.Shared/Movement/Systems/WormSystem.cs +++ b/Content.Shared/Movement/Systems/WormSystem.cs @@ -12,7 +12,6 @@ namespace Content.Shared.Movement.Systems; public sealed class WormSystem : EntitySystem { [Dependency] private readonly AlertsSystem _alerts = default!; - [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedStunSystem _stun = default!; public override void Initialize() @@ -26,7 +25,7 @@ public sealed class WormSystem : EntitySystem private void OnMapInit(Entity ent, ref MapInitEvent args) { EnsureComp(ent, out var knocked); - _alerts.ShowAlert(ent, SharedStunSystem.KnockdownAlert); + _alerts.ShowAlert(ent.Owner, SharedStunSystem.KnockdownAlert); _stun.SetAutoStand((ent, knocked)); } diff --git a/Content.Shared/Nutrition/Components/ButcherableComponent.cs b/Content.Shared/Nutrition/Components/ButcherableComponent.cs index 4fce45422a..486026d259 100644 --- a/Content.Shared/Nutrition/Components/ButcherableComponent.cs +++ b/Content.Shared/Nutrition/Components/ButcherableComponent.cs @@ -1,34 +1,51 @@ +using Content.Shared.Kitchen; using Content.Shared.Storage; using Robust.Shared.GameStates; -namespace Content.Shared.Nutrition.Components +namespace Content.Shared.Nutrition.Components; + +/// +/// Indicates that the entity can be butchered. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class ButcherableComponent : Component { /// - /// Indicates that the entity can be thrown on a kitchen spike for butchering. + /// List of the entities that this entity should spawn after being butchered. /// - [RegisterComponent, NetworkedComponent] - public sealed partial class ButcherableComponent : Component - { - [DataField("spawned", required: true)] - public List SpawnedEntities = new(); + /// + /// Note that spawns one item at a time and decreases the amount until it's zero and then removes the entry. + /// + [DataField("spawned", required: true), AutoNetworkedField] + public List SpawnedEntities = []; - [ViewVariables(VVAccess.ReadWrite), DataField("butcherDelay")] - public float ButcherDelay = 8.0f; + /// + /// Time required to butcher that entity. + /// + [DataField, AutoNetworkedField] + public float ButcherDelay = 8.0f; - [ViewVariables(VVAccess.ReadWrite), DataField("butcheringType")] - public ButcheringType Type = ButcheringType.Knife; - - /// - /// Prevents butchering same entity on two and more spikes simultaneously and multiple doAfters on the same Spike - /// - [ViewVariables] - public bool BeingButchered; - } - - public enum ButcheringType : byte - { - Knife, // e.g. goliaths - Spike, // e.g. monkeys - Gibber // e.g. humans. TODO - } + /// + /// Tool type used to butcher that entity. + /// + [DataField("butcheringType"), AutoNetworkedField] + public ButcheringType Type = ButcheringType.Knife; +} + +public enum ButcheringType : byte +{ + /// + /// E.g. goliaths. + /// + Knife, + + /// + /// E.g. monkeys. + /// + Spike, + + /// + /// E.g. humans. + /// + Gibber // TODO } diff --git a/Content.Server/Nutrition/Components/MessyDrinkerComponent.cs b/Content.Shared/Nutrition/Components/MessyDrinkerComponent.cs similarity index 56% rename from Content.Server/Nutrition/Components/MessyDrinkerComponent.cs rename to Content.Shared/Nutrition/Components/MessyDrinkerComponent.cs index 5519c5d983..1134272799 100644 --- a/Content.Server/Nutrition/Components/MessyDrinkerComponent.cs +++ b/Content.Shared/Nutrition/Components/MessyDrinkerComponent.cs @@ -1,30 +1,39 @@ using Content.Shared.FixedPoint; using Content.Shared.Nutrition.Prototypes; +using Content.Shared.Tag; +using Robust.Shared.GameStates; using Robust.Shared.Prototypes; -namespace Content.Server.Nutrition.Components; +namespace Content.Shared.Nutrition.Components; /// /// Entities with this component occasionally spill some of the solution they're ingesting. /// -[RegisterComponent] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class MessyDrinkerComponent : Component { - [DataField] + [DataField, AutoNetworkedField] public float SpillChance = 0.2f; /// /// The amount of solution that is spilled when procs. /// - [DataField] + [DataField, AutoNetworkedField] public FixedPoint2 SpillAmount = 1.0; /// /// The types of food prototypes we can spill /// - [DataField] + [DataField, AutoNetworkedField] public List> SpillableTypes = new List> { "Drink" }; - [DataField] + /// + /// Tag given to drinks that are immune to messy drinker. + /// For example, a spill-immune bottle. + /// + [DataField, AutoNetworkedField] + public ProtoId? SpillImmuneTag = "MessyDrinkerImmune"; + + [DataField, AutoNetworkedField] public LocId? SpillMessagePopup; } diff --git a/Content.Shared/Nutrition/EntitySystems/IngestionSystem.Blockers.cs b/Content.Shared/Nutrition/EntitySystems/IngestionSystem.Blockers.cs index e1bd480bcc..3e7c9da122 100644 --- a/Content.Shared/Nutrition/EntitySystems/IngestionSystem.Blockers.cs +++ b/Content.Shared/Nutrition/EntitySystems/IngestionSystem.Blockers.cs @@ -7,6 +7,7 @@ using Content.Shared.Interaction.Components; using Content.Shared.Inventory; using Content.Shared.Nutrition.Components; using Content.Shared.Storage; +using Content.Shared.Weapons.Ranged.Systems; namespace Content.Shared.Nutrition.EntitySystems; @@ -117,7 +118,10 @@ public sealed partial class IngestionSystem private void OnOpenableEdible(Entity ent, ref EdibleEvent args) { - if (_openable.IsClosed(ent, args.User, ent.Comp)) + if (args.Cancelled) + return; + + if (_openable.IsClosed(ent, args.User, ent.Comp, predicted: true)) args.Cancelled = true; } diff --git a/Content.Server/Nutrition/EntitySystems/MessyDrinkerSystem.cs b/Content.Shared/Nutrition/EntitySystems/MessyDrinkerSystem.cs similarity index 51% rename from Content.Server/Nutrition/EntitySystems/MessyDrinkerSystem.cs rename to Content.Shared/Nutrition/EntitySystems/MessyDrinkerSystem.cs index dc8c11bb7f..7bfb7a5633 100644 --- a/Content.Server/Nutrition/EntitySystems/MessyDrinkerSystem.cs +++ b/Content.Shared/Nutrition/EntitySystems/MessyDrinkerSystem.cs @@ -1,18 +1,20 @@ -using Content.Server.Fluids.EntitySystems; -using Content.Server.Nutrition.Components; -using Content.Shared.Nutrition; -using Content.Shared.Nutrition.EntitySystems; +using Content.Shared.Fluids; +using Content.Shared.Nutrition.Components; using Content.Shared.Popups; +using Content.Shared.Random.Helpers; +using Content.Shared.Tag; using Robust.Shared.Random; +using Robust.Shared.Timing; -namespace Content.Server.Nutrition.EntitySystems; +namespace Content.Shared.Nutrition.EntitySystems; public sealed class MessyDrinkerSystem : EntitySystem { - [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly IngestionSystem _ingestion = default!; - [Dependency] private readonly PuddleSystem _puddle = default!; + [Dependency] private readonly SharedPuddleSystem _puddle = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly TagSystem _tag = default!; public override void Initialize() { @@ -23,7 +25,11 @@ public sealed class MessyDrinkerSystem : EntitySystem private void OnIngested(Entity ent, ref IngestingEvent ev) { - if (ev.Split.Volume <= ent.Comp.SpillAmount) + if (ent.Comp.SpillImmuneTag != null && _tag.HasTag(ev.Food, ent.Comp.SpillImmuneTag.Value)) + return; + + // Cannot spill if you're being forced to drink. + if (ev.ForceFed) return; var proto = _ingestion.GetEdibleType(ev.Food); @@ -31,15 +37,14 @@ public sealed class MessyDrinkerSystem : EntitySystem if (proto == null || !ent.Comp.SpillableTypes.Contains(proto.Value)) return; - // Cannot spill if you're being forced to drink. - if (ev.ForceFed) - return; - - if (!_random.Prob(ent.Comp.SpillChance)) + // TODO: Replace with RandomPredicted once the engine PR is merged + var seed = SharedRandomExtensions.HashCodeCombine(new() { (int)_timing.CurTick.Value, GetNetEntity(ent).Id }); + var rand = new System.Random(seed); + if (!rand.Prob(ent.Comp.SpillChance)) return; if (ent.Comp.SpillMessagePopup != null) - _popup.PopupEntity(Loc.GetString(ent.Comp.SpillMessagePopup), ent, ent, PopupType.MediumCaution); + _popup.PopupPredicted(Loc.GetString(ent.Comp.SpillMessagePopup), null, ent, ent, PopupType.MediumCaution); var split = ev.Split.SplitSolution(ent.Comp.SpillAmount); diff --git a/Content.Shared/Nutrition/EntitySystems/OpenableSystem.cs b/Content.Shared/Nutrition/EntitySystems/OpenableSystem.cs index 588875d553..04d3c20a3f 100644 --- a/Content.Shared/Nutrition/EntitySystems/OpenableSystem.cs +++ b/Content.Shared/Nutrition/EntitySystems/OpenableSystem.cs @@ -104,7 +104,7 @@ public sealed partial class OpenableSystem : EntitySystem Text = Loc.GetString(comp.CloseVerbText), Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/close.svg.192dpi.png")), Act = () => TryClose(args.Target, comp, args.User), - // this verb is lower priority than drink verb (2) so it doesn't conflict + Priority = 3 }; } else @@ -113,7 +113,8 @@ public sealed partial class OpenableSystem : EntitySystem { Text = Loc.GetString(comp.OpenVerbText), Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/open.svg.192dpi.png")), - Act = () => TryOpen(args.Target, comp, args.User) + Act = () => TryOpen(args.Target, comp, args.User), + Priority = 3 }; } args.Verbs.Add(verb); diff --git a/Content.Shared/Objectives/Systems/SharedObjectivesSystem.cs b/Content.Shared/Objectives/Systems/SharedObjectivesSystem.cs index 35fa501398..315f8d8115 100644 --- a/Content.Shared/Objectives/Systems/SharedObjectivesSystem.cs +++ b/Content.Shared/Objectives/Systems/SharedObjectivesSystem.cs @@ -141,7 +141,7 @@ public abstract class SharedObjectivesSystem : EntitySystem if (ev.Progress != null) return ev.Progress; - Log.Error($"Objective {ToPrettyString(uid):objective} of {_mind.MindOwnerLoggingString(mind.Comp)} didn't set a progress value!"); + Log.Error($"Objective {ToPrettyString(uid):objective} of {_mind.MindOwnerLoggingString(mind)} didn't set a progress value!"); return null; } diff --git a/Content.Shared/Payload/Components/ChemicalPayloadComponent.cs b/Content.Shared/Payload/Components/ChemicalPayloadComponent.cs index d00382ee84..3b29d78777 100644 --- a/Content.Shared/Payload/Components/ChemicalPayloadComponent.cs +++ b/Content.Shared/Payload/Components/ChemicalPayloadComponent.cs @@ -1,4 +1,5 @@ using Content.Shared.Containers.ItemSlots; +using Content.Shared.Trigger.Systems; using Robust.Shared.Serialization; namespace Content.Shared.Payload.Components; @@ -14,6 +15,12 @@ public sealed partial class ChemicalPayloadComponent : Component [DataField("beakerSlotB", required: true)] public ItemSlot BeakerSlotB = new(); + + /// + /// The keys that will activate the chemical payload. + /// + [DataField] + public List KeysIn = new() { TriggerSystem.DefaultTriggerKey }; } [Serializable, NetSerializable] diff --git a/Content.Shared/Physics/CollisionGroup.cs b/Content.Shared/Physics/CollisionGroup.cs index 1f19184b50..2878302e9a 100644 --- a/Content.Shared/Physics/CollisionGroup.cs +++ b/Content.Shared/Physics/CollisionGroup.cs @@ -59,6 +59,9 @@ public enum CollisionGroup TableMask = Impassable | MidImpassable, TableLayer = MidImpassable, + // Tables that SmallMobs can't go under + CounterLayer = MidImpassable | LowImpassable, + // Tabletop machines, windoors, firelocks TabletopMachineMask = Impassable | HighImpassable, // Tabletop machines diff --git a/Content.Shared/Physics/Controllers/SharedConveyorController.cs b/Content.Shared/Physics/Controllers/SharedConveyorController.cs index c2c88b2742..b1ccb3be2a 100644 --- a/Content.Shared/Physics/Controllers/SharedConveyorController.cs +++ b/Content.Shared/Physics/Controllers/SharedConveyorController.cs @@ -216,7 +216,7 @@ public abstract class SharedConveyorController : VirtualController return true; if (physics.BodyStatus == BodyStatus.InAir || - _gravity.IsWeightless(entity, physics, xform)) + _gravity.IsWeightless(entity.Owner)) { return true; } diff --git a/Content.Shared/Polymorph/PolymorphPrototype.cs b/Content.Shared/Polymorph/PolymorphPrototype.cs index 0978d7119a..26637431f0 100644 --- a/Content.Shared/Polymorph/PolymorphPrototype.cs +++ b/Content.Shared/Polymorph/PolymorphPrototype.cs @@ -105,6 +105,12 @@ public sealed partial record PolymorphConfiguration [DataField(serverOnly: true)] public bool RevertOnDeath = true; + /// + /// Whether or not the polymorph reverts when the entity is deleted. + /// + [DataField(serverOnly: true)] + public bool RevertOnDelete = true; + /// /// Whether or not the polymorph reverts when the entity is eaten or fully sliced. /// diff --git a/Content.Shared/Power/Components/SharedApcPowerReceiverComponent.cs b/Content.Shared/Power/Components/SharedApcPowerReceiverComponent.cs index 80bacd24bd..96189a92ae 100644 --- a/Content.Shared/Power/Components/SharedApcPowerReceiverComponent.cs +++ b/Content.Shared/Power/Components/SharedApcPowerReceiverComponent.cs @@ -19,4 +19,7 @@ public abstract partial class SharedApcPowerReceiverComponent : Component /// [ViewVariables(VVAccess.ReadWrite)] public virtual bool PowerDisabled { get; set; } + + // Doesn't actually do anything on the client just here for shared code. + public abstract float Load { get; set; } } diff --git a/Content.Shared/Power/Generator/SharedPortableGeneratorSystem.cs b/Content.Shared/Power/Generator/SharedPortableGeneratorSystem.cs index e8ccc85166..4ed911c296 100644 --- a/Content.Shared/Power/Generator/SharedPortableGeneratorSystem.cs +++ b/Content.Shared/Power/Generator/SharedPortableGeneratorSystem.cs @@ -9,6 +9,18 @@ namespace Content.Shared.Power.Generator; /// public abstract class SharedPortableGeneratorSystem : EntitySystem { + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnSwitchPowerCheck); + } + + private void OnSwitchPowerCheck(EntityUid uid, FuelGeneratorComponent comp, ref SwitchPowerCheckEvent args) + { + if (comp.On) + args.DisableMessage = Loc.GetString("fuel-generator-verb-disable-on"); + } } /// diff --git a/Content.Shared/Power/Generator/SharedPowerSwitchableSystem.cs b/Content.Shared/Power/Generator/SharedPowerSwitchableSystem.cs index c1787b6078..00d2b1d7a0 100644 --- a/Content.Shared/Power/Generator/SharedPowerSwitchableSystem.cs +++ b/Content.Shared/Power/Generator/SharedPowerSwitchableSystem.cs @@ -1,4 +1,6 @@ using Content.Shared.Examine; +using Content.Shared.Verbs; +using Robust.Shared.Utility; namespace Content.Shared.Power.Generator; @@ -11,6 +13,7 @@ public abstract class SharedPowerSwitchableSystem : EntitySystem public override void Initialize() { SubscribeLocalEvent(OnExamined); + SubscribeLocalEvent>(GetVerbs); } private void OnExamined(EntityUid uid, PowerSwitchableComponent comp, ExaminedEvent args) @@ -20,6 +23,41 @@ public abstract class SharedPowerSwitchableSystem : EntitySystem args.PushMarkup(Loc.GetString(comp.ExamineText, ("voltage", voltage))); } + private void GetVerbs(EntityUid uid, PowerSwitchableComponent comp, GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract) + return; + + var voltage = VoltageColor(GetNextVoltage(uid, comp)); + var msg = Loc.GetString("power-switchable-switch-voltage", ("voltage", voltage)); + + InteractionVerb verb = new() + { + Act = () => + { + // don't need to check it again since if its disabled server wont let the verb act + Cycle(uid, args.User, comp); + }, + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/zap.svg.192dpi.png")), + Text = msg + }; + + var ev = new SwitchPowerCheckEvent(); + RaiseLocalEvent(uid, ref ev); + if (ev.DisableMessage != null) + { + verb.Message = ev.DisableMessage; + verb.Disabled = true; + } + + args.Verbs.Add(verb); + } + + /// + /// Cycles voltage then updates nodes and optionally power supplier to match it. + /// + public virtual void Cycle(EntityUid uid, EntityUid user, PowerSwitchableComponent? comp = null) { } + /// /// Helper to get the colored markup string for a voltage type. /// @@ -70,3 +108,10 @@ public abstract class SharedPowerSwitchableSystem : EntitySystem return comp.Cables[NextIndex(uid, comp)].Voltage; } } + +/// +/// Raised on a to see if its verb should work. +/// If is non-null, the verb is disabled with that as the message. +/// +[ByRefEvent] +public record struct SwitchPowerCheckEvent(string? DisableMessage = null); diff --git a/Content.Shared/Preferences/Loadouts/Effects/JobRequirementLoadoutEffect.cs b/Content.Shared/Preferences/Loadouts/Effects/JobRequirementLoadoutEffect.cs index 2f7e7b7c48..b9bf4b38bc 100644 --- a/Content.Shared/Preferences/Loadouts/Effects/JobRequirementLoadoutEffect.cs +++ b/Content.Shared/Preferences/Loadouts/Effects/JobRequirementLoadoutEffect.cs @@ -1,6 +1,8 @@ using System.Diagnostics.CodeAnalysis; +using Content.Shared.CCVar; using Content.Shared.Players.PlayTimeTracking; using Content.Shared.Roles; +using Robust.Shared.Configuration; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Utility; @@ -17,7 +19,10 @@ public sealed partial class JobRequirementLoadoutEffect : LoadoutEffect public override bool Validate(HumanoidCharacterProfile profile, RoleLoadout loadout, ICommonSession? session, IDependencyCollection collection, [NotNullWhen(false)] out FormattedMessage? reason) { - if (session == null) + var configurationManager = collection.Resolve(); + var timersDisabled = !configurationManager.GetCVar(CCVars.GameRoleLoadoutTimers); + + if (session == null || timersDisabled) { reason = FormattedMessage.Empty; return true; diff --git a/Content.Shared/Robotics/Components/RoboticsConsoleComponent.cs b/Content.Shared/Robotics/Components/RoboticsConsoleComponent.cs index 9e4b51866f..eef2007f31 100644 --- a/Content.Shared/Robotics/Components/RoboticsConsoleComponent.cs +++ b/Content.Shared/Robotics/Components/RoboticsConsoleComponent.cs @@ -50,4 +50,10 @@ public sealed partial class RoboticsConsoleComponent : Component [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] [AutoNetworkedField, AutoPausedField] public TimeSpan NextDestroy = TimeSpan.Zero; + + /// + /// Controls if the console can disable or destroy any borg. + /// + [DataField] + public bool AllowBorgControl = true; } diff --git a/Content.Shared/Robotics/RoboticsConsoleUi.cs b/Content.Shared/Robotics/RoboticsConsoleUi.cs index 7a6974fb51..01ecb3f598 100644 --- a/Content.Shared/Robotics/RoboticsConsoleUi.cs +++ b/Content.Shared/Robotics/RoboticsConsoleUi.cs @@ -1,4 +1,4 @@ -using Robust.Shared.Prototypes; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; using Robust.Shared.Utility; @@ -19,9 +19,15 @@ public sealed class RoboticsConsoleState : BoundUserInterfaceState /// public Dictionary Cyborgs; - public RoboticsConsoleState(Dictionary cyborgs) + /// + /// If the UI will have the buttons to disable and destroy. + /// + public bool AllowBorgControl; + + public RoboticsConsoleState(Dictionary cyborgs, bool allowBorgControl) { Cyborgs = cyborgs; + AllowBorgControl = allowBorgControl; } } @@ -84,6 +90,12 @@ public partial record struct CyborgControlData [DataField] public float Charge; + /// + /// HP level from 0 to 1. + /// + [DataField] + public float HpPercent; // 0.0 to 1.0 + /// /// How many modules this borg has, just useful information for roboticists. /// Lets them keep track of the latejoin borgs that need new modules and stuff. @@ -111,12 +123,13 @@ public partial record struct CyborgControlData [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] public TimeSpan Timeout = TimeSpan.Zero; - public CyborgControlData(SpriteSpecifier? chassisSprite, string chassisName, string name, float charge, int moduleCount, bool hasBrain, bool canDisable) + public CyborgControlData(SpriteSpecifier? chassisSprite, string chassisName, string name, float charge, float hpPercent, int moduleCount, bool hasBrain, bool canDisable) { ChassisSprite = chassisSprite; ChassisName = chassisName; Name = name; Charge = charge; + HpPercent = hpPercent; ModuleCount = moduleCount; HasBrain = hasBrain; CanDisable = canDisable; diff --git a/Content.Shared/Roles/Components/ChangelingRoleComponent.cs b/Content.Shared/Roles/Components/ChangelingRoleComponent.cs new file mode 100644 index 0000000000..fb9bc05af3 --- /dev/null +++ b/Content.Shared/Roles/Components/ChangelingRoleComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Roles.Components; + +/// +/// Added to mind role entities to tag that they are a changeling. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class ChangelingRoleComponent : BaseMindRoleComponent; diff --git a/Content.Shared/Roles/Components/DragonRoleComponent.cs b/Content.Shared/Roles/Components/DragonRoleComponent.cs new file mode 100644 index 0000000000..8f5abecd24 --- /dev/null +++ b/Content.Shared/Roles/Components/DragonRoleComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Roles.Components; + +/// +/// Added to mind role entities to tag that they are a space dragon. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class DragonRoleComponent : BaseMindRoleComponent; diff --git a/Content.Shared/Roles/Components/GhostRoleMarkerRoleComponent.cs b/Content.Shared/Roles/Components/GhostRoleMarkerRoleComponent.cs new file mode 100644 index 0000000000..623f298474 --- /dev/null +++ b/Content.Shared/Roles/Components/GhostRoleMarkerRoleComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Roles.Components; + +/// +/// Added to mind role entities to tag that they are a ghostrole. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class GhostRoleMarkerRoleComponent : BaseMindRoleComponent; diff --git a/Content.Shared/Roles/Components/InitialInfectedRoleComponent.cs b/Content.Shared/Roles/Components/InitialInfectedRoleComponent.cs new file mode 100644 index 0000000000..a96c9a4e1d --- /dev/null +++ b/Content.Shared/Roles/Components/InitialInfectedRoleComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Roles.Components; + +/// +/// Added to mind role entities to tag that they are an initial infected. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class InitialInfectedRoleComponent : BaseMindRoleComponent; diff --git a/Content.Shared/Roles/Jobs/JobRoleComponent.cs b/Content.Shared/Roles/Components/JobRoleComponent.cs similarity index 59% rename from Content.Shared/Roles/Jobs/JobRoleComponent.cs rename to Content.Shared/Roles/Components/JobRoleComponent.cs index dbaf12beec..c62c0ea1f4 100644 --- a/Content.Shared/Roles/Jobs/JobRoleComponent.cs +++ b/Content.Shared/Roles/Components/JobRoleComponent.cs @@ -1,12 +1,9 @@ using Robust.Shared.GameStates; -namespace Content.Shared.Roles.Jobs; +namespace Content.Shared.Roles.Components; /// -/// Added to mind role entities to mark them as a job role entity. +/// Added to mind role entities to mark them as a job role entity. /// [RegisterComponent, NetworkedComponent] -public sealed partial class JobRoleComponent : BaseMindRoleComponent -{ - -} +public sealed partial class JobRoleComponent : BaseMindRoleComponent; diff --git a/Content.Shared/Roles/MindRoleComponent.cs b/Content.Shared/Roles/Components/MindRoleComponent.cs similarity index 52% rename from Content.Shared/Roles/MindRoleComponent.cs rename to Content.Shared/Roles/Components/MindRoleComponent.cs index 09593c94cd..b85ee8f5e0 100644 --- a/Content.Shared/Roles/MindRoleComponent.cs +++ b/Content.Shared/Roles/Components/MindRoleComponent.cs @@ -2,7 +2,7 @@ using Content.Shared.Mind; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; -namespace Content.Shared.Roles; +namespace Content.Shared.Roles.Components; /// /// This holds data for, and indicates, a Mind Role entity @@ -11,49 +11,44 @@ namespace Content.Shared.Roles; public sealed partial class MindRoleComponent : BaseMindRoleComponent { /// - /// Marks this Mind Role as Antagonist - /// A single antag Mind Role is enough to make the owner mind count as Antagonist. + /// Marks this Mind Role as Antagonist. + /// A single antag Mind Role is enough to make the owner mind count as Antagonist. /// [DataField] public bool Antag; /// - /// The mind's current antagonist/special role, or lack thereof; + /// The mind's current antagonist/special role, or lack thereof. /// [DataField] public ProtoId? RoleType; /// - /// The role's subtype, shown only to admins to help with antag categorization + /// The role's subtype, shown only to admins to help with antag categorization. /// [DataField] public LocId? Subtype; /// - /// True if this mindrole is an exclusive antagonist. Antag setting is not checked if this is True. + /// True if this mindrole is an exclusive antagonist. Antag setting is not checked if this is True. /// [DataField] public bool ExclusiveAntag; /// - /// The Mind that this role belongs to - /// - public Entity Mind { get; set; } - - /// - /// The Antagonist prototype of this role + /// The Antagonist prototype of this role. /// [DataField] - public ProtoId? AntagPrototype { get; set; } + public ProtoId? AntagPrototype; /// - /// The Job prototype of this role + /// The Job prototype of this role. /// [DataField] - public ProtoId? JobPrototype { get; set; } + public ProtoId? JobPrototype; /// - /// Used to order the characters on by role/antag status. Highest numbers are shown first. + /// Used to order the characters on by role/antag status. Highest numbers are shown first. /// [DataField] public int SortWeight; @@ -62,7 +57,4 @@ public sealed partial class MindRoleComponent : BaseMindRoleComponent // Why does this base component actually exist? It does make auto-categorization easy, but before that it was useless? // I used it for easy organisation/bookkeeping of what components are for mindroles [EntityCategory("Roles")] -public abstract partial class BaseMindRoleComponent : Component -{ - -} +public abstract partial class BaseMindRoleComponent : Component; diff --git a/Content.Shared/Roles/Components/NinjaRoleComponent.cs b/Content.Shared/Roles/Components/NinjaRoleComponent.cs new file mode 100644 index 0000000000..4aa72e1628 --- /dev/null +++ b/Content.Shared/Roles/Components/NinjaRoleComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Roles.Components; + +/// +/// Added to mind role entities to tag that they are a space ninja. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class NinjaRoleComponent : BaseMindRoleComponent; diff --git a/Content.Shared/Roles/Components/NukeopsRoleComponent.cs b/Content.Shared/Roles/Components/NukeopsRoleComponent.cs new file mode 100644 index 0000000000..57b90236e5 --- /dev/null +++ b/Content.Shared/Roles/Components/NukeopsRoleComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Roles.Components; + +/// +/// Added to mind role entities to tag that they are a nuke operative. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class NukeopsRoleComponent : BaseMindRoleComponent; diff --git a/Content.Shared/Roles/Components/ObserverRoleComponent.cs b/Content.Shared/Roles/Components/ObserverRoleComponent.cs new file mode 100644 index 0000000000..c7a451eac3 --- /dev/null +++ b/Content.Shared/Roles/Components/ObserverRoleComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Roles.Components; + +/// +/// This is used to mark Observers properly, as they get Minds. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class ObserverRoleComponent : BaseMindRoleComponent; diff --git a/Content.Shared/Roles/Components/ParadoxCloneRoleComponent.cs b/Content.Shared/Roles/Components/ParadoxCloneRoleComponent.cs new file mode 100644 index 0000000000..40a6e86499 --- /dev/null +++ b/Content.Shared/Roles/Components/ParadoxCloneRoleComponent.cs @@ -0,0 +1,17 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Roles.Components; + +/// +/// Added to mind role entities to tag that they are a paradox clone. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class ParadoxCloneRoleComponent : BaseMindRoleComponent +{ + /// + /// Name modifer applied to the player when they turn into a ghost. + /// Needed to be able to keep the original and the clone apart in dead chat. + /// + [DataField] + public LocId? NameModifier = "paradox-clone-ghost-name-modifier"; +} diff --git a/Content.Shared/Roles/Components/RevolutionaryRoleComponent.cs b/Content.Shared/Roles/Components/RevolutionaryRoleComponent.cs new file mode 100644 index 0000000000..d4d4660814 --- /dev/null +++ b/Content.Shared/Roles/Components/RevolutionaryRoleComponent.cs @@ -0,0 +1,16 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Roles.Components; + +/// +/// Added to mind role entities to tag that they are a Revolutionary. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class RevolutionaryRoleComponent : BaseMindRoleComponent +{ + /// + /// For headrevs, how many people you have converted. + /// + [DataField, AutoNetworkedField] + public uint ConvertedCount = 0; +} diff --git a/Content.Shared/Roles/Components/RoleBriefingComponent.cs b/Content.Shared/Roles/Components/RoleBriefingComponent.cs new file mode 100644 index 0000000000..99eccf8a34 --- /dev/null +++ b/Content.Shared/Roles/Components/RoleBriefingComponent.cs @@ -0,0 +1,13 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Roles.Components; + +/// +/// Adds a briefing to the character info menu, does nothing else. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class RoleBriefingComponent : BaseMindRoleComponent +{ + [DataField(required: true), AutoNetworkedField] + public LocId Briefing; +} diff --git a/Content.Shared/Roles/Components/SiliconBrainRoleComponent.cs b/Content.Shared/Roles/Components/SiliconBrainRoleComponent.cs new file mode 100644 index 0000000000..d8eaebbe1f --- /dev/null +++ b/Content.Shared/Roles/Components/SiliconBrainRoleComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Roles.Components; + +/// +/// Used on Silicon's minds to get the appropriate mind role +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class SiliconBrainRoleComponent : BaseMindRoleComponent; diff --git a/Content.Shared/Roles/StartingMindRoleComponent.cs b/Content.Shared/Roles/Components/StartingMindRoleComponent.cs similarity index 84% rename from Content.Shared/Roles/StartingMindRoleComponent.cs rename to Content.Shared/Roles/Components/StartingMindRoleComponent.cs index 768307d391..a37ed29a23 100644 --- a/Content.Shared/Roles/StartingMindRoleComponent.cs +++ b/Content.Shared/Roles/Components/StartingMindRoleComponent.cs @@ -1,26 +1,25 @@ using Robust.Shared.GameStates; using Robust.Shared.Prototypes; -namespace Content.Shared.Roles; +namespace Content.Shared.Roles.Components; /// /// This is most likely not the component you are looking for, almost nothing should be using this. /// Consider using GhostRoleComponent or AntagSelectionComponent instead. /// /// The specified mind role will be added to the mob on spawn. -/// /// [RegisterComponent, NetworkedComponent] public sealed partial class StartingMindRoleComponent : Component { /// - /// The ID of the mind role to add + /// The ID of the mind role to add /// [DataField(required: true)] public EntProtoId MindRole; /// - /// Add the mind role silently + /// Add the mind role silently /// [DataField] public bool Silent = true; diff --git a/Content.Shared/Roles/Components/SubvertedSiliconRoleComponent.cs b/Content.Shared/Roles/Components/SubvertedSiliconRoleComponent.cs new file mode 100644 index 0000000000..6b62f458ce --- /dev/null +++ b/Content.Shared/Roles/Components/SubvertedSiliconRoleComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Roles.Components; + +/// +/// Added to mind role entities to tag that they are a hacked borg. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class SubvertedSiliconRoleComponent : BaseMindRoleComponent; diff --git a/Content.Shared/Roles/Components/SurvivorRoleComponent.cs b/Content.Shared/Roles/Components/SurvivorRoleComponent.cs new file mode 100644 index 0000000000..1eee04d9e5 --- /dev/null +++ b/Content.Shared/Roles/Components/SurvivorRoleComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Roles.Components; + +/// +/// Added to mind role entities to tag that they are survivor. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class SurvivorRoleComponent : BaseMindRoleComponent; diff --git a/Content.Shared/Roles/Components/ThiefRoleComponent.cs b/Content.Shared/Roles/Components/ThiefRoleComponent.cs new file mode 100644 index 0000000000..ee30833970 --- /dev/null +++ b/Content.Shared/Roles/Components/ThiefRoleComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Roles.Components; + +/// +/// Added to mind role entities to tag that they are a thief. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class ThiefRoleComponent : BaseMindRoleComponent; diff --git a/Content.Shared/Roles/Components/TraitorRoleComponent.cs b/Content.Shared/Roles/Components/TraitorRoleComponent.cs new file mode 100644 index 0000000000..7348fe0c57 --- /dev/null +++ b/Content.Shared/Roles/Components/TraitorRoleComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Roles.Components; + +/// +/// Added to mind role entities to tag that they are a syndicate traitor. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class TraitorRoleComponent : BaseMindRoleComponent; diff --git a/Content.Shared/Roles/Components/WizardRoleComponent.cs b/Content.Shared/Roles/Components/WizardRoleComponent.cs new file mode 100644 index 0000000000..0d24897216 --- /dev/null +++ b/Content.Shared/Roles/Components/WizardRoleComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Roles.Components; + +/// +/// Added to mind role entities to tag that they are a wizard. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class WizardRoleComponent : Component; diff --git a/Content.Shared/Roles/Components/ZombieRoleComponent.cs b/Content.Shared/Roles/Components/ZombieRoleComponent.cs new file mode 100644 index 0000000000..e137fb0b0f --- /dev/null +++ b/Content.Shared/Roles/Components/ZombieRoleComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Roles.Components; + +/// +/// Added to mind role entities to tag that they are a zombie. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class ZombieRoleComponent : BaseMindRoleComponent; diff --git a/Content.Shared/Roles/Jobs/SharedJobSystem.cs b/Content.Shared/Roles/Jobs/SharedJobSystem.cs index 12d673feda..6526a3237a 100644 --- a/Content.Shared/Roles/Jobs/SharedJobSystem.cs +++ b/Content.Shared/Roles/Jobs/SharedJobSystem.cs @@ -2,6 +2,7 @@ using System.Linq; using Content.Shared.Players; using Content.Shared.Players.PlayTimeTracking; +using Content.Shared.Roles.Components; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Utility; diff --git a/Content.Shared/Roles/SharedRoleSystem.cs b/Content.Shared/Roles/SharedRoleSystem.cs index 4f307d8b31..d1afae9fd1 100644 --- a/Content.Shared/Roles/SharedRoleSystem.cs +++ b/Content.Shared/Roles/SharedRoleSystem.cs @@ -5,12 +5,11 @@ using Content.Shared.CCVar; using Content.Shared.Database; using Content.Shared.GameTicking; using Content.Shared.Mind; -using Content.Shared.Roles.Jobs; +using Content.Shared.Roles.Components; using Content.Shared.Whitelist; using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; -using Robust.Shared.Map; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; @@ -35,7 +34,6 @@ public abstract class SharedRoleSystem : EntitySystem { Subs.CVar(_cfg, CCVars.GameRoleTimerOverride, SetRequirementOverride, true); - SubscribeLocalEvent(OnComponentShutdown); SubscribeLocalEvent(OnSpawn); } @@ -55,7 +53,7 @@ public abstract class SharedRoleSystem : EntitySystem return; } - if (!_prototypes.TryIndex(value, out _requirementOverride )) + if (!_prototypes.TryIndex(value, out _requirementOverride)) Log.Error($"Unknown JobRequirementOverridePrototype: {value}"); } @@ -152,22 +150,23 @@ public abstract class SharedRoleSystem : EntitySystem //If that was somehow to occur, a second mindrole for that comp would be created //Meaning any mind role checks could return wrong results, since they just return the first match they find - var mindRoleId = Spawn(protoId, MapCoordinates.Nullspace); - EnsureComp(mindRoleId); - var mindRoleComp = Comp(mindRoleId); + if (!PredictedTrySpawnInContainer(protoId, mindId, MindComponent.MindRoleContainerId, out var mindRoleId)) + { + Log.Error($"Failed to add role {protoId} to {ToPrettyString(mindId)} : Could not spawn the role entity inside the container"); + return; + } + + var mindRoleComp = EnsureComp(mindRoleId.Value); - mindRoleComp.Mind = (mindId,mind); if (jobPrototype is not null) { mindRoleComp.JobPrototype = jobPrototype; - EnsureComp(mindRoleId); + EnsureComp(mindRoleId.Value); DebugTools.AssertNull(mindRoleComp.AntagPrototype); DebugTools.Assert(!mindRoleComp.Antag); DebugTools.Assert(!mindRoleComp.ExclusiveAntag); } - mind.MindRoles.Add(mindRoleId); - var update = MindRolesUpdate((mindId, mind)); // RoleType refresh, Role time tracking, Update Admin playerlist @@ -201,13 +200,13 @@ public abstract class SharedRoleSystem : EntitySystem /// > private bool MindRolesUpdate(Entity ent) { - if(!Resolve(ent.Owner, ref ent.Comp)) + if (!Resolve(ent.Owner, ref ent.Comp)) return false; //get the most important/latest mind role var (roleType, subtype) = GetRoleTypeByTime(ent.Comp); - if (ent.Comp.RoleType == roleType && ent.Comp.Subtype == subtype) + if (ent.Comp.RoleType == roleType && ent.Comp.Subtype == subtype) return false; SetRoleType(ent.Owner, roleType, subtype); @@ -230,7 +229,7 @@ public abstract class SharedRoleSystem : EntitySystem { var roles = new List>(); - foreach (var role in mind.MindRoles) + foreach (var role in mind.MindRoleContainer.ContainedEntities) { var comp = Comp(role); if (comp.RoleType is not null) @@ -301,7 +300,7 @@ public abstract class SharedRoleSystem : EntitySystem var original = "'" + typeof(T).Name + "'"; var deleteName = original; - foreach (var role in mind.Comp.MindRoles) + foreach (var role in mind.Comp.MindRoleContainer.ContainedEntities) { if (!HasComp(role)) { @@ -351,7 +350,7 @@ public abstract class SharedRoleSystem : EntitySystem return MindRemoveRole((mindId, mind)); } - /// + /// /// Finds and removes all mind roles of a specific type /// /// The mind entity and component @@ -359,14 +358,14 @@ public abstract class SharedRoleSystem : EntitySystem /// True if the role existed and was removed public bool MindRemoveRole(Entity mind, EntProtoId protoId) { - if ( !Resolve(mind.Owner, ref mind.Comp)) + if (!Resolve(mind.Owner, ref mind.Comp)) return false; // If there were no matches and thus no mind role entity names, we'll need the protoId, to report what role failed to be removed var original = "'" + protoId + "'"; var deleteName = original; var delete = new List(); - foreach (var role in mind.Comp.MindRoles) + foreach (var role in mind.Comp.MindRoleContainer.ContainedEntities) { if (!HasComp(role)) { @@ -390,7 +389,7 @@ public abstract class SharedRoleSystem : EntitySystem /// private bool MindRemoveRoleDo(Entity mind, List delete, string? logName = "") { - if ( !Resolve(mind.Owner, ref mind.Comp)) + if (!Resolve(mind.Owner, ref mind.Comp)) return false; if (delete.Count <= 0) @@ -416,17 +415,6 @@ public abstract class SharedRoleSystem : EntitySystem return true; } - // Removing the mind role's reference on component shutdown - // to make sure the reference gets removed even if the mind role entity was deleted by outside code - private void OnComponentShutdown(Entity ent, ref ComponentShutdown args) - { - //TODO: Just ensure that the tests don't spawn unassociated mind role entities - if (ent.Comp.Mind.Comp is null) - return; - - ent.Comp.Mind.Comp.MindRoles.Remove(ent.Owner); - } - /// /// Finds the first mind role of a specific T type on a mind entity. /// Outputs entity components for the mind role's MindRoleComponent and for T @@ -442,7 +430,7 @@ public abstract class SharedRoleSystem : EntitySystem if (!Resolve(mind.Owner, ref mind.Comp)) return false; - foreach (var roleEnt in mind.Comp.MindRoles) + foreach (var roleEnt in mind.Comp.MindRoleContainer.ContainedEntities) { if (!TryComp(roleEnt, out T? tcomp)) continue; @@ -487,7 +475,7 @@ public abstract class SharedRoleSystem : EntitySystem var found = false; - foreach (var roleEnt in mind.MindRoles) + foreach (var roleEnt in mind.MindRoleContainer.ContainedEntities) { if (!HasComp(roleEnt, type)) continue; @@ -511,7 +499,7 @@ public abstract class SharedRoleSystem : EntitySystem /// public bool MindHasRole(Entity mind, EntityWhitelist whitelist) { - foreach (var roleEnt in mind.Comp.MindRoles) + foreach (var roleEnt in mind.Comp.MindRoleContainer.ContainedEntities) { if (_whitelist.IsWhitelistPass(whitelist, roleEnt)) return true; @@ -544,10 +532,10 @@ public abstract class SharedRoleSystem : EntitySystem var mind = Comp(mindId); - foreach (var uid in mind.MindRoles) + foreach (var uid in mind.MindRoleContainer.ContainedEntities) { if (HasComp(uid) && TryComp(uid, out var comp)) - result = (uid,comp); + result = (uid, comp); } return result; } @@ -564,7 +552,7 @@ public abstract class SharedRoleSystem : EntitySystem if (!Resolve(mind.Owner, ref mind.Comp)) return roleInfo; - foreach (var role in mind.Comp.MindRoles) + foreach (var role in mind.Comp.MindRoleContainer.ContainedEntities) { var valid = false; var name = "game-ticker-unknown-role"; @@ -644,14 +632,14 @@ public abstract class SharedRoleSystem : EntitySystem return CheckAntagonistStatus(mindId.Value).ExclusiveAntag; } - private (bool Antag, bool ExclusiveAntag) CheckAntagonistStatus(Entity mind) - { - if (!Resolve(mind.Owner, ref mind.Comp)) - return (false, false); + private (bool Antag, bool ExclusiveAntag) CheckAntagonistStatus(Entity mind) + { + if (!Resolve(mind.Owner, ref mind.Comp)) + return (false, false); var antagonist = false; var exclusiveAntag = false; - foreach (var role in mind.Comp.MindRoles) + foreach (var role in mind.Comp.MindRoleContainer.ContainedEntities) { if (!TryComp(role, out var roleComp)) { diff --git a/Content.Shared/Roles/SiliconBrainRoleComponent.cs b/Content.Shared/Roles/SiliconBrainRoleComponent.cs deleted file mode 100644 index 72ad0a86b6..0000000000 --- a/Content.Shared/Roles/SiliconBrainRoleComponent.cs +++ /dev/null @@ -1,9 +0,0 @@ -namespace Content.Shared.Roles; - -/// -/// Used on Silicon's minds to get the appropriate mind role -/// -[RegisterComponent] -public sealed partial class SiliconBrainRoleComponent : BaseMindRoleComponent -{ -} diff --git a/Content.Shared/Rootable/SharedRootableSystem.cs b/Content.Shared/Rootable/SharedRootableSystem.cs index 9165c3c111..569fdf8e4d 100644 --- a/Content.Shared/Rootable/SharedRootableSystem.cs +++ b/Content.Shared/Rootable/SharedRootableSystem.cs @@ -83,7 +83,7 @@ public abstract class SharedRootableSystem : EntitySystem var actions = new Entity(entity, comp); _actions.RemoveAction(actions, entity.Comp.ActionEntity); - _alerts.ClearAlert(entity, entity.Comp.RootedAlert); + _alerts.ClearAlert(entity.Owner, entity.Comp.RootedAlert); } private void OnRootableToggle(Entity entity, ref ToggleActionEvent args) @@ -104,11 +104,12 @@ public abstract class SharedRootableSystem : EntitySystem entity.Comp.Rooted = !entity.Comp.Rooted; _movementSpeedModifier.RefreshMovementSpeedModifiers(entity); + _gravity.RefreshWeightless(entity.Owner); Dirty(entity); if (entity.Comp.Rooted) { - _alerts.ShowAlert(entity, entity.Comp.RootedAlert); + _alerts.ShowAlert(entity.Owner, entity.Comp.RootedAlert); var curTime = _timing.CurTime; if (curTime > entity.Comp.NextUpdate) { @@ -117,9 +118,8 @@ public abstract class SharedRootableSystem : EntitySystem } else { - _alerts.ClearAlert(entity, entity.Comp.RootedAlert); + _alerts.ClearAlert(entity.Owner, entity.Comp.RootedAlert); } - _audio.PlayPredicted(entity.Comp.RootSound, entity.Owner.ToCoordinates(), entity); return true; diff --git a/Content.Shared/SecretLocks/SharedVoiceTriggerLockSystem.cs b/Content.Shared/SecretLocks/SharedVoiceTriggerLockSystem.cs new file mode 100644 index 0000000000..483b3ec251 --- /dev/null +++ b/Content.Shared/SecretLocks/SharedVoiceTriggerLockSystem.cs @@ -0,0 +1,30 @@ +using Content.Shared.Item.ItemToggle; +using Content.Shared.Lock; +using Content.Shared.Trigger.Components.Triggers; + +namespace Content.Shared.SecretLocks; + +public sealed partial class SharedVoiceTriggerLockSystem : EntitySystem +{ + [Dependency] private readonly ItemToggleSystem _toggle = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnLockToggled); + } + + private void OnLockToggled(Entity ent, ref LockToggledEvent args) + { + if (!TryComp(ent.Owner, out var triggerComp)) + return; + + triggerComp.ShowVerbs = !args.Locked; + triggerComp.ShowExamine = !args.Locked; + + _toggle.TryDeactivate(ent.Owner, null, true, false); + + Dirty(ent.Owner, triggerComp); + } +} diff --git a/Content.Shared/SecretLocks/VoiceTriggerLockComponent.cs b/Content.Shared/SecretLocks/VoiceTriggerLockComponent.cs new file mode 100644 index 0000000000..345f76226f --- /dev/null +++ b/Content.Shared/SecretLocks/VoiceTriggerLockComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.SecretLocks; + +/// +/// "Locks" items (Doesn't actually lock them but just switches various settings) so its not possible to tell +/// the item is triggered by a voice activation. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class VoiceTriggerLockComponent : Component; diff --git a/Content.Shared/SelectableComponentAdder/SelectableComponentAdderComponent.cs b/Content.Shared/SelectableComponentAdder/SelectableComponentAdderComponent.cs new file mode 100644 index 0000000000..5b7ccffafb --- /dev/null +++ b/Content.Shared/SelectableComponentAdder/SelectableComponentAdderComponent.cs @@ -0,0 +1,77 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; + +namespace Content.Shared.SelectableComponentAdder; + +/// +/// Brings up a verb menu that allows players to select components that will get added to the item with this component. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class SelectableComponentAdderComponent : Component +{ + /// + /// List of verb -> components to add for that verb when selected basically! + /// + [DataField(required: true)] + public List Entries = new(); + + /// + /// The amount of times players can make a selection and add a component. If null, there is no limit. + /// + [DataField, AutoNetworkedField] + public int? Selections; + + /// + /// The verb category name that will be used. + /// + [DataField, AutoNetworkedField] + public LocId VerbCategoryName = "selectable-component-adder-category-name"; +} + +[DataDefinition] +public sealed partial class ComponentAdderEntry +{ + /// + /// Name of the verb that will add the components in . + /// + [DataField(required: true)] + public LocId VerbName; + + /// + /// Popup to show when this option is selected. + /// + [DataField(required: true)] + public LocId? Popup; + + /// + /// List of all the components that will get added when the verb is selected. + /// + [DataField(required: true)] + public ComponentRegistry? ComponentsToAdd; + + /// + /// The type of behavior that occurs when the component(s) already exist on the entity. + /// + [DataField] + public ComponentExistsSetting ComponentExistsBehavior = ComponentExistsSetting.Skip; + + /// + /// The priorty of the verb in the list + /// + [DataField] + public int Priority; +} + +[Serializable, NetSerializable] +public enum ComponentExistsSetting : byte +{ + // If one of the components exist, skip adding it and continue adding the rest. + // If all components already exist, disable the verb. + Skip = 0, + // If a component already exists, replace it with the new one. + // The verb is always enabled. + Replace = 1, + // Disable the verb if any one of the components already exists. + Block = 2, +} diff --git a/Content.Shared/SelectableComponentAdder/SelectableComponentAdderSystem.cs b/Content.Shared/SelectableComponentAdder/SelectableComponentAdderSystem.cs new file mode 100644 index 0000000000..29619904d7 --- /dev/null +++ b/Content.Shared/SelectableComponentAdder/SelectableComponentAdderSystem.cs @@ -0,0 +1,95 @@ +using Content.Shared.Popups; +using Content.Shared.Verbs; +using Robust.Shared.Prototypes; + +namespace Content.Shared.SelectableComponentAdder; + +public sealed partial class SelectableComponentAdderSystem : EntitySystem +{ + [Dependency] private readonly SharedPopupSystem _popup = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent>(OnGetVerb); + } + + private void OnGetVerb(Entity ent, ref GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract || ent.Comp.Selections <= 0) + return; + + var target = args.Target; + var user = args.User; + var verbCategory = new VerbCategory(ent.Comp.VerbCategoryName, null); + + foreach (var entry in ent.Comp.Entries) + { + var verb = new Verb + { + Priority = entry.Priority, + Category = verbCategory, + Disabled = CheckDisabled(target, entry.ComponentsToAdd, entry.ComponentExistsBehavior), + Act = () => + { + AddComponents(target, entry.ComponentsToAdd, entry.ComponentExistsBehavior); + ent.Comp.Selections--; + Dirty(ent); + if (entry.Popup == null) + return; + var message = Loc.GetString(entry.Popup.Value, ("target", target)); + _popup.PopupClient(message, target, user); + }, + Text = Loc.GetString(entry.VerbName), + }; + args.Verbs.Add(verb); + } + } + + private bool CheckDisabled(EntityUid target, ComponentRegistry? registry, ComponentExistsSetting setting) + { + if (registry == null) + return false; + + switch (setting) + { + case ComponentExistsSetting.Skip: + // disable the verb if all components already exist + foreach (var component in registry) + { + if (!EntityManager.HasComponent(target, Factory.GetComponent(component.Key).GetType())) + return false; + } + return true; + case ComponentExistsSetting.Replace: + // always allow the verb + return false; + case ComponentExistsSetting.Block: + // disable the verb if any component already exists. + foreach (var component in registry) + { + if (EntityManager.HasComponent(target, Factory.GetComponent(component.Key).GetType())) + return true; + } + return false; + default: + throw new NotImplementedException(); + } + } + + private void AddComponents(EntityUid target, ComponentRegistry? registry, ComponentExistsSetting setting) + { + if (registry == null || CheckDisabled(target, registry, setting)) + return; + + foreach (var component in registry) + { + if (EntityManager.HasComponent(target, Factory.GetComponent(component.Key).GetType()) && + setting is ComponentExistsSetting.Skip or ComponentExistsSetting.Block) + continue; + + EntityManager.AddComponent(target, component.Value, true); + } + } +} diff --git a/Content.Shared/Shuttles/BUIStates/DockingPortState.cs b/Content.Shared/Shuttles/BUIStates/DockingPortState.cs index a605c2ea77..a058831545 100644 --- a/Content.Shared/Shuttles/BUIStates/DockingPortState.cs +++ b/Content.Shared/Shuttles/BUIStates/DockingPortState.cs @@ -17,4 +17,14 @@ public sealed class DockingPortState public bool Connected => GridDockedWith != null; public NetEntity? GridDockedWith; + + /// + /// The default colour used to shade a dock on a radar screen + /// + public Color Color; + + /// + /// The colour used to shade a dock on a radar screen if it is highlighted (hovered over/selected on docking screen/shown in the main ship radar) + /// + public Color HighlightedColor; } diff --git a/Content.Shared/Silicons/Borgs/Components/ItemBorgModuleComponent.cs b/Content.Shared/Silicons/Borgs/Components/ItemBorgModuleComponent.cs index e86edb3476..3680a4cbde 100644 --- a/Content.Shared/Silicons/Borgs/Components/ItemBorgModuleComponent.cs +++ b/Content.Shared/Silicons/Borgs/Components/ItemBorgModuleComponent.cs @@ -1,6 +1,8 @@ -using Robust.Shared.Containers; +using Content.Shared.Hands.Components; +using Robust.Shared.Containers; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; namespace Content.Shared.Silicons.Borgs.Components; @@ -11,40 +13,40 @@ namespace Content.Shared.Silicons.Borgs.Components; public sealed partial class ItemBorgModuleComponent : Component { /// - /// The items that are provided. + /// The hands that are provided. /// [DataField(required: true)] - public List Items = new(); + public List Hands = new(); /// - /// The entities from that were spawned. + /// The items stored within the hands. Null until the first time items are stored. /// - [DataField("providedItems")] - public SortedDictionary ProvidedItems = new(); + [DataField] + public Dictionary? StoredItems; /// - /// A counter that ensures a unique + /// An ID for the container where items are stored when not in use. /// - [DataField("handCounter")] - public int HandCounter; - - /// - /// Whether or not the items have been created and stored in - /// - [DataField("itemsCrated")] - public bool ItemsCreated; - - /// - /// A container where provided items are stored when not being used. - /// This is helpful as it means that items retain state. - /// - [ViewVariables] - public Container ProvidedContainer = default!; - - /// - /// An ID for the container where provided items are stored when not used. - /// - [DataField("providedContainerId")] - public string ProvidedContainerId = "provided_container"; + [DataField] + public string HoldingContainer = "holding_container"; } +[DataDefinition, Serializable, NetSerializable] +public partial record struct BorgHand +{ + [DataField] + public EntProtoId? Item; + + [DataField] + public Hand Hand = new(); + + [DataField] + public bool ForceRemovable = false; + + public BorgHand(EntProtoId? item, Hand hand, bool forceRemovable = false) + { + Item = item; + Hand = hand; + ForceRemovable = forceRemovable; + } +} diff --git a/Content.Shared/Slippery/SlipperySystem.cs b/Content.Shared/Slippery/SlipperySystem.cs index 58a0ec06d5..51bbd2bea0 100644 --- a/Content.Shared/Slippery/SlipperySystem.cs +++ b/Content.Shared/Slippery/SlipperySystem.cs @@ -30,10 +30,18 @@ public sealed class SlipperySystem : EntitySystem [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly SpeedModifierContactsSystem _speedModifier = default!; + private EntityQuery _knockedDownQuery; + private EntityQuery _physicsQuery; + private EntityQuery _slidingQuery; + public override void Initialize() { base.Initialize(); + _knockedDownQuery = GetEntityQuery(); + _physicsQuery = GetEntityQuery(); + _slidingQuery = GetEntityQuery(); + SubscribeLocalEvent(HandleAttemptCollide); SubscribeLocalEvent(HandleStepTrigger); SubscribeLocalEvent(OnNoSlipAttempt); @@ -92,7 +100,8 @@ public sealed class SlipperySystem : EntitySystem public void TrySlip(EntityUid uid, SlipperyComponent component, EntityUid other, bool requiresContact = true) { - if (HasComp(other) && !component.SlipData.SuperSlippery) + var knockedDown = _knockedDownQuery.HasComp(other); + if (knockedDown && !component.SlipData.SuperSlippery) return; var attemptEv = new SlipAttemptEvent(uid); @@ -111,7 +120,7 @@ public sealed class SlipperySystem : EntitySystem var ev = new SlipEvent(other); RaiseLocalEvent(uid, ref ev); - if (TryComp(other, out PhysicsComponent? physics) && !HasComp(other)) + if (_physicsQuery.TryComp(other, out var physics) && !_slidingQuery.HasComp(other)) { _physics.SetLinearVelocity(other, physics.LinearVelocity * component.SlipData.LaunchForwardsMultiplier, body: physics); @@ -120,20 +129,28 @@ public sealed class SlipperySystem : EntitySystem } // Preventing from playing the slip sound and stunning when you are already knocked down. - if (!HasComp(other)) + if (!knockedDown) { + // Status effects should handle a TimeSpan of 0 properly... _stun.TryUpdateStunDuration(other, component.SlipData.StunTime); - _stamina.TakeStaminaDamage(other, component.StaminaDamage); // Note that this can stamCrit - _movementMod.TryUpdateFrictionModDuration( - other, - component.FrictionStatusTime, - component.SlipData.SlipFriction, - component.SlipData.SlipFriction - ); + + // Don't make a new status effect entity if the entity wouldn't do anything + if (!MathHelper.CloseTo(component.SlipData.SlipFriction, 1f)) + { + _movementMod.TryUpdateFrictionModDuration( + other, + component.FrictionStatusTime, + component.SlipData.SlipFriction + ); + } + + _stamina.TakeStaminaDamage(other, component.StaminaDamage); // Note that this can StamCrit + _audio.PlayPredicted(component.SlipSound, other, other); } - _stun.TryKnockdown(other, component.SlipData.KnockdownTime, true, force: true); + // Slippery is so tied to knockdown that we really just need to force it here. + _stun.TryKnockdown(other, component.SlipData.KnockdownTime, force: true); _adminLogger.Add(LogType.Slip, LogImpact.Low, $"{ToPrettyString(other):mob} slipped on collision with {ToPrettyString(uid):entity}"); } diff --git a/Content.Shared/SmartFridge/SmartFridgeSystem.cs b/Content.Shared/SmartFridge/SmartFridgeSystem.cs index 1341f6cd03..659689cd8a 100644 --- a/Content.Shared/SmartFridge/SmartFridgeSystem.cs +++ b/Content.Shared/SmartFridge/SmartFridgeSystem.cs @@ -1,15 +1,16 @@ -using Content.Shared.Access.Components; using Content.Shared.Access.Systems; +using Content.Shared.Construction.EntitySystems; using Content.Shared.Hands.EntitySystems; using Content.Shared.IdentityManagement; using Content.Shared.Interaction; using Content.Shared.Popups; using Content.Shared.Storage.Components; +using Content.Shared.Verbs; using Content.Shared.Whitelist; using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; -using Robust.Shared.GameObjects; using Robust.Shared.Timing; +using Robust.Shared.Utility; namespace Content.Shared.SmartFridge; @@ -27,9 +28,10 @@ public sealed class SmartFridgeSystem : EntitySystem { base.Initialize(); - SubscribeLocalEvent(OnInteractUsing); + SubscribeLocalEvent(OnInteractUsing, after: [typeof(AnchorableSystem)]); SubscribeLocalEvent(OnItemRemoved); + SubscribeLocalEvent>(OnGetAltVerb); SubscribeLocalEvent(OnGetDumpableVerb); SubscribeLocalEvent(OnDump); @@ -78,7 +80,7 @@ public sealed class SmartFridgeSystem : EntitySystem private void OnInteractUsing(Entity ent, ref InteractUsingEvent args) { - if (!_hands.CanDrop(args.User, args.Used)) + if (args.Handled || !_hands.CanDrop(args.User, args.Used)) return; args.Handled = DoInsert(ent, args.User, [args.Used], true); @@ -136,6 +138,24 @@ public sealed class SmartFridgeSystem : EntitySystem _popup.PopupPredicted(Loc.GetString("smart-fridge-component-try-eject-out-of-stock"), ent, args.Actor); } + private void OnGetAltVerb(Entity ent, ref GetVerbsEvent args) + { + var user = args.User; + + if (!args.CanInteract + || args.Using is not { } item + || !_hands.CanDrop(user, item) + || !_whitelist.CheckBoth(item, ent.Comp.Blacklist, ent.Comp.Whitelist)) + return; + + args.Verbs.Add(new AlternativeVerb + { + Act = () => DoInsert(ent, user, [item], true), + Text = Loc.GetString("verb-categories-insert"), + Icon = new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/VerbIcons/insert.svg.192dpi.png")), + }); + } + private void OnGetDumpableVerb(Entity ent, ref GetDumpableVerbEvent args) { if (_accessReader.IsAllowed(args.User, ent)) diff --git a/Content.Shared/Sound/Components/EmitSoundOnThrowComponent.cs b/Content.Shared/Sound/Components/EmitSoundOnThrowComponent.cs index 76e9f08076..0498642c00 100644 --- a/Content.Shared/Sound/Components/EmitSoundOnThrowComponent.cs +++ b/Content.Shared/Sound/Components/EmitSoundOnThrowComponent.cs @@ -3,7 +3,7 @@ using Robust.Shared.GameStates; namespace Content.Shared.Sound.Components; /// -/// Simple sound emitter that emits sound on ThrowEvent +/// Simple sound emitter that emits sound on ThrownEvent /// [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class EmitSoundOnThrowComponent : BaseEmitSoundComponent; diff --git a/Content.Shared/Species/Systems/ReformSystem.cs b/Content.Shared/Species/Systems/ReformSystem.cs index 943432522d..285d36840f 100644 --- a/Content.Shared/Species/Systems/ReformSystem.cs +++ b/Content.Shared/Species/Systems/ReformSystem.cs @@ -90,7 +90,7 @@ public sealed partial class ReformSystem : EntitySystem // Spawn a new entity // This is, to an extent, taken from polymorph. I don't use polymorph for various reasons- most notably that this is permanent. - var child = Spawn(comp.ReformPrototype, Transform(uid).Coordinates); + var child = SpawnNextToOrDrop(comp.ReformPrototype, uid); // This transfers the mind to the new entity if (_mindSystem.TryGetMind(uid, out var mindId, out var mind)) @@ -106,7 +106,7 @@ public sealed partial class ReformSystem : EntitySystem } public sealed partial class ReformEvent : InstantActionEvent { } - + [Serializable, NetSerializable] public sealed partial class ReformDoAfterEvent : SimpleDoAfterEvent { } } diff --git a/Content.Shared/Speech/EntitySystems/SharedSlurredSystem.cs b/Content.Shared/Speech/EntitySystems/SharedSlurredSystem.cs index 8718e054ba..aadda6aa09 100644 --- a/Content.Shared/Speech/EntitySystems/SharedSlurredSystem.cs +++ b/Content.Shared/Speech/EntitySystems/SharedSlurredSystem.cs @@ -1,8 +1,11 @@ using Content.Shared.StatusEffect; +using Robust.Shared.Prototypes; namespace Content.Shared.Speech.EntitySystems; public abstract class SharedSlurredSystem : EntitySystem { + public static readonly EntProtoId Stutter = "StatusEffectSlurred"; + public virtual void DoSlur(EntityUid uid, TimeSpan time, StatusEffectsComponent? status = null) { } } diff --git a/Content.Shared/Speech/EntitySystems/SharedStutteringSystem.cs b/Content.Shared/Speech/EntitySystems/SharedStutteringSystem.cs index 05358a04bb..90cd8bc4de 100644 --- a/Content.Shared/Speech/EntitySystems/SharedStutteringSystem.cs +++ b/Content.Shared/Speech/EntitySystems/SharedStutteringSystem.cs @@ -1,26 +1,24 @@ -using Content.Shared.StatusEffect; +using Content.Shared.StatusEffectNew; using Robust.Shared.Prototypes; namespace Content.Shared.Speech.EntitySystems; public abstract class SharedStutteringSystem : EntitySystem { - public static readonly ProtoId StutterKey = "Stutter"; + public static readonly EntProtoId Stuttering = "StatusEffectStutter"; - [Dependency] private readonly StatusEffectsSystem _statusEffectsSystem = default!; + [Dependency] protected readonly StatusEffectsSystem Status = default!; // For code in shared... I imagine we ain't getting accent prediction anytime soon so let's not bother. - public virtual void DoStutter(EntityUid uid, TimeSpan time, bool refresh, StatusEffectsComponent? status = null) + public virtual void DoStutter(EntityUid uid, TimeSpan time, bool refresh) { } - public virtual void DoRemoveStutterTime(EntityUid uid, double timeRemoved) + public virtual void DoRemoveStutterTime(EntityUid uid, TimeSpan timeRemoved) { - _statusEffectsSystem.TryRemoveTime(uid, StutterKey, TimeSpan.FromSeconds(timeRemoved)); } - public void DoRemoveStutter(EntityUid uid, double timeRemoved) + public virtual void DoRemoveStutter(EntityUid uid) { - _statusEffectsSystem.TryRemoveStatusEffect(uid, StutterKey); } } diff --git a/Content.Shared/Stacks/SharedStackSystem.cs b/Content.Shared/Stacks/SharedStackSystem.cs index 912089379a..b3de1870fe 100644 --- a/Content.Shared/Stacks/SharedStackSystem.cs +++ b/Content.Shared/Stacks/SharedStackSystem.cs @@ -6,6 +6,7 @@ using Content.Shared.Interaction; using Content.Shared.Nutrition; using Content.Shared.Popups; using Content.Shared.Storage.EntitySystems; +using Content.Shared.Verbs; using JetBrains.Annotations; using Robust.Shared.GameStates; using Robust.Shared.Physics.Systems; @@ -29,6 +30,8 @@ namespace Content.Shared.Stacks [Dependency] protected readonly SharedPopupSystem Popup = default!; [Dependency] private readonly SharedStorageSystem _storage = default!; + public static readonly int[] DefaultSplitAmounts = { 1, 5, 10, 20, 30, 50 }; + public override void Initialize() { base.Initialize(); @@ -40,6 +43,7 @@ namespace Content.Shared.Stacks SubscribeLocalEvent(OnStackInteractUsing); SubscribeLocalEvent(OnBeforeEaten); SubscribeLocalEvent(OnEaten); + SubscribeLocalEvent>(OnStackAlternativeInteract); _vvm.GetTypeHandler() .AddPath(nameof(StackComponent.Count), (_, comp) => comp.Count, SetCount); @@ -352,10 +356,6 @@ namespace Content.Shared.Stacks private void OnStackStarted(EntityUid uid, StackComponent component, ComponentStartup args) { - // on client, lingering stacks that start at 0 need to be darkened - // on server this does nothing - SetCount(uid, component.Count, component); - if (!TryComp(uid, out AppearanceComponent? appearance)) return; @@ -366,7 +366,7 @@ namespace Content.Shared.Stacks private void OnStackGetState(EntityUid uid, StackComponent component, ref ComponentGetState args) { - args.State = new StackComponentState(component.Count, component.MaxCountOverride, component.Lingering); + args.State = new StackComponentState(component.Count, component.MaxCountOverride); } private void OnStackHandleState(EntityUid uid, StackComponent component, ref ComponentHandleState args) @@ -375,7 +375,6 @@ namespace Content.Shared.Stacks return; component.MaxCountOverride = cast.MaxCount; - component.Lingering = cast.Lingering; // This will change the count and call events. SetCount(uid, cast.Count, component); } @@ -428,7 +427,7 @@ namespace Content.Shared.Stacks return; // We haven't eaten the whole stack yet or are unable to eat it completely. - if (eaten.Comp.Count > 0 || eaten.Comp.Lingering) + if (eaten.Comp.Count > 0) { args.Refresh = true; return; @@ -437,6 +436,55 @@ namespace Content.Shared.Stacks // Here to tell the food system to do destroy stuff. args.Destroy = true; } + + private void OnStackAlternativeInteract(EntityUid uid, StackComponent stack, GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract || args.Hands == null || stack.Count == 1) + return; + + AlternativeVerb halve = new() + { + Text = Loc.GetString("comp-stack-split-halve"), + Category = VerbCategory.Split, + Act = () => UserSplit(uid, args.User, stack.Count / 2, stack), + Priority = 1 + }; + args.Verbs.Add(halve); + + var priority = 0; + foreach (var amount in DefaultSplitAmounts) + { + if (amount >= stack.Count) + continue; + + AlternativeVerb verb = new() + { + Text = amount.ToString(), + Category = VerbCategory.Split, + Act = () => UserSplit(uid, args.User, amount, stack), + // we want to sort by size, not alphabetically by the verb text. + Priority = priority + }; + + priority--; + + args.Verbs.Add(verb); + } + } + + /// + /// OnStackAlternativeInteract() was moved to shared in order to faciliate prediction of stack splitting verbs. + /// However, prediction of interacitons with spawned entities is non-functional (or so i'm told) + /// So, UserSplit() and Split() should remain on the server for the time being. + /// This empty virtual method allows for UserSplit() to be called on the server from the client. + /// When prediction is improved, those two methods should be moved to shared, in order to predict the splitting itself (not just the verbs) + /// + protected virtual void UserSplit(EntityUid uid, EntityUid userUid, int amount, + StackComponent? stack = null, + TransformComponent? userTransform = null) + { + + } } /// diff --git a/Content.Shared/Stacks/StackComponent.cs b/Content.Shared/Stacks/StackComponent.cs index 356b888606..453c8a737d 100644 --- a/Content.Shared/Stacks/StackComponent.cs +++ b/Content.Shared/Stacks/StackComponent.cs @@ -34,13 +34,6 @@ namespace Content.Shared.Stacks [ViewVariables(VVAccess.ReadOnly)] public bool Unlimited { get; set; } - /// - /// Lingering stacks will remain present even when there are no items. - /// Instead, they will become transparent. - /// - [DataField("lingering"), ViewVariables(VVAccess.ReadWrite)] - public bool Lingering; - [DataField("throwIndividually"), ViewVariables(VVAccess.ReadWrite)] public bool ThrowIndividually { get; set; } = false; @@ -93,13 +86,10 @@ namespace Content.Shared.Stacks public int Count { get; } public int? MaxCount { get; } - public bool Lingering; - - public StackComponentState(int count, int? maxCount, bool lingering) + public StackComponentState(int count, int? maxCount) { Count = count; MaxCount = maxCount; - Lingering = lingering; } } diff --git a/Content.Shared/Standing/StandingStateComponent.cs b/Content.Shared/Standing/StandingStateComponent.cs index c6252d969a..8ed00ce23e 100644 --- a/Content.Shared/Standing/StandingStateComponent.cs +++ b/Content.Shared/Standing/StandingStateComponent.cs @@ -15,23 +15,10 @@ namespace Content.Shared.Standing public bool Standing { get; set; } = true; /// - /// Time it takes us to stand up + /// Friction modifier applied to an entity in the downed state. /// [DataField, AutoNetworkedField] - public TimeSpan StandTime = TimeSpan.FromSeconds(2); - - /// - /// Default Friction modifier for knocked down players. - /// Makes them accelerate and deccelerate slower. - /// - [DataField, AutoNetworkedField] - public float FrictionModifier = 0.4f; - - /// - /// Base modifier to the maximum movement speed of a knocked down mover. - /// - [DataField, AutoNetworkedField] - public float SpeedModifier = 0.3f; + public float DownFrictionMod = 0.4f; /// /// List of fixtures that had their collision mask changed when the entity was downed. diff --git a/Content.Shared/Standing/StandingStateSystem.cs b/Content.Shared/Standing/StandingStateSystem.cs index 7177568163..e7bd9e5f58 100644 --- a/Content.Shared/Standing/StandingStateSystem.cs +++ b/Content.Shared/Standing/StandingStateSystem.cs @@ -1,4 +1,6 @@ +using Content.Shared.Climbing.Events; using Content.Shared.Hands.Components; +using Content.Shared.Inventory; using Content.Shared.Movement.Events; using Content.Shared.Movement.Systems; using Content.Shared.Physics; @@ -23,9 +25,9 @@ public sealed class StandingStateSystem : EntitySystem base.Initialize(); SubscribeLocalEvent(OnMobCollide); SubscribeLocalEvent(OnMobTargetCollide); - SubscribeLocalEvent(OnRefreshMovementSpeedModifiers); SubscribeLocalEvent(OnRefreshFrictionModifiers); SubscribeLocalEvent(OnTileFriction); + SubscribeLocalEvent(OnEndClimb); } private void OnMobTargetCollide(Entity ent, ref AttemptMobTargetCollideEvent args) @@ -44,33 +46,41 @@ public sealed class StandingStateSystem : EntitySystem } } - private void OnRefreshMovementSpeedModifiers(Entity entity, ref RefreshMovementSpeedModifiersEvent args) - { - if (!entity.Comp.Standing) - args.ModifySpeed(entity.Comp.FrictionModifier); - } - private void OnRefreshFrictionModifiers(Entity entity, ref RefreshFrictionModifiersEvent args) { if (entity.Comp.Standing) return; - args.ModifyFriction(entity.Comp.FrictionModifier); - args.ModifyAcceleration(entity.Comp.FrictionModifier); + args.ModifyFriction(entity.Comp.DownFrictionMod); + args.ModifyAcceleration(entity.Comp.DownFrictionMod); } private void OnTileFriction(Entity entity, ref TileFrictionEvent args) { if (!entity.Comp.Standing) - args.Modifier *= entity.Comp.FrictionModifier; + args.Modifier *= entity.Comp.DownFrictionMod; } - public bool IsDown(EntityUid uid, StandingStateComponent? standingState = null) + private void OnEndClimb(Entity entity, ref EndClimbEvent args) { - if (!Resolve(uid, ref standingState, false)) + if (entity.Comp.Standing) + return; + + // Currently only Climbing also edits fixtures layers like this so this is fine for now. + ChangeLayers(entity); + } + + public bool IsMatchingState(Entity entity, bool standing) + { + return standing != IsDown(entity); + } + + public bool IsDown(Entity entity) + { + if (!Resolve(entity, ref entity.Comp, false)) return false; - return !standingState.Standing; + return !entity.Comp.Standing; } public bool Down(EntityUid uid, @@ -118,17 +128,7 @@ public sealed class StandingStateSystem : EntitySystem _appearance.SetData(uid, RotationVisuals.RotationState, RotationState.Horizontal, appearance); // Change collision masks to allow going under certain entities like flaps and tables - if (TryComp(uid, out FixturesComponent? fixtureComponent)) - { - foreach (var (key, fixture) in fixtureComponent.Fixtures) - { - if ((fixture.CollisionMask & StandingCollisionLayer) == 0) - continue; - - standingState.ChangedFixtures.Add(key); - _physics.SetCollisionMask(uid, key, fixture, fixture.CollisionMask & ~StandingCollisionLayer, manager: fixtureComponent); - } - } + ChangeLayers((uid, standingState)); // check if component was just added or streamed to client // if true, no need to play sound - mob was down before player could seen that @@ -173,18 +173,44 @@ public sealed class StandingStateSystem : EntitySystem _appearance.SetData(uid, RotationVisuals.RotationState, RotationState.Vertical, appearance); - if (TryComp(uid, out FixturesComponent? fixtureComponent)) - { - foreach (var key in standingState.ChangedFixtures) - { - if (fixtureComponent.Fixtures.TryGetValue(key, out var fixture)) - _physics.SetCollisionMask(uid, key, fixture, fixture.CollisionMask | StandingCollisionLayer, fixtureComponent); - } - } - standingState.ChangedFixtures.Clear(); + RevertLayers((uid, standingState)); return true; } + + // TODO: This should be moved to a PhysicsModifierSystem which raises events so multiple systems can modify fixtures at once + private void ChangeLayers(Entity entity) + { + if (!Resolve(entity, ref entity.Comp2, false)) + return; + + foreach (var (key, fixture) in entity.Comp2.Fixtures) + { + if ((fixture.CollisionMask & StandingCollisionLayer) == 0 || !fixture.Hard) + continue; + + entity.Comp1.ChangedFixtures.Add(key); + _physics.SetCollisionMask(entity, key, fixture, fixture.CollisionMask & ~StandingCollisionLayer, manager: entity.Comp2); + } + } + + // TODO: This should be moved to a PhysicsModifierSystem which raises events so multiple systems can modify fixtures at once + private void RevertLayers(Entity entity) + { + if (!Resolve(entity, ref entity.Comp2, false)) + { + entity.Comp1.ChangedFixtures.Clear(); + return; + } + + foreach (var key in entity.Comp1.ChangedFixtures) + { + if (entity.Comp2.Fixtures.TryGetValue(key, out var fixture) && fixture.Hard) + _physics.SetCollisionMask(entity, key, fixture, fixture.CollisionMask | StandingCollisionLayer, entity.Comp2); + } + + entity.Comp1.ChangedFixtures.Clear(); + } } [ByRefEvent] @@ -193,48 +219,32 @@ public record struct DropHandItemsEvent(); /// /// Subscribe if you can potentially block a down attempt. /// -public sealed class DownAttemptEvent : CancellableEntityEventArgs -{ -} +public sealed class DownAttemptEvent : CancellableEntityEventArgs; /// /// Subscribe if you can potentially block a stand attempt. /// -public sealed class StandAttemptEvent : CancellableEntityEventArgs -{ -} +public sealed class StandAttemptEvent : CancellableEntityEventArgs; /// /// Raised when an entity becomes standing /// -public sealed class StoodEvent : EntityEventArgs +public sealed class StoodEvent : EntityEventArgs, IInventoryRelayEvent { -} + public SlotFlags TargetSlots { get; } = SlotFlags.FEET; +}; /// /// Raised when an entity is not standing /// -public sealed class DownedEvent : EntityEventArgs +public sealed class DownedEvent : EntityEventArgs, IInventoryRelayEvent { + public SlotFlags TargetSlots { get; } = SlotFlags.FEET; } /// -/// Raised after an entity falls down. -/// -public sealed class FellDownEvent : EntityEventArgs -{ - public EntityUid Uid { get; } - - public FellDownEvent(EntityUid uid) - { - Uid = uid; - } -} - -/// -/// Raised on the entity being thrown due to the holder falling down. +/// Raised on an inhand entity being held by an entity who is dropping items as part of an attempted state change to down. +/// If cancelled the inhand entity will not be dropped. /// [ByRefEvent] public record struct FellDownThrowAttemptEvent(EntityUid Thrower, bool Cancelled = false); - - diff --git a/Content.Shared/Station/Components/StationMemberComponent.cs b/Content.Shared/Station/Components/StationMemberComponent.cs index ce5d95ad0d..3f2cd4856b 100644 --- a/Content.Shared/Station/Components/StationMemberComponent.cs +++ b/Content.Shared/Station/Components/StationMemberComponent.cs @@ -5,12 +5,12 @@ namespace Content.Shared.Station.Components; /// /// Indicates that a grid is a member of the given station. /// -[RegisterComponent, NetworkedComponent] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class StationMemberComponent : Component { /// /// Station that this grid is a part of. /// - [DataField] + [DataField, AutoNetworkedField] public EntityUid Station = EntityUid.Invalid; } diff --git a/Content.Shared/StatusEffectNew/Components/StatusEffectComponent.cs b/Content.Shared/StatusEffectNew/Components/StatusEffectComponent.cs index 25f40718e9..67ff8b3e61 100644 --- a/Content.Shared/StatusEffectNew/Components/StatusEffectComponent.cs +++ b/Content.Shared/StatusEffectNew/Components/StatusEffectComponent.cs @@ -1,4 +1,3 @@ -using Content.Shared.Alert; using Content.Shared.Whitelist; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; diff --git a/Content.Shared/StatusEffectNew/StatusEffectAlertSystem.cs b/Content.Shared/StatusEffectNew/StatusEffectAlertSystem.cs index d540f865c0..1405a5fd62 100644 --- a/Content.Shared/StatusEffectNew/StatusEffectAlertSystem.cs +++ b/Content.Shared/StatusEffectNew/StatusEffectAlertSystem.cs @@ -1,6 +1,5 @@ using Content.Shared.Alert; using Content.Shared.StatusEffectNew.Components; -using Robust.Shared.Timing; namespace Content.Shared.StatusEffectNew; @@ -9,7 +8,6 @@ namespace Content.Shared.StatusEffectNew; /// public sealed class StatusEffectAlertSystem : EntitySystem { - [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly AlertsSystem _alerts = default!; private EntityQuery _effectQuery; @@ -30,7 +28,7 @@ public sealed class StatusEffectAlertSystem : EntitySystem if (!_effectQuery.TryComp(ent, out var effectComp)) return; - RefreshAlert(ent, args.Target, effectComp.EndEffectTime); + _alerts.UpdateAlert(args.Target, ent.Comp.Alert, cooldown: ent.Comp.ShowDuration ? effectComp.EndEffectTime : null); } private void OnStatusEffectRemoved(Entity ent, ref StatusEffectRemovedEvent args) @@ -40,23 +38,6 @@ public sealed class StatusEffectAlertSystem : EntitySystem private void OnEndTimeUpdated(Entity ent, ref StatusEffectEndTimeUpdatedEvent args) { - RefreshAlert(ent, args.Target, args.EndTime); - } - - private void RefreshAlert(Entity ent, EntityUid target, TimeSpan? endTime) - { - (TimeSpan Start, TimeSpan End)? cooldown = null; - - // Make sure the start time of the alert cooldown is still accurate - // This ensures the progress wheel doesn't "reset" every duration change. - if (ent.Comp.ShowDuration - && endTime is not null - && _alerts.TryGet(ent.Comp.Alert, out var alert)) - { - _alerts.TryGetAlertState(target, alert.AlertKey, out var alertState); - cooldown = (alertState.Cooldown?.Item1 ?? _timing.CurTime, endTime.Value); - } - - _alerts.ShowAlert(target, ent.Comp.Alert, cooldown: cooldown); + _alerts.UpdateAlert(args.Target, ent.Comp.Alert, cooldown: ent.Comp.ShowDuration ? args.EndTime : null); } } diff --git a/Content.Shared/StatusEffectNew/StatusEffectSystem.API.cs b/Content.Shared/StatusEffectNew/StatusEffectSystem.API.cs index d30ab79c2b..56636c9601 100644 --- a/Content.Shared/StatusEffectNew/StatusEffectSystem.API.cs +++ b/Content.Shared/StatusEffectNew/StatusEffectSystem.API.cs @@ -22,6 +22,13 @@ public sealed partial class StatusEffectsSystem TimeSpan duration ) { + if (duration == TimeSpan.Zero) + { + statusEffect = null; + return false; + } + + // We check to make sure time is greater than zero here because sometimes you want to use TryAddStatusEffect to remove duration instead... if (!TryGetStatusEffect(target, effectProto, out statusEffect)) return TryAddStatusEffect(target, effectProto, out statusEffect, duration); @@ -53,10 +60,16 @@ public sealed partial class StatusEffectsSystem TimeSpan? duration = null ) { + if (duration <= TimeSpan.Zero) + { + statusEffect = null; + return false; + } + if (!TryGetStatusEffect(target, effectProto, out statusEffect)) return TryAddStatusEffect(target, effectProto, out statusEffect, duration); - SetStatusEffectTime(statusEffect.Value, duration); + SetStatusEffectEndTime(statusEffect.Value, duration); return true; } @@ -83,6 +96,12 @@ public sealed partial class StatusEffectsSystem TimeSpan? duration = null ) { + if (duration <= TimeSpan.Zero) + { + statusEffect = null; + return false; + } + if (!TryGetStatusEffect(target, effectProto, out statusEffect)) return TryAddStatusEffect(target, effectProto, out statusEffect, duration); @@ -272,7 +291,7 @@ public sealed partial class StatusEffectsSystem var meta = MetaData(effect); if (meta.EntityPrototype is not null && meta.EntityPrototype == effectProto) { - SetStatusEffectTime(effect, time); + SetStatusEffectEndTime(effect, time); return true; } } diff --git a/Content.Shared/StatusEffectNew/StatusEffectSystem.Relay.cs b/Content.Shared/StatusEffectNew/StatusEffectSystem.Relay.cs index 0c4c5cf1f7..3644bed45e 100644 --- a/Content.Shared/StatusEffectNew/StatusEffectSystem.Relay.cs +++ b/Content.Shared/StatusEffectNew/StatusEffectSystem.Relay.cs @@ -1,6 +1,7 @@ using Content.Shared.Movement.Events; using Content.Shared.Movement.Systems; using Content.Shared.Rejuvenate; +using Content.Shared.Speech; using Content.Shared.StatusEffectNew.Components; using Content.Shared.Stunnable; using Robust.Shared.Player; @@ -23,6 +24,8 @@ public sealed partial class StatusEffectsSystem SubscribeLocalEvent(RefRelayStatusEffectEvent); SubscribeLocalEvent(RefRelayStatusEffectEvent); + + SubscribeLocalEvent(RelayStatusEffectEvent); } private void RefRelayStatusEffectEvent(EntityUid uid, StatusEffectContainerComponent component, ref T args) where T : struct diff --git a/Content.Shared/StatusEffectNew/StatusEffectsSystem.cs b/Content.Shared/StatusEffectNew/StatusEffectsSystem.cs index f1edcfe819..750868481e 100644 --- a/Content.Shared/StatusEffectNew/StatusEffectsSystem.cs +++ b/Content.Shared/StatusEffectNew/StatusEffectsSystem.cs @@ -55,11 +55,7 @@ public sealed partial class StatusEffectsSystem : EntitySystem if (effect.AppliedTo is null) continue; - var meta = MetaData(ent); - if (meta.EntityPrototype is null) - continue; - - TryRemoveStatusEffect(effect.AppliedTo.Value, meta.EntityPrototype); + PredictedQueueDel(ent); } } @@ -125,47 +121,6 @@ public sealed partial class StatusEffectsSystem : EntitySystem PredictedQueueDel(ent.Owner); } - private void SetStatusEffectTime(EntityUid effect, TimeSpan? duration) - { - if (!_effectQuery.TryComp(effect, out var effectComp)) - return; - - if (duration is null) - { - if(effectComp.EndEffectTime is null) - return; - - effectComp.EndEffectTime = null; - } - else - effectComp.EndEffectTime = _timing.CurTime + duration; - - Dirty(effect, effectComp); - } - - private void UpdateStatusEffectTime(EntityUid effect, TimeSpan? duration) - { - if (!_effectQuery.TryComp(effect, out var effectComp)) - return; - - // It's already infinitely long - if (effectComp.EndEffectTime is null) - return; - - if (duration is null) - effectComp.EndEffectTime = null; - else - { - var newEndTime = _timing.CurTime + duration; - if (effectComp.EndEffectTime >= newEndTime) - return; - - effectComp.EndEffectTime = newEndTime; - } - - Dirty(effect, effectComp); - } - public bool CanAddStatusEffect(EntityUid uid, EntProtoId effectProto) { if (!_proto.TryIndex(effectProto, out var effectProtoData)) @@ -202,6 +157,10 @@ public sealed partial class StatusEffectsSystem : EntitySystem ) { statusEffect = null; + + if (duration <= TimeSpan.Zero) + return false; + if (!CanAddStatusEffect(target, effectProto)) return false; @@ -223,13 +182,39 @@ public sealed partial class StatusEffectsSystem : EntitySystem return true; } - private void AddStatusEffectTime(EntityUid effect, TimeSpan delta) + private void UpdateStatusEffectTime(Entity effect, TimeSpan? duration) { - if (!_effectQuery.TryComp(effect, out var effectComp)) + if (!_effectQuery.Resolve(effect, ref effect.Comp)) return; - // If we don't have an end time set, we want to just make the status effect end in delta time from now. - SetStatusEffectEndTime((effect, effectComp), (effectComp.EndEffectTime ?? _timing.CurTime) + delta); + // It's already infinitely long + if (effect.Comp.EndEffectTime is null) + return; + + TimeSpan? newEndTime = null; + + if (duration is not null) + { + // Don't update time to a smaller timespan... + newEndTime = _timing.CurTime + duration; + if (effect.Comp.EndEffectTime >= newEndTime) + return; + } + + SetStatusEffectEndTime(effect, newEndTime); + } + + private void AddStatusEffectTime(Entity effect, TimeSpan delta) + { + if (!_effectQuery.Resolve(effect, ref effect.Comp)) + return; + + // It's already infinitely long can't add or subtract from infinity... + if (effect.Comp.EndEffectTime is null) + return; + + // Add to the current end effect time, if we're here we should have one set already, and if it's null it's probably infinite. + SetStatusEffectEndTime((effect, effect.Comp), effect.Comp.EndEffectTime.Value + delta); } private void SetStatusEffectEndTime(Entity ent, TimeSpan? endTime) diff --git a/Content.Shared/StepTrigger/Systems/StepTriggerSystem.cs b/Content.Shared/StepTrigger/Systems/StepTriggerSystem.cs index 14703f3177..d1443e5da2 100644 --- a/Content.Shared/StepTrigger/Systems/StepTriggerSystem.cs +++ b/Content.Shared/StepTrigger/Systems/StepTriggerSystem.cs @@ -139,7 +139,7 @@ public sealed class StepTriggerSystem : EntitySystem // and the entity is flying or currently weightless // Makes sense simulation wise to have this be part of steptrigger directly IMO if (!component.IgnoreWeightless && TryComp(otherUid, out var physics) && - (physics.BodyStatus == BodyStatus.InAir || _gravity.IsWeightless(otherUid, physics))) + (physics.BodyStatus == BodyStatus.InAir || _gravity.IsWeightless(otherUid))) return false; var msg = new StepTriggerAttemptEvent { Source = uid, Tripper = otherUid }; diff --git a/Content.Shared/Storage/Components/SharedEntityStorageComponent.cs b/Content.Shared/Storage/Components/EntityStorageComponent.cs similarity index 85% rename from Content.Shared/Storage/Components/SharedEntityStorageComponent.cs rename to Content.Shared/Storage/Components/EntityStorageComponent.cs index a0d4e418cc..628cc85252 100644 --- a/Content.Shared/Storage/Components/SharedEntityStorageComponent.cs +++ b/Content.Shared/Storage/Components/EntityStorageComponent.cs @@ -1,4 +1,5 @@ using System.Numerics; +using Content.Shared.Atmos; using Content.Shared.Physics; using Content.Shared.Whitelist; using Robust.Shared.Audio; @@ -8,8 +9,8 @@ using Robust.Shared.Serialization; namespace Content.Shared.Storage.Components; -[NetworkedComponent] -public abstract partial class SharedEntityStorageComponent : Component +[RegisterComponent, NetworkedComponent] +public sealed partial class EntityStorageComponent : Component, IGasMixtureHolder { public readonly float MaxSize = 1.0f; // maximum width or height of an entity allowed inside the storage. @@ -19,7 +20,7 @@ public abstract partial class SharedEntityStorageComponent : Component /// /// Collision masks that get removed when the storage gets opened. /// - public readonly int MasksToRemove = (int) ( + public readonly int MasksToRemove = (int)( CollisionGroup.MidImpassable | CollisionGroup.HighImpassable | CollisionGroup.LowImpassable); @@ -33,13 +34,13 @@ public abstract partial class SharedEntityStorageComponent : Component /// /// The total amount of items that can fit in one entitystorage /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public int Capacity = 30; /// /// Whether or not the entity still has collision when open /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public bool IsCollidableWhenOpen; /// @@ -47,45 +48,45 @@ public abstract partial class SharedEntityStorageComponent : Component /// If false, it prevents the storage from opening when the entity inside of it moves. /// This is for objects that you want the player to move while inside, like large cardboard boxes, without opening the storage. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public bool OpenOnMove = true; //The offset for where items are emptied/vacuumed for the EntityStorage. - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public Vector2 EnteringOffset = new(0, 0); //The collision groups checked, so that items are depositied or grabbed from inside walls. - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public CollisionGroup EnteringOffsetCollisionFlags = CollisionGroup.Impassable | CollisionGroup.MidImpassable; /// /// How close you have to be to the "entering" spot to be able to enter /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public float EnteringRange = 0.18f; /// /// Whether or not to show the contents when the storage is closed /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public bool ShowContents; /// /// Whether or not light is occluded by the storage /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public bool OccludesLight = true; /// /// Whether or not all the contents stored should be deleted with the entitystorage /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public bool DeleteContentsOnDestruction; /// /// Whether or not the container is sealed and traps air inside of it /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public bool Airtight = true; /// @@ -118,6 +119,13 @@ public abstract partial class SharedEntityStorageComponent : Component /// [ViewVariables] public Container Contents = default!; + + /// + /// Gas currently contained in this entity storage. + /// None while open. Grabs gas from the atmosphere when closed, and exposes any entities inside to it. + /// + [DataField] + public GasMixture Air { get; set; } = new(200); } [Serializable, NetSerializable] @@ -158,6 +166,13 @@ public record struct InsertIntoEntityStorageAttemptEvent(EntityUid ItemToInsert, [ByRefEvent] public record struct EntityStorageInsertedIntoAttemptEvent(EntityUid ItemToInsert, bool Cancelled = false); +/// +/// Raised on the Container's owner whenever an entity storage tries to dump its +/// contents while within a container. +/// +[ByRefEvent] +public record struct EntityStorageIntoContainerAttemptEvent(BaseContainer Container, bool Cancelled = false); + [ByRefEvent] public record struct StorageOpenAttemptEvent(EntityUid User, bool Silent, bool Cancelled = false); diff --git a/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs b/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs index 3691f6e2b6..7e83b50fba 100644 --- a/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs @@ -8,7 +8,6 @@ using Content.Shared.Interaction; using Content.Shared.Item; using Content.Shared.Materials; using Content.Shared.Nutrition; -using Content.Shared.Nutrition.EntitySystems; using Content.Shared.Popups; using Content.Shared.Storage.Components; using Content.Shared.Tools.EntitySystems; @@ -26,7 +25,6 @@ namespace Content.Shared.Storage.EntitySystems; /// public sealed class SecretStashSystem : EntitySystem { - [Dependency] private readonly IngestionSystem _ingestion = default!; [Dependency] private readonly SharedPopupSystem _popupSystem = default!; [Dependency] private readonly SharedHandsSystem _handsSystem = default!; [Dependency] private readonly SharedContainerSystem _containerSystem = default!; diff --git a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs index fd7cb87b2a..066cd2d886 100644 --- a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs @@ -48,12 +48,12 @@ public abstract class SharedEntityStorageSystem : EntitySystem public const string ContainerName = "entity_storage"; - protected void OnEntityUnpausedEvent(EntityUid uid, SharedEntityStorageComponent component, EntityUnpausedEvent args) + protected void OnEntityUnpausedEvent(EntityUid uid, EntityStorageComponent component, EntityUnpausedEvent args) { component.NextInternalOpenAttempt += args.PausedTime; } - protected void OnGetState(EntityUid uid, SharedEntityStorageComponent component, ref ComponentGetState args) + protected void OnGetState(EntityUid uid, EntityStorageComponent component, ref ComponentGetState args) { args.State = new EntityStorageComponentState(component.Open, component.Capacity, @@ -63,7 +63,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem component.NextInternalOpenAttempt); } - protected void OnHandleState(EntityUid uid, SharedEntityStorageComponent component, ref ComponentHandleState args) + protected void OnHandleState(EntityUid uid, EntityStorageComponent component, ref ComponentHandleState args) { if (args.Current is not EntityStorageComponentState state) return; @@ -75,19 +75,19 @@ public abstract class SharedEntityStorageSystem : EntitySystem component.NextInternalOpenAttempt = state.NextInternalOpenAttempt; } - protected virtual void OnComponentInit(EntityUid uid, SharedEntityStorageComponent component, ComponentInit args) + protected virtual void OnComponentInit(EntityUid uid, EntityStorageComponent component, ComponentInit args) { component.Contents = _container.EnsureContainer(uid, ContainerName); component.Contents.ShowContents = component.ShowContents; component.Contents.OccludesLight = component.OccludesLight; } - protected virtual void OnComponentStartup(EntityUid uid, SharedEntityStorageComponent component, ComponentStartup args) + protected virtual void OnComponentStartup(EntityUid uid, EntityStorageComponent component, ComponentStartup args) { _appearance.SetData(uid, StorageVisuals.Open, component.Open); } - protected void OnInteract(EntityUid uid, SharedEntityStorageComponent component, ActivateInWorldEvent args) + protected void OnInteract(EntityUid uid, EntityStorageComponent component, ActivateInWorldEvent args) { if (args.Handled || !args.Complex) return; @@ -96,9 +96,9 @@ public abstract class SharedEntityStorageSystem : EntitySystem ToggleOpen(args.User, uid, component); } - public abstract bool ResolveStorage(EntityUid uid, [NotNullWhen(true)] ref SharedEntityStorageComponent? component); + public abstract bool ResolveStorage(EntityUid uid, [NotNullWhen(true)] ref EntityStorageComponent? component); - protected void OnLockToggleAttempt(EntityUid uid, SharedEntityStorageComponent target, ref LockToggleAttemptEvent args) + protected void OnLockToggleAttempt(EntityUid uid, EntityStorageComponent target, ref LockToggleAttemptEvent args) { // Cannot (un)lock open lockers. if (target.Open) @@ -109,7 +109,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem args.Cancelled = true; } - protected void OnDestruction(EntityUid uid, SharedEntityStorageComponent component, DestructionEventArgs args) + protected void OnDestruction(EntityUid uid, EntityStorageComponent component, DestructionEventArgs args) { component.Open = true; Dirty(uid, component); @@ -125,7 +125,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem } } - protected void OnRelayMovement(EntityUid uid, SharedEntityStorageComponent component, ref ContainerRelayMovementEntityEvent args) + protected void OnRelayMovement(EntityUid uid, EntityStorageComponent component, ref ContainerRelayMovementEntityEvent args) { if (!HasComp(args.Entity)) return; @@ -136,21 +136,21 @@ public abstract class SharedEntityStorageSystem : EntitySystem if (_timing.CurTime < component.NextInternalOpenAttempt) return; - component.NextInternalOpenAttempt = _timing.CurTime + SharedEntityStorageComponent.InternalOpenAttemptDelay; + component.NextInternalOpenAttempt = _timing.CurTime + EntityStorageComponent.InternalOpenAttemptDelay; Dirty(uid, component); if (component.OpenOnMove) TryOpenStorage(args.Entity, uid); } - protected void OnFoldAttempt(EntityUid uid, SharedEntityStorageComponent component, ref FoldAttemptEvent args) + protected void OnFoldAttempt(EntityUid uid, EntityStorageComponent component, ref FoldAttemptEvent args) { if (args.Cancelled) return; args.Cancelled = component.Open || component.Contents.ContainedEntities.Count != 0; } - protected void AddToggleOpenVerb(EntityUid uid, SharedEntityStorageComponent component, GetVerbsEvent args) + protected void AddToggleOpenVerb(EntityUid uid, EntityStorageComponent component, GetVerbsEvent args) { if (!args.CanAccess || !args.CanInteract) return; @@ -175,7 +175,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem } - public void ToggleOpen(EntityUid user, EntityUid target, SharedEntityStorageComponent? component = null) + public void ToggleOpen(EntityUid user, EntityUid target, EntityStorageComponent? component = null) { if (!ResolveStorage(target, ref component)) return; @@ -190,7 +190,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem } } - public void EmptyContents(EntityUid uid, SharedEntityStorageComponent? component = null) + public void EmptyContents(EntityUid uid, EntityStorageComponent? component = null) { if (!ResolveStorage(uid, ref component)) return; @@ -203,7 +203,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem } } - public void OpenStorage(EntityUid uid, SharedEntityStorageComponent? component = null) + public void OpenStorage(EntityUid uid, EntityStorageComponent? component = null) { if (!ResolveStorage(uid, ref component)) return; @@ -224,7 +224,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem RaiseLocalEvent(uid, ref afterev); } - public void CloseStorage(EntityUid uid, SharedEntityStorageComponent? component = null) + public void CloseStorage(EntityUid uid, EntityStorageComponent? component = null) { if (!ResolveStorage(uid, ref component)) return; @@ -275,7 +275,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem RaiseLocalEvent(uid, ref afterev); } - public bool Insert(EntityUid toInsert, EntityUid container, SharedEntityStorageComponent? component = null) + public bool Insert(EntityUid toInsert, EntityUid container, EntityStorageComponent? component = null) { if (!ResolveStorage(container, ref component)) return false; @@ -295,7 +295,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem return true; } - public bool Remove(EntityUid toRemove, EntityUid container, SharedEntityStorageComponent? component = null, TransformComponent? xform = null) + public bool Remove(EntityUid toRemove, EntityUid container, EntityStorageComponent? component = null, TransformComponent? xform = null) { if (!Resolve(container, ref xform, false)) return false; @@ -305,10 +305,13 @@ public abstract class SharedEntityStorageSystem : EntitySystem _container.Remove(toRemove, component.Contents); - if (_container.IsEntityInContainer(container)) + if (_container.IsEntityInContainer(container) + && _container.TryGetOuterContainer(container, Transform(container), out var outerContainer)) { - if (_container.TryGetOuterContainer(container, Transform(container), out var outerContainer) && - !HasComp(outerContainer.Owner)) + + var attemptEvent = new EntityStorageIntoContainerAttemptEvent(outerContainer); + RaiseLocalEvent(outerContainer.Owner, ref attemptEvent); + if (!attemptEvent.Cancelled) { _container.Insert(toRemove, outerContainer); return true; @@ -322,7 +325,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem return true; } - public bool CanInsert(EntityUid toInsert, EntityUid container, SharedEntityStorageComponent? component = null) + public bool CanInsert(EntityUid toInsert, EntityUid container, EntityStorageComponent? component = null) { if (!ResolveStorage(container, ref component)) return false; @@ -379,7 +382,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem return true; } - public bool IsOpen(EntityUid target, SharedEntityStorageComponent? component = null) + public bool IsOpen(EntityUid target, EntityStorageComponent? component = null) { if (!ResolveStorage(target, ref component)) return false; @@ -387,7 +390,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem return component.Open; } - public bool CanOpen(EntityUid user, EntityUid target, bool silent = false, SharedEntityStorageComponent? component = null) + public bool CanOpen(EntityUid user, EntityUid target, bool silent = false, EntityStorageComponent? component = null) { if (!ResolveStorage(target, ref component)) return false; @@ -429,7 +432,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem return !ev.Cancelled; } - public bool AddToContents(EntityUid toAdd, EntityUid container, SharedEntityStorageComponent? component = null) + public bool AddToContents(EntityUid toAdd, EntityUid container, EntityStorageComponent? component = null) { if (!ResolveStorage(container, ref component)) return false; @@ -440,7 +443,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem return Insert(toAdd, container, component); } - private void ModifyComponents(EntityUid uid, SharedEntityStorageComponent? component = null) + private void ModifyComponents(EntityUid uid, EntityStorageComponent? component = null) { if (!ResolveStorage(uid, ref component)) return; @@ -472,12 +475,12 @@ public abstract class SharedEntityStorageSystem : EntitySystem _appearance.SetData(uid, StorageVisuals.HasContents, component.Contents.ContainedEntities.Count > 0); } - protected virtual void TakeGas(EntityUid uid, SharedEntityStorageComponent component) + protected virtual void TakeGas(EntityUid uid, EntityStorageComponent component) { } - public virtual void ReleaseGas(EntityUid uid, SharedEntityStorageComponent component) + public virtual void ReleaseGas(EntityUid uid, EntityStorageComponent component) { } diff --git a/Content.Shared/Strip/ThievingSystem.cs b/Content.Shared/Strip/ThievingSystem.cs index 4a76354844..3eacc90fbe 100644 --- a/Content.Shared/Strip/ThievingSystem.cs +++ b/Content.Shared/Strip/ThievingSystem.cs @@ -32,12 +32,12 @@ public sealed partial class ThievingSystem : EntitySystem private void OnCompInit(Entity entity, ref ComponentInit args) { - _alertsSystem.ShowAlert(entity, entity.Comp.StealthyAlertProtoId, 1); + _alertsSystem.ShowAlert(entity.Owner, entity.Comp.StealthyAlertProtoId, 1); } private void OnCompRemoved(Entity entity, ref ComponentRemove args) { - _alertsSystem.ClearAlert(entity, entity.Comp.StealthyAlertProtoId); + _alertsSystem.ClearAlert(entity.Owner, entity.Comp.StealthyAlertProtoId); } private void OnToggleStealthy(Entity ent, ref ToggleThievingEvent args) diff --git a/Content.Shared/Stunnable/CrawlerComponent.cs b/Content.Shared/Stunnable/CrawlerComponent.cs new file mode 100644 index 0000000000..d969117344 --- /dev/null +++ b/Content.Shared/Stunnable/CrawlerComponent.cs @@ -0,0 +1,40 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Stunnable; + +/// +/// This is used to denote that an entity can crawl. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, Access(typeof(SharedStunSystem))] +public sealed partial class CrawlerComponent : Component +{ + /// + /// Default time we will be knocked down for. + /// + [DataField, AutoNetworkedField] + public TimeSpan DefaultKnockedDuration { get; set; } = TimeSpan.FromSeconds(0.5); + + /// + /// Minimum damage taken to extend our knockdown timer by the default time. + /// + [DataField, AutoNetworkedField] + public float KnockdownDamageThreshold = 5f; + + /// + /// Time it takes us to stand up + /// + [DataField, AutoNetworkedField] + public TimeSpan StandTime = TimeSpan.FromSeconds(2); + + /// + /// Base modifier to the maximum movement speed of a knocked down mover. + /// + [DataField, AutoNetworkedField] + public float SpeedModifier = 0.4f; + + /// + /// Friction modifier applied to an entity in the downed state. + /// + [DataField, AutoNetworkedField] + public float FrictionModifier = 1f; +} diff --git a/Content.Shared/Stunnable/KnockdownStatusEffectComponent.cs b/Content.Shared/Stunnable/KnockdownStatusEffectComponent.cs index 79b2fb695b..b4805511b2 100644 --- a/Content.Shared/Stunnable/KnockdownStatusEffectComponent.cs +++ b/Content.Shared/Stunnable/KnockdownStatusEffectComponent.cs @@ -6,4 +6,22 @@ namespace Content.Shared.Stunnable; /// Knockdown as a status effect. /// [RegisterComponent, NetworkedComponent, Access(typeof(SharedStunSystem))] -public sealed partial class KnockdownStatusEffectComponent : Component; +public sealed partial class KnockdownStatusEffectComponent : Component +{ + /// + /// Should this knockdown only affect crawlers? + /// + /// + /// If your status effect doesn't come paired with + /// Or if your status effect doesn't whitelist itself to only those with + /// Then you need to set this to true. + /// + [DataField] + public bool Crawl; + + /// + /// Should we drop items when we fall? + /// + [DataField] + public bool Drop = true; +} diff --git a/Content.Shared/Stunnable/SharedStunSystem.Knockdown.cs b/Content.Shared/Stunnable/SharedStunSystem.Knockdown.cs index 26e8e47f03..3646dc8f28 100644 --- a/Content.Shared/Stunnable/SharedStunSystem.Knockdown.cs +++ b/Content.Shared/Stunnable/SharedStunSystem.Knockdown.cs @@ -1,9 +1,11 @@ -using Content.Shared.Alert; +using Content.Shared.Alert; using Content.Shared.Buckle.Components; +using Content.Shared.CCVar; using Content.Shared.Damage; using Content.Shared.Damage.Components; using Content.Shared.Database; using Content.Shared.DoAfter; +using Content.Shared.Gravity; using Content.Shared.Hands.EntitySystems; using Content.Shared.Input; using Content.Shared.Movement.Events; @@ -12,6 +14,7 @@ using Content.Shared.Popups; using Content.Shared.Rejuvenate; using Content.Shared.Standing; using Robust.Shared.Audio; +using Robust.Shared.Configuration; using Robust.Shared.Input.Binding; using Robust.Shared.Physics; using Robust.Shared.Physics.Systems; @@ -25,24 +28,21 @@ namespace Content.Shared.Stunnable; /// public abstract partial class SharedStunSystem { - // TODO: Both of these constants need to be moved to a component somewhere, and need to be tweaked for balance... - // We don't always have standing state available when these are called so it can't go there - // Maybe I can pass the values to KnockedDownComponent from Standing state on Component init? - // Default knockdown timer - public static readonly TimeSpan DefaultKnockedDuration = TimeSpan.FromSeconds(0.5f); - // Minimum damage taken to refresh our knockdown timer to the default duration - public static readonly float KnockdownDamageThreshold = 5f; + private EntityQuery _crawlerQuery; [Dependency] private readonly EntityLookupSystem _entityLookup = default!; [Dependency] private readonly SharedHandsSystem _hands = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly StandingStateSystem _standingState = default!; + [Dependency] private readonly IConfigurationManager _cfgManager = default!; public static readonly ProtoId KnockdownAlert = "Knockdown"; private void InitializeKnockdown() { + _crawlerQuery = GetEntityQuery(); + SubscribeLocalEvent(OnRejuvenate); // Startup and Shutdown @@ -61,8 +61,12 @@ public abstract partial class SharedStunSystem // DoAfter event subscriptions SubscribeLocalEvent(OnStandDoAfter); - // Knockdown Extenders - SubscribeLocalEvent(OnDamaged); + // Crawling + SubscribeLocalEvent(OnKnockdownRefresh); + SubscribeLocalEvent(OnDamaged); + SubscribeLocalEvent(OnWeightlessnessChanged); + SubscribeLocalEvent(OnKnockdownAttempt); + SubscribeLocalEvent(OnGetStandUpTime); // Handling Alternative Inputs SubscribeAllEvent(OnForceStandup); @@ -81,6 +85,7 @@ public abstract partial class SharedStunSystem while (query.MoveNext(out var uid, out var knockedDown)) { + // If it's null then we don't want to stand up if (!knockedDown.AutoStand || knockedDown.DoAfterId.HasValue || knockedDown.NextUpdate > GameTiming.CurTime) continue; @@ -112,7 +117,7 @@ public abstract partial class SharedStunSystem entity.Comp.SpeedModifier = 1f; _standingState.Stand(entity); - Alerts.ClearAlert(entity, KnockdownAlert); + Alerts.ClearAlert(entity.Owner, KnockdownAlert); } #endregion @@ -157,7 +162,7 @@ public abstract partial class SharedStunSystem /// Entity who's knockdown time we're updating. /// The time we're updating with. /// Whether we're resetting the timer or adding to the current timer. - public void UpdateKnockdownTime(Entity entity, TimeSpan time, bool refresh = true) + public void UpdateKnockdownTime(Entity entity, TimeSpan time, bool refresh = true) { if (refresh) RefreshKnockdownTime(entity, time); @@ -174,6 +179,7 @@ public abstract partial class SharedStunSystem { entity.Comp.NextUpdate = time; DirtyField(entity, entity.Comp, nameof(KnockedDownComponent.NextUpdate)); + Alerts.ShowAlert(entity.Owner, KnockdownAlert, null, (GameTiming.CurTime, entity.Comp.NextUpdate)); } /// @@ -182,11 +188,14 @@ public abstract partial class SharedStunSystem /// /// Entity whose timer we're updating /// The time we want them to be knocked down for. - public void RefreshKnockdownTime(Entity entity, TimeSpan time) + public void RefreshKnockdownTime(Entity entity, TimeSpan time) { + if (!Resolve(entity, ref entity.Comp, false)) + return; + var knockedTime = GameTiming.CurTime + time; if (entity.Comp.NextUpdate < knockedTime) - SetKnockdownTime(entity, knockedTime); + SetKnockdownTime((entity, entity.Comp), knockedTime); } /// @@ -194,35 +203,20 @@ public abstract partial class SharedStunSystem /// /// Entity whose timer we're updating /// The time we want to add to their knocked down timer. - public void AddKnockdownTime(Entity entity, TimeSpan time) + public void AddKnockdownTime(Entity entity, TimeSpan time) { + if (!Resolve(entity, ref entity.Comp, false)) + return; + if (entity.Comp.NextUpdate < GameTiming.CurTime) { - SetKnockdownTime(entity, GameTiming.CurTime + time); + SetKnockdownTime((entity, entity.Comp), GameTiming.CurTime + time); return; } entity.Comp.NextUpdate += time; DirtyField(entity, entity.Comp, nameof(KnockedDownComponent.NextUpdate)); - } - - /// - /// Checks if an entity is able to stand, returns true if it can, returns false if it cannot. - /// - /// Entity we're checking - /// Returns whether the entity is able to stand - public bool CanStand(Entity entity) - { - if (entity.Comp.NextUpdate > GameTiming.CurTime) - return false; - - if (!Blocker.CanMove(entity)) - return false; - - var ev = new StandUpAttemptEvent(); - RaiseLocalEvent(entity, ref ev); - - return !ev.Cancelled; + Alerts.ShowAlert(entity.Owner, KnockdownAlert, null, (GameTiming.CurTime, entity.Comp.NextUpdate)); } #endregion @@ -237,29 +231,55 @@ public abstract partial class SharedStunSystem if (playerSession.AttachedEntity is not { Valid: true } playerEnt || !Exists(playerEnt)) return; - if (!TryComp(playerEnt, out var component)) + ToggleKnockdown(playerEnt); + } + + /// + /// Handles an entity trying to make itself fall down. + /// + /// Entity who is trying to fall down + private void ToggleKnockdown(Entity entity) + { + // We resolve here instead of using TryCrawling to be extra sure someone without crawler can't stand up early. + if (!Resolve(entity, ref entity.Comp1, false) || !_cfgManager.GetCVar(CCVars.MovementCrawling)) + return; + + if (!Resolve(entity, ref entity.Comp2, false)) { - TryKnockdown(playerEnt, DefaultKnockedDuration, true, false, false); // TODO: Unhardcode these numbers + TryKnockdown(entity.Owner, entity.Comp1.DefaultKnockedDuration, true, false, false); return; } - var stand = !component.DoAfterId.HasValue; - SetAutoStand(playerEnt, stand); + var stand = !entity.Comp2.DoAfterId.HasValue; + SetAutoStand((entity, entity.Comp2), stand); - if (!stand || !TryStanding(playerEnt)) - CancelKnockdownDoAfter((playerEnt, component)); + if (!stand || !TryStanding((entity, entity.Comp2))) + CancelKnockdownDoAfter((entity, entity.Comp2)); } - public bool TryStanding(Entity entity) + public bool TryStanding(Entity entity) { // If we aren't knocked down or can't be knocked down, then we did technically succeed in standing up - if (!Resolve(entity, ref entity.Comp1, ref entity.Comp2, false)) + if (!Resolve(entity, ref entity.Comp, false)) return true; - if (!TryStand((entity.Owner, entity.Comp1))) + if (!KnockdownOver((entity, entity.Comp))) return false; - var ev = new GetStandUpTimeEvent(entity.Comp2.StandTime); + if (!_crawlerQuery.TryComp(entity, out var crawler) || !_cfgManager.GetCVar(CCVars.MovementCrawling)) + { + // If we can't crawl then just have us sit back up... + // In case you're wondering, the KnockdownOverCheck, returns if we're able to move, so if next update is null. + // An entity that can't crawl will stand up the next time they can move, which should prevent moving while knocked down. + RemComp(entity); + _adminLogger.Add(LogType.Stamina, LogImpact.Medium, $"{ToPrettyString(entity):user} has stood up from knockdown."); + return true; + } + + if (!TryStand((entity, entity.Comp))) + return false; + + var ev = new GetStandUpTimeEvent(crawler.StandTime); RaiseLocalEvent(entity, ref ev); var doAfterArgs = new DoAfterArgs(EntityManager, entity, ev.DoAfterTime, new TryStandDoAfterEvent(), entity, entity) @@ -275,11 +295,19 @@ public abstract partial class SharedStunSystem if (!DoAfter.TryStartDoAfter(doAfterArgs, out var doAfterId)) return false; - entity.Comp1.DoAfterId = doAfterId.Value.Index; - DirtyField(entity, entity.Comp1, nameof(KnockedDownComponent.DoAfterId)); + entity.Comp.DoAfterId = doAfterId.Value.Index; + DirtyField(entity, entity.Comp, nameof(KnockedDownComponent.DoAfterId)); return true; } + public bool KnockdownOver(Entity entity) + { + if (entity.Comp.NextUpdate > GameTiming.CurTime) + return false; + + return Blocker.CanMove(entity); + } + /// /// A variant of used when we're actually trying to stand. /// Main difference is this one affects autostand datafields and also displays popups. @@ -288,10 +316,7 @@ public abstract partial class SharedStunSystem /// Returns whether the entity is able to stand public bool TryStand(Entity entity) { - if (entity.Comp.NextUpdate > GameTiming.CurTime) - return false; - - if (!Blocker.CanMove(entity)) + if (!KnockdownOver(entity)) return false; var ev = new StandUpAttemptEvent(entity.Comp.AutoStand); @@ -308,6 +333,22 @@ public abstract partial class SharedStunSystem return !ev.Cancelled; } + /// + /// Checks if an entity is able to stand, returns true if it can, returns false if it cannot. + /// + /// Entity we're checking + /// Returns whether the entity is able to stand + public bool CanStand(Entity entity) + { + if (!KnockdownOver(entity)) + return false; + + var ev = new StandUpAttemptEvent(); + RaiseLocalEvent(entity, ref ev); + + return !ev.Cancelled; + } + private bool StandingBlocked(Entity entity) { if (!TryStand(entity)) @@ -338,7 +379,7 @@ public abstract partial class SharedStunSystem // That way if we fail to stand, the game will try to stand for us when we are able to SetAutoStand(entity, true); - if (!HasComp(entity) || StandingBlocked((entity, entity.Comp))) + if (StandingBlocked((entity, entity.Comp))) return; if (!_hands.TryGetEmptyHand(entity.Owner, out _)) @@ -436,16 +477,48 @@ public abstract partial class SharedStunSystem #endregion - #region Knockdown Extenders + #region Crawling - private void OnDamaged(Entity entity, ref DamageChangedEvent args) + private void OnDamaged(Entity entity, ref DamageChangedEvent args) { // We only want to extend our knockdown timer if it would've prevented us from standing up if (!args.InterruptsDoAfters || !args.DamageIncreased || args.DamageDelta == null || GameTiming.ApplyingState) return; - if (args.DamageDelta.GetTotal() >= KnockdownDamageThreshold) // TODO: Unhardcode this - SetKnockdownTime(entity, GameTiming.CurTime + DefaultKnockedDuration); + if (args.DamageDelta.GetTotal() >= entity.Comp.KnockdownDamageThreshold) + RefreshKnockdownTime(entity.Owner, entity.Comp.DefaultKnockedDuration); + } + + private void OnKnockdownRefresh(Entity entity, ref KnockedDownRefreshEvent args) + { + args.FrictionModifier *= entity.Comp.FrictionModifier; + args.SpeedModifier *= entity.Comp.SpeedModifier; + } + + private void OnWeightlessnessChanged(Entity entity, ref WeightlessnessChangedEvent args) + { + // I probably don't need this check since weightless -> non-weightless you shouldn't be knocked down + // But you never know. + if (!args.Weightless) + return; + + // Targeted moth attack + CancelKnockdownDoAfter((entity, entity.Comp)); + RemCompDeferred(entity); + } + + private void OnKnockdownAttempt(Entity entity, ref KnockDownAttemptEvent args) + { + // Directed, targeted moth attack. + if (entity.Comp.Weightless) + args.Cancelled = true; + } + + private void OnGetStandUpTime(Entity entity, ref GetStandUpTimeEvent args) + { + // Get up instantly if weightless + if (entity.Comp.Weightless) + args.DoAfterTime = TimeSpan.Zero; } #endregion diff --git a/Content.Shared/Stunnable/SharedStunSystem.cs b/Content.Shared/Stunnable/SharedStunSystem.cs index 199afcabf2..dcf9ee4f60 100644 --- a/Content.Shared/Stunnable/SharedStunSystem.cs +++ b/Content.Shared/Stunnable/SharedStunSystem.cs @@ -26,7 +26,6 @@ namespace Content.Shared.Stunnable; public abstract partial class SharedStunSystem : EntitySystem { public static readonly EntProtoId StunId = "StatusEffectStunned"; - public static readonly EntProtoId KnockdownId = "StatusEffectKnockdown"; [Dependency] protected readonly IGameTiming GameTiming = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; @@ -61,10 +60,11 @@ public abstract partial class SharedStunSystem : EntitySystem SubscribeLocalEvent(OnMobStateChanged); // New Status Effect subscriptions - SubscribeLocalEvent(OnStunEffectApplied); + SubscribeLocalEvent(OnStunStatusApplied); SubscribeLocalEvent(OnStunStatusRemoved); SubscribeLocalEvent>(OnStunEndAttempt); + SubscribeLocalEvent(OnKnockdownStatusApplied); SubscribeLocalEvent>(OnStandUpAttempt); // Stun Appearance Data @@ -123,7 +123,7 @@ public abstract partial class SharedStunSystem : EntitySystem return; TryUpdateStunDuration(args.OtherEntity, ent.Comp.Duration); - TryKnockdown(args.OtherEntity, ent.Comp.Duration, true, force: true); + TryKnockdown(args.OtherEntity, ent.Comp.Duration, force: true); } // TODO STUN: Make events for different things. (Getting modifiers, attempt events, informative events...) @@ -156,29 +156,54 @@ public abstract partial class SharedStunSystem : EntitySystem _adminLogger.Add(LogType.Stamina, LogImpact.Medium, $"{ToPrettyString(uid):user} stunned for {timeForLogs} seconds"); } - public bool TryAddKnockdownDuration(EntityUid uid, TimeSpan duration) + /// + /// Tries to knock an entity to the ground, but will fail if they aren't able to crawl. + /// Useful if you don't want to paralyze an entity that can't crawl, but still want to knockdown + /// entities that can. + /// + /// Entity we're trying to knockdown. + /// Time of the knockdown. + /// Do we refresh their timer, or add to it if one exists? + /// Whether we should automatically stand when knockdown ends. + /// Should we drop what we're holding? + /// Should we force crawling? Even if something tried to block it? + /// Returns true if the entity is able to crawl, and was able to be knocked down. + public bool TryCrawling(Entity entity, + TimeSpan? time, + bool refresh = true, + bool autoStand = true, + bool drop = true, + bool force = false) { - if (!_status.TryAddStatusEffectDuration(uid, KnockdownId, duration)) + if (!Resolve(entity, ref entity.Comp, false)) return false; - TryKnockdown(uid, duration, true, force: true); - - return true; - + return TryKnockdown(entity, time, refresh, autoStand, drop, force); } - public bool TryUpdateKnockdownDuration(EntityUid uid, TimeSpan? duration) + /// + /// An overload of TryCrawling which uses the default crawling time from the CrawlerComponent as its timespan. + public bool TryCrawling(Entity entity, + bool refresh = true, + bool autoStand = true, + bool drop = true, + bool force = false) { - if (!_status.TryUpdateStatusEffectDuration(uid, KnockdownId, duration)) + if (!Resolve(entity, ref entity.Comp, false)) return false; - return TryKnockdown(uid, duration, true, force: true); + return TryKnockdown(entity, entity.Comp.DefaultKnockedDuration, refresh, autoStand, drop, force); } /// - /// Knocks down the entity, making it fall to the ground. + /// Checks if we can knock down an entity to the ground... /// - public bool TryKnockdown(Entity entity, TimeSpan? time, bool refresh, bool autoStand = true, bool drop = true, bool force = false) + /// The entity we're trying to knock down + /// The time of the knockdown + /// Whether we want to automatically stand when knockdown ends. + /// Whether we should drop items. + /// Should we force the status effect? + public bool CanKnockdown(Entity entity, ref TimeSpan? time, ref bool autoStand, ref bool drop, bool force = false) { if (time <= TimeSpan.Zero) return false; @@ -187,30 +212,53 @@ public abstract partial class SharedStunSystem : EntitySystem if (!Resolve(entity, ref entity.Comp, false)) return false; - if (!force) - { - var evAttempt = new KnockDownAttemptEvent(autoStand, drop); - RaiseLocalEvent(entity, ref evAttempt); + var evAttempt = new KnockDownAttemptEvent(autoStand, drop, time); + RaiseLocalEvent(entity, ref evAttempt); - if (evAttempt.Cancelled) - return false; + autoStand = evAttempt.AutoStand; + drop = evAttempt.Drop; - autoStand = evAttempt.AutoStand; - drop = evAttempt.Drop; - } + return force || !evAttempt.Cancelled; + } - Knockdown(entity!, time, refresh, autoStand, drop); + /// + /// Knocks down the entity, making it fall to the ground. + /// + /// The entity we're trying to knock down + /// The time of the knockdown + /// Whether we should refresh a running timer or add to it, if one exists. + /// Whether we want to automatically stand when knockdown ends. + /// Whether we should drop items. + /// Should we force the status effect? + public bool TryKnockdown(Entity entity, TimeSpan? time, bool refresh = true, bool autoStand = true, bool drop = true, bool force = false) + { + if (!CanKnockdown(entity.Owner, ref time, ref autoStand, ref drop, force)) + return false; + // If the entity can't crawl they also need to be stunned, and therefore we should be using paralysis status effect. + // Also time shouldn't be null if we're and trying to add time but, we check just in case anyways. + if (!Resolve(entity, ref entity.Comp, false)) + return refresh || time == null ? TryUpdateParalyzeDuration(entity, time) : TryAddParalyzeDuration(entity, time.Value); + + Knockdown(entity, time, refresh, autoStand, drop); return true; } - private void Knockdown(Entity entity, TimeSpan? time, bool refresh, bool autoStand, bool drop) + private void Crawl(Entity entity, TimeSpan? time, bool refresh, bool autoStand, bool drop) + { + if (!Resolve(entity, ref entity.Comp, false)) + return; + + Knockdown(entity, time, refresh, autoStand, drop); + } + + private void Knockdown(EntityUid uid, TimeSpan? time, bool refresh, bool autoStand, bool drop) { // Initialize our component with the relevant data we need if we don't have it - if (EnsureComp(entity, out var component)) + if (EnsureComp(uid, out var component)) { - RefreshKnockedMovement((entity, component)); - CancelKnockdownDoAfter((entity, component)); + RefreshKnockedMovement((uid, component)); + CancelKnockdownDoAfter((uid, component)); } else { @@ -218,41 +266,50 @@ public abstract partial class SharedStunSystem : EntitySystem if (drop) { var ev = new DropHandItemsEvent(); - RaiseLocalEvent(entity, ref ev); + RaiseLocalEvent(uid, ref ev); } // Only update Autostand value if it's our first time being knocked down... - SetAutoStand((entity, component), autoStand); + SetAutoStand((uid, component), autoStand); } - var knockedEv = new KnockedDownEvent(time); - RaiseLocalEvent(entity, ref knockedEv); + var knockedEv = new KnockedDownEvent(); + RaiseLocalEvent(uid, ref knockedEv); if (time != null) { - UpdateKnockdownTime((entity, component), time.Value, refresh); - _adminLogger.Add(LogType.Stamina, LogImpact.Medium, $"{ToPrettyString(entity):user} knocked down for {time.Value.Seconds} seconds"); + UpdateKnockdownTime((uid, component), time.Value, refresh); + _adminLogger.Add(LogType.Stamina, LogImpact.Medium, $"{ToPrettyString(uid):user} was knocked down for {time.Value.Seconds} seconds"); } else - _adminLogger.Add(LogType.Stamina, LogImpact.Medium, $"{ToPrettyString(entity):user} knocked down for an indefinite amount of time"); - - Alerts.ShowAlert(entity, KnockdownAlert, null, (GameTiming.CurTime, component.NextUpdate)); + { + Alerts.ShowAlert(uid, KnockdownAlert); + _adminLogger.Add(LogType.Stamina, LogImpact.Medium, $"{ToPrettyString(uid):user} was knocked down"); + } } public bool TryAddParalyzeDuration(EntityUid uid, TimeSpan duration) { - var knockdown = TryAddKnockdownDuration(uid, duration); - var stunned = TryAddStunDuration(uid, duration); + if (!_status.TryAddStatusEffectDuration(uid, StunId, duration)) + return false; - return knockdown || stunned; + // We can't exit knockdown when we're stunned, so this prevents knockdown lasting longer than the stun. + Knockdown(uid, null, false, true, true); + OnStunnedSuccessfully(uid, duration); + + return true; } public bool TryUpdateParalyzeDuration(EntityUid uid, TimeSpan? duration) { - var knockdown = TryUpdateKnockdownDuration(uid, duration); - var stunned = TryUpdateStunDuration(uid, duration); + if (!_status.TryUpdateStatusEffectDuration(uid, StunId, duration)) + return false; - return knockdown || stunned; + // We can't exit knockdown when we're stunned, so this prevents knockdown lasting longer than the stun. + Knockdown(uid, null, false, true, true); + OnStunnedSuccessfully(uid, duration); + + return true; } public bool TryUnstun(Entity entity) @@ -266,7 +323,7 @@ public abstract partial class SharedStunSystem : EntitySystem return !ev.Cancelled && RemComp(entity); } - private void OnStunEffectApplied(Entity entity, ref StatusEffectAppliedEvent args) + private void OnStunStatusApplied(Entity entity, ref StatusEffectAppliedEvent args) { if (GameTiming.ApplyingState) return; @@ -289,6 +346,18 @@ public abstract partial class SharedStunSystem : EntitySystem args.Args = ev; } + private void OnKnockdownStatusApplied(Entity entity, ref StatusEffectAppliedEvent args) + { + if (GameTiming.ApplyingState) + return; + + // If you make something that shouldn't crawl, crawl, that's your own fault. + if (entity.Comp.Crawl) + Crawl(args.Target, null, true, true, drop: entity.Comp.Drop); + else + Knockdown(args.Target, null, true, true, drop: entity.Comp.Drop); + } + private void OnStandUpAttempt(Entity entity, ref StatusEffectRelayedEvent args) { if (args.Args.Cancelled) diff --git a/Content.Shared/Stunnable/StunnableEvents.cs b/Content.Shared/Stunnable/StunnableEvents.cs index f4a0191c92..f0c08f6136 100644 --- a/Content.Shared/Stunnable/StunnableEvents.cs +++ b/Content.Shared/Stunnable/StunnableEvents.cs @@ -26,7 +26,7 @@ public record struct StunEndAttemptEvent(bool Cancelled); /// knocked down arguments. /// [ByRefEvent] -public record struct KnockDownAttemptEvent(bool AutoStand, bool Drop) +public record struct KnockDownAttemptEvent(bool AutoStand, bool Drop, TimeSpan? Time) { public bool Cancelled; } @@ -35,7 +35,7 @@ public record struct KnockDownAttemptEvent(bool AutoStand, bool Drop) /// Raised directed on an entity when it is knocked down. /// [ByRefEvent] -public record struct KnockedDownEvent(TimeSpan? Time); +public record struct KnockedDownEvent; /// /// Raised on an entity that needs to refresh its knockdown modifiers diff --git a/Content.Shared/Throwing/CatchableSystem.cs b/Content.Shared/Throwing/CatchableSystem.cs index 8f2fd355ba..586397f58b 100644 --- a/Content.Shared/Throwing/CatchableSystem.cs +++ b/Content.Shared/Throwing/CatchableSystem.cs @@ -3,6 +3,7 @@ using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; using Content.Shared.IdentityManagement; using Content.Shared.Popups; +using Content.Shared.Random.Helpers; using Content.Shared.Whitelist; using Robust.Shared.Audio.Systems; using Robust.Shared.Network; @@ -55,7 +56,7 @@ public sealed partial class CatchableSystem : EntitySystem return; // TODO: Replace with RandomPredicted once the engine PR is merged - var seed = HashCode.Combine((int)_timing.CurTick.Value, GetNetEntity(ent).Id); + var seed = SharedRandomExtensions.HashCodeCombine(new() { (int)_timing.CurTick.Value, GetNetEntity(ent).Id }); var rand = new System.Random(seed); if (!rand.Prob(ent.Comp.CatchChance)) return; diff --git a/Content.Shared/Throwing/ThrowEvents.cs b/Content.Shared/Throwing/ThrowEvents.cs index fbda80b8ca..8b60a7b4b1 100644 --- a/Content.Shared/Throwing/ThrowEvents.cs +++ b/Content.Shared/Throwing/ThrowEvents.cs @@ -1,39 +1,25 @@ -namespace Content.Shared.Throwing -{ - /// - /// Base class for all throw events. - /// - public abstract class ThrowEvent : HandledEntityEventArgs - { - public readonly EntityUid Thrown; - public readonly EntityUid Target; - public ThrownItemComponent Component; +namespace Content.Shared.Throwing; - public ThrowEvent(EntityUid thrown, EntityUid target, ThrownItemComponent component) - { - Thrown = thrown; - Target = target; - Component = component; - } - } +/// +/// Raised on an entity after it has thrown something. +/// +[ByRefEvent] +public readonly record struct ThrowEvent(EntityUid? User, EntityUid Thrown); - /// - /// Raised directed on the target entity being hit by the thrown entity. - /// - public sealed class ThrowHitByEvent : ThrowEvent - { - public ThrowHitByEvent(EntityUid thrown, EntityUid target, ThrownItemComponent component) : base(thrown, target, component) - { - } - } +/// +/// Raised on an entity after it has been thrown. +/// +[ByRefEvent] +public readonly record struct ThrownEvent(EntityUid? User, EntityUid Thrown); - /// - /// Raised directed on the thrown entity that hits another. - /// - public sealed class ThrowDoHitEvent : ThrowEvent - { - public ThrowDoHitEvent(EntityUid thrown, EntityUid target, ThrownItemComponent component) : base(thrown, target, component) - { - } - } -} +/// +/// Raised directed on the target entity being hit by the thrown entity. +/// +[ByRefEvent] +public readonly record struct ThrowHitByEvent(EntityUid Thrown, EntityUid Target, ThrownItemComponent Component); + +/// +/// Raised directed on the thrown entity that hits another. +/// +[ByRefEvent] +public readonly record struct ThrowDoHitEvent(EntityUid Thrown, EntityUid Target, ThrownItemComponent Component); diff --git a/Content.Shared/Throwing/ThrowingSystem.cs b/Content.Shared/Throwing/ThrowingSystem.cs index ceb9cf8bfb..db68c3517c 100644 --- a/Content.Shared/Throwing/ThrowingSystem.cs +++ b/Content.Shared/Throwing/ThrowingSystem.cs @@ -192,8 +192,6 @@ public sealed class ThrowingSystem : EntitySystem } } - var throwEvent = new ThrownEvent(user, uid); - RaiseLocalEvent(uid, ref throwEvent, true); if (user != null) _adminLogger.Add(LogType.Throw, LogImpact.Low, $"{ToPrettyString(user.Value):user} threw {ToPrettyString(uid):entity}"); @@ -206,6 +204,14 @@ public sealed class ThrowingSystem : EntitySystem var impulseVector = direction.Normalized() * throwSpeed * physics.Mass; _physics.ApplyLinearImpulse(uid, impulseVector, body: physics); + var thrownEvent = new ThrownEvent(user, uid); + RaiseLocalEvent(uid, ref thrownEvent, true); + if (user != null) + { + var throwEvent = new ThrowEvent(user, uid); + RaiseLocalEvent(user.Value, ref throwEvent, true); + } + if (comp.LandTime == null || comp.LandTime <= TimeSpan.Zero) { _thrownSystem.LandComponent(uid, comp, physics, playSound); @@ -236,7 +242,7 @@ public sealed class ThrowingSystem : EntitySystem RaiseLocalEvent(user.Value, ref pushEv); const float massLimit = 5f; - if (pushEv.Push || _gravity.IsWeightless(user.Value)) + if (pushEv.Push) _physics.ApplyLinearImpulse(user.Value, -impulseVector / physics.Mass * pushbackRatio * MathF.Min(massLimit, physics.Mass), body: userPhysics); } } diff --git a/Content.Shared/Throwing/ThrownEvent.cs b/Content.Shared/Throwing/ThrownEvent.cs deleted file mode 100644 index 70cb6ee43d..0000000000 --- a/Content.Shared/Throwing/ThrownEvent.cs +++ /dev/null @@ -1,10 +0,0 @@ -using JetBrains.Annotations; - -namespace Content.Shared.Throwing; - -/// -/// Raised on thrown entity. -/// -[PublicAPI] -[ByRefEvent] -public readonly record struct ThrownEvent(EntityUid? User, EntityUid Thrown); diff --git a/Content.Shared/Throwing/ThrownItemSystem.cs b/Content.Shared/Throwing/ThrownItemSystem.cs index 65c5a0f13e..5adad359e5 100644 --- a/Content.Shared/Throwing/ThrownItemSystem.cs +++ b/Content.Shared/Throwing/ThrownItemSystem.cs @@ -140,8 +140,10 @@ namespace Content.Shared.Throwing _adminLogger.Add(LogType.ThrowHit, LogImpact.Low, $"{ToPrettyString(thrown):thrown} thrown by {ToPrettyString(component.Thrower.Value):thrower} hit {ToPrettyString(target):target}."); - RaiseLocalEvent(target, new ThrowHitByEvent(thrown, target, component), true); - RaiseLocalEvent(thrown, new ThrowDoHitEvent(thrown, target, component), true); + var hitByEv = new ThrowHitByEvent(thrown, target, component); + var doHitEv = new ThrowDoHitEvent(thrown, target, component); + RaiseLocalEvent(target, ref hitByEv, true); + RaiseLocalEvent(thrown, ref doHitEv, true); } public override void Update(float frameTime) diff --git a/Content.Shared/Tools/Components/SimpleToolUsageComponent.cs b/Content.Shared/Tools/Components/SimpleToolUsageComponent.cs index 1f1e9c65f8..a425073ce8 100644 --- a/Content.Shared/Tools/Components/SimpleToolUsageComponent.cs +++ b/Content.Shared/Tools/Components/SimpleToolUsageComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Tools.Components; /// /// Component responsible for simple tool interactions. -/// Using a tool with the correct quality on an entity with this component will start a doAfter and raise events. +/// Using a tool with the correct quality on an entity with this component will start a DoAfter and raise the other systems can subscribe to. /// [RegisterComponent, NetworkedComponent] [Access(typeof(SimpleToolUsageSystem))] @@ -40,8 +40,15 @@ public sealed partial class SimpleToolUsageComponent : Component public LocId BlockedMessage = "simple-tool-usage-blocked-message"; } +/// +/// Cancelable event that can be used to prevent tool interaction. +/// [ByRefEvent] public record struct AttemptSimpleToolUseEvent(EntityUid User, bool Cancelled = false); +/// +/// Raised after the right tool is used on an entity with +/// and the DoAfter has finished. +/// [Serializable, NetSerializable] public sealed partial class SimpleToolDoAfterEvent : SimpleDoAfterEvent; diff --git a/Content.Shared/Traits/Assorted/HemophiliaComponent.cs b/Content.Shared/Traits/Assorted/HemophiliaComponent.cs new file mode 100644 index 0000000000..208883f11c --- /dev/null +++ b/Content.Shared/Traits/Assorted/HemophiliaComponent.cs @@ -0,0 +1,16 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Traits.Assorted; + +/// +/// This component is used for the Hemophilia Trait, it reduces the passive bleed stack reduction amount so entities with it bleed for longer. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class HemophiliaComponent : Component +{ + /// + /// What multiplier should be applied to the BleedReduction when an entity bleeds? + /// + [DataField, AutoNetworkedField] + public float HemophiliaBleedReductionMultiplier = 0.33f; +} diff --git a/Content.Shared/Traits/Assorted/HemophiliaSystem.cs b/Content.Shared/Traits/Assorted/HemophiliaSystem.cs new file mode 100644 index 0000000000..53f6609575 --- /dev/null +++ b/Content.Shared/Traits/Assorted/HemophiliaSystem.cs @@ -0,0 +1,16 @@ +using Content.Shared.Body.Events; + +namespace Content.Shared.Traits.Assorted; + +public sealed class HemophiliaSystem : EntitySystem +{ + public override void Initialize() + { + SubscribeLocalEvent(OnBleedModifier); + } + + private void OnBleedModifier(Entity ent, ref BleedModifierEvent args) + { + args.BleedReductionAmount *= ent.Comp.HemophiliaBleedReductionMultiplier; + } +} diff --git a/Content.Shared/Traits/Assorted/ImpairedMobilityComponent.cs b/Content.Shared/Traits/Assorted/ImpairedMobilityComponent.cs new file mode 100644 index 0000000000..50f7281ff8 --- /dev/null +++ b/Content.Shared/Traits/Assorted/ImpairedMobilityComponent.cs @@ -0,0 +1,25 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Traits.Assorted; + +/// +/// Used for the Impaired Mobility disability trait. +/// Applies a base movement speed reduction as determined by the SpeedModifier field. +/// Also increases the time it takes to stand up after falling, as determined by the StandUpTimeModifier field. +/// When an entity holds an item with the MobilityAidComponent, the speed penalty is nullified. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class ImpairedMobilityComponent : Component +{ + /// + /// The movement speed modifier applied to the player (0.4 is 40% slower) + /// + [DataField, AutoNetworkedField] + public float SpeedModifier = 0.4f; + + /// + /// The doAfter modifier when getting up after falling (1.4 is 40% slower) + /// + [DataField, AutoNetworkedField] + public float StandUpTimeModifier = 1.4f; +} diff --git a/Content.Shared/Traits/Assorted/ImpairedMobilitySystem.cs b/Content.Shared/Traits/Assorted/ImpairedMobilitySystem.cs new file mode 100644 index 0000000000..678fc85344 --- /dev/null +++ b/Content.Shared/Traits/Assorted/ImpairedMobilitySystem.cs @@ -0,0 +1,70 @@ +using Content.Shared.Movement.Systems; +using Content.Shared.Stunnable; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Hands.Components; +using Content.Shared.Wieldable.Components; + +namespace Content.Shared.Traits.Assorted; + +/// +/// Handles +/// +public sealed class ImpairedMobilitySystem : EntitySystem +{ + [Dependency] private readonly SharedHandsSystem _hands = default!; + [Dependency] private readonly MovementSpeedModifierSystem _speedModifier = default!; + public override void Initialize() + { + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnShutdown); + SubscribeLocalEvent(OnRefreshMovementSpeed); + SubscribeLocalEvent(OnGetStandUpTime); + } + + private void OnInit(Entity ent, ref ComponentInit args) + { + _speedModifier.RefreshMovementSpeedModifiers(ent); + } + + private void OnShutdown(Entity ent, ref ComponentShutdown args) + { + _speedModifier.RefreshMovementSpeedModifiers(ent); + } + + // Handles movement speed for entities with impaired mobility. + // Applies a speed penalty, but counteracts it if the entity is holding a non-wielded mobility aid. + private void OnRefreshMovementSpeed(Entity ent, ref RefreshMovementSpeedModifiersEvent args) + { + if (HasMobilityAid(ent.Owner)) + return; + + args.ModifySpeed(ent.Comp.SpeedModifier); + } + + // Increases the time it takes for entities to stand up from being knocked down. + private void OnGetStandUpTime(Entity ent, ref GetStandUpTimeEvent args) + { + args.DoAfterTime *= ent.Comp.StandUpTimeModifier; + } + + // Checks if the entity is holding any non-wielded mobility aids. + private bool HasMobilityAid(Entity entity) + { + if (!Resolve(entity, ref entity.Comp, false)) + return false; + + foreach (var held in _hands.EnumerateHeld(entity)) + { + if (!HasComp(held)) + continue; + + // Makes sure it's not wielded yet + if (TryComp(held, out var wieldable) && wieldable.Wielded) + continue; + + return true; + } + + return false; + } +} diff --git a/Content.Shared/Traits/Assorted/MobilityAidComponent.cs b/Content.Shared/Traits/Assorted/MobilityAidComponent.cs new file mode 100644 index 0000000000..6623c8217a --- /dev/null +++ b/Content.Shared/Traits/Assorted/MobilityAidComponent.cs @@ -0,0 +1,11 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Traits.Assorted; + +/// +/// Component to mark items that restore normal movement speed when held in-hand for entities with the impaired mobility trait. +/// The speed is automatically calculated to nullify the entity's speed penalty. +/// Should be used on items that act as mobility aids, such as canes. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class MobilityAidComponent : Component; diff --git a/Content.Shared/Traits/Assorted/MobilityAidSystem.cs b/Content.Shared/Traits/Assorted/MobilityAidSystem.cs new file mode 100644 index 0000000000..7df47ca750 --- /dev/null +++ b/Content.Shared/Traits/Assorted/MobilityAidSystem.cs @@ -0,0 +1,42 @@ +using Content.Shared.Hands; +using Content.Shared.Movement.Systems; +using Content.Shared.Wieldable; + +namespace Content.Shared.Traits.Assorted; + +/// +/// Handles +/// +public sealed class MobilityAidSystem : EntitySystem +{ + [Dependency] private readonly MovementSpeedModifierSystem _movementSpeedModifier = default!; + + /// + public override void Initialize() + { + SubscribeLocalEvent(OnGotEquippedHand); + SubscribeLocalEvent(OnGotUnequippedHand); + SubscribeLocalEvent(OnMobilityAidWielded); + SubscribeLocalEvent(OnMobilityAidUnwielded); + } + + private void OnGotEquippedHand(Entity ent, ref GotEquippedHandEvent args) + { + _movementSpeedModifier.RefreshMovementSpeedModifiers(args.User); + } + + private void OnGotUnequippedHand(Entity ent, ref GotUnequippedHandEvent args) + { + _movementSpeedModifier.RefreshMovementSpeedModifiers(args.User); + } + + private void OnMobilityAidWielded(Entity ent, ref ItemWieldedEvent args) + { + _movementSpeedModifier.RefreshMovementSpeedModifiers(args.User); + } + + private void OnMobilityAidUnwielded(Entity ent, ref ItemUnwieldedEvent args) + { + _movementSpeedModifier.RefreshMovementSpeedModifiers(args.User); + } +} diff --git a/Content.Shared/Trigger/Components/Conditions/RandomChanceTriggerConditionComponent.cs b/Content.Shared/Trigger/Components/Conditions/RandomChanceTriggerConditionComponent.cs new file mode 100644 index 0000000000..2612f16007 --- /dev/null +++ b/Content.Shared/Trigger/Components/Conditions/RandomChanceTriggerConditionComponent.cs @@ -0,0 +1,16 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Conditions; + +/// +/// This condition will cancel triggers based on random chance. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class RandomChanceTriggerConditionComponent : BaseTriggerConditionComponent +{ + /// + /// Chance for the trigger to succeed. + /// + [DataField, AutoNetworkedField] + public float SuccessChance = .9f; +} diff --git a/Content.Shared/Trigger/Components/Effects/AddGameRuleOnTriggerComponent.cs b/Content.Shared/Trigger/Components/Effects/AddGameRuleOnTriggerComponent.cs new file mode 100644 index 0000000000..474272694c --- /dev/null +++ b/Content.Shared/Trigger/Components/Effects/AddGameRuleOnTriggerComponent.cs @@ -0,0 +1,26 @@ +using Content.Shared.GameTicking.Components; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Trigger.Components.Effects; + +/// +/// Adds and starts a new game rule on a trigger. +/// The user is always logged alongside the game rule and this entity. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class AddGameRuleOnTriggerComponent : BaseXOnTriggerComponent +{ + /// + /// The game rule that will be added. Entity requires . + /// + [DataField(required: true), AutoNetworkedField] + public EntProtoId GameRule; + + /// + /// Whether to also start the game rule when adding it. + /// You almost always want this to be true. + /// + [DataField, AutoNetworkedField] + public bool StartRule = true; +} diff --git a/Content.Shared/Trigger/Components/Effects/ExtinguishOnTriggerComponent.cs b/Content.Shared/Trigger/Components/Effects/ExtinguishOnTriggerComponent.cs new file mode 100644 index 0000000000..43208a9971 --- /dev/null +++ b/Content.Shared/Trigger/Components/Effects/ExtinguishOnTriggerComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Effects; + +/// +/// This trigger removes all the fire stacks on a target with . +/// If TargetUser is true, the entity that caused this trigger will be extinguished instead. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class ExtinguishOnTriggerComponent : BaseXOnTriggerComponent; diff --git a/Content.Shared/Trigger/Components/Effects/FireStackOnTriggerComponent.cs b/Content.Shared/Trigger/Components/Effects/FireStackOnTriggerComponent.cs new file mode 100644 index 0000000000..cde5075e9b --- /dev/null +++ b/Content.Shared/Trigger/Components/Effects/FireStackOnTriggerComponent.cs @@ -0,0 +1,26 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Effects; + +/// +/// Adjusts fire stacks on trigger, optionally setting them on fire as well. +/// Requires to ignite the target. +/// If TargetUser is true they will have their firestacks adjusted instead. +/// +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class FireStackOnTriggerComponent : BaseXOnTriggerComponent +{ + /// + /// How many fire stacks to add or remove. + /// + [DataField, AutoNetworkedField] + public float FireStacks; + + /// + /// If true, the target will be set on fire if it isn't already. + /// If false does nothing. + /// + [DataField, AutoNetworkedField] + public bool DoIgnite = true; +} diff --git a/Content.Shared/Trigger/Components/Effects/IgniteOnTriggerComponent.cs b/Content.Shared/Trigger/Components/Effects/IgniteOnTriggerComponent.cs index 36273ef1b2..3e3db526e4 100644 --- a/Content.Shared/Trigger/Components/Effects/IgniteOnTriggerComponent.cs +++ b/Content.Shared/Trigger/Components/Effects/IgniteOnTriggerComponent.cs @@ -8,6 +8,7 @@ namespace Content.Shared.Trigger.Components.Effects; /// Requires along with triggering components. /// The if TargetUser is true they will be ignited instead (they need IgnitionSourceComponent as well). /// +/// [RegisterComponent, NetworkedComponent] [AutoGenerateComponentState, AutoGenerateComponentPause] public sealed partial class IgniteOnTriggerComponent : BaseXOnTriggerComponent diff --git a/Content.Shared/Trigger/Components/Effects/LockOnTriggerComponent.cs b/Content.Shared/Trigger/Components/Effects/LockOnTriggerComponent.cs new file mode 100644 index 0000000000..6dbec86c5d --- /dev/null +++ b/Content.Shared/Trigger/Components/Effects/LockOnTriggerComponent.cs @@ -0,0 +1,27 @@ +using Content.Shared.Lock; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; + +namespace Content.Shared.Trigger.Components.Effects; + +/// +/// Will lock, unlock or toggle an entity with the . +/// If TargetUser is true then they will be (un)locked instead. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class LockOnTriggerComponent : BaseXOnTriggerComponent +{ + /// + /// If the trigger will lock, unlock or toggle the lock. + /// + [DataField, AutoNetworkedField] + public LockAction LockMode = LockAction.Toggle; +} + +[Serializable, NetSerializable] +public enum LockAction +{ + Lock = 0, + Unlock = 1, + Toggle = 2, +} diff --git a/Content.Shared/Trigger/Components/Effects/RemoveComponentsOnTriggerComponent.cs b/Content.Shared/Trigger/Components/Effects/RemoveComponentsOnTriggerComponent.cs new file mode 100644 index 0000000000..e69bf42a15 --- /dev/null +++ b/Content.Shared/Trigger/Components/Effects/RemoveComponentsOnTriggerComponent.cs @@ -0,0 +1,35 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Trigger.Components.Effects; + +/// +/// Removes the specified components when triggered. +/// If TargetUser is true they will be from the user instead. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class RemoveComponentsOnTriggerComponent : BaseXOnTriggerComponent +{ + /// + /// The list of components that will be removed. + /// + /// + /// TODO: Using a ComponentRegistry for this is cursed because it stores all the datafields along with it, + /// but ComponentNameSerializer will complain if you have components that are not in shared. + /// + [DataField(required: true)] + public ComponentRegistry Components = new(); + + /// + /// If this component has been triggered at least once already. + /// If this is true the components have been removed. + /// + [DataField, AutoNetworkedField] + public bool Triggered = false; + + /// + /// If this effect can only be triggered once. + /// + [DataField, AutoNetworkedField] + public bool TriggerOnce = false; +} diff --git a/Content.Shared/Trigger/Components/Effects/StaminaDamageOnTriggerComponent.cs b/Content.Shared/Trigger/Components/Effects/StaminaDamageOnTriggerComponent.cs new file mode 100644 index 0000000000..dd8136f1ba --- /dev/null +++ b/Content.Shared/Trigger/Components/Effects/StaminaDamageOnTriggerComponent.cs @@ -0,0 +1,25 @@ +using Content.Shared.Trigger.Systems; +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Effects; + +/// +/// Will inflict stamina to an entity when triggered. +/// If TargetUser is true it the user will have stamina inflicted instead. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class StaminaDamageOnTriggerComponent : BaseXOnTriggerComponent +{ + /// + /// Should the inflicted stamina ignore resistances? + /// + [DataField, AutoNetworkedField] + public bool IgnoreResistances; + + /// + /// The stamina amount that is inflicted to the target. + /// May be further modified by subscriptions. + /// + [DataField(required: true), AutoNetworkedField] + public float Stamina; +} diff --git a/Content.Shared/Trigger/Components/Effects/ToggleComponentsOnTriggerComponent.cs b/Content.Shared/Trigger/Components/Effects/ToggleComponentsOnTriggerComponent.cs new file mode 100644 index 0000000000..4ce5652318 --- /dev/null +++ b/Content.Shared/Trigger/Components/Effects/ToggleComponentsOnTriggerComponent.cs @@ -0,0 +1,31 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Trigger.Components.Effects; + +/// +/// Adds or removes the specified components when triggered. +/// If TargetUser is true they will be added to or removed from the user instead. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class ToggleComponentsOnTriggerComponent : BaseXOnTriggerComponent +{ + /// + /// The list of components that will be added/removed. + /// + [DataField(required: true)] + public ComponentRegistry Components = new(); + + /// + /// Are the components currently added? + /// + [DataField, AutoNetworkedField] + public bool ComponentsAdded; + + /// + /// Should components that already exist on the entity be overwritten? + /// (They will still be removed when toggling again). + /// + [DataField, AutoNetworkedField] + public bool RemoveExisting = false; +} diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnBuckledComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnBuckledComponent.cs new file mode 100644 index 0000000000..b6f3506f64 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnBuckledComponent.cs @@ -0,0 +1,11 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when the owning entity is buckled. +/// This is intended to be used on buckle-able entities like mobs. +/// The user is the strap entity (a chair or similar). +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnBuckledComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnDidEquipComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnDidEquipComponent.cs new file mode 100644 index 0000000000..3c970eb855 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnDidEquipComponent.cs @@ -0,0 +1,18 @@ +using Content.Shared.Inventory; +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when an entity equips another entity. +/// The user is the entity being equipped. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnDidEquipComponent : BaseTriggerOnXComponent +{ + /// + /// The slots entities being equipped to will trigger the entity. + /// + [DataField, AutoNetworkedField] + public SlotFlags SlotFlags; +} diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnDidEquipHandComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnDidEquipHandComponent.cs new file mode 100644 index 0000000000..d598db6d93 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnDidEquipHandComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an entity when it is equips an item into one of its hand slots. +/// The user is the entity that was equipped. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnDidEquipHandComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnDidUnequipComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnDidUnequipComponent.cs new file mode 100644 index 0000000000..c6ec3821b1 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnDidUnequipComponent.cs @@ -0,0 +1,18 @@ +using Content.Shared.Inventory; +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when an entity unequips another entity. +/// The user is the entity being unequipped. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnDidUnequipComponent : BaseTriggerOnXComponent +{ + /// + /// The slots that entities being unequipped from will trigger the entity. + /// + [DataField, AutoNetworkedField] + public SlotFlags SlotFlags; +} diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnDidUnequipHandComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnDidUnequipHandComponent.cs new file mode 100644 index 0000000000..5c3d2da018 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnDidUnequipHandComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an entity when it is drops an item from one of its hand slots. +/// The user is the entity that was dropped. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnDidUnequipHandComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnDroppedComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnDroppedComponent.cs new file mode 100644 index 0000000000..6e06216a2c --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnDroppedComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an entity when it is dropped from a users hands, or directly removed from a users inventory, but not when moved between hands & inventory. +/// The user is the player that was holding or wearing the item. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnDroppedComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnExaminedComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnExaminedComponent.cs new file mode 100644 index 0000000000..8ceb755933 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnExaminedComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when the entity is being examined. +/// The user is the player doing the examination. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnExaminedComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnGotEquippedComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotEquippedComponent.cs new file mode 100644 index 0000000000..c3bb62fa80 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotEquippedComponent.cs @@ -0,0 +1,18 @@ +using Content.Shared.Inventory; +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when an entity is equipped to another entity. +/// The user is the entity being equipped to (i.e. the equipee). +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnGotEquippedComponent : BaseTriggerOnXComponent +{ + /// + /// The slots that being equipped to will trigger the entity. + /// + [DataField, AutoNetworkedField] + public SlotFlags SlotFlags; +} diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnGotEquippedHandComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotEquippedHandComponent.cs new file mode 100644 index 0000000000..24c2d4231c --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotEquippedHandComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an item when it is equipped into a hand slot. +/// The user is the entity that picked the item up. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnGotEquippedHandComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnGotInsertedIntoContainerComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotInsertedIntoContainerComponent.cs new file mode 100644 index 0000000000..132167a747 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotInsertedIntoContainerComponent.cs @@ -0,0 +1,18 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an entity when it gets inserted into a container. +/// The user is the owner of the container the entity is being inserted into. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnGotInsertedIntoContainerComponent : BaseTriggerOnXComponent +{ + /// + /// The container to the entity has to be inserted into. + /// Null will allow all containers. + /// + [DataField, AutoNetworkedField] + public string? ContainerId; +} diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnGotRemovedFromContainerComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotRemovedFromContainerComponent.cs new file mode 100644 index 0000000000..8c66bf4e81 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotRemovedFromContainerComponent.cs @@ -0,0 +1,18 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an entity when it gets removed from a container. +/// The user is the owner of the container the entity is being removed from. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnGotRemovedFromContainerComponent : BaseTriggerOnXComponent +{ + /// + /// The container to the entity has to be removed from. + /// Null will allow all containers. + /// + [DataField, AutoNetworkedField] + public string? ContainerId; +} diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnGotUnequippedComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotUnequippedComponent.cs new file mode 100644 index 0000000000..2b6663e1f0 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotUnequippedComponent.cs @@ -0,0 +1,18 @@ +using Content.Shared.Inventory; +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when an entity is unequipped from another entity. +/// The user is the entity being unequipped from (i.e. the (un)equipee). +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnGotUnequippedComponent : BaseTriggerOnXComponent +{ + /// + /// The slots that being unequipped from will trigger the entity. + /// + [DataField, AutoNetworkedField] + public SlotFlags SlotFlags; +} diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnGotUnequippedHandComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotUnequippedHandComponent.cs new file mode 100644 index 0000000000..624c1a141b --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotUnequippedHandComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an item when it is dropped from a hand slot. +/// The user is the entity that dropped the item. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnGotUnequippedHandComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnInsertedIntoContainerComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnInsertedIntoContainerComponent.cs new file mode 100644 index 0000000000..d5616dfd85 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnInsertedIntoContainerComponent.cs @@ -0,0 +1,18 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an entity when something is inserted into it. +/// The user is the entity being inserted into the container. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnInsertedIntoContainerComponent : BaseTriggerOnXComponent +{ + /// + /// The container to the entity has to be inserted into. + /// Null will allow all containers. + /// + [DataField, AutoNetworkedField] + public string? ContainerId; +} diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnInteractHandComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnInteractHandComponent.cs new file mode 100644 index 0000000000..ca7e96be74 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnInteractHandComponent.cs @@ -0,0 +1,11 @@ +using Content.Shared.Interaction; +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Trigger on , aka clicking on an entity with an empty hand. +/// User is the player with the hand doing the clicking. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnInteractHandComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnInteractUsingComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnInteractUsingComponent.cs new file mode 100644 index 0000000000..0a5844338e --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnInteractUsingComponent.cs @@ -0,0 +1,34 @@ +using Content.Shared.Interaction; +using Content.Shared.Whitelist; +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when an entity is used to interact with another entity (). +/// The user is the player initiating the interaction or the item used, depending on the TargetUsed datafield. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnInteractUsingComponent : BaseTriggerOnXComponent +{ + /// + /// Whitelist of entities that can be used to trigger this component. + /// + /// No whitelist check when null. + [DataField, AutoNetworkedField] + public EntityWhitelist? Whitelist; + + /// + /// Blacklist of entities that cannot be used to trigger this component. + /// + /// No blacklist check when null. + [DataField, AutoNetworkedField] + public EntityWhitelist? Blacklist; + + /// + /// If false, the trigger user will be the user that initiated the interaction. + /// If true, the trigger user will the entity that was used to interact. + /// + [DataField, AutoNetworkedField] + public bool TargetUsed = false; +} diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnLandComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnLandComponent.cs new file mode 100644 index 0000000000..48d048886a --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnLandComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when the entity exits a floating or thrown state and lands on a surface. +/// The user is the thrower. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnLandComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnMeleeHitComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnMeleeHitComponent.cs new file mode 100644 index 0000000000..4277941227 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnMeleeHitComponent.cs @@ -0,0 +1,25 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when this entity is swung as a melee weapon and hits at least one target. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnMeleeHitComponent : BaseTriggerOnXComponent +{ + /// + /// If true, this trigger will activate individually for each entity hit. + /// If false, this trigger will always activate only once. + /// + [DataField, AutoNetworkedField] + public bool TriggerEveryHit; + + /// + /// If true, the "user" of the trigger is the entity hit by the melee. + /// If false, user is the entity which attacked with the melee weapon. + /// + /// If TriggerEveryHit is false, the user is randomly chosen from hit entities. + [DataField, AutoNetworkedField] + public bool TargetIsUser; +} diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnMeleeMissComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnMeleeMissComponent.cs new file mode 100644 index 0000000000..ea175fa091 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnMeleeMissComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when this entity is swung as a melee weapon and hits nothing. +/// The user is the entity swinging the weapon. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnMeleeMissComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnMeleeSwingComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnMeleeSwingComponent.cs new file mode 100644 index 0000000000..b035c20b10 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnMeleeSwingComponent.cs @@ -0,0 +1,18 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when this entity is swung as a melee weapon, regardless of whether it hits something. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnMeleeSwingComponent : BaseTriggerOnXComponent +{ + /// + /// If true, the "user" of the trigger is the entity hit by the melee. User is null if nothing is hit. + /// If false, user is the entity which attacked with the melee weapon. + /// + /// If true and multiple targets are hit, the user is randomly chosen from hit entities. + [DataField, AutoNetworkedField] + public bool TargetIsUser; +} diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnRemovedFromContainerComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnRemovedFromContainerComponent.cs new file mode 100644 index 0000000000..095b040834 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnRemovedFromContainerComponent.cs @@ -0,0 +1,18 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an entity when something is removed from it. +/// The user is the entity being removed from the container. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnRemovedFromContainerComponent : BaseTriggerOnXComponent +{ + /// + /// The container to the entity has to be removed from. + /// Null will allow all containers. + /// + [DataField, AutoNetworkedField] + public string? ContainerId; +} diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnRoundEndComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnRoundEndComponent.cs new file mode 100644 index 0000000000..29a9643ca7 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnRoundEndComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers the entity when the round ends, i.e. the scoreboard appears and post-round begins. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnRoundEndComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnSimpleToolUsage.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnSimpleToolUsage.cs new file mode 100644 index 0000000000..ffa60c35ee --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnSimpleToolUsage.cs @@ -0,0 +1,12 @@ +using Content.Shared.Tools.Components; +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an entity with when the correct tool +/// is used on it and the DoAfter has finished. +/// The user is the player using the tool. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnSimpleToolUsageComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnStrappedComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnStrappedComponent.cs new file mode 100644 index 0000000000..b5a60b6a03 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnStrappedComponent.cs @@ -0,0 +1,11 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when something is strapped to the entity. +/// This is intended to be used on objects like chairs or beds. +/// The user is the entity strapped to the component owner. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnStrappedComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnThrowComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnThrowComponent.cs new file mode 100644 index 0000000000..e9249a8f2a --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnThrowComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when after an entity has thrown something. +/// The user is the thrown item. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnThrowComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnThrownComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnThrownComponent.cs new file mode 100644 index 0000000000..e309261711 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnThrownComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when an entity was thrown. +/// The user is the thrower. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnThrownComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnUnbuckledComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnUnbuckledComponent.cs new file mode 100644 index 0000000000..47092f4b69 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnUnbuckledComponent.cs @@ -0,0 +1,11 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when the owning entity is unbuckled. +/// This is intended to be used on buckle-able entities like mobs. +/// The user is the strap entity (a chair or similar). +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnUnbuckledComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnUnstrappedComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnUnstrappedComponent.cs new file mode 100644 index 0000000000..c9ff41282e --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnUnstrappedComponent.cs @@ -0,0 +1,11 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when something is unstrapped from the entity. +/// This is intended to be used on objects like chairs or beds. +/// The user is the entity unstrapped from the component owner. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnUnstrappedComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnVoiceComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnVoiceComponent.cs index a36992d7da..974d5322e0 100644 --- a/Content.Shared/Trigger/Components/Triggers/TriggerOnVoiceComponent.cs +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnVoiceComponent.cs @@ -44,4 +44,52 @@ public sealed partial class TriggerOnVoiceComponent : BaseTriggerOnXComponent /// [DataField, AutoNetworkedField] public int MaxLength = 50; + + /// + /// When examining the item, should it show information about what word is recorded? + /// + [DataField, AutoNetworkedField] + public bool ShowExamine = true; + + /// + /// Should there be verbs that allow re-recording of the trigger word? + /// + [DataField, AutoNetworkedField] + public bool ShowVerbs = true; + + /// + /// The verb text that is shown when you can start recording a message. + /// + [DataField, AutoNetworkedField] + public LocId StartRecordingVerb = "trigger-on-voice-record"; + + /// + /// The verb text that is shown when you can stop recording a message. + /// + [DataField, AutoNetworkedField] + public LocId StopRecordingVerb = "trigger-on-voice-stop"; + + /// + /// Tooltip that appears when hovering over the stop or start recording verbs. + /// + [DataField, AutoNetworkedField] + public LocId? RecordingVerbMessage; + + /// + /// The verb text that is shown when you can clear a recording. + /// + [DataField, AutoNetworkedField] + public LocId ClearRecordingVerb = "trigger-on-voice-clear"; + + /// + /// The loc string that is shown when inspecting an uninitialized voice trigger. + /// + [DataField, AutoNetworkedField] + public LocId? InspectUninitializedLoc = "trigger-on-voice-uninitialized"; + + /// + /// The loc string to use when inspecting voice trigger. Will also include the triggering phrase + /// + [DataField, AutoNetworkedField] + public LocId? InspectInitializedLoc = "trigger-on-voice-examine"; } diff --git a/Content.Shared/Trigger/Systems/AddComponentsOnTriggerSystem.cs b/Content.Shared/Trigger/Systems/AddComponentsOnTriggerSystem.cs deleted file mode 100644 index 908307dad0..0000000000 --- a/Content.Shared/Trigger/Systems/AddComponentsOnTriggerSystem.cs +++ /dev/null @@ -1,33 +0,0 @@ -using Content.Shared.Trigger.Components.Effects; - -namespace Content.Shared.Trigger.Systems; - -public sealed partial class AddComponentsOnTriggerSystem : EntitySystem -{ - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnTrigger); - } - - private void OnTrigger(Entity ent, ref TriggerEvent args) - { - if (args.Key != null && !ent.Comp.KeysIn.Contains(args.Key)) - return; - - var target = ent.Comp.TargetUser ? args.User : ent.Owner; - - if (target == null) - return; - - if (ent.Comp.TriggerOnce && ent.Comp.Triggered) - return; - - EntityManager.AddComponents(target.Value, ent.Comp.Components, ent.Comp.RemoveExisting); - ent.Comp.Triggered = true; - Dirty(ent); - - args.Handled = true; - } -} diff --git a/Content.Shared/Trigger/Systems/ComponentsOnTriggerSystem.cs b/Content.Shared/Trigger/Systems/ComponentsOnTriggerSystem.cs new file mode 100644 index 0000000000..f4e144b7ce --- /dev/null +++ b/Content.Shared/Trigger/Systems/ComponentsOnTriggerSystem.cs @@ -0,0 +1,76 @@ +using Content.Shared.Trigger.Components.Effects; + +namespace Content.Shared.Trigger.Systems; + +public sealed partial class ComponentsOnTriggerSystem : EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(HandleAddTrigger); + SubscribeLocalEvent(HandleRemoveTrigger); + SubscribeLocalEvent(HandleToggleTrigger); + } + + private void HandleAddTrigger(Entity ent, ref TriggerEvent args) + { + if (args.Key != null && !ent.Comp.KeysIn.Contains(args.Key)) + return; + + var target = ent.Comp.TargetUser ? args.User : ent.Owner; + + if (target == null) + return; + + if (ent.Comp.TriggerOnce && ent.Comp.Triggered) + return; + + EntityManager.AddComponents(target.Value, ent.Comp.Components, ent.Comp.RemoveExisting); + ent.Comp.Triggered = true; + Dirty(ent); + + args.Handled = true; + } + + private void HandleRemoveTrigger(Entity ent, ref TriggerEvent args) + { + if (args.Key != null && !ent.Comp.KeysIn.Contains(args.Key)) + return; + + var target = ent.Comp.TargetUser ? args.User : ent.Owner; + + if (target == null) + return; + + if (ent.Comp.TriggerOnce && ent.Comp.Triggered) + return; + + EntityManager.RemoveComponents(target.Value, ent.Comp.Components); + ent.Comp.Triggered = true; + Dirty(ent); + + args.Handled = true; + } + + private void HandleToggleTrigger(Entity ent, ref TriggerEvent args) + { + if (args.Key != null && !ent.Comp.KeysIn.Contains(args.Key)) + return; + + var target = ent.Comp.TargetUser ? args.User : ent.Owner; + + if (target == null) + return; + + if (!ent.Comp.ComponentsAdded) + EntityManager.AddComponents(target.Value, ent.Comp.Components, ent.Comp.RemoveExisting); + else + EntityManager.RemoveComponents(target.Value, ent.Comp.Components); + + ent.Comp.ComponentsAdded = !ent.Comp.ComponentsAdded; + Dirty(ent); + + args.Handled = true; + } +} diff --git a/Content.Shared/Trigger/Systems/HandTriggerSystem.cs b/Content.Shared/Trigger/Systems/HandTriggerSystem.cs new file mode 100644 index 0000000000..8001d5d92f --- /dev/null +++ b/Content.Shared/Trigger/Systems/HandTriggerSystem.cs @@ -0,0 +1,64 @@ +using Content.Shared.Hands; +using Content.Shared.Interaction.Events; +using Content.Shared.Trigger.Components.Triggers; +using Robust.Shared.Timing; + +namespace Content.Shared.Trigger.Systems; + +public sealed partial class HandTriggerSystem : EntitySystem +{ + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly TriggerSystem _trigger = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnGotEquipped); + SubscribeLocalEvent(OnGotUnequipped); + SubscribeLocalEvent(OnDidEquip); + SubscribeLocalEvent(OnDidUnequip); + SubscribeLocalEvent(OnDropped); + } + + private void OnGotEquipped(Entity ent, ref GotEquippedHandEvent args) + { + // If the entity was equipped on the server (without prediction) then the container change is networked to the client + // which will raise the same event, but the effect of the trigger is already networked on its own. So this guard statement + // prevents triggering twice on the client. + if (_timing.ApplyingState) + return; + + _trigger.Trigger(ent.Owner, args.User, ent.Comp.KeyOut); + } + + private void OnGotUnequipped(Entity ent, ref GotUnequippedHandEvent args) + { + if (_timing.ApplyingState) + return; + + _trigger.Trigger(ent.Owner, args.User, ent.Comp.KeyOut); + } + + private void OnDidEquip(Entity ent, ref DidEquipHandEvent args) + { + if (_timing.ApplyingState) + return; + + _trigger.Trigger(ent.Owner, args.Equipped, ent.Comp.KeyOut); + } + + private void OnDidUnequip(Entity ent, ref DidUnequipHandEvent args) + { + if (_timing.ApplyingState) + return; + + _trigger.Trigger(ent.Owner, args.Unequipped, ent.Comp.KeyOut); + } + + private void OnDropped(Entity ent, ref DroppedEvent args) + { + // We don't need the guard statement here because this one is not a container event, but raised directly when interacting. + _trigger.Trigger(ent.Owner, args.User, ent.Comp.KeyOut); + } +} diff --git a/Content.Shared/Trigger/Systems/LockOnTriggerSystem.cs b/Content.Shared/Trigger/Systems/LockOnTriggerSystem.cs new file mode 100644 index 0000000000..2056d5fe51 --- /dev/null +++ b/Content.Shared/Trigger/Systems/LockOnTriggerSystem.cs @@ -0,0 +1,40 @@ +using Content.Shared.Lock; +using Content.Shared.Trigger.Components.Effects; + +namespace Content.Shared.Trigger.Systems; + +public sealed class LockOnTriggerSystem : EntitySystem +{ + [Dependency] private readonly LockSystem _lock = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnTrigger); + } + + private void OnTrigger(Entity ent, ref TriggerEvent args) + { + if (args.Key != null && !ent.Comp.KeysIn.Contains(args.Key)) + return; + + var target = ent.Comp.TargetUser ? args.User : ent.Owner; + + if (!TryComp(target, out var lockComp)) + return; // prevent the Resolve in Lock/Unlock/ToggleLock from logging errors in case the user does not have the component + + switch (ent.Comp.LockMode) + { + case LockAction.Lock: + _lock.Lock(target.Value, args.User, lockComp); + break; + case LockAction.Unlock: + _lock.Unlock(target.Value, args.User, lockComp); + break; + case LockAction.Toggle: + _lock.ToggleLock(target.Value, args.User, lockComp); + break; + } + } +} diff --git a/Content.Shared/Trigger/Systems/MeleeTriggerSystem.cs b/Content.Shared/Trigger/Systems/MeleeTriggerSystem.cs new file mode 100644 index 0000000000..b7433a2987 --- /dev/null +++ b/Content.Shared/Trigger/Systems/MeleeTriggerSystem.cs @@ -0,0 +1,58 @@ +using Content.Shared.Trigger.Components.Triggers; +using Content.Shared.Weapons.Melee.Events; + +namespace Content.Shared.Trigger.Systems; + +/// +/// Trigger system for melee related triggers. +/// +public sealed class MeleeTriggerSystem : EntitySystem +{ + [Dependency] private readonly TriggerSystem _trigger = default!; + + /// + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMissTrigger); + SubscribeLocalEvent(OnSwingTrigger); + SubscribeLocalEvent(OnHitTrigger); + } + + private void OnMissTrigger(Entity ent, ref MeleeHitEvent args) + { + if (args.HitEntities.Count == 0) + _trigger.Trigger(ent.Owner, args.User, ent.Comp.KeyOut); + } + + private void OnSwingTrigger(Entity ent, ref MeleeHitEvent args) + { + EntityUid? target; + if (args.HitEntities.Count == 0) + target = ent.Comp.TargetIsUser ? null : args.User; + else + target = ent.Comp.TargetIsUser ? args.HitEntities[0] : args.User; + + _trigger.Trigger(ent.Owner, target, ent.Comp.KeyOut); + } + + private void OnHitTrigger(Entity ent, ref MeleeHitEvent args) + { + if (args.HitEntities.Count == 0) + return; + + if (!ent.Comp.TriggerEveryHit) + { + var target = ent.Comp.TargetIsUser ? args.HitEntities[0] : args.User; + _trigger.Trigger(ent.Owner, target, ent.Comp.KeyOut); + return; + } + + // if TriggerEveryHit + foreach (var target in args.HitEntities) + { + _trigger.Trigger(ent.Owner, ent.Comp.TargetIsUser ? target : args.User, ent.Comp.KeyOut); + } + } +} diff --git a/Content.Shared/Trigger/Systems/StaminaDamageOnTriggerSystem.cs b/Content.Shared/Trigger/Systems/StaminaDamageOnTriggerSystem.cs new file mode 100644 index 0000000000..0efa437275 --- /dev/null +++ b/Content.Shared/Trigger/Systems/StaminaDamageOnTriggerSystem.cs @@ -0,0 +1,42 @@ +using Content.Shared.Damage; +using Content.Shared.Damage.Systems; +using Content.Shared.Trigger.Components.Effects; + +namespace Content.Shared.Trigger.Systems; + +public sealed class StaminaDamageOnTriggerSystem : EntitySystem +{ + [Dependency] private readonly SharedStaminaSystem _stamina = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnTrigger); + } + + private void OnTrigger(Entity ent, ref TriggerEvent args) + { + if (args.Key != null && !ent.Comp.KeysIn.Contains(args.Key)) + return; + + var target = ent.Comp.TargetUser ? args.User : ent.Owner; + + if (target == null) + return; + + var ev = new BeforeStaminaDamageOnTriggerEvent(ent.Comp.Stamina, target.Value); + RaiseLocalEvent(ent.Owner, ref ev); + + _stamina.TakeStaminaDamage(target.Value, ev.Stamina, source: args.User, with: ent.Owner, ignoreResist: ent.Comp.IgnoreResistances); + + args.Handled = true; + } +} + +/// +/// Raised on an entity before it inflicts stamina due to StaminaDamageOnTriggerComponent. +/// Used to modify the stamina that will be inflicted. +/// +[ByRefEvent] +public record struct BeforeStaminaDamageOnTriggerEvent(float Stamina, EntityUid Tripper); diff --git a/Content.Shared/Trigger/Systems/TriggerOnContainerInteractionSystem.cs b/Content.Shared/Trigger/Systems/TriggerOnContainerInteractionSystem.cs new file mode 100644 index 0000000000..8fa9308f70 --- /dev/null +++ b/Content.Shared/Trigger/Systems/TriggerOnContainerInteractionSystem.cs @@ -0,0 +1,70 @@ +using Content.Shared.Trigger.Components.Triggers; +using Robust.Shared.Containers; +using Robust.Shared.Timing; + +namespace Content.Shared.Trigger.Systems; + +/// +/// System for creating triggers when entities are inserted into or removed from containers. +/// +public sealed class TriggerOnContainerInteractionSystem : EntitySystem +{ + [Dependency] private readonly TriggerSystem _trigger = default!; + [Dependency] private readonly IGameTiming _timing = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnInsertedIntoContainer); + SubscribeLocalEvent(OnRemovedFromContainer); + SubscribeLocalEvent(OnGotInsertedIntoContainer); + SubscribeLocalEvent(OnGotRemovedFromContainer); + } + + // Used by containers to trigger when entities are inserted into or removed from them + private void OnInsertedIntoContainer(Entity ent, ref EntInsertedIntoContainerMessage args) + { + if (_timing.ApplyingState) + return; + + if (ent.Comp.ContainerId != null && ent.Comp.ContainerId != args.Container.ID) + return; + + _trigger.Trigger(ent.Owner, args.Entity, ent.Comp.KeyOut); + } + + private void OnRemovedFromContainer(Entity ent, ref EntRemovedFromContainerMessage args) + { + if (_timing.ApplyingState) + return; + + if (ent.Comp.ContainerId != null && ent.Comp.ContainerId != args.Container.ID) + return; + + _trigger.Trigger(ent.Owner, args.Entity, ent.Comp.KeyOut); + } + + // Used by entities to trigger when they are inserted into or removed from a container + private void OnGotInsertedIntoContainer(Entity ent, ref EntGotInsertedIntoContainerMessage args) + { + if (_timing.ApplyingState) + return; + + if (ent.Comp.ContainerId != null && ent.Comp.ContainerId != args.Container.ID) + return; + + _trigger.Trigger(ent.Owner, args.Container.Owner, ent.Comp.KeyOut); + } + + private void OnGotRemovedFromContainer(Entity ent, ref EntGotRemovedFromContainerMessage args) + { + if (_timing.ApplyingState) + return; + + if (ent.Comp.ContainerId != null && ent.Comp.ContainerId != args.Container.ID) + return; + + _trigger.Trigger(ent.Owner, args.Container.Owner, ent.Comp.KeyOut); + } +} diff --git a/Content.Shared/Trigger/Systems/TriggerOnEquipmentSystem.cs b/Content.Shared/Trigger/Systems/TriggerOnEquipmentSystem.cs new file mode 100644 index 0000000000..bc097ae831 --- /dev/null +++ b/Content.Shared/Trigger/Systems/TriggerOnEquipmentSystem.cs @@ -0,0 +1,70 @@ +using Content.Shared.Trigger.Components.Triggers; +using Robust.Shared.Timing; +using Content.Shared.Inventory.Events; + +namespace Content.Shared.Trigger.Systems; + +/// +/// System for creating triggers when entities are equipped or unequipped from inventory slots. +/// +public sealed class TriggerOnEquipmentSystem : EntitySystem +{ + [Dependency] private readonly TriggerSystem _trigger = default!; + [Dependency] private readonly IGameTiming _timing = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnDidEquip); + SubscribeLocalEvent(OnDidUnequip); + SubscribeLocalEvent(OnGotEquipped); + SubscribeLocalEvent(OnGotUnequipped); + } + + // Used by entities when equipping or unequipping other entities + private void OnDidEquip(Entity ent, ref DidEquipEvent args) + { + if (_timing.ApplyingState) + return; + + if ((ent.Comp.SlotFlags & args.SlotFlags) == 0) + return; + + _trigger.Trigger(ent.Owner, args.Equipment, ent.Comp.KeyOut); + } + + private void OnDidUnequip(Entity ent, ref DidUnequipEvent args) + { + if (_timing.ApplyingState) + return; + + if ((ent.Comp.SlotFlags & args.SlotFlags) == 0) + return; + + _trigger.Trigger(ent.Owner, args.Equipment, ent.Comp.KeyOut); + } + + // Used by entities when they get equipped or unequipped + private void OnGotEquipped(Entity ent, ref GotEquippedEvent args) + { + if (_timing.ApplyingState) + return; + + if ((ent.Comp.SlotFlags & args.SlotFlags) == 0) + return; + + _trigger.Trigger(ent.Owner, args.Equipee, ent.Comp.KeyOut); + } + + private void OnGotUnequipped(Entity ent, ref GotUnequippedEvent args) + { + if (_timing.ApplyingState) + return; + + if ((ent.Comp.SlotFlags & args.SlotFlags) == 0) + return; + + _trigger.Trigger(ent.Owner, args.Equipee, ent.Comp.KeyOut); + } +} diff --git a/Content.Shared/Trigger/Systems/TriggerOnLandSystem.cs b/Content.Shared/Trigger/Systems/TriggerOnLandSystem.cs new file mode 100644 index 0000000000..754f285753 --- /dev/null +++ b/Content.Shared/Trigger/Systems/TriggerOnLandSystem.cs @@ -0,0 +1,21 @@ +using Content.Shared.Throwing; +using Content.Shared.Trigger.Components.Triggers; + +namespace Content.Shared.Trigger.Systems; + +public sealed partial class TriggerOnLandSystem : EntitySystem +{ + [Dependency] private readonly TriggerSystem _trigger = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnLand); + } + + private void OnLand(Entity ent, ref LandEvent args) + { + _trigger.Trigger(ent.Owner, args.User, ent.Comp.KeyOut); + } +} diff --git a/Content.Shared/Trigger/Systems/TriggerOnRoundEndSystem.cs b/Content.Shared/Trigger/Systems/TriggerOnRoundEndSystem.cs new file mode 100644 index 0000000000..c18fb08f3f --- /dev/null +++ b/Content.Shared/Trigger/Systems/TriggerOnRoundEndSystem.cs @@ -0,0 +1,31 @@ +using Content.Shared.GameTicking; +using Content.Shared.Trigger.Components.Triggers; + +namespace Content.Shared.Trigger.Systems; + +/// +/// System for creating a trigger when the round ends. +/// +public sealed class TriggerOnRoundEndSystem : EntitySystem +{ + [Dependency] private readonly TriggerSystem _trigger = default!; + + /// + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnRoundEnd); + } + + private void OnRoundEnd(RoundEndMessageEvent args) + { + var triggerQuery = EntityQueryEnumerator(); + + // trigger everything with the component + while (triggerQuery.MoveNext(out var uid, out var comp)) + { + _trigger.Trigger(uid, null, comp.KeyOut); + } + } +} diff --git a/Content.Shared/Trigger/Systems/TriggerOnStrappedOrBuckledSystem.cs b/Content.Shared/Trigger/Systems/TriggerOnStrappedOrBuckledSystem.cs new file mode 100644 index 0000000000..d4960ff70c --- /dev/null +++ b/Content.Shared/Trigger/Systems/TriggerOnStrappedOrBuckledSystem.cs @@ -0,0 +1,49 @@ +using Content.Shared.Buckle.Components; +using Content.Shared.Trigger.Components.Triggers; + +namespace Content.Shared.Trigger.Systems; + +/// +/// This is a system covering all trigger interactions involving strapping or buckling objects. +/// The users of strap components are the objects having an entity strapped to them (IE: Chairs) +/// The users of buckle components are entities being buckled to an object. (IE: Mobs and players) +/// +public sealed partial class TriggerOnStrappedOrBuckledSystem : EntitySystem +{ + [Dependency] private readonly TriggerSystem _trigger = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnStrapped); + SubscribeLocalEvent(OnUnstrapped); + SubscribeLocalEvent(OnBuckled); + SubscribeLocalEvent(OnUnbuckled); + } + + + #region Class Methods + // Called by objects entities can be buckled to. (Chairs, surgical tables/) + private void OnStrapped(Entity ent, ref StrappedEvent args) + { + _trigger.Trigger(ent.Owner, args.Strap, ent.Comp.KeyOut); + } + + private void OnUnstrapped(Entity ent, ref UnstrappedEvent args) + { + _trigger.Trigger(ent.Owner, args.Strap, ent.Comp.KeyOut); + } + + // Called by entities that are buckled to an object. (Mobs, players.) + private void OnBuckled(Entity ent, ref BuckledEvent args) + { + _trigger.Trigger(ent.Owner, args.Buckle, ent.Comp.KeyOut); + } + + private void OnUnbuckled(Entity ent, ref UnbuckledEvent args) + { + _trigger.Trigger(ent.Owner, args.Buckle, ent.Comp.KeyOut); + } + #endregion +} diff --git a/Content.Shared/Trigger/Systems/TriggerOnToolUseSystem.cs b/Content.Shared/Trigger/Systems/TriggerOnToolUseSystem.cs new file mode 100644 index 0000000000..01f612aadf --- /dev/null +++ b/Content.Shared/Trigger/Systems/TriggerOnToolUseSystem.cs @@ -0,0 +1,21 @@ +using Content.Shared.Tools.Components; +using Content.Shared.Trigger.Components.Triggers; + +namespace Content.Shared.Trigger.Systems; + +public sealed class TriggerOnToolUseSystem : EntitySystem +{ + [Dependency] private readonly TriggerSystem _trigger = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnToolUse); + } + + private void OnToolUse(Entity ent, ref SimpleToolDoAfterEvent args) + { + _trigger.Trigger(ent.Owner, args.User, ent.Comp.KeyOut); + } +} diff --git a/Content.Shared/Trigger/Systems/TriggerSystem.Condition.cs b/Content.Shared/Trigger/Systems/TriggerSystem.Condition.cs index a917f1ad48..2d0756556a 100644 --- a/Content.Shared/Trigger/Systems/TriggerSystem.Condition.cs +++ b/Content.Shared/Trigger/Systems/TriggerSystem.Condition.cs @@ -1,5 +1,7 @@ -using Content.Shared.Trigger.Components.Conditions; +using Content.Shared.Random.Helpers; +using Content.Shared.Trigger.Components.Conditions; using Content.Shared.Verbs; +using Robust.Shared.Random; namespace Content.Shared.Trigger.Systems; @@ -13,6 +15,8 @@ public sealed partial class TriggerSystem SubscribeLocalEvent(OnToggleTriggerAttempt); SubscribeLocalEvent>(OnToggleGetAltVerbs); + + SubscribeLocalEvent(OnRandomChanceTriggerAttempt); } private void OnWhitelistTriggerAttempt(Entity ent, ref AttemptTriggerEvent args) @@ -54,4 +58,23 @@ public sealed partial class TriggerSystem ent.Comp.Enabled = !ent.Comp.Enabled; Dirty(ent); } + + private void OnRandomChanceTriggerAttempt(Entity ent, + ref AttemptTriggerEvent args) + { + if (args.Key == null || ent.Comp.Keys.Contains(args.Key)) + { + // TODO: Replace with RandomPredicted once the engine PR is merged + var hash = new List + { + (int)_timing.CurTick.Value, + GetNetEntity(ent).Id, + args.User == null ? 0 : GetNetEntity(args.User.Value).Id, + }; + var seed = SharedRandomExtensions.HashCodeCombine(hash); + var rand = new System.Random(seed); + + args.Cancelled |= !rand.Prob(ent.Comp.SuccessChance); // When not successful, Cancelled = true + } + } } diff --git a/Content.Shared/Trigger/Systems/TriggerSystem.Interaction.cs b/Content.Shared/Trigger/Systems/TriggerSystem.Interaction.cs index f506909760..62f483e876 100644 --- a/Content.Shared/Trigger/Systems/TriggerSystem.Interaction.cs +++ b/Content.Shared/Trigger/Systems/TriggerSystem.Interaction.cs @@ -1,6 +1,8 @@ -using Content.Shared.Interaction; +using Content.Shared.Examine; +using Content.Shared.Interaction; using Content.Shared.Interaction.Events; using Content.Shared.Item.ItemToggle.Components; +using Content.Shared.Throwing; using Content.Shared.Trigger.Components.Triggers; using Content.Shared.Trigger.Components.Effects; @@ -10,14 +12,25 @@ public sealed partial class TriggerSystem { private void InitializeInteraction() { + SubscribeLocalEvent(OnExamined); SubscribeLocalEvent(OnActivate); SubscribeLocalEvent(OnUse); + SubscribeLocalEvent(OnInteractHand); + SubscribeLocalEvent(OnInteractUsing); + + SubscribeLocalEvent(OnThrow); + SubscribeLocalEvent(OnThrown); SubscribeLocalEvent(HandleItemToggleOnTrigger); SubscribeLocalEvent(HandleAnchorOnTrigger); SubscribeLocalEvent(HandleUseDelayOnTrigger); } + private void OnExamined(Entity ent, ref ExaminedEvent args) + { + Trigger(ent.Owner, args.Examiner, ent.Comp.KeyOut); + } + private void OnActivate(Entity ent, ref ActivateInWorldEvent args) { if (args.Handled) @@ -39,6 +52,37 @@ public sealed partial class TriggerSystem args.Handled = true; } + private void OnInteractHand(Entity ent, ref InteractHandEvent args) + { + if (args.Handled) + return; + + Trigger(ent.Owner, args.User, ent.Comp.KeyOut); + args.Handled = true; + } + + private void OnInteractUsing(Entity ent, ref InteractUsingEvent args) + { + if (args.Handled) + return; + + if (!_whitelist.CheckBoth(args.Used, ent.Comp.Blacklist, ent.Comp.Whitelist)) + return; + + Trigger(ent.Owner, ent.Comp.TargetUsed ? args.Used : args.User, ent.Comp.KeyOut); + args.Handled = true; + } + + private void OnThrow(Entity ent, ref ThrowEvent args) + { + Trigger(ent.Owner, args.Thrown, ent.Comp.KeyOut); + } + + private void OnThrown(Entity ent, ref ThrownEvent args) + { + Trigger(ent.Owner, args.User, ent.Comp.KeyOut); + } + private void HandleItemToggleOnTrigger(Entity ent, ref TriggerEvent args) { if (args.Key != null && !ent.Comp.KeysIn.Contains(args.Key)) diff --git a/Content.Shared/Trigger/Systems/TriggerSystem.Voice.cs b/Content.Shared/Trigger/Systems/TriggerSystem.Voice.cs index ac67cb7ed2..c374369a7f 100644 --- a/Content.Shared/Trigger/Systems/TriggerSystem.Voice.cs +++ b/Content.Shared/Trigger/Systems/TriggerSystem.Voice.cs @@ -25,15 +25,21 @@ public sealed partial class TriggerSystem RemCompDeferred(ent); } - private void OnVoiceExamine(Entity ent, ref ExaminedEvent args) + private void OnVoiceExamine(EntityUid uid, TriggerOnVoiceComponent component, ExaminedEvent args) { - if (args.IsInDetailsRange) + if (!args.IsInDetailsRange || !component.ShowExamine) + return; + + if (component.InspectUninitializedLoc != null && string.IsNullOrWhiteSpace(component.KeyPhrase)) { - args.PushText(string.IsNullOrWhiteSpace(ent.Comp.KeyPhrase) - ? Loc.GetString("trigger-on-voice-uninitialized") - : Loc.GetString("trigger-on-voice-examine", ("keyphrase", ent.Comp.KeyPhrase))); + args.PushText(Loc.GetString(component.InspectUninitializedLoc)); + } + else if (component.InspectInitializedLoc != null && !string.IsNullOrWhiteSpace(component.KeyPhrase)) + { + args.PushText(Loc.GetString(component.InspectInitializedLoc.Value, ("keyphrase", component.KeyPhrase))); } } + private void OnListen(Entity ent, ref ListenEvent args) { var component = ent.Comp; @@ -71,13 +77,13 @@ public sealed partial class TriggerSystem private void OnVoiceGetAltVerbs(Entity ent, ref GetVerbsEvent args) { - if (!args.CanInteract || !args.CanAccess) + if (!args.CanInteract || !args.CanAccess || !ent.Comp.ShowVerbs) return; var user = args.User; args.Verbs.Add(new AlternativeVerb { - Text = Loc.GetString(ent.Comp.IsRecording ? "trigger-on-voice-stop" : "trigger-on-voice-record"), + Text = Loc.GetString(ent.Comp.IsRecording ? ent.Comp.StopRecordingVerb : ent.Comp.StartRecordingVerb), Act = () => { if (ent.Comp.IsRecording) @@ -93,7 +99,7 @@ public sealed partial class TriggerSystem args.Verbs.Add(new AlternativeVerb { - Text = Loc.GetString("trigger-on-voice-clear"), + Text = Loc.GetString(ent.Comp.ClearRecordingVerb), Act = () => { ClearRecording(ent); diff --git a/Content.Shared/UserInterface/ActivatableUISystem.cs b/Content.Shared/UserInterface/ActivatableUISystem.cs index a3f9a033df..d1df375ccb 100644 --- a/Content.Shared/UserInterface/ActivatableUISystem.cs +++ b/Content.Shared/UserInterface/ActivatableUISystem.cs @@ -116,7 +116,7 @@ public sealed partial class ActivatableUISystem : EntitySystem } } - return args.CanInteract || HasComp(args.User) && !component.BlockSpectators; + return (args.CanInteract || HasComp(args.User) && !component.BlockSpectators) && !RaiseCanOpenEventChecks(args.User, uid); } private void OnUseInHand(EntityUid uid, ActivatableUIComponent component, UseInHandEvent args) @@ -225,11 +225,7 @@ public sealed partial class ActivatableUISystem : EntitySystem // If we've gotten this far, fire a cancellable event that indicates someone is about to activate this. // This is so that stuff can require further conditions (like power). - var oae = new ActivatableUIOpenAttemptEvent(user); - var uae = new UserOpenActivatableUIAttemptEvent(user, uiEntity); - RaiseLocalEvent(user, uae); - RaiseLocalEvent(uiEntity, oae); - if (oae.Cancelled || uae.Cancelled) + if (RaiseCanOpenEventChecks(user, uiEntity)) return false; // Give the UI an opportunity to prepare itself if it needs to do anything @@ -286,4 +282,15 @@ public sealed partial class ActivatableUISystem : EntitySystem if (ent.Comp.InHandsOnly) CloseAll(ent, ent); } + + private bool RaiseCanOpenEventChecks(EntityUid user, EntityUid uiEntity) + { + // If we've gotten this far, fire a cancellable event that indicates someone is about to activate this. + // This is so that stuff can require further conditions (like power). + var oae = new ActivatableUIOpenAttemptEvent(user); + var uae = new UserOpenActivatableUIAttemptEvent(user, uiEntity); + RaiseLocalEvent(user, uae); + RaiseLocalEvent(uiEntity, oae); + return oae.Cancelled || uae.Cancelled; + } } diff --git a/Content.Server/Weapons/Melee/Balloon/BalloonPopperComponent.cs b/Content.Shared/Weapons/Melee/Balloon/BalloonPopperComponent.cs similarity index 94% rename from Content.Server/Weapons/Melee/Balloon/BalloonPopperComponent.cs rename to Content.Shared/Weapons/Melee/Balloon/BalloonPopperComponent.cs index e7f318d61c..7e90b2b4ea 100644 --- a/Content.Server/Weapons/Melee/Balloon/BalloonPopperComponent.cs +++ b/Content.Shared/Weapons/Melee/Balloon/BalloonPopperComponent.cs @@ -2,7 +2,7 @@ using Robust.Shared.Audio; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -namespace Content.Server.Weapons.Melee.Balloon; +namespace Content.Shared.Weapons.Melee.Balloon; /// /// This is used for weapons that pop balloons on attack. diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs index 61ee8cdada..32da51f8bb 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs @@ -8,7 +8,6 @@ using Content.Shared.CombatMode; using Content.Shared.Containers.ItemSlots; using Content.Shared.Damage; using Content.Shared.Examine; -using Content.Shared.Gravity; using Content.Shared.Hands; using Content.Shared.Hands.EntitySystems; using Content.Shared.Popups; @@ -27,7 +26,6 @@ using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Map; using Robust.Shared.Network; -using Robust.Shared.Physics; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; using Robust.Shared.Prototypes; @@ -57,7 +55,6 @@ public abstract partial class SharedGunSystem : EntitySystem [Dependency] protected readonly SharedAudioSystem Audio = default!; [Dependency] private readonly SharedCombatModeSystem _combatMode = default!; [Dependency] protected readonly SharedContainerSystem Containers = default!; - [Dependency] private readonly SharedGravitySystem _gravity = default!; [Dependency] protected readonly SharedPointLightSystem Lights = default!; [Dependency] protected readonly SharedPopupSystem PopupSystem = default!; [Dependency] protected readonly SharedPhysicsSystem Physics = default!; @@ -391,7 +388,7 @@ public abstract partial class SharedGunSystem : EntitySystem var shooterEv = new ShooterImpulseEvent(); RaiseLocalEvent(user, ref shooterEv); - if (shooterEv.Push || _gravity.IsWeightless(user, userPhysics)) + if (shooterEv.Push) CauseImpulse(fromCoordinates, toCoordinates.Value, user, userPhysics); } diff --git a/Content.Shared/Wieldable/SharedWieldableSystem.cs b/Content.Shared/Wieldable/SharedWieldableSystem.cs index 0a49622f8b..3b9b8dd8e7 100644 --- a/Content.Shared/Wieldable/SharedWieldableSystem.cs +++ b/Content.Shared/Wieldable/SharedWieldableSystem.cs @@ -314,7 +314,8 @@ public abstract class SharedWieldableSystem : EntitySystem var virtuals = new ValueList(); for (var i = 0; i < component.FreeHandsRequired; i++) { - if (_virtualItem.TrySpawnVirtualItemInHand(used, user, out var virtualItem, true)) + // don't show a popup when dropping items because it will overlap with the popup for wielding + if (_virtualItem.TrySpawnVirtualItemInHand(used, user, out var virtualItem, true, silent: true)) { virtuals.Add(virtualItem.Value); continue; diff --git a/Content.Server/Zombies/ZombieImmuneComponent.cs b/Content.Shared/Zombies/ZombieImmuneComponent.cs similarity index 73% rename from Content.Server/Zombies/ZombieImmuneComponent.cs rename to Content.Shared/Zombies/ZombieImmuneComponent.cs index 76a8ab9e67..483b1810f2 100644 --- a/Content.Server/Zombies/ZombieImmuneComponent.cs +++ b/Content.Shared/Zombies/ZombieImmuneComponent.cs @@ -1,4 +1,6 @@ -namespace Content.Server.Zombies; +using Robust.Shared.GameStates; + +namespace Content.Shared.Zombies; /// /// Entities with this component cannot be zombified. diff --git a/Content.Shared/Zombies/ZombifyOnDeathComponent.cs b/Content.Shared/Zombies/ZombifyOnDeathComponent.cs new file mode 100644 index 0000000000..60029aca6f --- /dev/null +++ b/Content.Shared/Zombies/ZombifyOnDeathComponent.cs @@ -0,0 +1,12 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Zombies; + +/// +/// Entities with this component zombify on death. +/// +[RegisterComponent] +public sealed partial class ZombifyOnDeathComponent : Component +{ + //this is not the component you are looking for +} diff --git a/Directory.Packages.props b/Directory.Packages.props index b2f8d0d844..643b105b76 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -15,7 +15,7 @@ - + diff --git a/Resources/Audio/Effects/attributions.yml b/Resources/Audio/Effects/attributions.yml index 9f85c4fb05..efac498a3b 100644 --- a/Resources/Audio/Effects/attributions.yml +++ b/Resources/Audio/Effects/attributions.yml @@ -258,11 +258,6 @@ source: "https://freesound.org/people/CheChoDj/sounds/609353/" - files: [card_drag.ogg] - copyright: 'created by Tao7891' + copyright: 'created by Tao7891; perryprog (GitHub) downmixed to mono' license: CC0-1.0 source: https://github.com/space-wizards/space-station-14/pull/37363 - -- files: [card_tube_bonk.ogg] - copyright: 'created by Crinkem on Freesound' - license: "CC0-1.0" - source: https://freesound.org/people/Crinkem/sounds/492027/ diff --git a/Resources/Audio/Effects/card_drag.ogg b/Resources/Audio/Effects/card_drag.ogg index 8ecf632e8a..d79309953e 100644 Binary files a/Resources/Audio/Effects/card_drag.ogg and b/Resources/Audio/Effects/card_drag.ogg differ diff --git a/Resources/Audio/Items/Toys/attributions.yml b/Resources/Audio/Items/Toys/attributions.yml index 23caefc0d0..504e5b7ac6 100644 --- a/Resources/Audio/Items/Toys/attributions.yml +++ b/Resources/Audio/Items/Toys/attributions.yml @@ -107,3 +107,9 @@ license: "CC0-1.0" copyright: "Created by Orsoniks, from the game Casualties Unknown" source: "https://orsonik.itch.io/scav-prototype" + +- files: [card_tube_bonk.ogg] + copyright: 'created by Crinkem on Freesound; perryprog (GitHub) downmixed to mono' + license: "CC0-1.0" + source: https://freesound.org/people/Crinkem/sounds/492027/ + diff --git a/Resources/Audio/Items/Toys/card_tube_bonk.ogg b/Resources/Audio/Items/Toys/card_tube_bonk.ogg index b300702c25..de84b852a8 100644 Binary files a/Resources/Audio/Items/Toys/card_tube_bonk.ogg and b/Resources/Audio/Items/Toys/card_tube_bonk.ogg differ diff --git a/Resources/Audio/Voice/Talk/attributions.yml b/Resources/Audio/Voice/Talk/attributions.yml index 19b0b66b9c..e4347315ff 100644 --- a/Resources/Audio/Voice/Talk/attributions.yml +++ b/Resources/Audio/Voice/Talk/attributions.yml @@ -36,3 +36,8 @@ license: "CC-BY-NC-SA-3.0" copyright: "Derived from shriek1.ogg by Errant" source: "https://github.com/goonstation/goonstation/tree/eb3e7df6292d23f6af2f18b4372d3a8ba4b0fda7/sound/misc/talk" + +- files: ["vulp.ogg, vulp_ask.ogg, vulp_exclaim.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "pug.ogg (Renamed to vulp.ogg), pug_ask.ogg (Renamed to vulp_ask.ogg, pug_exclaim.ogg (Renamed to vulp_exclaim.ogg) all taken from: https://github.com/goonstation/goonstation/commit/da7c8965c4552ca53af367e6c83a83da2affe790" + source: "https://github.com/goonstation/goonstation/commit/da7c8965c4552ca53af367e6c83a83da2affe790" diff --git a/Resources/Audio/Voice/Talk/vulp.ogg b/Resources/Audio/Voice/Talk/vulp.ogg new file mode 100644 index 0000000000..86d50225a5 Binary files /dev/null and b/Resources/Audio/Voice/Talk/vulp.ogg differ diff --git a/Resources/Audio/Voice/Talk/vulp_ask.ogg b/Resources/Audio/Voice/Talk/vulp_ask.ogg new file mode 100644 index 0000000000..4cdf1c8a5e Binary files /dev/null and b/Resources/Audio/Voice/Talk/vulp_ask.ogg differ diff --git a/Resources/Audio/Voice/Talk/vulp_exclaim.ogg b/Resources/Audio/Voice/Talk/vulp_exclaim.ogg new file mode 100644 index 0000000000..ed47bcf1c6 Binary files /dev/null and b/Resources/Audio/Voice/Talk/vulp_exclaim.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/attributions.yml b/Resources/Audio/Voice/Vulpkanin/attributions.yml new file mode 100644 index 0000000000..606c0b27de --- /dev/null +++ b/Resources/Audio/Voice/Vulpkanin/attributions.yml @@ -0,0 +1,55 @@ +- files: ["dog_bark1.ogg"] + license: "CC0-1.0" + copyright: "Original sound by https://freesound.org/people/abhisheky948/sounds/625497/" + source: "https://freesound.org/people/abhisheky948/sounds/625497/" + +- files: ["dog_bark2.ogg"] + license: "CC0-1.0" + copyright: "Original sound by https://freesound.org/people/michael_grinnell/sounds/464400/" + source: "https://freesound.org/people/michael_grinnell/sounds/464400/" + +- files: ["dog_bark3.ogg"] + license: "CC0-1.0" + copyright: "Original sound by https://freesound.org/people/Geoff-Bremner-Audio/sounds/688201/" + source: "https://freesound.org/people/Geoff-Bremner-Audio/sounds/688201/" + +- files: ["dog_growl1.ogg", "dog_growl2.ogg", "dog_growl3.ogg"] + license: "CC0-1.0" + copyright: "Original sound by https://freesound.org/people/Glitchedtones/sounds/372533/ - cut out three clips of dog growling, cleaned up, converted to ogg" + source: "https://freesound.org/people/Glitchedtones/sounds/372533/" + +- files: ["dog_growl4.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Original sound taken from Paradise Station. Renamed to dog_growl4.ogg" + source: "https://github.com/ParadiseSS13/Paradise/blob/master/sound/goonstation/voice/growl1.ogg" + +- files: ["dog_growl5.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Original sound taken from Paradise Station. Renamed to dog_growl5.ogg" + source: "https://github.com/ParadiseSS13/Paradise/blob/master/sound/goonstation/voice/growl2.ogg" + +- files: ["dog_growl6.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Original sound taken from Paradise Station. Renamed to dog_growl6.ogg" + source: "https://github.com/ParadiseSS13/Paradise/blob/master/sound/goonstation/voice/growl3.ogg" + + +- files: ["dog_snarl1.ogg", "dog_snarl2.ogg", "dog_snarl3.ogg"] + license: "CC0-1.0" + copyright: "Original sound by https://freesound.org/people/strongbot/sounds/341090/ - cut out three clips of dog snarling, cleaned up, converted to ogg" + source: "https://freesound.org/people/strongbot/sounds/341090/" + +- files: ["dog_whine.ogg"] + license: "CC0-1.0" + copyright: "Original sound by https://freesound.org/people/Sruddi1/sounds/34878/ - cleaned up, converted to ogg" + source: "https://freesound.org/people/Sruddi1/sounds/34878/" + +- files: ["howl.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Original sound taken from Goonstation. Renamed to howl.ogg" + source: "https://github.com/goonstation/goonstation/blob/master/sound/voice/animal/werewolf_howl.ogg" + +- files: ["vulp_scream1.ogg", "vulp_scream2.ogg", "vulp_scream3.ogg", "vulp_scream4.ogg"] + license: "CC0-1.0" + copyright: "Original sound by https://freesound.org/people/lordomega/sounds/514959/ - cut out four clips, cleaned up, converted to ogg" + source: "https://freesound.org/people/lordomega/sounds/514959/" diff --git a/Resources/Audio/Voice/Vulpkanin/dog_bark1.ogg b/Resources/Audio/Voice/Vulpkanin/dog_bark1.ogg new file mode 100644 index 0000000000..8f3b8fe5bf Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/dog_bark1.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/dog_bark2.ogg b/Resources/Audio/Voice/Vulpkanin/dog_bark2.ogg new file mode 100644 index 0000000000..ed4d7bc786 Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/dog_bark2.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/dog_bark3.ogg b/Resources/Audio/Voice/Vulpkanin/dog_bark3.ogg new file mode 100644 index 0000000000..13aab8edd4 Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/dog_bark3.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/dog_growl1.ogg b/Resources/Audio/Voice/Vulpkanin/dog_growl1.ogg new file mode 100644 index 0000000000..d2c99e97e7 Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/dog_growl1.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/dog_growl2.ogg b/Resources/Audio/Voice/Vulpkanin/dog_growl2.ogg new file mode 100644 index 0000000000..3eb018413a Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/dog_growl2.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/dog_growl3.ogg b/Resources/Audio/Voice/Vulpkanin/dog_growl3.ogg new file mode 100644 index 0000000000..84b505442d Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/dog_growl3.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/dog_growl4.ogg b/Resources/Audio/Voice/Vulpkanin/dog_growl4.ogg new file mode 100644 index 0000000000..d5152d9c05 Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/dog_growl4.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/dog_growl5.ogg b/Resources/Audio/Voice/Vulpkanin/dog_growl5.ogg new file mode 100644 index 0000000000..5c48053ac6 Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/dog_growl5.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/dog_growl6.ogg b/Resources/Audio/Voice/Vulpkanin/dog_growl6.ogg new file mode 100644 index 0000000000..bcacf2442f Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/dog_growl6.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/dog_snarl1.ogg b/Resources/Audio/Voice/Vulpkanin/dog_snarl1.ogg new file mode 100644 index 0000000000..4493be060c Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/dog_snarl1.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/dog_snarl2.ogg b/Resources/Audio/Voice/Vulpkanin/dog_snarl2.ogg new file mode 100644 index 0000000000..6529e4e05d Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/dog_snarl2.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/dog_snarl3.ogg b/Resources/Audio/Voice/Vulpkanin/dog_snarl3.ogg new file mode 100644 index 0000000000..fb9e4c7ec7 Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/dog_snarl3.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/dog_whine.ogg b/Resources/Audio/Voice/Vulpkanin/dog_whine.ogg new file mode 100644 index 0000000000..47f2e8200d Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/dog_whine.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/howl.ogg b/Resources/Audio/Voice/Vulpkanin/howl.ogg new file mode 100644 index 0000000000..eab111a66c Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/howl.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/vulp_scream1.ogg b/Resources/Audio/Voice/Vulpkanin/vulp_scream1.ogg new file mode 100644 index 0000000000..af52e55c9a Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/vulp_scream1.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/vulp_scream2.ogg b/Resources/Audio/Voice/Vulpkanin/vulp_scream2.ogg new file mode 100644 index 0000000000..293175ec60 Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/vulp_scream2.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/vulp_scream3.ogg b/Resources/Audio/Voice/Vulpkanin/vulp_scream3.ogg new file mode 100644 index 0000000000..68bb49fa42 Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/vulp_scream3.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/vulp_scream4.ogg b/Resources/Audio/Voice/Vulpkanin/vulp_scream4.ogg new file mode 100644 index 0000000000..46f834ac43 Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/vulp_scream4.ogg differ diff --git a/Resources/Audio/Voice/Xenoborg/xenoborg_scream.ogg b/Resources/Audio/Voice/Xenoborg/xenoborg_scream.ogg index bc83ec46ff..9ac12637fb 100644 Binary files a/Resources/Audio/Voice/Xenoborg/xenoborg_scream.ogg and b/Resources/Audio/Voice/Xenoborg/xenoborg_scream.ogg differ diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 988b9038a7..8d0e46fc54 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -1330,5 +1330,55 @@ Entries: id: 162 time: '2025-08-08T19:00:41.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35531 +- author: EmoGarbage404, soutbridge-fur + changes: + - message: A new experimental gamemode "Dynamic" has been added to the voting options + and admin seletion. + type: Add + id: 163 + time: '2025-08-15T14:06:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37783 +- author: Samuka + changes: + - message: edited law boards now work correctly + type: Fix + id: 164 + time: '2025-08-19T23:04:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39756 +- author: Southbridge + changes: + - message: Added dropdown to every log entry in the admin log viewer with additional + information. + type: Add + - message: Added color-highlighting in the log search to find results. + type: Add + - message: Modified player list searches and the log search to utilize regex instead + of regular string searches. + type: Tweak + id: 165 + time: '2025-08-21T20:12:16.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39130 +- author: slarticodefast + changes: + - message: The 'Delete' button in the objects tab is now a confirm button. + type: Tweak + - message: Fixed the 'Teleport' button in the objects tab not working for stations + and maps. + type: Fix + id: 166 + time: '2025-08-22T22:37:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39832 +- author: Samuka + changes: + - message: setgamepreset now takes another argument that determines what title and + description of the game mode will be shown in the lobby screen. + type: Tweak + - message: Removed SecretGreenshift from game presets. + type: Remove + - message: Removed SecretExtended from game presets. + type: Remove + id: 167 + time: '2025-09-04T13:03:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40053 Name: Admin Order: 2 diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 718d0605c9..3c8158186a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,733 +1,4 @@ Entries: -- author: RedBookcase - changes: - - message: Added Advanced Circular Saw as a Medical Doctor specific uplink item. - type: Add - - message: Removed Syndicate Surgery Duffel Bag from uplink. - type: Remove - id: 8328 - time: '2025-04-24T03:01:29.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35915 -- author: AgentSmithRadio, MadeOfHeartAndStone - changes: - - message: Added cotton grilled cheese sandwich entity and recipe. - type: Add - id: 8329 - time: '2025-04-24T03:24:37.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36135 -- author: SG6732 - changes: - - message: Added meat patties. Get the charcoal and let's start grillin. - type: Add - id: 8330 - time: '2025-04-24T03:45:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34896 -- author: DrMelon, EmoGarbage404 - changes: - - message: Added turnstiles, gates able to limit the flow of foot traffic. The station's - flow is at your fingertips. - type: Add - id: 8331 - time: '2025-04-24T11:39:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36313 -- author: EmoGarbage404 - changes: - - message: Added prisoner closets. These create automatic ID's which allow you to - quickly handle the transfer of prisoners in and out of genpop cells while keeping - their belongings secure. Imprison people today! - type: Add - id: 8332 - time: '2025-04-24T14:32:11.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36392 -- author: Southbridge - changes: - - message: Colorful Light Crates have been added and can be ordered. - type: Add - id: 8333 - time: '2025-04-24T17:41:55.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36750 -- author: ScarKy0, Jbsundown - changes: - - message: Letters and Packages can now be cut open with sharp objects. Be wary, - this makes cargo lose money! - type: Add - id: 8334 - time: '2025-04-24T19:47:46.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36815 -- author: EmoGarbage404 - changes: - - message: Fixed situations where using the QSI would send the player into an esoteric - space realm. - type: Fix - id: 8335 - time: '2025-04-24T21:18:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36834 -- author: thetolbean - changes: - - message: Specific outer clothing now correctly blocks your identity. - type: Fix - id: 8336 - time: '2025-04-24T23:42:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33085 -- author: SlamBamActionman - changes: - - message: Changed 2 posters to be rules-compliant. - type: Tweak - id: 8337 - time: '2025-04-24T23:44:55.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32734 -- author: Nox38 - changes: - - message: Rebalanced cyborg modules and made more of them starting equipment. - type: Tweak - - message: Added new advanced mining and advanced chemical modules. - type: Add - id: 8338 - time: '2025-04-25T02:29:16.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34186 -- author: AgentSmithRadio - changes: - - message: Reptilians can now eat orange creamsicles. - type: Tweak - - message: Berry creamsicles can no longer be used in cargo's generic fruit bounty. - type: Fix - id: 8339 - time: '2025-04-25T03:53:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36890 -- author: Vexerot - changes: - - message: Goliaths now have a bloodstream and can bleed. - type: Tweak - id: 8340 - time: '2025-04-25T04:02:03.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33305 -- author: Blackern5000 - changes: - - message: The mining hardsuit has had it's armor tweaked to be more effective against - fish and less effective against bullets and/or bombs - type: Tweak - id: 8341 - time: '2025-04-25T04:05:29.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31450 -- author: Krzeszny - changes: - - message: Rewrote the controls guide. - type: Tweak - id: 8342 - time: '2025-04-25T04:49:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36363 -- author: ScarKy0 - changes: - - message: Interdyne cigs now cost 1TC instead of 2TC. - type: Tweak - id: 8343 - time: '2025-04-25T04:52:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36841 -- author: lzk228 - changes: - - message: Seashell is small size. - type: Tweak - id: 8344 - time: '2025-04-25T05:54:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32262 -- author: Blackern5000 - changes: - - message: Inaprovaline now heals slower, but lingers in the bloodstream for much - longer, making it much more useful for stabilizing critical patients for an - extended duration rather than outright treating damage. - type: Tweak - id: 8345 - time: '2025-04-25T06:03:04.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32293 -- author: kosticia - changes: - - message: Moths can no longer eat rubber toys. - type: Fix - id: 8346 - time: '2025-04-25T07:20:09.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34543 -- author: chromiumboy - changes: - - message: Gas vent under-pressure lockout releases are now performed using the - right-click menu - a screwdriver is no longer required - type: Tweak - id: 8347 - time: '2025-04-25T07:21:00.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36910 -- author: chromiumboy - changes: - - message: Ghosts will now follow the AI when it activates a holopad or answers - a holo-call - type: Fix - id: 8348 - time: '2025-04-25T10:30:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36355 -- author: Radezolid - changes: - - message: Fixed some donuts not counting towards the donuts bounty for cargo. - type: Fix - id: 8349 - time: '2025-04-25T15:07:50.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36903 -- author: Kiri-Yoshikage - changes: - - message: Atomic Bomb cocktail is now mixed in 10u instead of 11. - type: Tweak - id: 8350 - time: '2025-04-25T15:33:14.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36921 -- author: EmoGarbage404 - changes: - - message: Added 3 modkits for the proto-kinetic accelerator, granting increased - damage, range, and fire rate. They can be researched via the new "Kinetic Modifications" - arsenal tech. - type: Add - - message: Reduced damage and range on the proto-kinetic accelerator. - type: Tweak - id: 8351 - time: '2025-04-25T18:18:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31247 -- author: Wolfkey-SomeoneElseTookMyUsername - changes: - - message: Added cotton buns, which can be be used for the creation of custom burgers - that can be eaten by moths. - type: Add - id: 8352 - time: '2025-04-26T01:54:14.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36405 -- author: Booblesnoot42 - changes: - - message: Due to a lack of functionality, light-switches have temporarily been - removed from the construction menu. - type: Remove - id: 8353 - time: '2025-04-26T01:54:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34664 -- author: OnyxTheBrave - changes: - - message: Cloth is now able to be made in the Sheet-Meister 2000 - type: Add - id: 8354 - time: '2025-04-26T03:22:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32676 -- author: SyaoranFox - changes: - - message: Pulse Pistol, Pulse Carbine, and Pulse Rifle now share the same sound - file. - type: Tweak - id: 8355 - time: '2025-04-26T13:36:51.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36952 -- author: RedBookcase - changes: - - message: Various changes to edged weapons, including new storage sprites and new - storage options. - type: Add - id: 8356 - time: '2025-04-26T20:45:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36564 -- author: archee1, Beck - changes: - - message: Inflatable walls no longer instantly deconstruct if canceled. - type: Fix - id: 8357 - time: '2025-04-26T20:56:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36937 -- author: ScarKy0 - changes: - - message: Deliveries now have a random multiplier added to them, slightly modifying - their earnings. - type: Add - - message: Deliveries now show how many spesos they grant on examine. - type: Tweak - id: 8358 - time: '2025-04-26T21:42:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36918 -- author: sowelipililimute - changes: - - message: Medical and security techfab will no longer announce more than five recipes - at once, avoiding chat flooding - type: Tweak - id: 8359 - time: '2025-04-26T21:45:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36945 -- author: Nox38 - changes: - - message: Added descriptions for the .30 caliber and weapons. - type: Add - id: 8360 - time: '2025-04-26T21:48:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36958 -- author: UpAndLeaves - changes: - - message: The CMO's hardsuit has been redesigned with extra durathread to withstand - zombie bites more effectively. - type: Tweak - id: 8361 - time: '2025-04-26T21:49:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36957 -- author: Centronias - changes: - - message: Parcel wrap, purchasable from cargo, which allows you to wrap items in - paper so you can give people surprise gifts... like bombs. - type: Add - id: 8362 - time: '2025-04-26T23:24:25.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34471 -- author: TiniestShark - changes: - - message: Inhand sprites for (most) ammo mags and speedloaders. - type: Add - id: 8363 - time: '2025-04-26T23:36:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34235 -- author: UpAndLeaves - changes: - - message: Due to recent budget improvements, science now gets custom bio suit lockers. - type: Add - id: 8364 - time: '2025-04-26T23:45:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36929 -- author: ScarKy0 - changes: - - message: Deliveries can now spawn as priority-type! Deliver them within their - time limit to earn a nice speso bonus. - type: Add - id: 8365 - time: '2025-04-27T09:13:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36968 -- author: PJB3005 - changes: - - message: SMES and substations now have an (extremely fancy) interface to control - them with. - type: Add - id: 8366 - time: '2025-04-27T11:08:34.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36386 -- author: metalgearsloth - changes: - - message: Tweak mob collision values in line with RMC14. - type: Tweak - id: 8367 - time: '2025-04-27T14:47:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36851 -- author: Fildrance - changes: - - message: node scanner now dislplays live artifact info (while in range) after - linking to artifact - type: Tweak - id: 8368 - time: '2025-04-27T15:11:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36635 -- author: ArtisticRoomba - changes: - - message: A new Mapping changelog has been added. You can find it in a different - "Mapping" tab under the changelog menu. - type: Add - id: 8369 - time: '2025-04-27T20:15:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34848 -- author: ScarKy0 - changes: - - message: Deliveries can now spawn as fragile-type! Deliver them intact to earn - a minor speso bonus. - type: Add - id: 8370 - time: '2025-04-27T23:04:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36980 -- author: Bokser815 - changes: - - message: Cargo buy and sell pallets aboard the ATS can no longer be destroyed, - so cargo workers will no longer be unable to perform their job entirely for - the rest of the round. - type: Tweak - id: 8371 - time: '2025-04-28T00:59:54.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34195 -- author: lzk228 - changes: - - message: Shelves don't have whitelists. But still max item size you can fit is - Normal. - type: Tweak - id: 8372 - time: '2025-04-28T01:00:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36986 -- author: KingFroozy - changes: - - message: Mime's suits were resprited. - type: Tweak - id: 8373 - time: '2025-04-28T02:40:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36702 -- author: Southbridge - changes: - - message: Amber Station - Added Genpop - type: Add - - message: Amber Station - Ensured a lot of doorways had tiles and decals under - them. - type: Tweak - id: 8374 - time: '2025-04-28T06:56:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36997 -- author: lzk228 - changes: - - message: Scrubber now will turn on widenet in panic mode. - type: Tweak - id: 8375 - time: '2025-04-28T19:22:05.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37013 -- author: KingFroozy - changes: - - message: Changed the shoulder-length and shoulder-length over eye hairstyles. - type: Tweak - id: 8376 - time: '2025-04-28T21:00:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37000 -- author: ScarKy0 - changes: - - message: Cutting mail now correctly cancels when someone drags it away. - type: Fix - id: 8377 - time: '2025-04-28T21:16:14.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37019 -- author: themias - changes: - - message: cable terminals are now visually layered below floors, like other cables - type: Fix - id: 8378 - time: '2025-04-28T23:43:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37018 -- author: Vexerot - changes: - - message: Entities that are weightless or in the air are no longer slowed by puddles. - type: Tweak - id: 8379 - time: '2025-04-29T00:24:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33299 -- author: themias - changes: - - message: Theatre workers (clown/mime/musician) now have access to the Service - Request Computer - type: Tweak - id: 8380 - time: '2025-04-29T00:26:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37003 -- author: Thatonestomf - changes: - - message: Added slugs to both the bulldog and ammo bundle. - type: Add - - message: Slugs are alot more powerful than they were before, now dealing 40 pierce - and 15 structural - type: Tweak - - message: Basic shells now deal structural damage - type: Tweak - id: 8381 - time: '2025-04-29T03:13:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33517 -- author: EmoGarbage404 - changes: - - message: Space debris now have a chance for landmines to spawn on them. - type: Add - - message: Adjusted the loot table on space debris to have more useful equipment - and items. - type: Tweak - - message: Round-start space debris now better mimics what the salvage magnet can - pull in. - type: Tweak - - message: Removed round-start space asteroids. - type: Remove - id: 8382 - time: '2025-04-29T03:37:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37025 -- author: drakewill-CRL - changes: - - message: You can now see mutations on plants and produce. - type: Tweak - id: 8383 - time: '2025-04-29T04:45:11.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32650 -- author: lzk228 - changes: - - message: When an entity becomes SSD, it will be forced to sleep after 10 minutes. - It can be awakened if no more SSD. - type: Tweak - id: 8384 - time: '2025-04-29T05:24:34.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34039 -- author: TytosB - changes: - - message: adjusted pka damage and range - type: Tweak - id: 8385 - time: '2025-04-29T10:00:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37012 -- author: abadaba695 - changes: - - message: Added 15u, 20u, and 30u transfer buttons in the chem master. - type: Add - id: 8386 - time: '2025-04-29T10:24:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36995 -- author: Thinbug0 - changes: - - message: Science developed the Push-Horn, capable of pushing people away with - each honk! - type: Add - id: 8387 - time: '2025-04-29T13:07:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36009 -- author: SlamBamActionman - changes: - - message: The "Toggle Walk" alert no longer gets removed when it shouldn't. - type: Fix - id: 8388 - time: '2025-04-29T13:32:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37033 -- author: Boaz1111 - changes: - - message: Added sharkminnow tooth spears and carp tooth arrows. Happy salvaging! - type: Add - - message: Sharkminnow teeth now deal 15 damage instead of 10. - type: Tweak - id: 8389 - time: '2025-04-29T16:36:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31257 -- author: whatston3 - changes: - - message: Speso stacks now show different denominations depending on their size. - type: Add - id: 8390 - time: '2025-04-29T21:44:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37030 -- author: themias - changes: - - message: Toolboxes have new sound effects - type: Tweak - id: 8391 - time: '2025-04-29T22:17:32.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37048 -- author: ScarKy0 - changes: - - message: Priority mail now indicates whether it was delivered on time or not. - type: Tweak - id: 8392 - time: '2025-04-29T22:55:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37049 -- author: PJB3005 - changes: - - message: Wallmount substations now have an interface too. - type: Fix - id: 8393 - time: '2025-04-30T00:34:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37047 -- author: EmoGarbage404 - changes: - - message: Fixed NPCs stalling out when too many exist. - type: Fix - id: 8394 - time: '2025-04-30T00:51:42.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37056 -- author: BIGZi0348, slarticodefast - changes: - - message: Reflective vest now reflects lasers only while equipped. - type: Tweak - - message: Energy katana now reflects lasers and projectiles only while in hands. - type: Tweak - id: 8395 - time: '2025-04-30T14:10:54.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37039 -- author: themias - changes: - - message: Firelocks can now close over turnstiles - type: Fix - id: 8396 - time: '2025-04-30T15:51:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37074 -- author: themias - changes: - - message: Skeletons wearing gloves now leave fiber evidence - type: Fix - id: 8397 - time: '2025-04-30T19:56:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37077 -- author: metalgearsloth - changes: - - message: Fix action additions / removals sometimes not being predicted. - type: Fix - id: 8398 - time: '2025-05-01T00:11:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37076 -- author: imatsoup - changes: - - message: Battery weapons with multiple fire-modes (Energy Shotgun, Temperature - Gun) will no longer change their fire-modes when wielded by activating them - in your hand. - type: Fix - id: 8399 - time: '2025-05-01T05:35:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37085 -- author: MissKay1994 - changes: - - message: Vox can now eat trash and drink welding fuel! - type: Add - id: 8400 - time: '2025-05-01T18:16:51.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35681 -- author: slarticodefast - changes: - - message: Added noir glasses, which make everything black and white. You can find - them in the detective's locker. - type: Add - id: 8401 - time: '2025-05-01T22:07:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36923 -- author: Nikitosych - changes: - - message: Fixed abrupt stamina damage reset and abrupt speed recovery after 3 seconds - (especially noticeable at high damage levels) - type: Fix - - message: Stamina damage no longer instantly resets when exiting critical state; - it now regenerates gradually. - type: Tweak - id: 8402 - time: '2025-05-01T23:01:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36336 -- author: YoungThugSS14 - changes: - - message: The Wizard Helmet is now obtainable from the magic vend. - type: Tweak - id: 8403 - time: '2025-05-02T01:56:54.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37084 -- author: Pronana - changes: - - message: Items can now slide on ice crust - type: Add - id: 8404 - time: '2025-05-02T08:18:09.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36847 -- author: metalgearsloth - changes: - - message: Predict gas canisters, gas tanks, and internals. - type: Tweak - id: 8405 - time: '2025-05-02T08:22:29.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33800 -- author: metalgearsloth - changes: - - message: Fix AI eye movement. - type: Fix - id: 8406 - time: '2025-05-02T10:07:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37114 -- author: themias - changes: - - message: Station beacons retain edited info when reopening their window. - type: Fix - id: 8407 - time: '2025-05-02T16:14:16.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37121 -- author: Errant - changes: - - message: Vox now only drop their organs when gibbed, not all of their bodyparts. - type: Fix - id: 8408 - time: '2025-05-02T17:12:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37111 -- author: murolem - changes: - - message: Updated PA crate order name and description to clarify that it only contains - boards. - type: Tweak - id: 8409 - time: '2025-05-02T18:31:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37109 -- author: Unkn0wnGh0st333 - changes: - - message: Knuckle Dusters have arrived to Space Station 14. QM can now rule cargo - with a golden-covered fist! - type: Add - id: 8411 - time: '2025-05-03T04:18:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33470 -- author: Errant - changes: - - message: Visiting Command and Security ghostroles, as well as some other rare - centcomm ghostroles, now have their names properly randomized. - type: Fix - id: 8412 - time: '2025-05-03T12:10:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37143 -- author: Radezolid - changes: - - message: Fixed departmental maintenance airlocks not using it's wire layout. - type: Fix - - message: Command maintenance airlocks now have proper security like their regular - counterparts. - type: Tweak - id: 8413 - time: '2025-05-03T15:07:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36735 -- author: youtissoum - changes: - - message: Skeletons will no longer spawn inside of folded body bags. - type: Fix - id: 8414 - time: '2025-05-03T19:19:33.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37151 -- author: Minemoder - changes: - - message: The traitor uplink thieving gloves have been replaced with chameleon - thieving gloves, the same used by the Thief. - type: Tweak - id: 8415 - time: '2025-05-03T19:28:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36369 -- author: EmoGarbage404 - changes: - - message: Added gibtonite! This secret ore becomes visible when struck and explodes - violently. It can be detected early using a mineral scanner. - type: Add - id: 8416 - time: '2025-05-04T00:38:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37160 -- author: EmoGarbage404 - changes: - - message: You can no longer scrap coins and other salvaging treasures. They're - simply too valuable to junk. - type: Remove - id: 8417 - time: '2025-05-04T02:39:19.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37149 -- author: EmoGarbage404 - changes: - - message: Mob corpses brought back from salvage pulls will no longer despawn with - the pull. - type: Fix - id: 8418 - time: '2025-05-04T05:47:11.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37169 -- author: perryprog - changes: - - message: Shelves built from the construction menu can now be placed in all orientations. - type: Fix - id: 8419 - time: '2025-05-04T22:42:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37186 -- author: brainfood1183 - changes: - - message: A stack of Whoopie Cushions no longer launches you into oblivion! - type: Fix - id: 8420 - time: '2025-05-04T23:01:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36984 -- author: spanky-spanky - changes: - - message: On Fland, modified security to include genpop. - type: Add - id: 8421 - time: '2025-05-06T01:29:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37207 - author: B-Kirill changes: - message: Added a search by profession and species in station records. @@ -3900,3 +3171,775 @@ id: 8840 time: '2025-08-08T19:27:46.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39481 +- author: Flareguy + changes: + - message: Updated moth displacement maps to fix missing pixels, among other various + issues. + type: Fix + id: 8841 + time: '2025-08-09T21:52:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39174 +- author: Princess-Cheeseballs + changes: + - message: Mobs such as borgs, dragons, etc can no longer crawl. + type: Tweak + id: 8842 + time: '2025-08-10T17:49:29.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39084 +- author: beck-thompson + changes: + - message: Various syndicate items can now be "locked" with your voice to hide their + true identity. The items are, all chameleon clothing, voice masks, no slips, + agent IDs, cane swords, and e daggers. + type: Add + - message: e dagger now has a slightly longer activation cool down (1s -> 1.5s). + type: Tweak + - message: Voice triggered items now properly display the trigger text when examined. + type: Fix + id: 8843 + time: '2025-08-10T18:10:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39310 +- author: jessicamaybe + changes: + - message: 'Added a rare Hamlet variant: Fragile Hamlet' + type: Add + id: 8844 + time: '2025-08-10T22:20:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39531 +- author: perryprog + changes: + - message: "Diona\_nymphs that reform inside of a locker will no longer be invisible." + type: Fix + id: 8845 + time: '2025-08-11T11:00:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39505 +- author: Samuka + changes: + - message: The Robotics Console now correctly displays the brain installed information + if the borg has a empty MMI + type: Fix + - message: The Robotics Console now shows the borg physical integrity + type: Tweak + - message: Changed the colors for the battery display in the robotics console so + it easier to read the percentage + type: Tweak + id: 8846 + time: '2025-08-11T18:57:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/38023 +- author: metalgearsloth + changes: + - message: Inserting lights now plays an insert animation. + type: Add + id: 8847 + time: '2025-08-11T21:06:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36541 +- author: sowelipililimute + changes: + - message: Borg modules can now have hands! + type: Add + - message: The generic cables module can now throw and mix and match cables in its + slots + type: Tweak + - message: The engineering construction module can now hold any material in its + materials slots, any floor tile in its floor tile slots, and now has slots for + holding any circuitboard and flatpack + type: Tweak + - message: The janitor custodial module can now throw its soap and pick up new and + better varieties of soap + type: Tweak + - message: The janitor advanced cleaning module can now throw and pick up beakers + in its slot + type: Tweak + - message: The medical topicals module can now hold any type of topicals in its + topicals slots + type: Tweak + - message: The medical chemical module can now drop and pick up its vials, and hold + other small containers + type: Tweak + - message: The medical advanced chemical module can now drop and pick up its beakers, + and hold other larger containers + type: Tweak + - message: The science artifact module can drop and pick up its vial, and hold other + small containers + type: Tweak + - message: The service service module can now drop and pick up its shaker, and pick + up other drink containers. It also has a spoon now.l containers + type: Tweak + - message: The science anomaly module can now throw its reinforced and reinforced + plasma glass + type: Tweak + - message: The service service module now has a book bag, and two slots for books + and paper + type: Tweak + - message: The service service module can now drop and pick up its shaker, and pick + up other drink containers. It also has a spoon now. + type: Tweak + - message: The service musique module can now drop and pick up instruments. + type: Tweak + id: 8848 + time: '2025-08-12T22:21:42.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/38668 +- author: perryprog + changes: + - message: Fixed lights sometimes not emitting light when spawning them or when + they enter PVS. + type: Fix + id: 8849 + time: '2025-08-12T23:00:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39585 +- author: Nox38 + changes: + - message: Resized every firearm. + type: Tweak + id: 8850 + time: '2025-08-13T17:13:14.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36473 +- author: slarticodefast + changes: + - message: Fixed light bulb color. + type: Fix + id: 8851 + time: '2025-08-13T22:45:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39623 +- author: Bhijn and Myr + changes: + - message: Those within the SS13 and SS14 community who have passed are now explicitly + memorialized within the game's credits, accessible within the lobby. May their + names and legacies live on. + type: Add + id: 8852 + time: '2025-08-14T01:21:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39621 +- author: rumaks-xyz, SlamBamActionman + changes: + - message: Advanced Brute chemicals, Insuzine, Ultravasculine and Sigynate have + had changes to their healing, metabolism rates and behaviors. + type: Tweak + - message: Bicardine and Advanced Brute Chemicals once again create Razorium when + mixed. + type: Tweak + id: 8853 + time: '2025-08-14T17:32:22.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39472 +- author: ScholarNZL + changes: + - message: Added IC visibility of "animal organs", e.g "animal lungs" etc, to facilitate + recipe creation. + type: Tweak + id: 8854 + time: '2025-08-15T04:21:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39228 +- author: FlipBrooke + changes: + - message: Banana peels and their variants can now be worn as headgear + type: Add + - message: Banana peels will correctly render when selected using chameleon headgear + type: Fix + - message: Banana peels will no longer render as headgear when off a player's head + type: Fix + - message: Banana peels as headgear now correctly displays in the change log + type: Fix + id: 8855 + time: '2025-08-15T05:56:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39457 +- author: CoolioDudio + changes: + - message: Added baby and cube hair + type: Add + id: 8856 + time: '2025-08-16T01:50:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39680 +- author: CaramelOrdnance + changes: + - message: Lye reagent + type: Add + - message: Recipes for all soap bars + type: Add + id: 8857 + time: '2025-08-16T06:59:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39303 +- author: youtissoum + changes: + - message: The usage delay of the bananium horn is now 3 seconds. + type: Tweak + id: 8858 + time: '2025-08-16T23:04:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39674 +- author: august-sun + changes: + - message: Pacifists can now use the practice disabler, practice laser rifle, disabler, + and disabler SMG. + type: Tweak + id: 8859 + time: '2025-08-17T19:25:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37164 +- author: Velcroboy + changes: + - message: Changed hamster crates are now able to be placed on top of tables. + type: Tweak + id: 8860 + time: '2025-08-17T19:30:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37953 +- author: psykana + changes: + - message: Ninja now spawns breathing from his gas tank instead of jetpack + type: Fix + id: 8861 + time: '2025-08-18T00:25:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35067 +- author: ScarKy0 + changes: + - message: Jump boots can no longer be used when knocked down. + type: Fix + id: 8862 + time: '2025-08-18T12:22:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39710 +- author: SlamBamActionman + changes: + - message: Stamina resistance has been removed from cardboard armor and gorillas. + type: Tweak + id: 8863 + time: '2025-08-18T14:33:16.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39727 +- author: SlamBamActionman + changes: + - message: Aiming with the Hristov is now working correctly when using the Separated + Chat HUD mode. + type: Fix + - message: Cursor targetting with the Hristov now correctly selects the target underneath + the cursor. + type: Fix + id: 8864 + time: '2025-08-18T18:22:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35087 +- author: Zokkie + changes: + - message: Lone Operative is now assigned the Solo Antagonist role ingame instead + of the Team Antagonist role. + type: Fix + id: 8865 + time: '2025-08-18T18:57:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36521 +- author: beck-thompson, slarticodefast + changes: + - message: Fixed rebinding keys crashing the client. + type: Fix + id: 8866 + time: '2025-08-18T18:58:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39732 +- author: Princess-Cheeseballs + changes: + - message: Being a Lightweight drunk no longer extends your bloodloss + type: Fix + id: 8867 + time: '2025-08-18T20:26:29.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/38678 +- author: SlamBamActionman + changes: + - message: Auto-injector/medipen pop-ups now show the correct identity when injecting + someone else. + type: Fix + id: 8868 + time: '2025-08-18T20:42:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39735 +- author: Winkarst-cpu + changes: + - message: Meat spikes got an overhaul. + type: Tweak + id: 8869 + time: '2025-08-19T17:56:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/38723 +- author: Princess-Cheeseballs + changes: + - message: You can no longer crawl while weightless. + type: Fix + id: 8870 + time: '2025-08-19T19:18:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39099 +- author: Nox38 + changes: + - message: Buffed the Librarian cane sword's damage and price to be more competitive. + Damage 15 -> 17 slash, TC cost 5 -> 3 + type: Tweak + id: 8871 + time: '2025-08-19T20:31:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39586 +- author: Princess-Cheeseballs + changes: + - message: Speed boots no longer affect crawling speed. + type: Remove + - message: Moon boots don't work unless you're standing + type: Tweak + id: 8872 + time: '2025-08-20T11:08:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39648 +- author: Kowlin + changes: + - message: Fixed Syndicate tricky grenades not playing sounds on explosion. + type: Fix + id: 8873 + time: '2025-08-20T23:34:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39792 +- author: TrixxedHeart + changes: + - message: Added the Impaired Mobility disability trait which reduces movement speed + unless using a mobility aid such as a cane and increases stand-up time. + type: Add + id: 8874 + time: '2025-08-21T00:43:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39398 +- author: TheFlyingSentry + changes: + - message: 'Added a new trait: Hemophilia!' + type: Add + id: 8875 + time: '2025-08-21T01:02:54.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/38224 +- author: DinnerCalzone + changes: + - message: Fixed more grenades not playing sounds on explosion. + type: Fix + id: 8876 + time: '2025-08-22T10:04:29.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39815 +- author: Alkheemist + changes: + - message: Added stencil lettering decals to the spraypainter. + type: Add + id: 8877 + time: '2025-08-22T10:11:07.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39701 +- author: Kittygyat + changes: + - message: Made moths less susceptible to flames and heat. (4x Fire Damage -> 2x + Fire damage) (1.3x heat -> 1.2x heat). + type: Tweak + id: 8878 + time: '2025-08-22T22:08:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39672 +- author: JimmyToor + changes: + - message: Fixed only being able to vape with a blocked mouth. + type: Fix + id: 8879 + time: '2025-08-22T22:26:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39834 +- author: _miket, RedBookcase + changes: + - message: Added new Derelict Cyborg ghost roles, including the Derelict Engineer, + Janitor, Salvage, Medical, and Assault Cyborg! + type: Add + id: 8880 + time: '2025-08-23T20:32:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/38159 +- author: FungiFellow + changes: + - message: Added the Inflatable Module for borgs. + type: Add + id: 8881 + time: '2025-08-23T22:15:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35100 +- author: whatston3 + changes: + - message: Lathes now batch items into jobs, which can be moved around in priority + or deleted. + type: Add + id: 8882 + time: '2025-08-24T15:02:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/38624 +- author: Princess-Cheeseballs + changes: + - message: Topicals now correctly scale their self heal time with the damage you + have taken. + type: Fix + id: 8883 + time: '2025-08-25T18:05:55.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39883 +- author: ToastEnjoyer + changes: + - message: Pacifists can no longer use the laser rifle + type: Fix + id: 8884 + time: '2025-08-26T00:44:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39891 +- author: GR1231 + changes: + - message: hats on Smile the slime should be correctly displaced + type: Fix + id: 8885 + time: '2025-08-26T00:48:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39824 +- author: perryprog + changes: + - message: Items and borgs can no longer become stuck in mechs. + type: Fix + id: 8886 + time: '2025-08-26T10:29:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37942 +- author: beck-thompson + changes: + - message: You can now select no lock when locking syndicate items + type: Tweak + id: 8887 + time: '2025-08-26T14:18:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39532 +- author: slarticodefast + changes: + - message: Removed the dynamic game mode from player votes. + type: Tweak + id: 8888 + time: '2025-08-26T19:42:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39902 +- author: FungiFellow + changes: + - message: Engiborg can no longer pickup AI lawboards + type: Fix + id: 8889 + time: '2025-08-26T20:59:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39730 +- author: beck-thompson + changes: + - message: Locked chameleon storage items can now still be used as storage even + when locked. + type: Fix + id: 8890 + time: '2025-08-26T21:50:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39784 +- author: StormyDragon + changes: + - message: Modular Grenades with a chemical payload now correctly wait out their + delay before activating. + type: Tweak + id: 8891 + time: '2025-08-26T22:26:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39905 +- author: ToastEnjoyer + changes: + - message: Wizards can no longer teleport to the arrivals terminal + type: Fix + id: 8892 + time: '2025-08-26T23:43:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39901 +- author: Hitlinemoss + changes: + - message: Clipboards can now be printed by autolathes. + type: Add + - message: Plastic clipboards have been added for aspiring paperwork enthusiasts. + They can be printed by autolathes or dispensed from the Head of Personnel's + PTech machine. + type: Add + - message: Bureaucracy crates no longer have their folders/clipboards contain paper. + The amount of paper in the crate itself has been increased to compensate. + type: Tweak + - message: Filing cabinets can now contain green folders. + type: Fix + - message: Roles that spawn with a clipboard always have that clipboard contain + exactly three sheets of paper, rather than a random quantity. + type: Fix + - message: CentComm Officials now spawn with a proper CentComm clipboard instead + of a generic black folder. + type: Tweak + id: 8893 + time: '2025-08-27T07:07:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37705 +- author: slarticodefast + changes: + - message: Syndicate stealth items now have a selection of tool locks you can choose + from to hide their activation from others. + type: Add + id: 8894 + time: '2025-08-27T14:45:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39900 +- author: chromiumboy + changes: + - message: Many station structures and fixtures, such as walls and airlocks, can + now be re-anchored to the floor if they happen to be dislodged by an explosion + or other shenanigans + type: Tweak + id: 8895 + time: '2025-08-27T15:04:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39542 +- author: PavlockBlaine03 + changes: + - message: Fixed bug where items would not drop if a dispenser was deconstructed. + type: Fix + id: 8896 + time: '2025-08-27T21:06:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39676 +- author: Winkarst-cpu + changes: + - message: Living beings are now vomiting from being irradiated. Also, irradiated + players will see a popup about tasting something metallic. + type: Add + id: 8897 + time: '2025-08-27T21:56:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39805 +- author: aada + changes: + - message: Fixed audio mispredict when quick inserting. + type: Fix + id: 8898 + time: '2025-08-28T16:54:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39930 +- author: Hitlinemoss + changes: + - message: Descriptions for cardboard weapons have been adjusted. + type: Tweak + id: 8899 + time: '2025-08-28T17:14:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39927 +- author: FungiFellow + changes: + - message: Sentience Event no longer targets Zombified creatures + type: Fix + id: 8900 + time: '2025-08-29T11:48:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39950 +- author: Dutch-VanDerLinde + changes: + - message: The forensic scanner no longer leaks fingerprints or glove prints onto + the scanning object if you use the right-click scan verb. + type: Fix + id: 8901 + time: '2025-08-30T14:00:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39964 +- author: FairlySadPanda + changes: + - message: 'Scurrets can wear a few items on their backs: pet bags, mail bags and + spears' + type: Add + - message: Corgis can now wear mail bags. + type: Add + id: 8902 + time: '2025-08-30T14:42:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/38774 +- author: Kowlin + changes: + - message: Derelict cyborgs can no longer duplicate their ghost role. + type: Fix + id: 8903 + time: '2025-08-30T17:17:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39992 +- author: aada + changes: + - message: Clown bags are squeakier. + type: Add + id: 8904 + time: '2025-08-30T18:10:34.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39931 +- author: AndrewFenriz + changes: + - message: when assembling mech, parts now cannot be removed with a crowbar + type: Remove + id: 8905 + time: '2025-08-31T12:54:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39027 +- author: quasr-9 + changes: + - message: Moths can now properly remove knives and other items from military boots. + type: Fix + id: 8906 + time: '2025-09-01T15:07:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40049 +- author: slarticodefast + changes: + - message: Dropper and mini-syringe transfer amounts can now be set to more options. + type: Tweak + id: 8907 + time: '2025-09-01T15:24:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39976 +- author: IProduceWidgets + changes: + - message: there are now civilian versions of nanomed vendors. + type: Add + - message: nanomed inventories have been increased some. + type: Tweak + id: 8908 + time: '2025-09-01T23:39:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39718 +- author: M4rchy-S + changes: + - message: dead mobs will no longer vomit from radiation damage + type: Fix + id: 8909 + time: '2025-09-02T00:07:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40020 +- author: SolidSyn + changes: + - message: Detectives noir-tech glasses are now contraband, but now include a noir + secHUD! + type: Tweak + id: 8910 + time: '2025-09-02T13:32:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39859 +- author: FungiFellow + changes: + - message: Sentience Event can no longer target Corgis, Smile or Mothroaches + type: Tweak + id: 8911 + time: '2025-09-03T12:00:07.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39810 +- author: TiniestShark + changes: + - message: Reptilians now have Mask/Helmet displacements. Snoots are no longer smushed. + type: Add + id: 8912 + time: '2025-09-03T16:45:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39351 +- author: TiniestShark + changes: + - message: Added unique tail sprites to Hard/Softsuits for reptilians! (Wagging + animation not supported) + type: Add + id: 8913 + time: '2025-09-03T16:45:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35842 +- author: TrixxedHeart & Flareguy + changes: + - message: Three new tails for Vox. + type: Add + id: 8914 + time: '2025-09-03T18:05:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39083 +- author: MissKay1994 + changes: + - message: Interns will no longer be hired infinitely + type: Tweak + id: 8915 + time: '2025-09-03T20:16:07.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40001 +- author: Hitlinemoss + changes: + - message: Added the senior courier PDA for Cargo Technicians with a significant + amount of playtime. + type: Add + id: 8916 + time: '2025-09-03T20:22:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37661 +- author: breeplayx3 + changes: + - message: Berry delight now requires blueberry cake as a precursor + type: Tweak + id: 8917 + time: '2025-09-03T21:06:05.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40085 +- author: ArtisticRoomba + changes: + - message: Added atmospherics delta-pressure structure damage. Objects like windows, + thindows, windoors, etc. will have damage done to them depending on the pressure + difference across the sides of the object. + type: Add + id: 8918 + time: '2025-09-03T23:58:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39238 +- author: ArtisticRoomba + changes: + - message: Inflatable walls and airlocks now actually take Delta-Pressure damage. + type: Fix + id: 8919 + time: '2025-09-04T01:08:53.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40098 +- author: Quantum-cross + changes: + - message: Hot gas now looks hot! + type: Add + id: 8920 + time: '2025-09-04T03:17:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39107 +- author: jkwookee + changes: + - message: QM Golden Knuckledusters can be properly obtained as a Syndicate steal + objective + type: Fix + id: 8921 + time: '2025-09-04T11:08:25.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40096 +- author: DDeegan + changes: + - message: Fixed labels on orders sent to the cargo telepad to show the correct + payer. + type: Fix + id: 8922 + time: '2025-09-04T11:17:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39975 +- author: VoidMeticulous + changes: + - message: Scurret petting rate lowered to once per 2.25 seconds + type: Tweak + id: 8923 + time: '2025-09-04T15:41:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40097 +- author: Quantum-cross + changes: + - message: The anomaly scanner has received an upgrade, showing some information + without opening the UI. + type: Add + id: 8924 + time: '2025-09-04T19:11:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37585 +- author: whatston3 + changes: + - message: Lathe UIs are now way smoother when printing mass amounts of fast-printing + items. + type: Fix + id: 8925 + time: '2025-09-04T19:37:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39886 +- author: Princess-Cheeseballs + changes: + - message: You can no longer crawl under counters, or tables without space underneath. + type: Tweak + id: 8926 + time: '2025-09-04T21:03:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40099 +- author: CawsForConcern + changes: + - message: Iced Coffee now contains Theobromine + type: Fix + id: 8927 + time: '2025-09-04T22:46:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40063 +- author: ArtisticRoomba + changes: + - message: Fixed Atmospherics Delta-Pressure damage not capping damage beyond a + certain pressure for applicable structures. + type: Fix + id: 8928 + time: '2025-09-05T07:09:54.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40125 +- author: ArtisticRoomba + changes: + - message: Shutters of all types (regular, windowed, radiation) now take Delta-Pressure + damage. Blast doors still don't take Delta-Pressure damage. + type: Fix + id: 8929 + time: '2025-09-05T07:47:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40126 +- author: ScarKy0, FairlySadPanda, TiniestShark, MilonPL, beck-thompson + changes: + - message: The vulpkanin species can now be selected as a roundstart species. + type: Add + id: 8930 + time: '2025-09-05T10:43:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37539 +- author: IProduceWidgets + changes: + - message: Pride pins can now chameleon to any other pride pin! + type: Tweak + id: 8931 + time: '2025-09-05T15:55:54.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36894 +- author: MidZik + changes: + - message: Midround wizard player count requirement increased from 10 to 30. + type: Tweak + id: 8932 + time: '2025-09-05T16:23:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/38424 +- author: IProduceWidgets + changes: + - message: You can drink out of the toilets. + type: Add + id: 8933 + time: '2025-09-05T20:03:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40133 diff --git a/Resources/Changelog/Maps.yml b/Resources/Changelog/Maps.yml index b3e0833f7e..96df89da2e 100644 --- a/Resources/Changelog/Maps.yml +++ b/Resources/Changelog/Maps.yml @@ -503,4 +503,146 @@ id: 62 time: '2025-07-31T20:28:39.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39295 +- author: F1restar4 + changes: + - message: On Oasis, added an atmospherics network monitor to atmos' front desk + type: Add + id: 63 + time: '2025-08-11T15:43:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39331 +- author: Steffo99 + changes: + - message: On many stations, fax machines have slightly more consistent names. + type: Tweak + id: 64 + time: '2025-08-17T18:50:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39455 +- author: Nox38, ArtisticRoomba + changes: + - message: On Packed, added Genpop and revamped security. + type: Add + - message: On Packed, revamped the north maints area above security. + type: Tweak + - message: On Packed, revamped Science. + type: Tweak + id: 65 + time: '2025-08-17T19:00:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/38339 +- author: beck-thompson + changes: + - message: Removed a lot of mapped gear on the nukie planet and replaced it with + random spawners. + type: Tweak + - message: Two new random spawners with loot for the nukie planet + type: Add + id: 66 + time: '2025-08-18T04:33:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39090 +- author: beck-thompson + changes: + - message: Replaced the guaranteed explosives on the infiltrator with a random grenade + spawner and ammo bundle. + type: Tweak + - message: Replaced the guaranteed med spawns on the infiltrator with random med + kit spawners. + type: Tweak + - message: Added a random loot spawner to the infiltrator. + type: Add + id: 67 + time: '2025-08-18T18:22:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39091 +- author: M4rchy-S + changes: + - message: On Marathon, fixed the reagent grinder in perma not having power. + type: Fix + id: 68 + time: '2025-08-23T22:48:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39801 +- author: F1restar4 + changes: + - message: On Exo, added an atmospherics network monitor console to atmos' front + room + type: Add + id: 69 + time: '2025-08-26T08:32:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39330 +- author: Vortebo + changes: + - message: On Relic, added the prison station. + type: Add + - message: On Relic, Cargo has been removed, along with the trade station. Botany, + the Janitor's closet, and the bar have also been removed. + type: Remove + - message: On Relic, Atmospherics has been relocated, with accompanying pipe adjustments. + The layouts and contents of Engineering, Science, Security, and many individual + rooms have been modified. The cargo shuttle is now a prison shuttle. The arrivals + shuttle now flies in the correct direction. + type: Tweak + id: 70 + time: '2025-08-28T17:40:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39215 +- author: Southbridge + changes: + - message: On Amber, added a pressure relief valve to the TEG burn chamber. + type: Add + - message: On Amber, added latejoin spawns to arrivals. + type: Tweak + id: 71 + time: '2025-08-29T05:39:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39943 +- author: Southbridge + changes: + - message: On Marathon, gave the containment area some much needed love. + type: Add + - message: On Marathon, redesigned the TEG burn chamber in preparation for the atmos + pressure update. + type: Tweak + - message: On Marathon, touched up a couple areas in Atmos and expanded the burn + chamber area. + type: Tweak + id: 72 + time: '2025-08-29T05:40:38.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39955 +- author: Southbridge + changes: + - message: On Box, redesigned the burn chambers to be ready for the atmos pressure + update. + type: Tweak + id: 73 + time: '2025-08-29T05:42:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39954 +- author: Southbridge + changes: + - message: On Bagel, ensured there were late join spawners at arrivals + type: Add + - message: On Bagel, overhauled the TEG so it's a bit more ready for the pressure + update + type: Tweak + id: 74 +- author: ScarKy0 + changes: + - message: On Bagel, added cameras to genpop and engineering. + type: Add + - message: On Bagel, added AI turrets to the AI core. + type: Add + id: 75 + time: '2025-08-30T19:29:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39968 +- author: ScarKy0 + changes: + - message: On Marathon, added ai turrets to the ai core. + type: Add + - message: On Marathon, added a few more cameras to chapelroid and sec. + type: Add + id: 76 + time: '2025-08-30T19:31:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39969 +- author: Southbridge + changes: + - message: On the Cryptid, Flatline, and Cruiser event shuttles, replaced some static + spawns with random ones. + type: Tweak + id: 77 + time: '2025-09-01T23:13:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40059 Order: 1 diff --git a/Resources/ConfigPresets/Build/development.toml b/Resources/ConfigPresets/Build/development.toml index cad04c66c2..7849124a18 100644 --- a/Resources/ConfigPresets/Build/development.toml +++ b/Resources/ConfigPresets/Build/development.toml @@ -4,6 +4,7 @@ lobbyenabled = false # Dev map for faster loading & convenience map = "Dev" role_timers = false +role_loadout_timers = false [events] enabled = false diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index f1a069de14..a874621bc7 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0leshe, 0tito, 0x6273, 12rabbits, 1337dakota, 13spacemen, 154942, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, 96flo, aaron, abadaba695, Ablankmann, abregado, Absolute-Potato, Absotively, achookh, Acruid, ActiveMammmoth, actually-reb, ada-please, adamsong, Adeinitas, adm2play, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aearo-Deepwater, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, AgentSmithRadio, Agoichi, Ahion, aiden, Aidenkrz, Aisu9, ajcm, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexum418, alexumandxgabriel08x, Alice4267, Alithsko, Alkheemist, alliephante, ALMv1, Alpaccalypse, Alpha-Two, AlphaQwerty, Altoids1, amatwiedle, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, ApolloVector, Appiah, ar4ill, Arcane-Waffle, archee1, ArchPigeon, ArchRBX, areitpog, Arendian, areyouconfused, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, AverageNotDoingAnythingEnjoyer, avghdev, Awlod, azzyisnothere, AzzyIsNotHere, B-Kirill, B3CKDOOR, baa14453, BackeTako, Bakke, BananaFlambe, Baptr0b0t, BarryNorfolk, BasedUser, beck-thompson, beesterman, bellwetherlogic, ben, benbryant0, benev0, benjamin-burges, BGare, bhespiritu, bibbly, BigfootBravo, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, blitzthesquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, Bokser815, bolantej, Booblesnoot42, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, BWTCK, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, Camdot, capnsockless, CaptainMaru, captainsqrbeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, catdotjs, catlord, Catofquestionableethics, CatTheSystem, Centronias, Chaboricks, chairbender, Chaoticaa, Charlese2, charlie, chartman, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, CheesePlated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, ciaran, citrea, civilCornball, claustro305, Clement-O, clyf, Clyybber, CMDR-Piboy314, cnv41, coco, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, Compilatron144, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, cooperwallace, corentt, CormosLemming, CrafterKolyan, crazybrain23, Crazydave91920, creadth, CrigCrag, CroilBird, Crotalus, CrudeWax, cryals, CrzyPotato, cubixthree, cutemoongod, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, dan, dangerrevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, DeepwaterCreations, Deerstop, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, devinschubert14, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinnerCalzone, DinoWattz, Disp-Dev, DisposableCrewmember42, dissidentbullet, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, DR-DOCTOR-EVIL-EVIL, Dragonjspider, 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, EnrichedCaramel, Entvari, eoineoineoin, ephememory, 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, Firewars763, FirinMaLazors, Fishfish458, fl-oz, Flareguy, flashgnash, FlipBrooke, FluffiestFloof, FluffMe, FluidRock, flymo5678, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, foxhorn, freeman2651, freeze2222, frobnic8, Froffy025, Fromoriss, froozigiusz, FrostMando, FrostRibbon, Funce, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, Gamewar360, gansulalan, GaussiArson, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, Gentleman-Bird, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GnarpGnarp, GNF54, godisdeadLOL, goet, GoldenCan, Goldminermac, Golinth, golubgik, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GrownSamoyedDog, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Helix-ctrl, helm4142, Henry, HerCoyote23, HighTechPuddle, Hitlinemoss, hiucko, hivehum, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hoshizora, Hreno, Hrosts, htmlsystem, hubismal, Hugal31, Huxellberger, Hyenh, hyperb1, hyperDelegate, hyphenationc, i-justuser-i, iaada, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imatsoup, IMCB, impubbi, imrenq, imweax, indeano, Injazz, Insineer, insoPL, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, itsmethom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jacktastic09, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, jbox144, JCGWE30, JerryImMouse, jerryimmouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jkwookee, jmcb, JohnGinnane, johnku1, Jophire, joshepvodka, JpegOfAFrog, jproads, JrInventor05, Jrpl, jukereise, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, JustinWinningham, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, kaiserbirch, KaiShibaa, kalane15, kalanosh, KamTheSythe, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, KieueCaprie, Killerqu00, Kimpes, KingFroozy, kira-er, kiri-yoshikage, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, Kittygyat, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kontakt, kosticia, koteq, kotobdev, Kowlin, KrasnoshchekovPavel, Krosus777, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, LaCumbiaDelCoronavirus, lajolico, Lamrr, lanedon, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, LetterN, lettern, Level10Cybermancer, LEVELcat, lever1209, LevitatingTree, Lgibb18, lgruthes, LightVillet, liltenhead, linkbro1, linkuyx, Litraxx, little-meow-meow, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, ljm862, lmsnoise, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, lucas, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, Lusatia, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M1tht1c, M3739, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, MagnusCrowe, maland1, malchanceux, MaloTV, ManelNavola, manelnavola, Mangohydra, marboww, Markek1, matt, 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, MisterImp, MisterMecky, Mith-randalf, Mixelz, mjarduk, MjrLandWhale, mkanke-real, MLGTASTICa, mnva0, moderatelyaware, modern-nm, mokiros, momo, Moneyl, monotheonist, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, murolem, musicmanvr, MWKane, Myakot, Myctai, N3X15, nabegator, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikitosych, nikthechampiongr, Nimfar11, ninruB, Nirnael, NIXC, nkokic, NkoKirkto, nmajask, noctyrnal, noelkathegod, noirogen, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, Nox38, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, Nyxilath, och-och, OctoRocket, OldDanceJacket, OliverOtter, onesch, OneZerooo0, OnyxTheBrave, Orange-Winds, OrangeMoronage9622, Orsoniks, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paige404, paigemaeforrest, pali6, Palladinium, Pangogie, panzer-iv1, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, perryprog, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, pheenty, philingham, Phill101, Phooooooooooooooooooooooooooooooosphate, phunnyguy, PicklOH, 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, PotRoastPiggy, Princess-Cheeseballs, ProfanedBane, PROG-MohamedDwidar, Prole0, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykana, psykzz, PuceTint, pumkin69, PuroSlavKing, PursuitInAshes, Putnam3145, py01, Pyrovi, qrtDaniil, qrwas, Quantum-cross, quatre, QueerNB, QuietlyWhisper, qwerltaz, Radezolid, 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, rhsvenson, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, rlebell33, RobbyTheFish, robinthedragon, Rockdtben, Rohesie, rok-povsic, rokudara-sen, rolfero, RomanNovo, rosieposieeee, Roudenn, router, ruddygreat, rumaks, RumiTiger, Ruzihm, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, Samuka-C, SaphireLattice, SapphicOverload, sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, schrodinger71, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, SeamLesss, Segonist, semensponge, sephtasm, Serkket, sewerpig, SG6732, sh18rw, Shaddap1, ShadeAware, ShadowCommander, shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SharkSnake98, shibechef, Siginanto, SignalWalker, siigiil, silicon14wastaken, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skybailey-dev, Skyedra, SlamBamActionman, slarticodefast, Slava0135, sleepyyapril, slimmslamm, Slyfox333, Smugman, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, solstar2, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, soupkilove, southbridge-fur, sowelipililimute, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, Spangs04, spanky-spanky, Sparlight, spartak, SpartanKadence, spderman3333, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, starbuckss14, Stealthbomber16, stellar-novas, stewie523, stomf, Stop-Signs, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, supergdpwyl, superjj18, Supernorn, SweptWasTaken, SyaoranFox, Sybil, SYNCHRONIC, Szunti, t, 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, TheBlueYowie, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheFlyingSentry, TheIntoxicatedCat, thekilk, themias, theomund, TheProNoob678, TherapyGoth, ThereDrD0, TheShuEd, thetolbean, thevinter, TheWaffleJesus, thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, TiniestShark, Titian3, tk-a369, tkdrg, tmtmtl30, ToastEnjoyer, Toby222, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, tornado-technology, TornadoTechnology, tosatur, TotallyLemon, ToxicSonicFan04, Tr1bute, treytipton, trixxedbit, TrixxedHeart, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, tyashley, Tyler-IN, TytosB, Tyzemol, UbaserB, ubis1, UBlueberry, uhbg, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, unusualcrow, Uriende, UristMcDorf, user424242420, Utmanarn, Vaaankas, valentfingerov, valquaint, Varen, Vasilis, VasilisThePikachu, veliebm, Velken, VelonacepsCalyxEggs, veprolet, VerinSenpai, veritable-calamity, Veritius, Vermidia, vero5123, verslebas, vexerot, viceemargo, VigersRay, violet754, Visne, vitusveit, vlad, vlados1408, VMSolidus, vmzd, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, Vortebo, vulppine, wafehling, walksanatora, Warentan, WarMechanic, Watermelon914, weaversam8, wertanchik, whateverusername0, whatston3, widgetbeck, Will-Oliver-Br, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, Wolfkey-SomeoneElseTookMyUsername, wrexbe, WTCWR68, xeri7, xkreksx, xprospero, xRiriq, xsainteer, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, YoungThugSS14, Yousifb26, youtissoum, yunii, YuriyKiss, yuriykiss, zach-hill, Zadeon, Zalycon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, ZeWaka, zHonys, zionnBE, ZNixian, Zokkie, ZoldorfTheWizard, zonespace27, Zylofan, Zymem, zzylex +0leshe, 0tito, 0x6273, 12rabbits, 1337dakota, 13spacemen, 154942, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, 96flo, aaron, abadaba695, Ablankmann, abregado, Absolute-Potato, Absotively, achookh, Acruid, ActiveMammmoth, actually-reb, ada-please, adamsong, Adeinitas, adm2play, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aearo-Deepwater, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, AgentSmithRadio, Agoichi, Ahion, aiden, Aidenkrz, Aisu9, ajcm, AJCM-git, AjexRose, Alekshhh, alex, alexalexmax, alexkar598, AlexMorgan3817, alexum418, alexumandxgabriel08x, Alice4267, Alithsko, Alkheemist, alliephante, ALMv1, Alpaccalypse, Alpha-Two, AlphaQwerty, Altoids1, amatwiedle, amylizzle, ancientpower, Andre19926, Andrew-Fall, AndrewEyeke, AndreyCamper, Anzarot121, ApolloVector, Appiah, ar4ill, Arcane-Waffle, archee1, ArchPigeon, ArchRBX, areitpog, Arendian, areyouconfused, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, Artxmisery, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, AverageNotDoingAnythingEnjoyer, avghdev, Awlod, AzzyIsNotHere, azzyisnothere, B-Kirill, B3CKDOOR, baa14453, BackeTako, BadaBoomie, Bakke, BananaFlambe, Baptr0b0t, BarryNorfolk, BasedUser, beck-thompson, beesterman, bellwetherlogic, ben, benbryant0, benev0, benjamin-burges, BGare, bhespiritu, bibbly, BigfootBravo, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, blitzthesquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, Bokser815, bolantej, Booblesnoot42, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, BWTCK, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, Camdot, capnsockless, CaptainMaru, captainsqrbeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, catdotjs, catlord, Catofquestionableethics, CatTheSystem, Centronias, Chaboricks, chairbender, Chaoticaa, Charlese2, charlie, chartman, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, CheesePlated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, ciaran, citrea, civilCornball, claustro305, Clement-O, clyf, Clyybber, CMDR-Piboy314, cnv41, coco, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, Compilatron144, CookieMasterT, coolboy911, CoolioDudio, coolmankid12345, Coolsurf6, cooperwallace, corentt, CormosLemming, CrafterKolyan, crazybrain23, Crazydave91920, creadth, CrigCrag, CroilBird, Crotalus, CrudeWax, cryals, CrzyPotato, cubixthree, cutemoongod, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, dan, dangerrevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, DeepwaterCreations, Deerstop, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, devinschubert14, dexlerxd, dffdff2423, DieselMohawk, DieselMohawkTheSequel, digitalic, Dimastra, DinnerCalzone, DinoWattz, Disp-Dev, DisposableCrewmember42, dissidentbullet, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, DR-DOCTOR-EVIL-EVIL, Dragonjspider, 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, EnrichedCaramel, Entvari, eoineoineoin, ephememory, 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, Firewars763, FirinMaLazors, Fishfish458, fl-oz, Flareguy, flashgnash, FlipBrooke, FluffiestFloof, FluffMe, FluidRock, flymo5678, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, foxhorn, freeman2651, freeze2222, frobnic8, Froffy025, Fromoriss, froozigiusz, FrostMando, FrostRibbon, Funce, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, Gamewar360, gansulalan, GaussiArson, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, Gentleman-Bird, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GnarpGnarp, GNF54, godisdeadLOL, goet, GoldenCan, Goldminermac, Golinth, golubgik, GoodWheatley, Gorox221, GR1231, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GrownSamoyedDog, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Helix-ctrl, helm4142, Henry, HerCoyote23, HighTechPuddle, Hitlinemoss, hiucko, hivehum, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hoshizora, Hreno, Hrosts, htmlsystem, hubismal, Hugal31, Huxellberger, Hyenh, hyperb1, hyperDelegate, hyphenationc, i-justuser-i, iaada, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imatsoup, IMCB, impubbi, imrenq, imweax, indeano, Injazz, Insineer, insoPL, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, itsmethom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jacktastic09, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, jbox144, JCGWE30, jerryimmouse, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jkwookee, jmcb, JohnGinnane, johnku1, Jophire, joshepvodka, JpegOfAFrog, jproads, JrInventor05, Jrpl, jukereise, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, JustinWinningham, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, kaiserbirch, KaiShibaa, kalane15, kalanosh, KamTheSythe, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, KieueCaprie, Killerqu00, Kimpes, KingFroozy, kira-er, kiri-yoshikage, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, Kittygyat, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kontakt, kosticia, koteq, kotobdev, Kowlin, KrasnoshchekovPavel, Krosus777, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, LaCumbiaDelCoronavirus, lajolico, Lamrr, lanedon, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, lettern, LetterN, Level10Cybermancer, LEVELcat, lever1209, LevitatingTree, Lgibb18, lgruthes, LightVillet, liltenhead, linkbro1, LinkUyx, Litraxx, little-meow-meow, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, ljm862, lmsnoise, localcc, lokachop, lolman360, Lomcastar, LordCarve, LordEclipse, lucas, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, Lusatia, Luxeator, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M1tht1c, M3739, M4rchy-S, M87S, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, MagnusCrowe, maland1, malchanceux, MaloTV, manelnavola, ManelNavola, Mangohydra, marboww, Markek1, MarkerWicker, marlyn, matt, 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, MisterImp, MisterMecky, Mith-randalf, Mixelz, mjarduk, MjrLandWhale, mkanke-real, MLGTASTICa, mnva0, moderatelyaware, modern-nm, mokiros, momo, Moneyl, monotheonist, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, murolem, musicmanvr, MWKane, Myakot, Myctai, N3X15, nabegator, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikitosych, nikthechampiongr, Nimfar11, ninruB, Nirnael, NIXC, nkokic, NkoKirkto, nmajask, noctyrnal, noelkathegod, noirogen, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, Nox38, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, Nyxilath, och-och, OctoRocket, OldDanceJacket, OliverOtter, onesch, OneZerooo0, OnyxTheBrave, Orange-Winds, OrangeMoronage9622, Orsoniks, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paige404, paigemaeforrest, pali6, Palladinium, Pangogie, panzer-iv1, partyaddict, patrikturi, PaulRitter, pavlockblaine03, peccneck, Peptide90, peptron1, perryprog, PeterFuto, PetMudstone, pewter-wiz, PGrayCS, pgraycs, Pgriha, Phantom-Lily, pheenty, philingham, Phill101, Phooooooooooooooooooooooooooooooosphate, phunnyguy, PicklOH, 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, PotRoastPiggy, Princess-Cheeseballs, ProfanedBane, PROG-MohamedDwidar, Prole0, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykana, psykzz, PuceTint, pumkin69, PuroSlavKing, PursuitInAshes, Putnam3145, py01, Pyrovi, qrtDaniil, qrwas, Quantum-cross, quatre, QueerNB, QuietlyWhisper, qwerltaz, Radezolid, 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, rhsvenson, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, rlebell33, RobbyTheFish, robinthedragon, Rockdtben, Rohesie, rok-povsic, rokudara-sen, rolfero, RomanNovo, rosieposieeee, Roudenn, router, ruddygreat, rumaks, RumiTiger, Ruzihm, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, Samuka-C, SaphireLattice, SapphicOverload, sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, ScholarNZL, schrodinger71, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, SeamLesss, Segonist, semensponge, sephtasm, ser1-1y, Serkket, sewerpig, SG6732, sh18rw, Shaddap1, ShadeAware, ShadowCommander, shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SharkSnake98, shibechef, Siginanto, SignalWalker, siigiil, silicon14wastaken, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skybailey-dev, Skyedra, SlamBamActionman, slarticodefast, Slava0135, sleepyyapril, slimmslamm, Slyfox333, Smugman, snebl, snicket, sniperchance, Snowni, snowsignal, SolidSyn, SolidusSnek, solstar2, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, soupkilove, southbridge-fur, sowelipililimute, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, Spangs04, spanky-spanky, Sparlight, spartak, SpartanKadence, spderman3333, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, starbuckss14, Stealthbomber16, stellar-novas, stewie523, stomf, Stop-Signs, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, supergdpwyl, superjj18, Supernorn, SweptWasTaken, SyaoranFox, Sybil, SYNCHRONIC, Szunti, t, Tainakov, takemysoult, taonewt, tap, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TeenSarlacc, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, Tezzaide, TGODiamond, TGRCdev, tgrkzus, ThatGuyUSA, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, TheBlueYowie, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheFlyingSentry, TheIntoxicatedCat, thekilk, themias, theomund, TheProNoob678, TherapyGoth, ThereDrD0, TheShuEd, thetolbean, thevinter, TheWaffleJesus, thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, TiniestShark, Titian3, tk-a369, tkdrg, tmtmtl30, ToastEnjoyer, Toby222, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, tornado-technology, TornadoTechnology, tosatur, TotallyLemon, ToxicSonicFan04, Tr1bute, treytipton, trixxedbit, TrixxedHeart, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, tyashley, Tyler-IN, TytosB, Tyzemol, UbaserB, ubis1, UBlueberry, uhbg, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, unusualcrow, Uriende, UristMcDorf, user424242420, Utmanarn, Vaaankas, valentfingerov, valquaint, Varen, Vasilis, VasilisThePikachu, veliebm, Velken, VelonacepsCalyxEggs, veprolet, VerinSenpai, veritable-calamity, Veritius, Vermidia, vero5123, verslebas, vexerot, viceemargo, VigersRay, violet754, Visne, vitusveit, vlad, vlados1408, VMSolidus, vmzd, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, Vortebo, vulppine, wafehling, walksanatora, Warentan, WarMechanic, Watermelon914, weaversam8, wertanchik, whateverusername0, whatston3, widgetbeck, Will-Oliver-Br, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, Wolfkey-SomeoneElseTookMyUsername, wrexbe, wtcwr68, xeri7, xkreksx, xprospero, xRiriq, xsainteer, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, YoungThugSS14, Yousifb26, youtissoum, yunii, yuriykiss, YuriyKiss, zach-hill, Zadeon, Zalycon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, ZeWaka, zHonys, zionnBE, ZNixian, Zokkie, ZoldorfTheWizard, zonespace27, Zylofan, Zymem, zzylex diff --git a/Resources/Credits/Immortals.txt b/Resources/Credits/Immortals.txt new file mode 100644 index 0000000000..68d24ffb14 --- /dev/null +++ b/Resources/Credits/Immortals.txt @@ -0,0 +1,6 @@ +[color=white][bold]ArcLumin[/bold][/color] - March 8th, 2017 +[color=white][bold]OrdoDictionary[/bold][/color] - August 26th, 2020 +[color=white][bold]DrSingh[/bold][/color] - September 5th, 2022 +[color=white][bold]Desolane900[/bold][/color] - Circa 2023, unknown date +[color=white][bold]PWNRA[/bold][/color], A. A. 'Gramps' Silverton - Circa 2025, unknown date +[color=white][bold]Honkertron[/bold][/color] - Unknown date diff --git a/Resources/Locale/en-US/access/components/agent-id-card-component.ftl b/Resources/Locale/en-US/access/components/agent-id-card-component.ftl index 5e1e3cd7cf..c645967d98 100644 --- a/Resources/Locale/en-US/access/components/agent-id-card-component.ftl +++ b/Resources/Locale/en-US/access/components/agent-id-card-component.ftl @@ -8,3 +8,5 @@ agent-id-card-current-name = Name: agent-id-card-current-job = Job: agent-id-card-job-icon-label = Job icon: agent-id-menu-title = Agent ID Card + +agent-id-open-ui-verb = Change settings diff --git a/Resources/Locale/en-US/accessories/human-hair.ftl b/Resources/Locale/en-US/accessories/human-hair.ftl index 7754d772a5..50d2b2790e 100644 --- a/Resources/Locale/en-US/accessories/human-hair.ftl +++ b/Resources/Locale/en-US/accessories/human-hair.ftl @@ -2,6 +2,7 @@ marking-HumanHairAfro = Afro marking-HumanHairAfro2 = Afro 2 marking-HumanHairBigafro = Afro (Large) marking-HumanHairAntenna = Ahoge +marking-HumanHairBaby = Baby marking-HumanHairBalding = Balding Hair marking-HumanHairBedhead = Bedhead marking-HumanHairBedheadv2 = Bedhead 2 @@ -59,6 +60,7 @@ marking-HumanHairCornrowbraid = Cornrow Braid marking-HumanHairCornrowtail = Cornrow Tail marking-HumanHairCrewcut = Crewcut marking-HumanHairCrewcut2 = Crewcut 2 +marking-HumanHairCube = Cube marking-HumanHairCurls = Curls marking-HumanHairC = Cut Hair marking-HumanHairDandypompadour = Dandy Pompadour diff --git a/Resources/Locale/en-US/administration/commands/polymorph-command.ftl b/Resources/Locale/en-US/administration/commands/polymorph-command.ftl deleted file mode 100644 index ef7d1b744d..0000000000 --- a/Resources/Locale/en-US/administration/commands/polymorph-command.ftl +++ /dev/null @@ -1,8 +0,0 @@ -polymorph-command-description = For when you need someone to stop being a person. Takes an entity and a polymorph prototype. -polymorph-command-help-text = polymorph - -add-polymorph-action-command-description = Takes an entity and gives them a voluntary polymorph. -add-polymorph-action-command-help-text = addpolymorphaction - - -polymorph-not-valid-prototype-error = Polymorph prototype is not valid. \ No newline at end of file diff --git a/Resources/Locale/en-US/atmos/delta-pressure-component.ftl b/Resources/Locale/en-US/atmos/delta-pressure-component.ftl new file mode 100644 index 0000000000..f8ffd6d6ab --- /dev/null +++ b/Resources/Locale/en-US/atmos/delta-pressure-component.ftl @@ -0,0 +1 @@ +window-taking-damage = [color=orange]It's straining under pressure![/color] diff --git a/Resources/Locale/en-US/changeling/changeling.ftl b/Resources/Locale/en-US/changeling/changeling.ftl index 423cb0811e..57ad3550bf 100644 --- a/Resources/Locale/en-US/changeling/changeling.ftl +++ b/Resources/Locale/en-US/changeling/changeling.ftl @@ -1,11 +1,8 @@ roles-antag-changeling-name = Changeling roles-antag-changeling-objective = A intelligent predator that assumes the identities of its victims. -changeling-role-greeting = You are a Changeling, a highly intelligent predator. Your only goal is to escape the station alive via assuming the identities of the denizens of this station. You are hungry and will not make it long without sustenance... kill, consume, hide, survive. -changeling-briefing = You are a changeling, your goal is to survive. Consume humanoids to gain biomass and utilize it to evade termination. You are able to utilize and assume the identities of those you consume to evade a grim fate. - changeling-devour-attempt-failed-rotting = This corpse has only rotted biomass. -changeling-devour-attempt-failed-protected = This victim's biomass is protected. +changeling-devour-attempt-failed-protected = This victim's biomass is protected by armor! changeling-devour-begin-windup-self = Our uncanny mouth reveals itself with otherworldly hunger. changeling-devour-begin-windup-others = { CAPITALIZE(POSS-ADJ($user)) } uncanny mouth reveals itself with otherworldly hunger. diff --git a/Resources/Locale/en-US/chat/emotes.ftl b/Resources/Locale/en-US/chat/emotes.ftl index cf6d91b511..19d6aa918f 100644 --- a/Resources/Locale/en-US/chat/emotes.ftl +++ b/Resources/Locale/en-US/chat/emotes.ftl @@ -32,6 +32,11 @@ chat-emote-name-monkeyscreeches = Monkey Screech chat-emote-name-robotbeep = Robot chat-emote-name-yawn = Yawn chat-emote-name-snore = Snore +chat-emote-name-bark = Bark +chat-emote-name-snarl = Snarl +chat-emote-name-whine = Whine +chat-emote-name-howl = Howl +chat-emote-name-growl = Growl # Message chat-emote-msg-scream = screams! diff --git a/Resources/Locale/en-US/chat/managers/chat-manager.ftl b/Resources/Locale/en-US/chat/managers/chat-manager.ftl index e7e55c1ea4..93f149bed9 100644 --- a/Resources/Locale/en-US/chat/managers/chat-manager.ftl +++ b/Resources/Locale/en-US/chat/managers/chat-manager.ftl @@ -158,6 +158,12 @@ chat-speech-verb-electricity-1 = crackles chat-speech-verb-electricity-2 = buzzes chat-speech-verb-electricity-3 = screeches +chat-speech-verb-vulpkanin-1 = rawrs +chat-speech-verb-vulpkanin-2 = barks +chat-speech-verb-vulpkanin-3 = rurs +chat-speech-verb-vulpkanin-4 = yaps +chat-speech-verb-vulpkanin = Vulpkanin + chat-speech-verb-name-wawa = Wawa chat-speech-verb-wawa-1 = intones chat-speech-verb-wawa-2 = states diff --git a/Resources/Locale/en-US/chat/ui/chat-box.ftl b/Resources/Locale/en-US/chat/ui/chat-box.ftl index 7a3c33ad43..e00eae702a 100644 --- a/Resources/Locale/en-US/chat/ui/chat-box.ftl +++ b/Resources/Locale/en-US/chat/ui/chat-box.ftl @@ -37,6 +37,6 @@ hud-chatbox-highlights-button = Submit hud-chatbox-highlights-tooltip = The words need to be separated by a newline, if wrapped around " they will be highlighted only if separated by spaces or punctuation. -hud-chatbox-highlights-placeholder = McHands +hud-chatbox-highlights-placeholder = @McHands "Judge" Medical diff --git a/Resources/Locale/en-US/chemistry/components/hypospray-component.ftl b/Resources/Locale/en-US/chemistry/components/hypospray-component.ftl index 96ebaa3ed0..36d229e78f 100644 --- a/Resources/Locale/en-US/chemistry/components/hypospray-component.ftl +++ b/Resources/Locale/en-US/chemistry/components/hypospray-component.ftl @@ -8,7 +8,7 @@ hypospray-volume-label = Volume: [color=white]{$currentVolume}/{$totalVolume}u[/ ## Entity -hypospray-component-inject-other-message = You inject {$other}. +hypospray-component-inject-other-message = You inject {THE($other)}. hypospray-component-inject-self-message = You inject yourself. hypospray-component-empty-message = Nothing to inject. hypospray-component-feel-prick-message = You feel a tiny prick! diff --git a/Resources/Locale/en-US/chemistry/components/injector-component.ftl b/Resources/Locale/en-US/chemistry/components/injector-component.ftl index 0c3152774f..53387ea1a4 100644 --- a/Resources/Locale/en-US/chemistry/components/injector-component.ftl +++ b/Resources/Locale/en-US/chemistry/components/injector-component.ftl @@ -10,14 +10,22 @@ injector-volume-label = Volume: [color=white]{$currentVolume}/{$totalVolume}[/co injector-component-drawing-text = Now drawing injector-component-injecting-text = Now injecting -injector-component-cannot-transfer-message = You aren't able to transfer to {THE($target)}! +injector-component-cannot-transfer-message = You aren't able to transfer into {THE($target)}! +injector-component-cannot-transfer-message-self = You aren't able to transfer into yourself! injector-component-cannot-draw-message = You aren't able to draw from {THE($target)}! -injector-component-cannot-inject-message = You aren't able to inject to {THE($target)}! +injector-component-cannot-draw-message-self = You aren't able to draw from yourself! +injector-component-cannot-inject-message = You aren't able to inject into {THE($target)}! +injector-component-cannot-inject-message-self = You aren't able to inject into yourself! injector-component-inject-success-message = You inject {$amount}u into {THE($target)}! +injector-component-inject-success-message-self = You inject {$amount}u into yourself! injector-component-transfer-success-message = You transfer {$amount}u into {THE($target)}. +injector-component-transfer-success-message-self = You transfer {$amount}u into yourself. injector-component-draw-success-message = You draw {$amount}u from {THE($target)}. +injector-component-draw-success-message-self = You draw {$amount}u from youself. injector-component-target-already-full-message = {CAPITALIZE(THE($target))} is already full! +injector-component-target-already-full-message-self = You are already full! injector-component-target-is-empty-message = {CAPITALIZE(THE($target))} is empty! +injector-component-target-is-empty-message-self = You are empty! injector-component-cannot-toggle-draw-message = Too full to draw! injector-component-cannot-toggle-inject-message = Nothing to inject! diff --git a/Resources/Locale/en-US/commands/addpolymorphaction-command.ftl b/Resources/Locale/en-US/commands/addpolymorphaction-command.ftl new file mode 100644 index 0000000000..72f2158273 --- /dev/null +++ b/Resources/Locale/en-US/commands/addpolymorphaction-command.ftl @@ -0,0 +1,2 @@ +cmd-addpolymorphaction-desc = Takes an entity and gives them a voluntary polymorph. +cmd-addpolymorphaction-help = Usage: addpolymorphaction diff --git a/Resources/Locale/en-US/commands/delaystart-command.ftl b/Resources/Locale/en-US/commands/delaystart-command.ftl new file mode 100644 index 0000000000..e5189a7822 --- /dev/null +++ b/Resources/Locale/en-US/commands/delaystart-command.ftl @@ -0,0 +1,7 @@ +cmd-delaystart-desc = Delays the round start. +cmd-delaystart-help = Usage: delaystart [seconds] + If no arguments are passed, the round will be paused or resumed accordingly. +cmd-delaystart-invalid-seconds = {$value} isn't a valid amount of seconds. +cmd-delaystart-paused = Paused the countdown. +cmd-delaystart-unpaused = Resumed the countdown. +cmd-delaystart-too-late = Round start could not be delayed in time! diff --git a/Resources/Locale/en-US/commands/endround-command.ftl b/Resources/Locale/en-US/commands/endround-command.ftl new file mode 100644 index 0000000000..3b322b59df --- /dev/null +++ b/Resources/Locale/en-US/commands/endround-command.ftl @@ -0,0 +1,2 @@ +cmd-endround-desc = Ends the round and moves the server to PostRound. +cmd-endround-help = Usage: endround diff --git a/Resources/Locale/en-US/commands/restartround-command.ftl b/Resources/Locale/en-US/commands/restartround-command.ftl new file mode 100644 index 0000000000..22bf074452 --- /dev/null +++ b/Resources/Locale/en-US/commands/restartround-command.ftl @@ -0,0 +1,5 @@ +cmd-restartround-desc = Ends the current round and starts the countdown for the next lobby. +cmd-restartround-help = Usage: restartround + +cmd-restartroundnow-desc = Moves the server from PostRound to a new PreRoundLobby. +cmd-restartroundnow-help = Usage: restartroundnow diff --git a/Resources/Locale/en-US/commands/startround-command.ftl b/Resources/Locale/en-US/commands/startround-command.ftl new file mode 100644 index 0000000000..51e85e81b7 --- /dev/null +++ b/Resources/Locale/en-US/commands/startround-command.ftl @@ -0,0 +1,2 @@ +cmd-startround-desc = Ends PreRoundLobby state and starts the round. +cmd-startround-help = Usage: startround diff --git a/Resources/Locale/en-US/commands/toolshed-commands.ftl b/Resources/Locale/en-US/commands/toolshed-commands.ftl index cc5c03d52b..33bf53f9e3 100644 --- a/Resources/Locale/en-US/commands/toolshed-commands.ftl +++ b/Resources/Locale/en-US/commands/toolshed-commands.ftl @@ -106,3 +106,19 @@ command-description-scale-multiplyvector = Multiply an entity's sprite size with a certain 2d vector (without changing its fixture). command-description-scale-multiplywithfixture = Multiply an entity's sprite size with a certain factor (including its fixture). +command-description-dynamicrule-list = + Lists all currently active dynamic rules, usually this is just one. +command-description-dynamicrule-get = + Gets the currently active dynamic rule. +command-description-dynamicrule-budget = + Gets the current budget of the piped dynamic rule(s). +command-description-dynamicrule-adjust = + Adjusts the budget of the piped dynamic rule(s) by the specified amount. +command-description-dynamicrule-set = + Sets the budget of the piped dynamic rule(s) to the specified amount. +command-description-dynamicrule-dryrun = + Returns a list of rules that could be activated if the rule ran at this moment with all current context. This is not a complete list of every single rule that could be run, just a sample of the current valid ones. +command-description-dynamicrule-executenow = + Executes the piped dynamic rule as if it had reached its regular update time. +command-description-dynamicrule-rules = + Gets a list of all the rules spawned by the piped dynamic rule. diff --git a/Resources/Locale/en-US/contraband/contraband-severity.ftl b/Resources/Locale/en-US/contraband/contraband-severity.ftl index 10baf2cb25..7f0a1854eb 100644 --- a/Resources/Locale/en-US/contraband/contraband-severity.ftl +++ b/Resources/Locale/en-US/contraband/contraband-severity.ftl @@ -3,8 +3,9 @@ contraband-examine-text-Restricted = [color=yellow]This item is departmentally r contraband-examine-text-Restricted-department = [color=yellow]This item is restricted to {$departments}, and may be considered contraband.[/color] contraband-examine-text-Major = [color=red]This item is considered major contraband.[/color] contraband-examine-text-GrandTheft = [color=red]This item is a highly valuable target for Syndicate agents![/color] +contraband-examine-text-Highly-Illegal = [color=red]This item is highly illegal contraband![/color] contraband-examine-text-Syndicate = [color=crimson]This item is highly illegal Syndicate contraband![/color] -contraband-examine-text-Magical = [color=#b337b3]This item is highly illegal Magical contraband![/color] +contraband-examine-text-Magical = [color=#b337b3]This item is highly illegal magical contraband![/color] 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] diff --git a/Resources/Locale/en-US/credits/credits-window.ftl b/Resources/Locale/en-US/credits/credits-window.ftl index 4bd7f7a426..e1081a95f0 100644 --- a/Resources/Locale/en-US/credits/credits-window.ftl +++ b/Resources/Locale/en-US/credits/credits-window.ftl @@ -9,6 +9,7 @@ credits-window-contribute-button = Contribute! credits-window-contributors-section-title = Space Station 14 Contributors credits-window-codebases-section-title = Space Station 13 Codebases credits-window-original-remake-team-section-title = Original Space Station 13 Remake Team +credits-window-immortals-title = In Memoriam credits-window-special-thanks-section-title = Special Thanks credits-window-attributions-directory = [color=white]Directory:[/color] {$directory} diff --git a/Resources/Locale/en-US/damage/radiation.ftl b/Resources/Locale/en-US/damage/radiation.ftl new file mode 100644 index 0000000000..bfe32fa9bb --- /dev/null +++ b/Resources/Locale/en-US/damage/radiation.ftl @@ -0,0 +1 @@ +mouth-taste-metal = You taste something metallic in your mouth! diff --git a/Resources/Locale/en-US/datasets/names/borg.ftl b/Resources/Locale/en-US/datasets/names/borg.ftl index b441d8327e..23f5ef7a8a 100644 --- a/Resources/Locale/en-US/datasets/names/borg.ftl +++ b/Resources/Locale/en-US/datasets/names/borg.ftl @@ -37,7 +37,6 @@ names-borg-dataset-36 = Makeshifter names-borg-dataset-37 = Twin names-borg-dataset-38 = S.A.U.L names-borg-dataset-39 = Honker -names-borg-dataset-40 = Clanker -names-borg-dataset-41 = Is-The-Robot -names-borg-dataset-42 = 9 of 7 -names-borg-dataset-43 = Dank bot +names-borg-dataset-40 = Is-The-Robot +names-borg-dataset-41 = 9 of 7 +names-borg-dataset-42 = Dank bot diff --git a/Resources/Locale/en-US/datasets/names/vulpkanin_female.ftl b/Resources/Locale/en-US/datasets/names/vulpkanin_female.ftl new file mode 100644 index 0000000000..03917f56c4 --- /dev/null +++ b/Resources/Locale/en-US/datasets/names/vulpkanin_female.ftl @@ -0,0 +1,113 @@ +names-vulpkanin-female-dataset-1 = Adrianna +names-vulpkanin-female-dataset-2 = Agatha +names-vulpkanin-female-dataset-3 = Agneza +names-vulpkanin-female-dataset-4 = Aldona +names-vulpkanin-female-dataset-5 = Amira +names-vulpkanin-female-dataset-6 = Angela +names-vulpkanin-female-dataset-7 = Apolena +names-vulpkanin-female-dataset-8 = Asia +names-vulpkanin-female-dataset-9 = Barbara +names-vulpkanin-female-dataset-10 = Basia +names-vulpkanin-female-dataset-11 = Beatrice +names-vulpkanin-female-dataset-12 = Blanka +names-vulpkanin-female-dataset-13 = Bohumila +names-vulpkanin-female-dataset-14 = Bruna +names-vulpkanin-female-dataset-15 = Cecilija +names-vulpkanin-female-dataset-16 = Cirila +names-vulpkanin-female-dataset-17 = Czeslawa +names-vulpkanin-female-dataset-18 = Dagmar +names-vulpkanin-female-dataset-19 = Dajana +names-vulpkanin-female-dataset-20 = Damira +names-vulpkanin-female-dataset-21 = Danka +names-vulpkanin-female-dataset-22 = Daria +names-vulpkanin-female-dataset-23 = Diana +names-vulpkanin-female-dataset-24 = Dimitrina +names-vulpkanin-female-dataset-25 = Dobromila +names-vulpkanin-female-dataset-26 = Domnika +names-vulpkanin-female-dataset-27 = Doroteya +names-vulpkanin-female-dataset-28 = Dragoslava +names-vulpkanin-female-dataset-29 = Edyta +names-vulpkanin-female-dataset-30 = Eliza +names-vulpkanin-female-dataset-31 = Ena +names-vulpkanin-female-dataset-32 = Erika +names-vulpkanin-female-dataset-33 = Ester +names-vulpkanin-female-dataset-34 = Evelina +names-vulpkanin-female-dataset-35 = Fatima +names-vulpkanin-female-dataset-36 = Fikreta +names-vulpkanin-female-dataset-37 = Filipina +names-vulpkanin-female-dataset-38 = Franka +names-vulpkanin-female-dataset-39 = Gabrijela +names-vulpkanin-female-dataset-40 = Galena +names-vulpkanin-female-dataset-41 = Genowefa +names-vulpkanin-female-dataset-42 = Halyna +names-vulpkanin-female-dataset-43 = Hana +names-vulpkanin-female-dataset-44 = Helena +names-vulpkanin-female-dataset-45 = Hristina +names-vulpkanin-female-dataset-46 = Ioana +names-vulpkanin-female-dataset-47 = Irena +names-vulpkanin-female-dataset-48 = Ivayla +names-vulpkanin-female-dataset-49 = Izabela +names-vulpkanin-female-dataset-50 = Jagoda +names-vulpkanin-female-dataset-51 = Jolana +names-vulpkanin-female-dataset-52 = Jovka +names-vulpkanin-female-dataset-53 = Julija +names-vulpkanin-female-dataset-54 = Kaja +names-vulpkanin-female-dataset-55 = Karyna +names-vulpkanin-female-dataset-56 = Kata +names-vulpkanin-female-dataset-57 = Katia +names-vulpkanin-female-dataset-58 = Klaudia +names-vulpkanin-female-dataset-59 = Klementina +names-vulpkanin-female-dataset-60 = Kristina +names-vulpkanin-female-dataset-61 = Laura +names-vulpkanin-female-dataset-62 = Lilyana +names-vulpkanin-female-dataset-63 = Magdalena +names-vulpkanin-female-dataset-64 = Maja +names-vulpkanin-female-dataset-65 = Marika +names-vulpkanin-female-dataset-66 = Matilda +names-vulpkanin-female-dataset-67 = Nadzeya +names-vulpkanin-female-dataset-68 = Natalia +names-vulpkanin-female-dataset-69 = Natasha +names-vulpkanin-female-dataset-70 = Nedelya +names-vulpkanin-female-dataset-71 = Nel +names-vulpkanin-female-dataset-72 = Nevena +names-vulpkanin-female-dataset-73 = Nikol +names-vulpkanin-female-dataset-74 = Olivie +names-vulpkanin-female-dataset-75 = Patricie +names-vulpkanin-female-dataset-76 = Paulina +names-vulpkanin-female-dataset-77 = Petra +names-vulpkanin-female-dataset-78 = Petya +names-vulpkanin-female-dataset-79 = Radomira +names-vulpkanin-female-dataset-80 = Rahela +names-vulpkanin-female-dataset-81 = Raina +names-vulpkanin-female-dataset-82 = Ranka +names-vulpkanin-female-dataset-83 = Raya +names-vulpkanin-female-dataset-84 = Renata +names-vulpkanin-female-dataset-85 = Roza +names-vulpkanin-female-dataset-86 = Silvia +names-vulpkanin-female-dataset-87 = Simona +names-vulpkanin-female-dataset-88 = Stanislava +names-vulpkanin-female-dataset-89 = Stefania +names-vulpkanin-female-dataset-90 = Svatava +names-vulpkanin-female-dataset-91 = Sylva +names-vulpkanin-female-dataset-92 = Tamara +names-vulpkanin-female-dataset-93 = Tina +names-vulpkanin-female-dataset-94 = Tonya +names-vulpkanin-female-dataset-95 = Trajanka +names-vulpkanin-female-dataset-96 = Ula +names-vulpkanin-female-dataset-97 = Ursa +names-vulpkanin-female-dataset-98 = Valentina +names-vulpkanin-female-dataset-99 = Valeria +names-vulpkanin-female-dataset-100 = Vanessa +names-vulpkanin-female-dataset-101 = Vasylyna +names-vulpkanin-female-dataset-102 = Venera +names-vulpkanin-female-dataset-103 = Vera +names-vulpkanin-female-dataset-104 = Viktoria +names-vulpkanin-female-dataset-105 = Violetta +names-vulpkanin-female-dataset-106 = Vita +names-vulpkanin-female-dataset-107 = Yoana +names-vulpkanin-female-dataset-108 = Yulia +names-vulpkanin-female-dataset-109 = Yvetta +names-vulpkanin-female-dataset-110 = Yvona +names-vulpkanin-female-dataset-111 = Zofia +names-vulpkanin-female-dataset-112 = Zorka +names-vulpkanin-female-dataset-113 = Zuzanna diff --git a/Resources/Locale/en-US/datasets/names/vulpkanin_last.ftl b/Resources/Locale/en-US/datasets/names/vulpkanin_last.ftl new file mode 100644 index 0000000000..215cf07efb --- /dev/null +++ b/Resources/Locale/en-US/datasets/names/vulpkanin_last.ftl @@ -0,0 +1,252 @@ +names-vulpkanin-last-dataset-1 = Abbott +names-vulpkanin-last-dataset-2 = Adoette +names-vulpkanin-last-dataset-3 = Aegaeon +names-vulpkanin-last-dataset-4 = Aegir +names-vulpkanin-last-dataset-5 = Antlia +names-vulpkanin-last-dataset-6 = Argyris +names-vulpkanin-last-dataset-7 = Artino +names-vulpkanin-last-dataset-8 = Auriga +names-vulpkanin-last-dataset-9 = Balch +names-vulpkanin-last-dataset-10 = Barker +names-vulpkanin-last-dataset-11 = Barry +names-vulpkanin-last-dataset-12 = Beck +names-vulpkanin-last-dataset-13 = Belvin +names-vulpkanin-last-dataset-14 = Benson +names-vulpkanin-last-dataset-15 = Bestla +names-vulpkanin-last-dataset-16 = Beynon +names-vulpkanin-last-dataset-17 = Birken +names-vulpkanin-last-dataset-18 = Blum +names-vulpkanin-last-dataset-19 = Bootes +names-vulpkanin-last-dataset-20 = Braune +names-vulpkanin-last-dataset-21 = Briggs +names-vulpkanin-last-dataset-22 = Brys +names-vulpkanin-last-dataset-23 = Bunner +names-vulpkanin-last-dataset-24 = Burns +names-vulpkanin-last-dataset-25 = Cadogan +names-vulpkanin-last-dataset-26 = Caelum +names-vulpkanin-last-dataset-27 = Caine +names-vulpkanin-last-dataset-28 = Cal'enea +names-vulpkanin-last-dataset-29 = Caliban +names-vulpkanin-last-dataset-30 = Card +names-vulpkanin-last-dataset-31 = Carina +names-vulpkanin-last-dataset-32 = Cecil +names-vulpkanin-last-dataset-33 = Cephus +names-vulpkanin-last-dataset-34 = Cetus +names-vulpkanin-last-dataset-35 = Ciqala +names-vulpkanin-last-dataset-36 = Clark +names-vulpkanin-last-dataset-37 = Collins +names-vulpkanin-last-dataset-38 = Corvus +names-vulpkanin-last-dataset-39 = Cross +names-vulpkanin-last-dataset-40 = Crux +names-vulpkanin-last-dataset-41 = Cygnus +names-vulpkanin-last-dataset-42 = Darwin +names-vulpkanin-last-dataset-43 = Day +names-vulpkanin-last-dataset-44 = Delphinus +names-vulpkanin-last-dataset-45 = Dew +names-vulpkanin-last-dataset-46 = Donovan +names-vulpkanin-last-dataset-47 = Dorado +names-vulpkanin-last-dataset-48 = Drexler +names-vulpkanin-last-dataset-49 = Eckart +names-vulpkanin-last-dataset-50 = Eisner +names-vulpkanin-last-dataset-51 = Eridanus +names-vulpkanin-last-dataset-52 = Esau +names-vulpkanin-last-dataset-53 = Etsa +names-vulpkanin-last-dataset-54 = Fahr +names-vulpkanin-last-dataset-55 = Finn +names-vulpkanin-last-dataset-56 = Fletcher +names-vulpkanin-last-dataset-57 = Flint +names-vulpkanin-last-dataset-58 = Fornax +names-vulpkanin-last-dataset-59 = Francis +names-vulpkanin-last-dataset-60 = Frey +names-vulpkanin-last-dataset-61 = Froese +names-vulpkanin-last-dataset-62 = Frost +names-vulpkanin-last-dataset-63 = Galatea +names-vulpkanin-last-dataset-64 = Gerster +names-vulpkanin-last-dataset-65 = Gibbs +names-vulpkanin-last-dataset-66 = Gibby +names-vulpkanin-last-dataset-67 = Gibson +names-vulpkanin-last-dataset-68 = Glasser +names-vulpkanin-last-dataset-69 = Gold +names-vulpkanin-last-dataset-70 = Gray +names-vulpkanin-last-dataset-71 = Greenland +names-vulpkanin-last-dataset-72 = Griffiths +names-vulpkanin-last-dataset-73 = Grus +names-vulpkanin-last-dataset-74 = Hackl +names-vulpkanin-last-dataset-75 = Harrer +names-vulpkanin-last-dataset-76 = Harris +names-vulpkanin-last-dataset-77 = Hartig +names-vulpkanin-last-dataset-78 = Hati +names-vulpkanin-last-dataset-79 = Haumea +names-vulpkanin-last-dataset-80 = Heck +names-vulpkanin-last-dataset-81 = Heckleforth +names-vulpkanin-last-dataset-82 = Hendricks +names-vulpkanin-last-dataset-83 = Hennion +names-vulpkanin-last-dataset-84 = Herder +names-vulpkanin-last-dataset-85 = Herrlein +names-vulpkanin-last-dataset-86 = Hersh +names-vulpkanin-last-dataset-87 = Hi'iaka +names-vulpkanin-last-dataset-88 = Holderman +names-vulpkanin-last-dataset-89 = Holt +names-vulpkanin-last-dataset-90 = Holzer +names-vulpkanin-last-dataset-91 = Howell +names-vulpkanin-last-dataset-92 = Howlitzer +names-vulpkanin-last-dataset-93 = Hunt +names-vulpkanin-last-dataset-94 = Hunter +names-vulpkanin-last-dataset-95 = Huntington +names-vulpkanin-last-dataset-96 = Hydrus +names-vulpkanin-last-dataset-97 = Hyrrokkin +names-vulpkanin-last-dataset-98 = Ida +names-vulpkanin-last-dataset-99 = Indus +names-vulpkanin-last-dataset-100 = Jones +names-vulpkanin-last-dataset-101 = Kachina +names-vulpkanin-last-dataset-102 = Kahler +names-vulpkanin-last-dataset-103 = Kali +names-vulpkanin-last-dataset-104 = Kamphaus +names-vulpkanin-last-dataset-105 = Kekoa +names-vulpkanin-last-dataset-106 = Keme +names-vulpkanin-last-dataset-107 = Kenefick +names-vulpkanin-last-dataset-108 = Kerberos +names-vulpkanin-last-dataset-109 = King +names-vulpkanin-last-dataset-110 = Kitchi +names-vulpkanin-last-dataset-111 = Kiviuq +names-vulpkanin-last-dataset-112 = Kocher +names-vulpkanin-last-dataset-113 = Kohl +names-vulpkanin-last-dataset-114 = Koi +names-vulpkanin-last-dataset-115 = Kokinos +names-vulpkanin-last-dataset-116 = Konala +names-vulpkanin-last-dataset-117 = Kracht +names-vulpkanin-last-dataset-118 = Kruspe +names-vulpkanin-last-dataset-119 = Kuruk +names-vulpkanin-last-dataset-120 = Kusinut +names-vulpkanin-last-dataset-121 = Lachner +names-vulpkanin-last-dataset-122 = Lambert +names-vulpkanin-last-dataset-123 = Lansa +names-vulpkanin-last-dataset-124 = Laomedeia +names-vulpkanin-last-dataset-125 = Lawson +names-vulpkanin-last-dataset-126 = Lee +names-vulpkanin-last-dataset-127 = Lehrer +names-vulpkanin-last-dataset-128 = Lexis +names-vulpkanin-last-dataset-129 = Licht +names-vulpkanin-last-dataset-130 = Lincoln +names-vulpkanin-last-dataset-131 = Llewelyn +names-vulpkanin-last-dataset-132 = Loge +names-vulpkanin-last-dataset-133 = Lorenzen +names-vulpkanin-last-dataset-134 = MacLeod +names-vulpkanin-last-dataset-135 = Maekh +names-vulpkanin-last-dataset-136 = Malone +names-vulpkanin-last-dataset-137 = Marks +names-vulpkanin-last-dataset-138 = Mason +names-vulpkanin-last-dataset-139 = Matoskah +names-vulpkanin-last-dataset-140 = Matthews +names-vulpkanin-last-dataset-141 = Mattick +names-vulpkanin-last-dataset-142 = Mauss +names-vulpkanin-last-dataset-143 = McCarthy +names-vulpkanin-last-dataset-144 = McKee +names-vulpkanin-last-dataset-145 = McKinney +names-vulpkanin-last-dataset-146 = McLeod +names-vulpkanin-last-dataset-147 = Meissner +names-vulpkanin-last-dataset-148 = Merkel +names-vulpkanin-last-dataset-149 = Mertz +names-vulpkanin-last-dataset-150 = Metzinger +names-vulpkanin-last-dataset-151 = Mikasi +names-vulpkanin-last-dataset-152 = Mimiteh +names-vulpkanin-last-dataset-153 = Misae +names-vulpkanin-last-dataset-154 = Moki +names-vulpkanin-last-dataset-155 = Mordecai +names-vulpkanin-last-dataset-156 = Morgan +names-vulpkanin-last-dataset-157 = Morris +names-vulpkanin-last-dataset-158 = Moss +names-vulpkanin-last-dataset-159 = Musca +names-vulpkanin-last-dataset-160 = Naiad +names-vulpkanin-last-dataset-161 = Namaka +names-vulpkanin-last-dataset-162 = Narvi +names-vulpkanin-last-dataset-163 = Nereid +names-vulpkanin-last-dataset-164 = Neso +names-vulpkanin-last-dataset-165 = Nest +names-vulpkanin-last-dataset-166 = Neuer +names-vulpkanin-last-dataset-167 = Nist +names-vulpkanin-last-dataset-168 = Nokomis +names-vulpkanin-last-dataset-169 = Nonovan +names-vulpkanin-last-dataset-170 = Noske +names-vulpkanin-last-dataset-171 = O'Neil +names-vulpkanin-last-dataset-172 = Okalani +names-vulpkanin-last-dataset-173 = Okomi +names-vulpkanin-last-dataset-174 = Oliana +names-vulpkanin-last-dataset-175 = Oliver +names-vulpkanin-last-dataset-176 = Pakuna +names-vulpkanin-last-dataset-177 = Pallene +names-vulpkanin-last-dataset-178 = Pavo +names-vulpkanin-last-dataset-179 = Pembroke +names-vulpkanin-last-dataset-180 = Penrose +names-vulpkanin-last-dataset-181 = Pichler +names-vulpkanin-last-dataset-182 = Parker +names-vulpkanin-last-dataset-183 = Povey +names-vulpkanin-last-dataset-184 = Preiss +names-vulpkanin-last-dataset-185 = Prospero +names-vulpkanin-last-dataset-186 = Protheroe +names-vulpkanin-last-dataset-187 = Pye +names-vulpkanin-last-dataset-188 = Pyxis +names-vulpkanin-last-dataset-189 = Quint +names-vulpkanin-last-dataset-190 = Rabe +names-vulpkanin-last-dataset-191 = Rahmer +names-vulpkanin-last-dataset-192 = Rease +names-vulpkanin-last-dataset-193 = Reger +names-vulpkanin-last-dataset-194 = Reichen +names-vulpkanin-last-dataset-195 = Reimold +names-vulpkanin-last-dataset-196 = Reiter +names-vulpkanin-last-dataset-197 = Rhees +names-vulpkanin-last-dataset-198 = Rhoderick +names-vulpkanin-last-dataset-199 = Robinson +names-vulpkanin-last-dataset-200 = Rosenthal +names-vulpkanin-last-dataset-201 = Rossmann +names-vulpkanin-last-dataset-202 = Rothman +names-vulpkanin-last-dataset-203 = Rue +names-vulpkanin-last-dataset-204 = Sagitta +names-vulpkanin-last-dataset-205 = Sahkyo +names-vulpkanin-last-dataset-206 = Sare +names-vulpkanin-last-dataset-207 = Sawyer +names-vulpkanin-last-dataset-208 = Schmid +names-vulpkanin-last-dataset-209 = Schoeler +names-vulpkanin-last-dataset-210 = Schoenberg +names-vulpkanin-last-dataset-211 = Schultze +names-vulpkanin-last-dataset-212 = Seals +names-vulpkanin-last-dataset-213 = Seidl +names-vulpkanin-last-dataset-214 = Sharpe +names-vulpkanin-last-dataset-215 = Shepard +names-vulpkanin-last-dataset-216 = Shepherd +names-vulpkanin-last-dataset-217 = Sicheii +names-vulpkanin-last-dataset-218 = Skinner +names-vulpkanin-last-dataset-219 = Skoll +names-vulpkanin-last-dataset-220 = Sommer +names-vulpkanin-last-dataset-221 = Spade +names-vulpkanin-last-dataset-222 = Staebler +names-vulpkanin-last-dataset-223 = Steel +names-vulpkanin-last-dataset-224 = Sycorax +names-vulpkanin-last-dataset-225 = Takala +names-vulpkanin-last-dataset-226 = Takoda +names-vulpkanin-last-dataset-227 = Tansy +names-vulpkanin-last-dataset-228 = Tarqeq +names-vulpkanin-last-dataset-229 = Tarvos +names-vulpkanin-last-dataset-230 = Tayanita +names-vulpkanin-last-dataset-231 = Taylor +names-vulpkanin-last-dataset-232 = Telesto +names-vulpkanin-last-dataset-233 = Tethys +names-vulpkanin-last-dataset-234 = Thalassa +names-vulpkanin-last-dataset-235 = Thiel +names-vulpkanin-last-dataset-236 = Toski +names-vulpkanin-last-dataset-237 = Trinculo +names-vulpkanin-last-dataset-238 = Tse +names-vulpkanin-last-dataset-239 = Veiel +names-vulpkanin-last-dataset-240 = Vohkinne +names-vulpkanin-last-dataset-241 = Umber +names-vulpkanin-last-dataset-242 = Ward +names-vulpkanin-last-dataset-243 = Webb +names-vulpkanin-last-dataset-244 = Weber +names-vulpkanin-last-dataset-245 = Weider +names-vulpkanin-last-dataset-246 = Werdin +names-vulpkanin-last-dataset-247 = Wildner +names-vulpkanin-last-dataset-248 = Wintsch +names-vulpkanin-last-dataset-249 = Wolfe +names-vulpkanin-last-dataset-250 = Yarwood +names-vulpkanin-last-dataset-251 = Yazhi +names-vulpkanin-last-dataset-252 = Yoki diff --git a/Resources/Locale/en-US/datasets/names/vulpkanin_male.ftl b/Resources/Locale/en-US/datasets/names/vulpkanin_male.ftl new file mode 100644 index 0000000000..9d3e1c29af --- /dev/null +++ b/Resources/Locale/en-US/datasets/names/vulpkanin_male.ftl @@ -0,0 +1,83 @@ +names-vulpkanin-male-dataset-1 = Abharr +names-vulpkanin-male-dataset-2 = Admir +names-vulpkanin-male-dataset-3 = Aleksi +names-vulpkanin-male-dataset-4 = Alher +names-vulpkanin-male-dataset-5 = Andre +names-vulpkanin-male-dataset-6 = Antoni +names-vulpkanin-male-dataset-7 = Bakir +names-vulpkanin-male-dataset-8 = Barys +names-vulpkanin-male-dataset-9 = Baxter +# Wolf in Welsh +names-vulpkanin-male-dataset-10 = Bleidd +names-vulpkanin-male-dataset-11 = Branimir +names-vulpkanin-male-dataset-12 = Bruno +names-vulpkanin-male-dataset-13 = Brutus +names-vulpkanin-male-dataset-14 = Chavdar +names-vulpkanin-male-dataset-15 = Czcibor +names-vulpkanin-male-dataset-16 = Daris +names-vulpkanin-male-dataset-17 = Davor +names-vulpkanin-male-dataset-18 = Davorin +names-vulpkanin-male-dataset-19 = Demeter +names-vulpkanin-male-dataset-20 = Demir +names-vulpkanin-male-dataset-21 = Diego +names-vulpkanin-male-dataset-22 = Dorian +names-vulpkanin-male-dataset-23 = Edvard +names-vulpkanin-male-dataset-24 = Emir +names-vulpkanin-male-dataset-25 = Enver +names-vulpkanin-male-dataset-26 = Erik +names-vulpkanin-male-dataset-27 = Fedir +names-vulpkanin-male-dataset-28 = Fenrir +names-vulpkanin-male-dataset-29 = Fridrich +names-vulpkanin-male-dataset-30 = Garrett +names-vulpkanin-male-dataset-31 = Gaspar +names-vulpkanin-male-dataset-32 = Gerard +names-vulpkanin-male-dataset-33 = Gregor +names-vulpkanin-male-dataset-34 = Gustav +names-vulpkanin-male-dataset-35 = Hristofor +names-vulpkanin-male-dataset-36 = Hubert +names-vulpkanin-male-dataset-37 = Igor +names-vulpkanin-male-dataset-38 = Irfan +names-vulpkanin-male-dataset-39 = Ivan +names-vulpkanin-male-dataset-40 = Jarvald +names-vulpkanin-male-dataset-41 = Jerrih +names-vulpkanin-male-dataset-42 = Kasper +names-vulpkanin-male-dataset-43 = Krreor +names-vulpkanin-male-dataset-44 = Ksavier +names-vulpkanin-male-dataset-45 = Libor +# Lobomir misspelled on purpose +names-vulpkanin-male-dataset-46 = Lobomir +names-vulpkanin-male-dataset-47 = Lykaon +names-vulpkanin-male-dataset-48 = Mahir +names-vulpkanin-male-dataset-49 = Maksym +names-vulpkanin-male-dataset-50 = Martyn +names-vulpkanin-male-dataset-51 = Nazar +names-vulpkanin-male-dataset-52 = Nero +names-vulpkanin-male-dataset-53 = Nestor +names-vulpkanin-male-dataset-54 = Niko +names-vulpkanin-male-dataset-55 = Oktavian +names-vulpkanin-male-dataset-56 = Oliver +names-vulpkanin-male-dataset-57 = Omar +names-vulpkanin-male-dataset-58 = Oskar +names-vulpkanin-male-dataset-59 = Petr +names-vulpkanin-male-dataset-60 = Ranulf +names-vulpkanin-male-dataset-61 = Riot +names-vulpkanin-male-dataset-62 = Ruer +names-vulpkanin-male-dataset-63 = Ryhor +names-vulpkanin-male-dataset-64 = Slavomir +names-vulpkanin-male-dataset-65 = Sylvester +names-vulpkanin-male-dataset-66 = Teo +names-vulpkanin-male-dataset-67 = Tibor +names-vulpkanin-male-dataset-68 = Travis +names-vulpkanin-male-dataset-69 = Ulrick +names-vulpkanin-male-dataset-70 = Valter +names-vulpkanin-male-dataset-71 = Vasil +names-vulpkanin-male-dataset-72 = Verso +names-vulpkanin-male-dataset-73 = Viktor +names-vulpkanin-male-dataset-74 = Vladimir +# Wolf in Polish +names-vulpkanin-male-dataset-75 = Wilk +names-vulpkanin-male-dataset-76 = Xander +names-vulpkanin-male-dataset-77 = Zahari +names-vulpkanin-male-dataset-78 = Zaker +names-vulpkanin-male-dataset-79 = Zegrath +names-vulpkanin-male-dataset-80 = Zenon diff --git a/Resources/Locale/en-US/engineering/inflatables.ftl b/Resources/Locale/en-US/engineering/inflatables.ftl new file mode 100644 index 0000000000..0c4a2d44c0 --- /dev/null +++ b/Resources/Locale/en-US/engineering/inflatables.ftl @@ -0,0 +1 @@ +inflatable-safe-disassembly = You expertly use { THE($item) } to open the valve on { THE($target) }, and start deflating { OBJECT($target) } without causing damage. diff --git a/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl b/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl index c7773a54cd..9869aa1da5 100644 --- a/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl +++ b/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl @@ -50,8 +50,8 @@ ui-options-interface-label = Interface ui-options-auto-fill-highlights = Auto-fill the highlights with the character's information -ui-options-highlights-color = Highlighs color: -ui-options-highlights-color-example = This is an highlighted text! +ui-options-highlights-color = Highlights color: +ui-options-highlights-color-example = This is highlighted text. ui-options-show-held-item = Show held item next to cursor ui-options-show-combat-mode-indicators = Show combat mode indicators with cursor ui-options-opaque-storage-window = Opaque storage window diff --git a/Resources/Locale/en-US/fluids/components/spillable-component.ftl b/Resources/Locale/en-US/fluids/components/spillable-component.ftl index cfcdf86a90..6dc677d0bc 100644 --- a/Resources/Locale/en-US/fluids/components/spillable-component.ftl +++ b/Resources/Locale/en-US/fluids/components/spillable-component.ftl @@ -10,4 +10,4 @@ spill-melee-hit-others = {CAPITALIZE(THE($attacker))} spills some of {THE($spill spill-land-spilled-on-other = {CAPITALIZE(THE($spillable))} spills some of its solution onto {THE($target)}! spill-examine-is-spillable = This container looks spillable. -spill-examine-spillable-weapon = You could splash this onto someone with a melee attack. +spill-examine-spillable-weapon = You could splash this onto someone with an attack. diff --git a/Resources/Locale/en-US/game-ticking/game-presets/preset-changeling.ftl b/Resources/Locale/en-US/game-ticking/game-presets/preset-changeling.ftl new file mode 100644 index 0000000000..32e79679cc --- /dev/null +++ b/Resources/Locale/en-US/game-ticking/game-presets/preset-changeling.ftl @@ -0,0 +1,13 @@ +changeling-role-greeting = + You are a Changeling, a highly intelligent predator. + Your primary goal is to escape the station alive via assuming the identities of the denizens of this station. + You are hungry and will not make it long without sustenance... + Kill, consume, hide, survive. + +changeling-briefing = + You are a changeling. + You are able to utilize and assume the identities of those you consume to evade a grim fate. + +objective-issuer-changeling = [color=#FA2A55]The Hivemind[/color] + +changeling-round-end-agent-name = changeling diff --git a/Resources/Locale/en-US/game-ticking/game-presets/preset-secret.ftl b/Resources/Locale/en-US/game-ticking/game-presets/preset-secret.ftl index 892e5c3994..2551b0073d 100644 --- a/Resources/Locale/en-US/game-ticking/game-presets/preset-secret.ftl +++ b/Resources/Locale/en-US/game-ticking/game-presets/preset-secret.ftl @@ -1,2 +1,5 @@ secret-title = Secret secret-description = It's a secret to everyone. The threats you encounter are randomized. + +dynamic-title = Dynamic +dynamic-description = No one knows what's coming. You can encounter any number of threats. diff --git a/Resources/Locale/en-US/game-ticking/set-game-preset-command.ftl b/Resources/Locale/en-US/game-ticking/set-game-preset-command.ftl index 323d83aeba..9659db643f 100644 --- a/Resources/Locale/en-US/game-ticking/set-game-preset-command.ftl +++ b/Resources/Locale/en-US/game-ticking/set-game-preset-command.ftl @@ -1,7 +1,13 @@ -set-game-preset-command-description = Sets the game preset for the specified number of upcoming rounds. -set-game-preset-command-help-text = setgamepreset [number of rounds, defaulting to 1] -set-game-preset-optional-argument-not-integer = If argument 2 is provided it must be a number. +set-game-preset-command-description = Sets the game preset for the specified number of upcoming rounds. Can also display another preset's title and description in the lobby to fool players. +set-game-preset-command-help-text = setgamepreset [number of rounds, defaulting to 1] [decoy preset] +set-game-preset-command-hint-1 = +set-game-preset-command-hint-2 = [number of rounds] +set-game-preset-command-hint-3 = [decoy preset] +set-game-preset-optional-argument-not-integer = If argument 2 is provided it must be a number. set-game-preset-preset-error = Unable to find game preset "{$preset}" +set-game-preset-decoy-error = If argument 3 is provided it must be a valid preset. Unable to find game preset "{$preset}" + #set-game-preset-preset-set = Set game preset to "{$preset}" set-game-preset-preset-set-finite = Set game preset to "{$preset}" for the next {$rounds} rounds. +set-game-preset-preset-set-finite-with-decoy = Set game preset to "{$preset}" for the next {$rounds} rounds, showing {$decoy} in the lobby. diff --git a/Resources/Locale/en-US/ghost/observer-role.ftl b/Resources/Locale/en-US/ghost/observer-role.ftl deleted file mode 100644 index acb30b128f..0000000000 --- a/Resources/Locale/en-US/ghost/observer-role.ftl +++ /dev/null @@ -1,2 +0,0 @@ -observer-role-name = Observer - diff --git a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl index ce52b88655..a578adf82b 100644 --- a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl +++ b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl @@ -244,9 +244,24 @@ ghost-role-information-syndicate-cyborg-assault-name = Syndicate Assault Cyborg ghost-role-information-syndicate-cyborg-saboteur-name = Syndicate Saboteur Cyborg ghost-role-information-syndicate-cyborg-description = The Syndicate needs reinforcements. You, a cold silicon killing machine, will help them. -ghost-role-information-derelict-cyborg-name = Derelict Cyborg +ghost-role-information-derelict-engineering-cyborg-name = Derelict Engineer Cyborg +ghost-role-information-derelict-engineering-cyborg-description = You are an engineer cyborg that got lost in space. After years of exposure to ion storms you find yourself near a space station. + +ghost-role-information-derelict-cyborg-name = Derelict Generic Cyborg ghost-role-information-derelict-cyborg-description = You are a regular cyborg that got lost in space. After years of exposure to ion storms you find yourself near a space station. +ghost-role-information-derelict-janitor-cyborg-name = Derelict Janitor Cyborg +ghost-role-information-derelict-janitor-cyborg-description = You are a janitor cyborg that got lost in space. After years of exposure to ion storms you find yourself near a space station. + +ghost-role-information-derelict-medical-cyborg-name = Derelict Medical Cyborg +ghost-role-information-derelict-medical-cyborg-description = You are a medical cyborg that got lost in space. After years of exposure to ion storms you find yourself near a space station. + +ghost-role-information-derelict-mining-cyborg-name = Derelict Salvage Cyborg +ghost-role-information-derelict-mining-cyborg-description = You are a salvage cyborg that got lost in space. After years of exposure to ion storms you find yourself near a space station. + +ghost-role-information-derelict-syndicate-assault-cyborg-name = Derelict Syndicate Assault Cyborg +ghost-role-information-derelict-syndicate-assault-cyborg-description = You are an early model syndicate assault cyborg that got lost in space. After years of exposure to ion storms you find yourself near a space station. + ghost-role-information-security-name = Security ghost-role-information-security-description = You are part of a security task force, but seem to have found yourself in a strange situation... diff --git a/Resources/Locale/en-US/interaction/interaction-popup-component.ftl b/Resources/Locale/en-US/interaction/interaction-popup-component.ftl index bbafdd5ad3..02af3554fa 100644 --- a/Resources/Locale/en-US/interaction/interaction-popup-component.ftl +++ b/Resources/Locale/en-US/interaction/interaction-popup-component.ftl @@ -101,6 +101,9 @@ hugging-success-generic = You hug {THE($target)}. hugging-success-generic-others = { CAPITALIZE(THE($user)) } hugs {THE($target)}. hugging-success-generic-target = { CAPITALIZE(THE($user)) } hugs you. +petting-success-soft-floofy-vulp = You pet { THE($target) } on {POSS-ADJ($target)} soft floofy head. +petting-success-soft-floofy-vulp-others = { CAPITALIZE(THE($user)) } pets {THE($target)} on {POSS-ADJ($target)} soft floofy head. + ## Other petting-success-tesla = You pet {THE($target)}, violating the laws of nature and physics. diff --git a/Resources/Locale/en-US/jump-ability/jump-ability.ftl b/Resources/Locale/en-US/jump-ability/jump-ability.ftl new file mode 100644 index 0000000000..a9737455a3 --- /dev/null +++ b/Resources/Locale/en-US/jump-ability/jump-ability.ftl @@ -0,0 +1 @@ +jump-ability-failure = You cannot jump right now. diff --git a/Resources/Locale/en-US/kitchen/components/kitchen-spike-component.ftl b/Resources/Locale/en-US/kitchen/components/kitchen-spike-component.ftl index aa555b24ae..b620fdff8c 100644 --- a/Resources/Locale/en-US/kitchen/components/kitchen-spike-component.ftl +++ b/Resources/Locale/en-US/kitchen/components/kitchen-spike-component.ftl @@ -1,18 +1,37 @@ -comp-kitchen-spike-deny-collect = { CAPITALIZE(THE($this)) } already has something on it, finish collecting its meat first! -comp-kitchen-spike-deny-butcher = { CAPITALIZE(THE($victim)) } can't be butchered on { THE($this) }. -comp-kitchen-spike-deny-butcher-knife = { CAPITALIZE(THE($victim)) } can't be butchered on { THE($this) }, you need to butcher it using a knife. -comp-kitchen-spike-deny-not-dead = { CAPITALIZE(THE($victim)) } can't be butchered. { CAPITALIZE(SUBJECT($victim)) } { CONJUGATE-BE($victim) } is not dead! +comp-kitchen-spike-begin-hook-self = You begin dragging yourself onto { THE($hook) }! +comp-kitchen-spike-begin-hook-self-other = { CAPITALIZE(THE($victim)) } begins dragging { REFLEXIVE($victim) } onto { THE($hook) }! -comp-kitchen-spike-begin-hook-victim = { CAPITALIZE(THE($user)) } begins dragging you onto { THE($this) }! -comp-kitchen-spike-begin-hook-self = You begin dragging yourself onto { THE($this) }! +comp-kitchen-spike-begin-hook-other-self = You begin dragging { CAPITALIZE(THE($victim)) } onto { THE($hook) }! +comp-kitchen-spike-begin-hook-other = { CAPITALIZE(THE($user)) } begins dragging { CAPITALIZE(THE($victim)) } onto { THE($hook) }!a -comp-kitchen-spike-kill = { CAPITALIZE(THE($user)) } has forced { THE($victim) } onto { THE($this) }, killing { OBJECT($victim) } instantly! +comp-kitchen-spike-hook-self = You threw yourself on { THE($hook) }! +comp-kitchen-spike-hook-self-other = { CAPITALIZE(THE($victim)) } threw { REFLEXIVE($victim) } on { THE($hook) }! -comp-kitchen-spike-suicide-other = { CAPITALIZE(THE($victim)) } threw { REFLEXIVE($victim) } on { THE($this) }! -comp-kitchen-spike-suicide-self = You throw yourself on { THE($this) }! +comp-kitchen-spike-hook-other-self = You threw { CAPITALIZE(THE($victim)) } on { THE($hook) }! +comp-kitchen-spike-hook-other = { CAPITALIZE(THE($user)) } threw { CAPITALIZE(THE($victim)) } on { THE($hook) }! -comp-kitchen-spike-knife-needed = You need a knife to do this. -comp-kitchen-spike-remove-meat = You remove some meat from { THE($victim) }. -comp-kitchen-spike-remove-meat-last = You remove the last piece of meat from { THE($victim) }! +comp-kitchen-spike-begin-unhook-self = You begin dragging yourself off { THE($hook) }! +comp-kitchen-spike-begin-unhook-self-other = { CAPITALIZE(THE($victim)) } begins dragging { REFLEXIVE($victim) } off { THE($hook) }! + +comp-kitchen-spike-begin-unhook-other-self = You begin dragging { CAPITALIZE(THE($victim)) } off { THE($hook) }! +comp-kitchen-spike-begin-unhook-other = { CAPITALIZE(THE($user)) } begins dragging { CAPITALIZE(THE($victim)) } off { THE($hook) }! + +comp-kitchen-spike-unhook-self = You got yourself off { THE($hook) }! +comp-kitchen-spike-unhook-self-other = { CAPITALIZE(THE($victim)) } got { REFLEXIVE($victim) } off { THE($hook) }! + +comp-kitchen-spike-unhook-other-self = You got { CAPITALIZE(THE($victim)) } off { THE($hook) }! +comp-kitchen-spike-unhook-other = { CAPITALIZE(THE($user)) } got { CAPITALIZE(THE($victim)) } off { THE($hook) }! + +comp-kitchen-spike-begin-butcher-self = You begin butchering { THE($victim) }! +comp-kitchen-spike-begin-butcher = { CAPITALIZE(THE($user)) } begins to butcher { THE($victim) }! + +comp-kitchen-spike-butcher-self = You butchered { THE($victim) }! +comp-kitchen-spike-butcher = { CAPITALIZE(THE($user)) } butchered { THE($victim) }! + +comp-kitchen-spike-unhook-verb = Unhook + +comp-kitchen-spike-hooked = [color=red]{ CAPITALIZE(THE($victim)) } is on this spike![/color] comp-kitchen-spike-meat-name = { $name } ({ $victim }) + +comp-kitchen-spike-victim-examine = [color=orange]{ CAPITALIZE(SUBJECT($target)) } looks quite lean.[/color] diff --git a/Resources/Locale/en-US/lathe/ui/lathe-menu.ftl b/Resources/Locale/en-US/lathe/ui/lathe-menu.ftl index 076a70447c..c04c095162 100644 --- a/Resources/Locale/en-US/lathe/ui/lathe-menu.ftl +++ b/Resources/Locale/en-US/lathe/ui/lathe-menu.ftl @@ -29,3 +29,9 @@ lathe-menu-silo-linked-message = Silo Linked lathe-menu-fabricating-message = Fabricating... lathe-menu-materials-title = Materials lathe-menu-queue-title = Build Queue +lathe-menu-delete-fabricating-tooltip = Cancel printing the current item. +lathe-menu-delete-item-tooltip = Cancel printing this batch. +lathe-menu-move-up-tooltip = Move this batch ahead in the queue. +lathe-menu-move-down-tooltip = Move this batch back in the queue. +lathe-menu-item-single = {$index}. {$name} +lathe-menu-item-batch = {$index}. {$name} ({$printed}/{$total}) diff --git a/Resources/Locale/en-US/locks/selectable-locks.ftl b/Resources/Locale/en-US/locks/selectable-locks.ftl new file mode 100644 index 0000000000..574e784dd7 --- /dev/null +++ b/Resources/Locale/en-US/locks/selectable-locks.ftl @@ -0,0 +1,16 @@ +selectable-lock-verb-category-name = Add lock + +selectable-lock-no-lock-verb = No lock +selectable-lock-no-lock-popup = No lock has been added to {THE($target)}. + +selectable-lock-voice-verb = Voice Lock +selectable-lock-voice-popup = A voice lock has been added to {THE($target)}. + +selectable-lock-tool-prying-verb = Tool Lock (Crowbar) +selectable-lock-tool-prying-popup = A prying tool lock has been added to {THE($target)}. + +selectable-lock-tool-screwing-verb = Tool Lock (Screwdriver) +selectable-lock-tool-screwing-popup = A screwing tool lock has been added to {THE($target)}. + +selectable-lock-tool-cutting-verb = Tool Lock (Wirecutter) +selectable-lock-tool-cutting-popup = A cutting tool lock has been added to {THE($target)}. diff --git a/Resources/Locale/en-US/locks/voice-trigger-lock.ftl b/Resources/Locale/en-US/locks/voice-trigger-lock.ftl new file mode 100644 index 0000000000..fd2dc38d23 --- /dev/null +++ b/Resources/Locale/en-US/locks/voice-trigger-lock.ftl @@ -0,0 +1,5 @@ +voice-trigger-lock-verb-record = Record lock phrase +voice-trigger-lock-verb-message = Locking the item will disable features that reveal its true nature! + +voice-trigger-lock-on-uninitialized = The display is blank +voice-trigger-lock-on-examine = The display shows the passphrase: "{$keyphrase}" diff --git a/Resources/Locale/en-US/markings/vox.ftl b/Resources/Locale/en-US/markings/vox.ftl index 1ae829ebbf..3cb14df2aa 100644 --- a/Resources/Locale/en-US/markings/vox.ftl +++ b/Resources/Locale/en-US/markings/vox.ftl @@ -53,4 +53,13 @@ marking-VoxTail-vox_tail = Vox Tail (Medium) marking-VoxTail = Vox Tail (Medium) marking-VoxTailBig-vox_tail_big = Vox Tail (Big) -marking-VoxTailBig = Vox Tail (Big) \ No newline at end of file +marking-VoxTailBig = Vox Tail (Big) + +marking-VoxTailSpikes-vox_tail_spikes = Vox Tail (Spiked) +marking-VoxTailSpikes = Vox Tail (Spiked) + +marking-VoxTailDocked-vox_tail_docked = Vox Tail (Vestigial) +marking-VoxTailDocked = Vox Tail (Vestigial) + +marking-VoxTailSplit-vox_tail_split = Vox Tail (Split) +marking-VoxTailSplit = Vox Tail (Split) diff --git a/Resources/Locale/en-US/markings/vulpkanin.ftl b/Resources/Locale/en-US/markings/vulpkanin.ftl new file mode 100644 index 0000000000..371856912a --- /dev/null +++ b/Resources/Locale/en-US/markings/vulpkanin.ftl @@ -0,0 +1,249 @@ +# Ears +marking-VulpEar-vulp = Vulpkanin ears (Base) +marking-VulpEar-vulp-inner = Vulpkanin ears (Inner) +marking-VulpEar = Vulpkanin + +marking-VulpEarFade-vulp = Vulpkanin ears (Base) +marking-VulpEarFade-vulp-fade = Vulpkanin ears (Fade) +marking-VulpEarFade-vulp-inner = Vulpkanin ears (Inner) +marking-VulpEarFade = Vulpkanin (Fade) + +marking-VulpEarSharp-vulp = Vulpkanin ears (Base) +marking-VulpEarSharp-vulp-sharp = Vulpkanin ears (Sharp) +marking-VulpEarSharp-vulp-inner = Vulpkanin ears (Inner) +marking-VulpEarSharp = Vulpkanin (Sharp) + +marking-VulpEarCoyote-coyote = Coyote ears (Base) +marking-VulpEarCoyote-coyote-inner = Coyote ears (Inner) +marking-VulpEarCoyote = Vulpkanin Coyote + +marking-VulpEarJackal-jackal = Jackal ears (Base) +marking-VulpEarJackal-jackal-inner = Jackal ears (Inner) +marking-VulpEarJackal = Vulpkanin Jackal + +marking-VulpEarTerrier-terrier = Terrier ears (Base) +marking-VulpEarTerrier-terrier-inner = Terrier ears (Inner) +marking-VulpEarTerrier = Vulpkanin Terrier + +marking-VulpEarFennec-fennec = Fennec ears (Base) +marking-VulpEarFennec-fennec-inner = Fennec ears (Inner) +marking-VulpEarFennec = Vulpkanin Fennec + +marking-VulpEarFox-fox = Fox ears (Base) +marking-VulpEarFox-fox-inner = Fox ears (Inner) +marking-VulpEarFox = Vulpkanin Fox + +marking-VulpEarOtie-otie = Otie ears (Base) +marking-VulpEarOtie-otie-inner = Otie ears (Inner) +marking-VulpEarOtie = Vulpkanin Otie + +marking-VulpEarShock-shock = Shock ears (Base) +marking-VulpEarShock-inner = Shock ears (Inner) +marking-VulpEarShock = Vulpkanin Shock + + +# Snout + +marking-VulpSnout-snout = Snout +marking-VulpSnout = Vulpkanin Snout + +marking-VulpSnoutNose-snout-nose = Nose +marking-VulpSnoutNose = Vulpkanin Nose + +marking-VulpSnoutVulpine-vulpine = Vulpine +marking-VulpSnoutVulpine = Vulpkanin Vulpine + +marking-VulpSnoutVulpineLines-vulpine-lines = Vulpine Lines +marking-VulpSnoutVulpineLines = Vulpkanin Vulpine Lines + +marking-VulpSnoutBlaze-blaze = Blaze +marking-VulpSnoutBlaze = Vulpkanin Blaze + +marking-VulpSnoutMask-mask = Mask +marking-VulpSnoutMask = Vulpkanin Mask + +marking-VulpSnoutTop-snout-top = Top +marking-VulpSnoutTop = Vulpkanin Snout Top + +marking-VulpSnoutPatch-patch = Patch +marking-VulpSnoutPatch = Vulpkanin Patch + + +# Head + +marking-VulpHeadBlaze-blaze = Blaze +marking-VulpHeadBlaze = Vulpkanin Blaze + +marking-VulpHeadMask-mask = Mask +marking-VulpHeadMask = Vulpkanin Mask + +marking-VulpPatch-patch = Patch +marking-VulpPatch = Vulpkanin Patch + +marking-VulpSlash-slash = Slash +marking-VulpSlash = Vulpkanin Slash + +marking-VulpStripes1-stripes_1 = Stripes +marking-VulpStripes1 = Vulpkanin Stripes 1 + +marking-VulpStripes2-stripes_2 = Stripes +marking-VulpStripes2 = Vulpkanin Stripes 2 + +marking-VulpVulpine-vulpine = Nose +marking-VulpVulpine = Vulpkanin Nose + + +# Tails + +marking-VulpTailFennec-fennec = Fennec tail (Base) +marking-VulpTailFennec-fennec-tip = Fennec tail (Tip) +marking-VulpTailFennec = Vulpkanin Fennec + +marking-VulpTailFluffy-fluffy = Fluffy tail (Base) +marking-VulpTailFluffy-fluffy-tip = Fluffy tail (Tip) +marking-VulpTailFluffy = Vulpkanin Fluffy + +marking-VulpTailHusky-husky = Husky tail (Base) +marking-VulpTailHusky-husky-inner = Husky tail (Inner) +marking-VulpTailHusky-husky-outer = Husky tail (Outer) +marking-VulpTailHusky = Vulpkanin Husky + +marking-VulpTailLong-long = Long tail (Base) +marking-VulpTailLong-long-tip = Long tail (Tip) +marking-VulpTailLong = Vulpkanin Long + +marking-VulpTailVulp-vulp = Vulpkanin tail (Base) +marking-VulpTailVulp-vulp-tip = Vulpkanin tail (Tip) +marking-VulpTailVulp = Vulpkanin + +marking-VulpTailVulpFade-vulp = Vulpkanin tail (Base) +marking-VulpTailVulpFade-vulp-fade = Vulpkanin tail (Fade) +marking-VulpTailVulpFade = Vulpkanin (Fade) + + +# Chest + +marking-VulpBellyCrest-belly_crest = Belly +marking-VulpBellyCrest = Vulpkanin Belly Crest + +marking-VulpBellyFull-belly_full = Belly +marking-VulpBellyFull = Vulpkanin Belly Full + +marking-VulpBellyFox-belly_fox = Belly +marking-VulpBellyFox = Vulpkanin Belly Fox + + +# Arms + +marking-VulpClawsHandLeft = Claws (Left Hand) +marking-VulpClawsHandRight = Claws (Right Hand) + +marking-VulpClawsHandLeft-claws_l_hand = Claws +marking-VulpClawsHandRight-claws_r_hand = Claws + +marking-VulpPointsCrestArmLeft = Crest (Left Arm) +marking-VulpPointsCrestHandLeft = Crest (Left Hand) +marking-VulpPointsCrestArmRight = Crest (Right Arm) +marking-VulpPointsCrestHandRight = Crest (Right Hand) + +marking-VulpPointsCrestArmLeft-crest-arm-l = Crest +marking-VulpPointsCrestHandLeft-crest-hand-l = Crest +marking-VulpPointsCrestArmRight-crest-arm-r = Crest +marking-VulpPointsCrestHandRight-crest-hand-r = Crest + +marking-VulpPointsFadeArmLeft = Fade (Left Arm) +marking-VulpPointsFadeHandLeft = Fade (Left Hand) +marking-VulpPointsFadeArmRight = Fade (Right Arm) +marking-VulpPointsFadeHandRight = Fade (Right Hand) + +marking-VulpPointsFadeArmLeft-points_fade-arm-l = Fade +marking-VulpPointsFadeHandLeft-points_fade-hand-l = Fade +marking-VulpPointsFadeArmRight-points_fade-arm-r = Fade +marking-VulpPointsFadeHandRight-points_fade-hand-r = Fade + +marking-VulpPointsSharpArmLeft = Sharp (Left Arm) +marking-VulpPointsSharpLongArmLeft = Sharp Long (Left Arm) +marking-VulpPointsSharpHandLeft = Sharp (Left Hand) +marking-VulpPointsSharpArmRight = Sharp (Right Arm) +marking-VulpPointsSharpLongArmRight = Sharp Long (Right Arm) +marking-VulpPointsSharpHandRight = Sharp (Right Hand) + +marking-VulpPointsSharpArmLeft-points_sharp-arm-l = Sharp +marking-VulpPointsSharpLongArmLeft-points_sharp-arm-long-l = Sharp Long +marking-VulpPointsSharpHandLeft-points_sharp-hand-l = Sharp +marking-VulpPointsSharpArmRight-points_sharp-arm-r = Sharp +marking-VulpPointsSharpLongArmRight-points_sharp-arm-long-r = Sharp Long +marking-VulpPointsSharpHandRight-points_sharp-hand-r = Sharp + + +# Legs + +marking-VulpClawsFootLeft = Claws (Left Foot) +marking-VulpClawsFootRight = Claws (Right Foot) + +marking-VulpClawsFootLeft-claws_l_foot = Claws +marking-VulpClawsFootRight-claws_r_foot = Claws + +marking-VulpPointsCrestLegLeft = Crest (Left Leg) +marking-VulpPointsCrestFootLeft = Crest (Left Foot) +marking-VulpPointsCrestLegRight = Crest (Right Leg) +marking-VulpPointsCrestFootRight = Crest (Right Foot) + +marking-VulpPointsCrestLegLeft-crest-leg-l = Crest +marking-VulpPointsCrestFootLeft-crest-foot-l = Crest +marking-VulpPointsCrestLegRight-crest-leg-r = Crest +marking-VulpPointsCrestFootRight-crest-foot-r = Crest + +marking-VulpPointsFadeLegLeft = Fade (Left Leg) +marking-VulpPointsFadeFootLeft = Fade (Left Foot) +marking-VulpPointsFadeLegRight = Fade (Right Leg) +marking-VulpPointsFadeFootRight = Fade (Right Foot) + +marking-VulpPointsFadeLegLeft-points_fade-leg-l = Fade +marking-VulpPointsFadeFootLeft-points_fade-foot-l = Fade +marking-VulpPointsFadeLegRight-points_fade-leg-r = Fade +marking-VulpPointsFadeFootRight-points_fade-foot-r = Fade + +marking-VulpPointsSharpLegLeft = Sharp (Left Leg) +marking-VulpPointsSharpFootLeft = Sharp (Left Foot) +marking-VulpPointsSharpLegRight = Sharp (Right Leg) +marking-VulpPointsSharpFootRight = Sharp (Right Foot) + +marking-VulpPointsSharpLegLeft-points_sharp-leg-l = Sharp +marking-VulpPointsSharpFootLeft-points_sharp-foot-l = Sharp +marking-VulpPointsSharpLegRight-points_sharp-leg-r = Sharp +marking-VulpPointsSharpFootRight-points_sharp-foot-r = Sharp + + +# Hair + +marking-VulpHairAdhara = Adhara +marking-VulpHairAnita = Anita +marking-VulpHairApollo = Apollo +marking-VulpHairBelle = Belle +marking-VulpHairBraided = Braided Hair +marking-VulpHairBun = Bun +marking-VulpHairCleanCut = Clean Cut +marking-VulpHairCurl = Curl +marking-VulpHairHawk = Hawk +marking-VulpHairJagged = Jagged +marking-VulpHairJeremy = Jeremy +marking-VulpHairKajam = Kajam +marking-VulpHairKeid = Keid +marking-VulpHairKleeia = Kleeia +marking-VulpHairMizar = Mizar +marking-VulpHairPunkBraided = Punk Braided +marking-VulpHairRaine = Raine +marking-VulpHairRough = Rough +marking-VulpHairShort = Short Hair +marking-VulpHairShort2 = Short Hair 2 +marking-VulpHairSpike = Spike + + +# Facial Hair + +marking-VulpFacialHairRuff = Ruff +marking-VulpFacialHairElder = Elder +marking-VulpFacialHairElderChin = Elder Chin +marking-VulpFacialHairKita = Kita +marking-VulpFacialHairGoatee = Beard (Snout Goatee) diff --git a/Resources/Locale/en-US/mech/mech.ftl b/Resources/Locale/en-US/mech/mech.ftl index 7fac0387ed..95bb7f6ab0 100644 --- a/Resources/Locale/en-US/mech/mech.ftl +++ b/Resources/Locale/en-US/mech/mech.ftl @@ -18,4 +18,6 @@ mech-slot-display = Open Slots: {$amount} mech-no-enter = You cannot pilot this. -mech-eject-pilot-alert = {$user} is pulling the pilot out of the {$item}! \ No newline at end of file +mech-eject-pilot-alert = {$user} is pulling the pilot out of the {$item}! + +mech-construction-guide-string = All mech parts must be attached to the harness. diff --git a/Resources/Locale/en-US/nutrition/components/drink-component.ftl b/Resources/Locale/en-US/nutrition/components/drink-component.ftl deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/Resources/Locale/en-US/paper/book-authorbooks.ftl b/Resources/Locale/en-US/paper/book-authorbooks.ftl index ae886e835a..9d8190aa76 100644 --- a/Resources/Locale/en-US/paper/book-authorbooks.ftl +++ b/Resources/Locale/en-US/paper/book-authorbooks.ftl @@ -151,8 +151,6 @@ book-text-ian-arctic = Ian and Renault were no strangers to adventure, having ex Suddenly, they heard a loud roar from deep within the cave. They cautiously made their way forward, only to come face to face with a massive polar bear. The bear looked at them curiously, and Ian and Renault froze in fear. But then they remembered all the adventures they had been on before, and how they had always managed to help those in need. They bravely approached the bear, making soothing noises and offering it some fish they had brought with them. To their relief, the bear calmed down and even allowed them to pet its thick fur. They spent some time with the friendly bear before bidding it farewell and continuing their Arctic adventure. - At one point, they came across a lost kitten who had strayed too far from her home. Ian and Renault knew just what to do, having rescued stranded sea creatures and helped lost hikers in the past. They used their keen sense of smell to track down the kitten's owner and reunited her with her worried family. - As the day turned into night, they were exhausted but happy from their adventure in the city. They made their way back home, talking excitedly about all the new experiences they had just had. As their journey came to an end, they were sad to leave the frozen wonderland behind. But they knew that they had once again made incredible memories and had proven that no adventure was too big for a brave Corgi and a cunning fox. book-text-ian-desert = Ian and Renault were always up for a new adventure, so when they heard about the mysterious and beautiful desert, they knew they had to go explore it. They packed their bags and set off to experience all that the desert had to offer. @@ -260,4 +258,4 @@ book-text-janitor = [bold][color=black][head=3]The Tales of a Tired Janitor[/hea And the tools they give us! You'd expect state-of-the-art cleaning gadgets, but nope. They raided a dollar store on Earth before launching us into the cosmos. Mops that barely work in microgravity, spray bottles that run out in one use, and don't even get me started on the space janitor jumpsuit. I feel like a reject from a sci-fi B-movie. Speaking of jumpsuits, the lack of respect is astronomical. The scientists and astronauts zoom past in their sleek suits, utterly oblivious to the fact that I'm the unsung hero keeping this place from turning into a cosmic trash heap. I bet they don't even know my name. "Hey, Space Janitor!" That's what I get. No appreciation for the elbow grease I put into keeping their precious station spick and span. And let's remember the hazards. Cleaning up alien slime? Yeah, that's a regular Tuesday for me. One wrong move and I'm dealing with an intergalactic biohazard. It's like playing Russian roulette with space critters that could burst out of some hidden nook and cranny. I signed up to mop floors, not play host to extraterrestrial invaders. - Being a janitor on this so-called Space Station 14 is a cosmic joke. Where did the other 13 stations go? It's not all spacewalks and futuristic gadgets; it's scrubbing toilets and battling alien goo. If anyone thinks space is glamorous, they clearly haven't seen the mess we space janitors deal with every single day. It's time they appreciate the unsung heroes of the space station – the custodians of the cosmos. \ No newline at end of file + Being a janitor on this so-called Space Station 14 is a cosmic joke. Where did the other 13 stations go? It's not all spacewalks and futuristic gadgets; it's scrubbing toilets and battling alien goo. If anyone thinks space is glamorous, they clearly haven't seen the mess we space janitors deal with every single day. It's time they appreciate the unsung heroes of the space station – the custodians of the cosmos. diff --git a/Resources/Locale/en-US/preferences/loadout-groups.ftl b/Resources/Locale/en-US/preferences/loadout-groups.ftl index 53955ed1f6..077462e73b 100644 --- a/Resources/Locale/en-US/preferences/loadout-groups.ftl +++ b/Resources/Locale/en-US/preferences/loadout-groups.ftl @@ -100,6 +100,7 @@ loadout-group-cargo-technician-jumpsuit = Cargo Technician jumpsuit loadout-group-cargo-technician-backpack = Cargo Technician backpack loadout-group-cargo-technician-outerclothing = Cargo Technician outer clothing loadout-group-cargo-technician-shoes = Cargo Technician shoes +loadout-group-cargo-technician-id = Cargo Technician ID loadout-group-salvage-specialist-backpack = Salvage Specialist backpack loadout-group-salvage-specialist-outerclothing = Salvage Specialist outer clothing diff --git a/Resources/Locale/en-US/preferences/ui/markings-picker.ftl b/Resources/Locale/en-US/preferences/ui/markings-picker.ftl index af2e81ce3b..41792cbf9c 100644 --- a/Resources/Locale/en-US/preferences/ui/markings-picker.ftl +++ b/Resources/Locale/en-US/preferences/ui/markings-picker.ftl @@ -21,6 +21,7 @@ markings-category-Head = Head markings-category-HeadTop = Head (Top) markings-category-HeadSide = Head (Side) markings-category-Snout = Snout +markings-category-SnoutCover = Snout (Cover) markings-category-UndergarmentTop = Undergarment (Top) markings-category-UndergarmentBottom = Undergarment (Bottom) markings-category-Chest = Chest diff --git a/Resources/Locale/en-US/random-metadata/random-metadata-formats.ftl b/Resources/Locale/en-US/random-metadata/random-metadata-formats.ftl index fb572b6c7a..3a621695f5 100644 --- a/Resources/Locale/en-US/random-metadata/random-metadata-formats.ftl +++ b/Resources/Locale/en-US/random-metadata/random-metadata-formats.ftl @@ -12,7 +12,7 @@ name-format-dragon = {$part0} {$part1} # " <name>" name-format-nukie-generic = {$part0} {$part1} -name-format-nukie-agent = Agent {$part0} +name-format-nukie-agent = Corpsman {$part0} name-format-nukie-commander = Commander {$part0} name-format-nukie-operator = Operator {$part0} # "<title> <name>" diff --git a/Resources/Locale/en-US/reagents/meta/chemicals.ftl b/Resources/Locale/en-US/reagents/meta/chemicals.ftl index f5dfec7d6a..eca057c9ac 100644 --- a/Resources/Locale/en-US/reagents/meta/chemicals.ftl +++ b/Resources/Locale/en-US/reagents/meta/chemicals.ftl @@ -33,3 +33,6 @@ reagent-desc-cellulose = A crystaline polydextrose polymer, plants swear by this reagent-name-rororium = rororium reagent-desc-rororium = A strange substance which fills the cores of the hivelords that roam the mining asteroid. Thought to be the source of their regenerative powers. + +reagent-name-lye = lye +reagent-desc-lye = A translucent, orange, alkaline solution used in traditional soap production. diff --git a/Resources/Locale/en-US/recipes/tags.ftl b/Resources/Locale/en-US/recipes/tags.ftl index 39d39e7f0c..34eadc37d8 100644 --- a/Resources/Locale/en-US/recipes/tags.ftl +++ b/Resources/Locale/en-US/recipes/tags.ftl @@ -125,6 +125,7 @@ construction-graph-tag-wallmount-substation-circuit-board = wallmount substation construction-graph-tag-surveillance-camera-monitor-board = surveillance camera monitor board construction-graph-tag-television-board = television board construction-graph-tag-freezer-electronics = freezer electronics +construction-graph-tag-turret-control-electronics = sentry turret control panel electronics # crystals construction-graph-tag-cyan-crystal-shard = cyan crystal shard diff --git a/Resources/Locale/en-US/research/components/robotics-console.ftl b/Resources/Locale/en-US/research/components/robotics-console.ftl index a4c82bd032..d3d2bcea48 100644 --- a/Resources/Locale/en-US/research/components/robotics-console.ftl +++ b/Resources/Locale/en-US/research/components/robotics-console.ftl @@ -6,6 +6,7 @@ robotics-console-model = [color=gray]Model:[/color] {$name} # name is not formatted to prevent players trolling robotics-console-designation = [color=gray]Designation:[/color] robotics-console-battery = [color=gray]Battery charge:[/color] [color={$color}]{$charge}[/color]% +robotics-console-hp = [color=gray]Integrity:[/color] [color={$color}]{$hp}[/color]% robotics-console-modules = [color=gray]Modules installed:[/color] {$count} robotics-console-brain = [color=gray]Brain installed:[/color] [color={$brain -> [true] green]Yes diff --git a/Resources/Locale/en-US/robotics/borg_modules.ftl b/Resources/Locale/en-US/robotics/borg_modules.ftl new file mode 100644 index 0000000000..ba5ee602a5 --- /dev/null +++ b/Resources/Locale/en-US/robotics/borg_modules.ftl @@ -0,0 +1,14 @@ +borg-slot-cables-empty = Cables +borg-slot-construction-empty = Construction materials +borg-slot-circuitboards-empty = Circuitboards +borg-slot-flatpacks-empty = Flatpacks +borg-slot-tiles-empty = Floor tiles +borg-slot-topicals-empty = Topicals +borg-slot-small-containers-empty = Small containers +borg-slot-chemical-containers-empty = Chemical containers +borg-slot-documents-empty = Books and papers +borg-slot-soap-empty = Soap +borg-slot-instruments-empty = Instruments +borg-slot-beakers-empty = Beakers +borg-slot-inflatable-door-empty = Inflatable Door +borg-slot-inflatable-wall-empty = Inflatable Wall diff --git a/Resources/Locale/en-US/selectable-component/selectable-component.ftl b/Resources/Locale/en-US/selectable-component/selectable-component.ftl new file mode 100644 index 0000000000..f30c499f76 --- /dev/null +++ b/Resources/Locale/en-US/selectable-component/selectable-component.ftl @@ -0,0 +1 @@ +selectable-component-adder-category-name = Add feature diff --git a/Resources/Locale/en-US/shell.ftl b/Resources/Locale/en-US/shell.ftl index 3edc43bd74..36bebeae35 100644 --- a/Resources/Locale/en-US/shell.ftl +++ b/Resources/Locale/en-US/shell.ftl @@ -5,6 +5,8 @@ shell-command-success = Command successful shell-invalid-command = Invalid command. shell-invalid-command-specific = Invalid {$commandName} command. +shell-can-only-run-from-pre-round-lobby = You can only run this command while the game is in the pre-round lobby. +shell-can-only-run-while-round-is-active = You can only run this command while the game is in a round. shell-cannot-run-command-from-server = You cannot run this command from the server. shell-only-players-can-run-this-command = Only players can run this command. shell-must-be-attached-to-entity = You must be attached to an entity to run this command. diff --git a/Resources/Locale/en-US/species/species.ftl b/Resources/Locale/en-US/species/species.ftl index edae826358..8c0900bb21 100644 --- a/Resources/Locale/en-US/species/species.ftl +++ b/Resources/Locale/en-US/species/species.ftl @@ -10,7 +10,8 @@ species-name-moth = Moth Person species-name-skeleton = Skeleton species-name-vox = Vox species-name-gingerbread = delicious baked good +species-name-vulpkanin = Vulpkanin ## Misc species things -snail-hurt-by-salt-popup = The salty solution burns like acid! \ No newline at end of file +snail-hurt-by-salt-popup = The salty solution burns like acid! diff --git a/Resources/Locale/en-US/stack/stacks.ftl b/Resources/Locale/en-US/stack/stacks.ftl index d83825b614..818ac954c5 100644 --- a/Resources/Locale/en-US/stack/stacks.ftl +++ b/Resources/Locale/en-US/stack/stacks.ftl @@ -234,6 +234,7 @@ stack-asteroid-astro-sand-floor = asteroid astro-sand floor stack-xeno-floor = xeno floor stack-xeno-steel = xeno steel tile stack-xeno-steel-corner = xeno steel corner tile +stack-xenoborg = xenoborg tile stack-xeno-maint = xeno techmaint stack-dark-squiggly = dark steel squiggly tile stack-white-marble-floor = white marble floor diff --git a/Resources/Locale/en-US/station-events/events/random-sentience.ftl b/Resources/Locale/en-US/station-events/events/random-sentience.ftl index 5cf07f4f08..135ec3df5d 100644 --- a/Resources/Locale/en-US/station-events/events/random-sentience.ftl +++ b/Resources/Locale/en-US/station-events/events/random-sentience.ftl @@ -32,9 +32,6 @@ station-event-random-sentience-role-description = You are a sentient { $name }, # Flavors station-event-random-sentience-flavor-mechanical = mechanical station-event-random-sentience-flavor-organic = organic -station-event-random-sentience-flavor-corgi = corgi station-event-random-sentience-flavor-primate = primate station-event-random-sentience-flavor-kobold = kobold -station-event-random-sentience-flavor-slime = slime station-event-random-sentience-flavor-inanimate = inanimate -station-event-random-sentience-flavor-scurret = scurret diff --git a/Resources/Locale/en-US/tiles/tiles.ftl b/Resources/Locale/en-US/tiles/tiles.ftl index 448e8dbc5f..6295712722 100644 --- a/Resources/Locale/en-US/tiles/tiles.ftl +++ b/Resources/Locale/en-US/tiles/tiles.ftl @@ -139,6 +139,7 @@ tiles-xeno-floor = xeno floor tiles-xeno-steel = xeno steel tile tiles-xeno-steel-corner = xeno steel corner tile tiles-xeno-maint = xeno techmaint +tiles-xenoborg-floor = xenoborg tile tiles-dark-squiggly = dark steel squiggly tile tiles-white-marble = white marble tile tiles-dark-marble = dark marble tile diff --git a/Resources/Locale/en-US/traits/traits.ftl b/Resources/Locale/en-US/traits/traits.ftl index d7ab6ca76a..3895ce162d 100644 --- a/Resources/Locale/en-US/traits/traits.ftl +++ b/Resources/Locale/en-US/traits/traits.ftl @@ -65,3 +65,9 @@ trait-spanish-desc = Hola señor, donde esta la biblioteca. trait-painnumbness-name = Numb trait-painnumbness-desc = You lack any sense of feeling pain, being unaware of how hurt you may be. + +trait-hemophilia-name = Hemophilia +trait-hemophilia-desc = Your body fails to make blood clots. + +trait-impaired-mobility-name = Impaired Mobility +trait-impaired-mobility-desc = You have difficulty moving without a mobility aid. diff --git a/Resources/Maps/Misc/terminal.yml b/Resources/Maps/Misc/terminal.yml index 8ca17b4ebc..68897953f7 100644 --- a/Resources/Maps/Misc/terminal.yml +++ b/Resources/Maps/Misc/terminal.yml @@ -1,9 +1,21 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 266.0.0 + forkId: "" + forkVersion: "" + time: 08/31/2025 17:07:54 + entityCount: 935 +maps: [] +grids: +- 818 +orphans: +- 818 +nullspace: [] tilemap: 0: Space 7: FloorAsteroidSand + 1: FloorAstroAsteroidSandBorderless 29: FloorDark 38: FloorDarkPlastic 47: FloorGrass @@ -27,28 +39,28 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAHQAAAAADBwAAAAAAHQAAAAABWQAAAAACHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABWQAAAAADHQAAAAAABwAAAAAAHQAAAAAAWQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABWQAAAAACHQAAAAADBwAAAAAAHQAAAAABWQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACWQAAAAAAHQAAAAAABwAAAAAAHQAAAAABWQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADTAAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACTAAAAAAAWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAATAAAAAAAWQAAAAACWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAAATAAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABAAAAAAAAeQAAAAAAHQAAAAABWQAAAAABWQAAAAABTAAAAAAAWQAAAAAATAAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAD - version: 6 + tiles: AAAAAAAAAHkAAAAAAAAdAAAAAAEAWQAAAAACAB0AAAAAAgABAAAAAAAAHQAAAAABAFkAAAAAAwAdAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAHQAAAAADAFkAAAAAAgAdAAAAAAMAAQAAAAAAAB0AAAAAAgBZAAAAAAEAHQAAAAACAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAgBZAAAAAAMAHQAAAAADAAEAAAAAAAAdAAAAAAAAWQAAAAADAB0AAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAAAWQAAAAACAB0AAAAAAgABAAAAAAAAHQAAAAACAFkAAAAAAQAdAAAAAAIAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAQBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABpAAAAAAAAeQAAAAAAAGkAAAAAAABZAAAAAAMAWQAAAAAAAEwAAAAAAgBZAAAAAAEAWQAAAAAAAGkAAAAAAAB5AAAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAIATAAAAAADAFkAAAAAAwBZAAAAAAMAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAgBMAAAAAAAAWQAAAAAAAFkAAAAAAwB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAEAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAIAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAHQAAAAACAFkAAAAAAABZAAAAAAMATAAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAgBZAAAAAAEAAAAAAAAAAHkAAAAAAAAdAAAAAAAAWQAAAAACAFkAAAAAAwBMAAAAAAMAWQAAAAABAEwAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAADAA== + version: 7 0,0: ind: 0,0 - tiles: WQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAATQAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: WQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAIAeQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAMAWQAAAAADAFkAAAAAAwB5AAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAAAC8AAAAAAAB5AAAAAAAAaQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAEAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8AAAAAAAAvAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvAAAAAAAALwAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAATQAAAAAAAGgAAAAAAABoAAAAAAAAaQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADWQAAAAABHQAAAAAABwAAAAAAHQAAAAABWQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACWQAAAAACHQAAAAAABwAAAAAAHQAAAAACWQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABHQAAAAADBwAAAAAAHQAAAAABWQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADWQAAAAADHQAAAAACBwAAAAAAHQAAAAADWQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACTAAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAATAAAAAAAWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAATAAAAAAAWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAHQAAAAAAAFkAAAAAAwAdAAAAAAIAAQAAAAAAAB0AAAAAAgBZAAAAAAMAHQAAAAADAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAgBZAAAAAAAAHQAAAAABAAEAAAAAAAAdAAAAAAIAWQAAAAACAB0AAAAAAQB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAMAWQAAAAADAB0AAAAAAAABAAAAAAAAHQAAAAAAAFkAAAAAAQAdAAAAAAEAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAHQAAAAABAFkAAAAAAQAdAAAAAAEAAQAAAAAAAB0AAAAAAgBZAAAAAAMAHQAAAAABAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAAHkAAAAAAABpAAAAAAAAWQAAAAAAAFkAAAAAAQBMAAAAAAAAWQAAAAADAFkAAAAAAQBpAAAAAAAAeQAAAAAAAGkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAwBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAACAEwAAAAAAgBZAAAAAAAAWQAAAAACAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAQB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAMATAAAAAAAAFkAAAAAAwBZAAAAAAMAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAABAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAADAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAwB5AAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAIAeQAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAABAHkAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADAAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAHkAAAAAAAAdAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAABAAAAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAIAHQAAAAABAB0AAAAAAwAdAAAAAAAAHQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAACAFkAAAAAAQAAAAAAAAAAeQAAAAAAAHkAAAAAAAAmAAAAAAAAJgAAAAABACYAAAAAAwAmAAAAAAIAJgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAMAAAAAAAAAAAAAAAAAAAAmAAAAAAMAJgAAAAAAACYAAAAAAgAmAAAAAAAAJgAAAAACACYAAAAAAAAmAAAAAAEAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAACACYAAAAAAwAmAAAAAAEAJgAAAAAAACYAAAAAAQAmAAAAAAMAJgAAAAACAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmAAAAAAEAJgAAAAADACYAAAAAAgAmAAAAAAEAJgAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAAATAAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADTAAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAADAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAATAAAAAABAFkAAAAAAwBZAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAAHkAAAAAAABpAAAAAAAAWQAAAAAAAFkAAAAAAgBMAAAAAAEAWQAAAAABAFkAAAAAAgBpAAAAAAAAeQAAAAAAAGkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAA== + version: 7 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABTAAAAAAAWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABTAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAABMAAAAAAAAWQAAAAABAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAwBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABpAAAAAAAAeQAAAAAAAGkAAAAAAABZAAAAAAEAWQAAAAAAAEwAAAAAAQBZAAAAAAIAWQAAAAACAGkAAAAAAAB5AAAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAACAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -62,6 +74,7 @@ entities: id: Empty - type: OccluderTree - type: Shuttle + dampingModifier: 0.25 - type: Gravity gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg @@ -788,130 +801,113 @@ entities: version: 2 data: tiles: - -1,-1: - 0: 65535 - 0,0: - 0: 65535 - 0,-1: - 0: 65535 - -1,0: - 0: 65535 -4,-3: - 0: 53247 + 0: 35064 -4,-4: - 0: 61166 - -4,-2: - 0: 60620 + 0: 52428 -4,-1: - 0: 61166 + 0: 52428 + -4,-2: + 0: 2184 + -4,0: + 0: 35020 + -4,-5: + 0: 36744 -3,-4: 0: 65535 -3,-3: 0: 65535 -3,-2: - 0: 65535 + 0: 32767 -3,-1: 0: 65535 + -3,-5: + 0: 65535 + -3,0: + 0: 65535 -2,-4: - 0: 13107 + 0: 4369 -2,-3: - 0: 6007 - -2,-2: - 0: 61713 + 0: 112 -2,-1: - 0: 65535 - -1,-2: - 0: 61440 + 0: 65297 + -2,0: + 0: 2271 + 1: 8192 + -1,-1: + 0: 65280 + -1,0: + 0: 61439 + 0,-1: + 0: 65280 + 0,0: + 0: 49151 0,1: - 0: 4095 - 1: 61440 + 0: 63675 + -1,1: + 0: 61678 + 0,2: + 0: 15 + 1: 3840 + -1,2: + 0: 15 + 1: 3840 1,0: - 0: 65535 + 0: 35039 + 1: 8192 + 1,2: + 0: 1 + 1: 802 + 1,-1: + 0: 65484 1,1: - 0: 959 - 1: 12288 + 1: 8738 2,0: 0: 65535 2,1: - 0: 255 - 3,0: - 0: 4915 - 3,1: - 0: 1 - 0,-2: - 0: 61440 - 1,-3: - 0: 53247 - 1,-2: - 0: 64716 - 1,-1: + 0: 7 + 2,-1: 0: 65535 + 3,0: + 0: 17 + 3,-1: + 0: 4369 + 1,-3: + 0: 35064 1,-4: - 0: 61166 + 0: 52428 + 1,-2: + 0: 2184 + 1,-5: + 0: 36744 2,-4: 0: 65535 2,-3: 0: 65535 2,-2: - 0: 65535 - 2,-1: - 0: 65535 - 3,-4: - 0: 13107 - 3,-3: - 0: 6007 - 3,-2: - 0: 12561 - 3,-1: - 0: 13107 - -4,0: - 0: 52974 - -4,1: - 0: 140 - -3,0: - 0: 65535 - -3,1: - 0: 255 - -2,0: - 0: 65535 - -2,1: - 0: 3823 - 1: 57344 - -1,1: - 0: 4095 - 1: 61440 - 1,-5: - 0: 65532 - 1,-6: - 0: 51200 - 2,-6: - 0: 65280 + 0: 32767 2,-5: 0: 65535 - 3,-6: - 0: 4096 - 3,-5: - 0: 30577 - -4,-5: - 0: 65532 - -4,-6: - 0: 51200 - -3,-6: - 0: 65280 - -3,-5: - 0: 65535 - -2,-6: - 0: 4096 - -2,-5: - 0: 30577 - 0,2: - 1: 4095 - 1,2: - 1: 819 + 3,-4: + 0: 4369 + 3,-3: + 0: 112 + -3,1: + 0: 7 + -2,1: + 1: 8738 + 0: 34952 -2,2: - 1: 3822 - -1,2: - 1: 4095 + 1: 3618 + 0: 8 + 2,-6: + 0: 28672 + 3,-5: + 0: 1792 + -3,-6: + 0: 28672 + -2,-5: + 0: 1792 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -929,7 +925,7 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + immutable: True moles: - 0 - 0 @@ -949,18 +945,15 @@ entities: - type: SpreaderGrid - type: GridPathfinding - type: Godmode + - type: ImplicitRoof - proto: AirlockExternalGlass entities: - uid: 2 components: - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,-10.5 parent: 818 - - type: Godmode - missingComponents: - - RCDDeconstructable - - Destructible - - Construction - uid: 3 components: - type: Transform @@ -1389,6 +1382,8 @@ entities: - type: BatterySelfRecharger autoRechargeRate: 50000 autoRecharge: True + - type: Fixtures + fixtures: {} missingComponents: - Construction - Destructible @@ -1404,6 +1399,8 @@ entities: - type: BatterySelfRecharger autoRechargeRate: 50000 autoRecharge: True + - type: Fixtures + fixtures: {} missingComponents: - Construction - Destructible @@ -1419,6 +1416,8 @@ entities: - type: BatterySelfRecharger autoRechargeRate: 50000 autoRecharge: True + - type: Fixtures + fixtures: {} missingComponents: - Construction - Destructible @@ -1434,6 +1433,8 @@ entities: - type: BatterySelfRecharger autoRechargeRate: 50000 autoRecharge: True + - type: Fixtures + fixtures: {} missingComponents: - Construction - Destructible @@ -1450,6 +1451,8 @@ entities: - type: BatterySelfRecharger autoRechargeRate: 50000 autoRecharge: True + - type: Fixtures + fixtures: {} missingComponents: - Construction - Destructible @@ -1465,6 +1468,8 @@ entities: - type: BatterySelfRecharger autoRechargeRate: 50000 autoRecharge: True + - type: Fixtures + fixtures: {} missingComponents: - Construction - Destructible @@ -1476,82 +1481,84 @@ entities: pos: -7.5,-5.5 parent: 818 - type: Godmode - missingComponents: - - Construction + - type: Fixtures + fixtures: {} - uid: 633 components: - type: Transform pos: 6.5,-5.5 parent: 818 - type: Godmode - missingComponents: - - Construction + - type: Fixtures + fixtures: {} - uid: 928 components: - type: Transform pos: -6.5,-14.5 parent: 818 - type: Godmode - missingComponents: - - Construction + - type: Fixtures + fixtures: {} - uid: 929 components: - type: Transform pos: 5.5,-14.5 parent: 818 - type: Godmode - missingComponents: - - Construction -- proto: AtmosDeviceFanTiny + - type: Fixtures + fixtures: {} +- proto: AtmosDeviceFanDirectional entities: - uid: 296 components: - type: Transform - pos: -6.5,-10.5 + rot: 1.5707963267948966 rad + pos: 14.5,-17.5 parent: 818 - - type: Godmode - uid: 297 components: - type: Transform - pos: -14.5,-10.5 + rot: 1.5707963267948966 rad + pos: 14.5,-10.5 parent: 818 - - type: Godmode - uid: 298 components: - type: Transform - pos: -14.5,-17.5 + rot: 1.5707963267948966 rad + pos: -5.5,-17.5 parent: 818 - - type: Godmode - uid: 299 components: - type: Transform - pos: -6.5,-17.5 + rot: 1.5707963267948966 rad + pos: -5.5,-10.5 parent: 818 - - type: Godmode - uid: 300 components: - type: Transform - pos: 5.5,-17.5 + rot: -1.5707963267948966 rad + pos: -15.5,-17.5 parent: 818 - - type: Godmode - - uid: 301 - components: - - type: Transform - pos: 5.5,-10.5 - parent: 818 - - type: Godmode - uid: 302 components: - type: Transform - pos: 13.5,-10.5 + rot: -1.5707963267948966 rad + pos: 4.5,-10.5 parent: 818 - - type: Godmode - uid: 303 components: - type: Transform - pos: 13.5,-17.5 + rot: -1.5707963267948966 rad + pos: 4.5,-17.5 parent: 818 - - type: Godmode + - uid: 638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-10.5 + parent: 818 +- proto: AtmosDeviceFanTiny + entities: - uid: 809 components: - type: Transform @@ -1566,9 +1573,11 @@ entities: pos: -10.5,5.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - - ApcPowerReceiver - Destructible + - ApcPowerReceiver - proto: BlockGameArcade entities: - uid: 727 @@ -3774,7 +3783,6 @@ entities: - uid: 417 components: - type: Transform - rot: 1.5707963267948966 rad pos: -3.5,8.5 parent: 818 - type: Godmode @@ -3784,6 +3792,12 @@ entities: - Construction - proto: Catwalk entities: + - uid: 301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-17.5 + parent: 818 - uid: 580 components: - type: Transform @@ -3894,6 +3908,48 @@ entities: - Construction - Destructible - RCDDeconstructable + - uid: 918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 818 + - uid: 930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-10.5 + parent: 818 + - uid: 931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-17.5 + parent: 818 + - uid: 932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-17.5 + parent: 818 + - uid: 933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 818 + - uid: 934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-10.5 + parent: 818 + - uid: 935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-17.5 + parent: 818 - proto: Chair entities: - uid: 592 @@ -4380,6 +4436,8 @@ entities: pos: -5.5,2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - Construction @@ -4391,6 +4449,8 @@ entities: pos: 4.5,2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - Construction @@ -5142,6 +5202,8 @@ entities: pos: -6.5,-2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 816 @@ -5150,6 +5212,8 @@ entities: pos: 5.5,-2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: FirelockEdge @@ -5477,6 +5541,15 @@ entities: missingComponents: - Anchorable - Destructible +- proto: GhostWarpPoint + entities: + - uid: 916 + components: + - type: MetaData + name: Terminal + - type: Transform + pos: -0.5,1.5 + parent: 818 - proto: GravityGeneratorMini entities: - uid: 808 @@ -5574,7 +5647,6 @@ entities: - uid: 125 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-19.5 parent: 818 - type: Godmode @@ -5585,7 +5657,6 @@ entities: - uid: 126 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-20.5 parent: 818 - type: Godmode @@ -5596,7 +5667,6 @@ entities: - uid: 127 components: - type: Transform - rot: 1.5707963267948966 rad pos: -8.5,-20.5 parent: 818 - type: Godmode @@ -5607,7 +5677,6 @@ entities: - uid: 128 components: - type: Transform - rot: 1.5707963267948966 rad pos: -8.5,-21.5 parent: 818 - type: Godmode @@ -5618,7 +5687,6 @@ entities: - uid: 129 components: - type: Transform - rot: 1.5707963267948966 rad pos: -9.5,-21.5 parent: 818 - type: Godmode @@ -5629,7 +5697,6 @@ entities: - uid: 130 components: - type: Transform - rot: 1.5707963267948966 rad pos: -11.5,-21.5 parent: 818 - type: Godmode @@ -5640,7 +5707,6 @@ entities: - uid: 131 components: - type: Transform - rot: 1.5707963267948966 rad pos: -12.5,-21.5 parent: 818 - type: Godmode @@ -5651,7 +5717,6 @@ entities: - uid: 132 components: - type: Transform - rot: 1.5707963267948966 rad pos: -12.5,-20.5 parent: 818 - type: Godmode @@ -5662,7 +5727,6 @@ entities: - uid: 133 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-20.5 parent: 818 - type: Godmode @@ -5673,7 +5737,6 @@ entities: - uid: 134 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-19.5 parent: 818 - type: Godmode @@ -5764,7 +5827,6 @@ entities: - uid: 143 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-8.5 parent: 818 - type: Godmode @@ -5775,7 +5837,6 @@ entities: - uid: 144 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-7.5 parent: 818 - type: Godmode @@ -5786,7 +5847,6 @@ entities: - uid: 145 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-6.5 parent: 818 - type: Godmode @@ -5797,7 +5857,6 @@ entities: - uid: 147 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-8.5 parent: 818 - type: Godmode @@ -5808,7 +5867,6 @@ entities: - uid: 148 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-7.5 parent: 818 - type: Godmode @@ -5819,7 +5877,6 @@ entities: - uid: 149 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-6.5 parent: 818 - type: Godmode @@ -5830,7 +5887,6 @@ entities: - uid: 151 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-8.5 parent: 818 - type: Godmode @@ -5841,7 +5897,6 @@ entities: - uid: 152 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-7.5 parent: 818 - type: Godmode @@ -5852,7 +5907,6 @@ entities: - uid: 153 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-6.5 parent: 818 - type: Godmode @@ -5863,7 +5917,6 @@ entities: - uid: 155 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-8.5 parent: 818 - type: Godmode @@ -5874,7 +5927,6 @@ entities: - uid: 156 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-7.5 parent: 818 - type: Godmode @@ -5885,7 +5937,6 @@ entities: - uid: 157 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-6.5 parent: 818 - type: Godmode @@ -5896,7 +5947,6 @@ entities: - uid: 167 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-19.5 parent: 818 - type: Godmode @@ -5907,7 +5957,6 @@ entities: - uid: 168 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-20.5 parent: 818 - type: Godmode @@ -5918,7 +5967,6 @@ entities: - uid: 169 components: - type: Transform - rot: 1.5707963267948966 rad pos: 11.5,-20.5 parent: 818 - type: Godmode @@ -5929,7 +5977,6 @@ entities: - uid: 170 components: - type: Transform - rot: 1.5707963267948966 rad pos: 11.5,-21.5 parent: 818 - type: Godmode @@ -5940,7 +5987,6 @@ entities: - uid: 171 components: - type: Transform - rot: 1.5707963267948966 rad pos: 10.5,-21.5 parent: 818 - type: Godmode @@ -5951,7 +5997,6 @@ entities: - uid: 172 components: - type: Transform - rot: 1.5707963267948966 rad pos: 8.5,-21.5 parent: 818 - type: Godmode @@ -5962,7 +6007,6 @@ entities: - uid: 173 components: - type: Transform - rot: 1.5707963267948966 rad pos: 7.5,-21.5 parent: 818 - type: Godmode @@ -5973,7 +6017,6 @@ entities: - uid: 174 components: - type: Transform - rot: 1.5707963267948966 rad pos: 7.5,-20.5 parent: 818 - type: Godmode @@ -5984,7 +6027,6 @@ entities: - uid: 175 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-20.5 parent: 818 - type: Godmode @@ -5995,7 +6037,6 @@ entities: - uid: 176 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-19.5 parent: 818 - type: Godmode @@ -6418,6 +6459,8 @@ entities: pos: -6.5,1.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PosterLegitEnlist @@ -6428,6 +6471,8 @@ entities: pos: -14.5,1.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PosterLegitHighClassMartini @@ -6438,6 +6483,8 @@ entities: pos: -6.5,-3.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PosterLegitJustAWeekAway @@ -6448,6 +6495,8 @@ entities: pos: 5.5,1.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PosterLegitNanomichiAd @@ -6458,6 +6507,8 @@ entities: pos: -4.5,3.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PosterLegitNanotrasenLogo @@ -6468,6 +6519,8 @@ entities: pos: -7.5,-11.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 247 @@ -6476,6 +6529,8 @@ entities: pos: -13.5,-4.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 248 @@ -6484,6 +6539,8 @@ entities: pos: 12.5,-4.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 249 @@ -6492,6 +6549,8 @@ entities: pos: 6.5,-16.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 250 @@ -6500,6 +6559,8 @@ entities: pos: -13.5,-16.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 251 @@ -6508,6 +6569,8 @@ entities: pos: 12.5,-11.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 922 @@ -6516,6 +6579,8 @@ entities: pos: -0.5,6.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PosterLegitNTTGC @@ -6526,6 +6591,8 @@ entities: pos: 5.5,-3.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PosterLegitPDAAd @@ -6536,6 +6603,8 @@ entities: pos: 12.5,-16.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PosterLegitVacation @@ -6546,6 +6615,8 @@ entities: pos: -7.5,-16.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PosterLegitWorkForAFuture @@ -6556,6 +6627,8 @@ entities: pos: 12.5,2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PottedPlantRandom @@ -6623,7 +6696,6 @@ entities: - uid: 19 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-20.5 parent: 818 - type: Godmode @@ -6634,7 +6706,6 @@ entities: - uid: 20 components: - type: Transform - rot: 1.5707963267948966 rad pos: -8.5,-20.5 parent: 818 - type: Godmode @@ -6645,7 +6716,6 @@ entities: - uid: 21 components: - type: Transform - rot: 1.5707963267948966 rad pos: -8.5,-21.5 parent: 818 - type: Godmode @@ -6656,7 +6726,6 @@ entities: - uid: 22 components: - type: Transform - rot: 1.5707963267948966 rad pos: -9.5,-21.5 parent: 818 - type: Godmode @@ -6667,7 +6736,6 @@ entities: - uid: 24 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-19.5 parent: 818 - type: Godmode @@ -6678,7 +6746,6 @@ entities: - uid: 25 components: - type: Transform - rot: 1.5707963267948966 rad pos: -11.5,-21.5 parent: 818 - type: Godmode @@ -6689,7 +6756,6 @@ entities: - uid: 26 components: - type: Transform - rot: 1.5707963267948966 rad pos: -12.5,-21.5 parent: 818 - type: Godmode @@ -6700,7 +6766,6 @@ entities: - uid: 27 components: - type: Transform - rot: 1.5707963267948966 rad pos: -12.5,-20.5 parent: 818 - type: Godmode @@ -6711,7 +6776,6 @@ entities: - uid: 28 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-20.5 parent: 818 - type: Godmode @@ -6722,7 +6786,6 @@ entities: - uid: 29 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-19.5 parent: 818 - type: Godmode @@ -6733,7 +6796,6 @@ entities: - uid: 30 components: - type: Transform - rot: 1.5707963267948966 rad pos: 8.5,-21.5 parent: 818 - type: Godmode @@ -6744,7 +6806,6 @@ entities: - uid: 31 components: - type: Transform - rot: 1.5707963267948966 rad pos: 7.5,-21.5 parent: 818 - type: Godmode @@ -6755,7 +6816,6 @@ entities: - uid: 32 components: - type: Transform - rot: 1.5707963267948966 rad pos: 7.5,-20.5 parent: 818 - type: Godmode @@ -6766,7 +6826,6 @@ entities: - uid: 33 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-20.5 parent: 818 - type: Godmode @@ -6777,7 +6836,6 @@ entities: - uid: 34 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-19.5 parent: 818 - type: Godmode @@ -6788,7 +6846,6 @@ entities: - uid: 35 components: - type: Transform - rot: 1.5707963267948966 rad pos: 10.5,-21.5 parent: 818 - type: Godmode @@ -6799,7 +6856,6 @@ entities: - uid: 36 components: - type: Transform - rot: 1.5707963267948966 rad pos: 11.5,-21.5 parent: 818 - type: Godmode @@ -6810,7 +6866,6 @@ entities: - uid: 37 components: - type: Transform - rot: 1.5707963267948966 rad pos: 11.5,-20.5 parent: 818 - type: Godmode @@ -6821,7 +6876,6 @@ entities: - uid: 38 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-20.5 parent: 818 - type: Godmode @@ -6832,7 +6886,6 @@ entities: - uid: 39 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-19.5 parent: 818 - type: Godmode @@ -6883,7 +6936,6 @@ entities: - uid: 100 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-8.5 parent: 818 - type: Godmode @@ -6934,7 +6986,6 @@ entities: - uid: 109 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-8.5 parent: 818 - type: Godmode @@ -6945,7 +6996,6 @@ entities: - uid: 110 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-7.5 parent: 818 - type: Godmode @@ -6956,7 +7006,6 @@ entities: - uid: 111 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-6.5 parent: 818 - type: Godmode @@ -6967,7 +7016,6 @@ entities: - uid: 113 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-6.5 parent: 818 - type: Godmode @@ -6978,7 +7026,6 @@ entities: - uid: 115 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-7.5 parent: 818 - type: Godmode @@ -6989,7 +7036,6 @@ entities: - uid: 116 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-8.5 parent: 818 - type: Godmode @@ -7000,7 +7046,6 @@ entities: - uid: 117 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-7.5 parent: 818 - type: Godmode @@ -7011,7 +7056,6 @@ entities: - uid: 118 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-6.5 parent: 818 - type: Godmode @@ -7022,7 +7066,6 @@ entities: - uid: 121 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-8.5 parent: 818 - type: Godmode @@ -7033,7 +7076,6 @@ entities: - uid: 122 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-7.5 parent: 818 - type: Godmode @@ -7044,7 +7086,6 @@ entities: - uid: 123 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-6.5 parent: 818 - type: Godmode @@ -7540,6 +7581,8 @@ entities: pos: -2.5,-2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: SignNanotrasen2 @@ -7550,6 +7593,8 @@ entities: pos: -1.5,-2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: SignNanotrasen3 @@ -7560,6 +7605,8 @@ entities: pos: -0.5,-2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: SignNanotrasen4 @@ -7570,6 +7617,8 @@ entities: pos: 0.5,-2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: SignNanotrasen5 @@ -7580,6 +7629,8 @@ entities: pos: 1.5,-2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: SignNosmoking @@ -7590,6 +7641,8 @@ entities: pos: -7.5,2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: SignShipDock @@ -7600,6 +7653,8 @@ entities: pos: 6.5,-4.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 245 @@ -7608,6 +7663,8 @@ entities: pos: -7.5,-4.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: SignSpace @@ -7618,6 +7675,8 @@ entities: pos: 12.5,-18.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 640 @@ -7626,6 +7685,8 @@ entities: pos: -7.5,-18.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 688 @@ -7634,6 +7695,8 @@ entities: pos: -13.5,-18.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 689 @@ -7642,6 +7705,8 @@ entities: pos: -7.5,-9.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 691 @@ -7650,6 +7715,8 @@ entities: pos: -13.5,-9.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 705 @@ -7658,6 +7725,8 @@ entities: pos: 12.5,-9.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 709 @@ -7666,6 +7735,8 @@ entities: pos: 6.5,-9.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 817 @@ -7674,6 +7745,8 @@ entities: pos: 6.5,-18.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 819 @@ -7682,6 +7755,8 @@ entities: pos: 4.5,7.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: SinkWide @@ -8256,7 +8331,6 @@ entities: - uid: 585 components: - type: Transform - rot: 1.5707963267948966 rad pos: -9.5,2.5 parent: 818 - type: Godmode @@ -8266,7 +8340,6 @@ entities: - uid: 707 components: - type: Transform - rot: -1.5707963267948966 rad pos: -10.5,4.5 parent: 818 - type: Godmode @@ -8276,7 +8349,6 @@ entities: - uid: 751 components: - type: Transform - rot: -1.5707963267948966 rad pos: -11.5,4.5 parent: 818 - type: Godmode @@ -8286,7 +8358,6 @@ entities: - uid: 796 components: - type: Transform - rot: -1.5707963267948966 rad pos: -10.5,2.5 parent: 818 - type: Godmode @@ -8296,7 +8367,6 @@ entities: - uid: 797 components: - type: Transform - rot: -1.5707963267948966 rad pos: -12.5,2.5 parent: 818 - type: Godmode @@ -8306,7 +8376,6 @@ entities: - uid: 798 components: - type: Transform - rot: -1.5707963267948966 rad pos: -11.5,2.5 parent: 818 - type: Godmode @@ -8493,7 +8562,6 @@ entities: - uid: 10 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-4.5 parent: 818 - type: Godmode @@ -8502,7 +8570,6 @@ entities: - uid: 23 components: - type: Transform - rot: 1.5707963267948966 rad pos: -10.5,-21.5 parent: 818 - type: Godmode @@ -8511,7 +8578,6 @@ entities: - uid: 40 components: - type: Transform - rot: 1.5707963267948966 rad pos: 9.5,-21.5 parent: 818 - type: Godmode @@ -8520,7 +8586,6 @@ entities: - uid: 41 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-18.5 parent: 818 - type: Godmode @@ -8529,7 +8594,6 @@ entities: - uid: 42 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,-18.5 parent: 818 - type: Godmode @@ -8538,7 +8602,6 @@ entities: - uid: 43 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,-18.5 parent: 818 - type: Godmode @@ -8547,7 +8610,6 @@ entities: - uid: 44 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-18.5 parent: 818 - type: Godmode @@ -8556,7 +8618,6 @@ entities: - uid: 45 components: - type: Transform - rot: 1.5707963267948966 rad pos: 13.5,-18.5 parent: 818 - type: Godmode @@ -8565,7 +8626,6 @@ entities: - uid: 46 components: - type: Transform - rot: 1.5707963267948966 rad pos: 14.5,-18.5 parent: 818 - type: Godmode @@ -8574,7 +8634,6 @@ entities: - uid: 47 components: - type: Transform - rot: 1.5707963267948966 rad pos: -5.5,-18.5 parent: 818 - type: Godmode @@ -8583,7 +8642,6 @@ entities: - uid: 48 components: - type: Transform - rot: 1.5707963267948966 rad pos: -6.5,-18.5 parent: 818 - type: Godmode @@ -8592,7 +8650,6 @@ entities: - uid: 49 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-18.5 parent: 818 - type: Godmode @@ -8601,7 +8658,6 @@ entities: - uid: 50 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-18.5 parent: 818 - type: Godmode @@ -8610,7 +8666,6 @@ entities: - uid: 51 components: - type: Transform - rot: 1.5707963267948966 rad pos: -14.5,-18.5 parent: 818 - type: Godmode @@ -8619,7 +8674,6 @@ entities: - uid: 52 components: - type: Transform - rot: 1.5707963267948966 rad pos: -15.5,-18.5 parent: 818 - type: Godmode @@ -8628,7 +8682,6 @@ entities: - uid: 53 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-9.5 parent: 818 - type: Godmode @@ -8637,7 +8690,6 @@ entities: - uid: 54 components: - type: Transform - rot: 1.5707963267948966 rad pos: -14.5,-9.5 parent: 818 - type: Godmode @@ -8646,7 +8698,6 @@ entities: - uid: 55 components: - type: Transform - rot: 1.5707963267948966 rad pos: -15.5,-9.5 parent: 818 - type: Godmode @@ -8655,7 +8706,6 @@ entities: - uid: 56 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-9.5 parent: 818 - type: Godmode @@ -8664,7 +8714,6 @@ entities: - uid: 57 components: - type: Transform - rot: 1.5707963267948966 rad pos: -6.5,-9.5 parent: 818 - type: Godmode @@ -8673,7 +8722,6 @@ entities: - uid: 58 components: - type: Transform - rot: 1.5707963267948966 rad pos: -5.5,-9.5 parent: 818 - type: Godmode @@ -8682,7 +8730,6 @@ entities: - uid: 59 components: - type: Transform - rot: 1.5707963267948966 rad pos: -5.5,-11.5 parent: 818 - type: Godmode @@ -8691,7 +8738,6 @@ entities: - uid: 60 components: - type: Transform - rot: 1.5707963267948966 rad pos: -6.5,-11.5 parent: 818 - type: Godmode @@ -8700,7 +8746,6 @@ entities: - uid: 61 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-11.5 parent: 818 - type: Godmode @@ -8709,7 +8754,6 @@ entities: - uid: 62 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-11.5 parent: 818 - type: Godmode @@ -8718,7 +8762,6 @@ entities: - uid: 63 components: - type: Transform - rot: 1.5707963267948966 rad pos: -14.5,-11.5 parent: 818 - type: Godmode @@ -8727,7 +8770,6 @@ entities: - uid: 64 components: - type: Transform - rot: 1.5707963267948966 rad pos: -15.5,-11.5 parent: 818 - type: Godmode @@ -8736,7 +8778,6 @@ entities: - uid: 65 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-16.5 parent: 818 - type: Godmode @@ -8745,7 +8786,6 @@ entities: - uid: 66 components: - type: Transform - rot: 1.5707963267948966 rad pos: -14.5,-16.5 parent: 818 - type: Godmode @@ -8754,7 +8794,6 @@ entities: - uid: 67 components: - type: Transform - rot: 1.5707963267948966 rad pos: -15.5,-16.5 parent: 818 - type: Godmode @@ -8763,7 +8802,6 @@ entities: - uid: 68 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-16.5 parent: 818 - type: Godmode @@ -8772,7 +8810,6 @@ entities: - uid: 69 components: - type: Transform - rot: 1.5707963267948966 rad pos: -6.5,-16.5 parent: 818 - type: Godmode @@ -8781,7 +8818,6 @@ entities: - uid: 70 components: - type: Transform - rot: 1.5707963267948966 rad pos: -5.5,-16.5 parent: 818 - type: Godmode @@ -8790,7 +8826,6 @@ entities: - uid: 71 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-16.5 parent: 818 - type: Godmode @@ -8799,7 +8834,6 @@ entities: - uid: 72 components: - type: Transform - rot: 1.5707963267948966 rad pos: 13.5,-16.5 parent: 818 - type: Godmode @@ -8808,7 +8842,6 @@ entities: - uid: 73 components: - type: Transform - rot: 1.5707963267948966 rad pos: 14.5,-16.5 parent: 818 - type: Godmode @@ -8817,7 +8850,6 @@ entities: - uid: 74 components: - type: Transform - rot: 1.5707963267948966 rad pos: 14.5,-11.5 parent: 818 - type: Godmode @@ -8826,7 +8858,6 @@ entities: - uid: 75 components: - type: Transform - rot: 1.5707963267948966 rad pos: 13.5,-11.5 parent: 818 - type: Godmode @@ -8835,7 +8866,6 @@ entities: - uid: 76 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-11.5 parent: 818 - type: Godmode @@ -8844,7 +8874,6 @@ entities: - uid: 77 components: - type: Transform - rot: 1.5707963267948966 rad pos: 14.5,-9.5 parent: 818 - type: Godmode @@ -8853,7 +8882,6 @@ entities: - uid: 78 components: - type: Transform - rot: 1.5707963267948966 rad pos: 13.5,-9.5 parent: 818 - type: Godmode @@ -8862,7 +8890,6 @@ entities: - uid: 79 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-9.5 parent: 818 - type: Godmode @@ -8871,7 +8898,6 @@ entities: - uid: 80 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-9.5 parent: 818 - type: Godmode @@ -8880,7 +8906,6 @@ entities: - uid: 81 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,-9.5 parent: 818 - type: Godmode @@ -8889,7 +8914,6 @@ entities: - uid: 82 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,-9.5 parent: 818 - type: Godmode @@ -8898,7 +8922,6 @@ entities: - uid: 83 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-11.5 parent: 818 - type: Godmode @@ -8907,7 +8930,6 @@ entities: - uid: 84 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,-11.5 parent: 818 - type: Godmode @@ -8916,7 +8938,6 @@ entities: - uid: 85 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,-11.5 parent: 818 - type: Godmode @@ -8925,7 +8946,6 @@ entities: - uid: 86 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,-16.5 parent: 818 - type: Godmode @@ -8934,7 +8954,6 @@ entities: - uid: 87 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,-16.5 parent: 818 - type: Godmode @@ -8943,7 +8962,6 @@ entities: - uid: 88 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,-16.5 parent: 818 - type: Godmode @@ -8952,7 +8970,6 @@ entities: - uid: 89 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-4.5 parent: 818 - type: Godmode @@ -8961,7 +8978,6 @@ entities: - uid: 90 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-4.5 parent: 818 - type: Godmode @@ -8970,7 +8986,6 @@ entities: - uid: 92 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-4.5 parent: 818 - type: Godmode @@ -8979,7 +8994,6 @@ entities: - uid: 112 components: - type: Transform - rot: -1.5707963267948966 rad pos: 6.5,-5.5 parent: 818 - type: Godmode @@ -8988,7 +9002,6 @@ entities: - uid: 114 components: - type: Transform - rot: -1.5707963267948966 rad pos: -13.5,-5.5 parent: 818 - type: Godmode @@ -9005,7 +9018,6 @@ entities: - uid: 154 components: - type: Transform - rot: -1.5707963267948966 rad pos: 12.5,-5.5 parent: 818 - type: Godmode @@ -9014,7 +9026,6 @@ entities: - uid: 158 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-5.5 parent: 818 - type: Godmode @@ -9532,16 +9543,6 @@ entities: - type: Godmode missingComponents: - Destructible -- proto: WarpPoint - entities: - - uid: 638 - components: - - type: Transform - pos: -0.5,1.5 - parent: 818 - - type: WarpPoint - location: Terminal - - type: Godmode - proto: Windoor entities: - uid: 806 diff --git a/Resources/Maps/Nonstations/nukieplanet.yml b/Resources/Maps/Nonstations/nukieplanet.yml index 554e242410..6bb6ed7f70 100644 --- a/Resources/Maps/Nonstations/nukieplanet.yml +++ b/Resources/Maps/Nonstations/nukieplanet.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Map + engineVersion: 263.0.0 + forkId: "" + forkVersion: "" + time: 07/20/2025 06:14:13 + entityCount: 2547 +maps: +- 1295 +grids: +- 104 +orphans: [] +nullspace: [] tilemap: 0: Space 14: FloorBar @@ -33,96 +44,96 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAKWQAAAAAAfAAAAAAAHQAAAAACbgAAAAADbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAHQAAAAABbgAAAAADWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAHQAAAAAAbgAAAAACbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAHQAAAAAAHQAAAAADHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAADWQAAAAAEWQAAAAAAWQAAAAAEfAAAAAAAeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAIfAAAAAAADgAAAAAB - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAACgBZAAAAAAAAfAAAAAAAAB0AAAAAAgBuAAAAAAMAbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAAHwAAAAAAAAdAAAAAAEAbgAAAAADAFsAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAAHQAAAAAAAG4AAAAAAgBuAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHwAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAMAWQAAAAAEAFkAAAAAAABZAAAAAAQAfAAAAAAAAHgAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHwAAAAAAAB4AAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAeAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAA4AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAOAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAOAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAFAFkAAAAACAB8AAAAAAAADgAAAAABAA== + version: 7 0,-1: ind: 0,-1 - tiles: bgAAAAAAbgAAAAADfAAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAADbgAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAACWwAAAAAAbgAAAAADbgAAAAADbgAAAAADbgAAAAACbgAAAAAAbgAAAAADbgAAAAADHQAAAAADVgAAAAAAHQAAAAACVgAAAAAAHQAAAAADVgAAAAAAHQAAAAADHQAAAAADbgAAAAAAbgAAAAACfAAAAAAAbgAAAAADbgAAAAACbgAAAAADbgAAAAACbgAAAAACHQAAAAADVgAAAAAAHQAAAAADVgAAAAAAHQAAAAABVgAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAWwAAAAADWwAAAAACWwAAAAADbgAAAAADbgAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAABWwAAAAABWwAAAAACbgAAAAADbgAAAAACDgAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAADWQAAAAAAWQAAAAAAbgAAAAAAWwAAAAABWwAAAAAAWwAAAAAAbgAAAAACbgAAAAAAWQAAAAAAHQAAAAADHQAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAADgAAAAABDgAAAAADDgAAAAACDgAAAAAADgAAAAADfAAAAAAAHQAAAAABfAAAAAAADgAAAAADDgAAAAACDgAAAAAADgAAAAACDgAAAAAAHQAAAAABHQAAAAADHQAAAAABVgAAAAAAVgAAAAAAeAAAAAACeAAAAAACeAAAAAADHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAACfAAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAABeAAAAAAAeAAAAAACeAAAAAACeAAAAAADeAAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAABeAAAAAAAeAAAAAABeAAAAAAAeAAAAAADeAAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAADfAAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAACDgAAAAACDgAAAAAADgAAAAACDgAAAAADDgAAAAACDgAAAAABDgAAAAACDgAAAAAADgAAAAAADgAAAAACDgAAAAADDgAAAAAADgAAAAABHQAAAAAAHQAAAAACHQAAAAACDgAAAAAADgAAAAABDgAAAAACDgAAAAAADgAAAAABDgAAAAABDgAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAACeAAAAAAAeAAAAAADeAAAAAABDgAAAAACDgAAAAACDgAAAAAADgAAAAAADgAAAAADDgAAAAAADgAAAAAAVgAAAAAADgAAAAACLAAAAAAALAAAAAAALAAAAAAADgAAAAADeAAAAAABeAAAAAABeAAAAAADDgAAAAADDgAAAAABDgAAAAADDgAAAAACDgAAAAADDgAAAAAADgAAAAAAVgAAAAAADgAAAAAAUAAAAAAALAAAAAAADgAAAAAADgAAAAACHQAAAAAAHQAAAAACfAAAAAAADgAAAAACDgAAAAACDgAAAAACDgAAAAAADgAAAAADDgAAAAABDgAAAAACVgAAAAAADgAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAADgAAAAAADgAAAAADDgAAAAACDgAAAAACDgAAAAACDgAAAAABDgAAAAABDgAAAAAADgAAAAACUAAAAAAAUAAAAAAALAAAAAAAUAAAAAAAUAAAAAAAfAAAAAAAfAAAAAAA - version: 6 + tiles: bgAAAAAAAG4AAAAAAwB8AAAAAAAAbgAAAAAAAG4AAAAAAgBuAAAAAAIAbgAAAAADAG4AAAAAAQAdAAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAMAHQAAAAACAFsAAAAAAABuAAAAAAMAbgAAAAADAG4AAAAAAwBuAAAAAAIAbgAAAAAAAG4AAAAAAwBuAAAAAAMAHQAAAAADAFYAAAAAAAAdAAAAAAIAVgAAAAAAAB0AAAAAAwBWAAAAAAAAHQAAAAADAB0AAAAAAwBuAAAAAAAAbgAAAAACAHwAAAAAAABuAAAAAAMAbgAAAAACAG4AAAAAAwBuAAAAAAIAbgAAAAACAB0AAAAAAwBWAAAAAAAAHQAAAAADAFYAAAAAAAAdAAAAAAEAVgAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAAAWwAAAAADAFsAAAAAAgBbAAAAAAMAbgAAAAADAG4AAAAAAgAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAAAHQAAAAADAHwAAAAAAAB8AAAAAAAAfAAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAACAG4AAAAAAwBuAAAAAAIADgAAAAACAB0AAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAIAHQAAAAAAAB0AAAAAAwBZAAAAAAAAWQAAAAAAAG4AAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAABuAAAAAAIAbgAAAAAAAFkAAAAAAAAdAAAAAAMAHQAAAAADAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAADgAAAAABAA4AAAAAAwAOAAAAAAIADgAAAAAAAA4AAAAAAwB8AAAAAAAAHQAAAAABAHwAAAAAAAAOAAAAAAMADgAAAAACAA4AAAAAAAAOAAAAAAIADgAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAABAFYAAAAAAABWAAAAAAAAeAAAAAACAHgAAAAAAgB4AAAAAAMAHQAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAAAAB0AAAAAAwAdAAAAAAIAfAAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAADAB0AAAAAAQB4AAAAAAAAeAAAAAACAHgAAAAAAgB4AAAAAAMAeAAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAIAHQAAAAACAB0AAAAAAQAdAAAAAAMAHQAAAAABAB0AAAAAAgAdAAAAAAEAeAAAAAAAAHgAAAAAAQB4AAAAAAAAeAAAAAADAHgAAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAABAB0AAAAAAwB8AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAEAHQAAAAACAA4AAAAAAgAOAAAAAAAADgAAAAACAA4AAAAAAwAOAAAAAAIADgAAAAABAA4AAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAgAOAAAAAAMADgAAAAAAAA4AAAAAAQAdAAAAAAAAHQAAAAACAB0AAAAAAgAOAAAAAAAADgAAAAABAA4AAAAAAgAOAAAAAAAADgAAAAABAA4AAAAAAQAOAAAAAAMADgAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAIAeAAAAAAAAHgAAAAAAwB4AAAAAAEADgAAAAACAA4AAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAwAOAAAAAAAADgAAAAAAAFYAAAAAAAAOAAAAAAIALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAADAHgAAAAAAQB4AAAAAAEAeAAAAAADAA4AAAAAAwAOAAAAAAEADgAAAAADAA4AAAAAAgAOAAAAAAMADgAAAAAAAA4AAAAAAABWAAAAAAAADgAAAAAAAFAAAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAgAdAAAAAAAAHQAAAAACAHwAAAAAAAAOAAAAAAIADgAAAAACAA4AAAAAAgAOAAAAAAAADgAAAAADAA4AAAAAAQAOAAAAAAIAVgAAAAAAAA4AAAAAAwBQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAADgAAAAAAAA4AAAAAAwAOAAAAAAIADgAAAAACAA4AAAAAAgAOAAAAAAEADgAAAAABAA4AAAAAAAAOAAAAAAIAUAAAAAAAAFAAAAAAAAAsAAAAAAAAUAAAAAAAAFAAAAAAAAB8AAAAAAAAfAAAAAAAAA== + version: 7 0,0: ind: 0,0 - tiles: HQAAAAADHQAAAAACHQAAAAACDgAAAAAADgAAAAABDgAAAAABDgAAAAABDgAAAAACDgAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfAAAAAAAWQAAAAAGfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAACfAAAAAAADgAAAAAADgAAAAABDgAAAAABDgAAAAACDgAAAAABDgAAAAAADgAAAAACDgAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAATwAAAAAAfAAAAAAAWQAAAAAAWQAAAAAHWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAfAAAAAAATwAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAATwAAAAAAWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMWQAAAAAAWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAWQAAAAAIWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAIWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAKWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAHWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAGWQAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAMWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAHWQAAAAAAWQAAAAACWQAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAJWQAAAAAAWQAAAAAFTwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAHWQAAAAAHWQAAAAAKWQAAAAAFWQAAAAAAWQAAAAALWQAAAAAA - version: 6 + tiles: HQAAAAADAB0AAAAAAgAdAAAAAAIADgAAAAAAAA4AAAAAAQAOAAAAAAEADgAAAAABAA4AAAAAAgAOAAAAAAMAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAB8AAAAAAAAWQAAAAAGAHwAAAAAAAB8AAAAAAAAfAAAAAAAAB0AAAAAAgB8AAAAAAAADgAAAAAAAA4AAAAAAQAOAAAAAAEADgAAAAACAA4AAAAAAQAOAAAAAAAADgAAAAACAA4AAAAAAgBZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAAAAHwAAAAAAABPAAAAAAAAfAAAAAAAAFkAAAAAAABZAAAAAAcAWQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAAB8AAAAAAAATwAAAAAAAHwAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAUAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAwAWQAAAAAAAFkAAAAABQBZAAAAAAAAWQAAAAAAAFkAAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAIAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAADsAAAAAAABZAAAAAAgAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAABQBZAAAAAAgAWQAAAAAAAFkAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAWQAAAAAKAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAcAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAJAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAgAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACABZAAAAAAAAWQAAAAAGAFkAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAwAWQAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAcAWQAAAAAAAFkAAAAAAgBZAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAACQBZAAAAAAAAWQAAAAAFAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAOwAAAAAAADsAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABQBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAHAFkAAAAABwBZAAAAAAoAWQAAAAAFAFkAAAAAAABZAAAAAAsAWQAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMWQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAAWQAAAAAKWQAAAAAIWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAKWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAGHQAAAAADHQAAAAADHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAALWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAAIfAAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAABHQAAAAABWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAALWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAGTwAAAAAAHQAAAAABHQAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAADWQAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAGWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKTwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA - version: 6 + tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAAfAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHwAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAADABZAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAKAFkAAAAACABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAFAFkAAAAACgBZAAAAAAAAWQAAAAAEAFkAAAAAAABZAAAAAAYAHQAAAAADAB0AAAAAAwAdAAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACwBZAAAAAAAAWQAAAAAAAFkAAAAACgBZAAAAAAgAfAAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAACAB0AAAAAAwAdAAAAAAIAHQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB8AAAAAAAAHQAAAAABAB0AAAAAAQBZAAAAAAkAWQAAAAAAAFkAAAAAAABZAAAAAAsAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAABgBPAAAAAAAAHQAAAAABAB0AAAAAAAB8AAAAAAAAfAAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAIAFkAAAAAAwBZAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfAAAAAAAAHwAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAA7AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAFAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAQAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAwAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAATwAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAADABZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAgAWQAAAAAAAFkAAAAABgBZAAAAAAAAWQAAAAAIAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAoATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAJAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAA== + version: 7 1,-1: ind: 1,-1 - tiles: HQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAAATQAAAAAATQAAAAAATQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAACfAAAAAAAWQAAAAAAWQAAAAABWQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAADTQAAAAAATQAAAAAATQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAACfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAACfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAABfAAAAAAAfAAAAAAAfAAAAAAAWQAAAAAMWQAAAAAHWQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAACWQAAAAAFWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAHQAAAAADHQAAAAABVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAHQAAAAACHQAAAAACHQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACAAAAAAAAfAAAAAAAHQAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAHQAAAAADHQAAAAADHQAAAAACWQAAAAAETwAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAAAAAAAAAHQAAAAAAHQAAAAABVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAHQAAAAACHQAAAAADHQAAAAACWQAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAHQAAAAACVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAHQAAAAAAHQAAAAADHQAAAAACWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAfAAAAAAAHQAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAHQAAAAAAHQAAAAABHQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAABWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAABWQAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAGfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAWQAAAAAATwAAAAAAWQAAAAAEWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAA - version: 6 + tiles: HQAAAAADAB0AAAAAAwAdAAAAAAIAHQAAAAACAB0AAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAgAdAAAAAAIAfAAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAACAB0AAAAAAwAdAAAAAAMAHQAAAAADAB0AAAAAAAAdAAAAAAMATQAAAAAAAE0AAAAAAABNAAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAMAHQAAAAACAHwAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAAAdAAAAAAMAHQAAAAABAB0AAAAAAgB8AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAACAB0AAAAAAwAdAAAAAAMAHQAAAAABAHwAAAAAAAB8AAAAAAAAfAAAAAAAAFkAAAAADABZAAAAAAcAWQAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAIAHQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAACAB0AAAAAAQBZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAAAAAAAAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAMAHQAAAAABAB0AAAAAAQAdAAAAAAEAHQAAAAADAB0AAAAAAQAdAAAAAAIAWQAAAAAFAFkAAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAHQAAAAADAB0AAAAAAQBWAAAAAAAAVgAAAAAAAFYAAAAAAABWAAAAAAAAVgAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAIAAAAAAAAAAHwAAAAAAAAdAAAAAAAAVgAAAAAAAFYAAAAAAABWAAAAAAAAVgAAAAAAAFYAAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAgBZAAAAAAQATwAAAAAAAFkAAAAABABZAAAAAAAAWQAAAAAAAAAAAAAAAAAdAAAAAAAAHQAAAAABAFYAAAAAAABWAAAAAAAAVgAAAAAAAFYAAAAAAABWAAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAIAWQAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAfAAAAAAAAB0AAAAAAgBWAAAAAAAAVgAAAAAAAFYAAAAAAABWAAAAAAAAVgAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAACAFkAAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAkAWQAAAAAAAHwAAAAAAAAdAAAAAAAAVgAAAAAAAFYAAAAAAABWAAAAAAAAVgAAAAAAAFYAAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAEAWQAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAfAAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAgAdAAAAAAAAHQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACQBZAAAAAAAAWQAAAAAAAHwAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAAAAB0AAAAAAQBZAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABgB8AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAQAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAfAAAAAAAAFkAAAAAAABPAAAAAAAAWQAAAAAEAFkAAAAAAABZAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAABABZAAAAAAAAWQAAAAAAAA== + version: 7 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAALWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAGWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAWQAAAAAAWQAAAAAHWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAWQAAAAAAWQAAAAAGWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAWQAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAADbgAAAAAAfAAAAAAAagAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAABWwAAAAADfAAAAAAAHQAAAAAAHQAAAAABWQAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAADbgAAAAAAagAAAAAAagAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAfAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAoAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAABQBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAsAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABgBZAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAAAfAAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAfAAAAAAAAFkAAAAAAABZAAAAAAcAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHwAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAHwAAAAAAABZAAAAAAAAWQAAAAAGAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB8AAAAAAAAWQAAAAAKAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAfAAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAfAAAAAAAAFkAAAAAAABZAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAACAHwAAAAAAAB8AAAAAAAAfAAAAAAAAFkAAAAAAABuAAAAAAAAbgAAAAADAG4AAAAAAwBuAAAAAAMAbgAAAAAAAHwAAAAAAABqAAAAAAAAWwAAAAACAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAwB8AAAAAAAAHQAAAAAAAB0AAAAAAQBZAAAAAAAAbgAAAAABAG4AAAAAAQBuAAAAAAMAbgAAAAADAG4AAAAAAABqAAAAAAAAagAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAAAfAAAAAAAAA== + version: 7 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAEWQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAAWQAAAAAFWQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAGWQAAAAAAWQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAALWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAHQAAAAABHQAAAAAAHQAAAAAC - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABABZAAAAAAAAWQAAAAAAAFkAAAAABABZAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAUAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAEAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABQBZAAAAAAAAWQAAAAAFAFkAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABgBZAAAAAAAAWQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAsAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAFAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAKAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAEAFkAAAAAAABZAAAAAAAAWQAAAAAEAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAfAAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAACAA== + version: 7 -1,1: ind: -1,1 - tiles: WQAAAAAIWQAAAAAAWQAAAAALWQAAAAAAWQAAAAADWQAAAAAMWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAGWQAAAAAAWQAAAAAFWQAAAAADWQAAAAAEWQAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAEWQAAAAAHWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAEFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFTwAAAAAATwAAAAAATwAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAWQAAAAAAWQAAAAAKWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADTwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAMWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAALWQAAAAAHWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: WQAAAAAIAFkAAAAAAABZAAAAAAsAWQAAAAAAAFkAAAAAAwBZAAAAAAwAWQAAAAAAAFkAAAAAAABZAAAAAAoAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAkAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAwAWQAAAAAEAFkAAAAAAABZAAAAAAAAWQAAAAAGAFkAAAAAAABZAAAAAAUAWQAAAAADAFkAAAAABABZAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAABABZAAAAAAcAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAEABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABQBPAAAAAAAATwAAAAAAAE8AAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAWQAAAAAAAFkAAAAACgBZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAMATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAUAWQAAAAAMAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAKABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAABZAAAAAAQAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAFAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAsAWQAAAAAHAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAADABZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAKAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAoAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACgBZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,1: ind: 0,1 - tiles: WQAAAAAAWQAAAAAEWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAHWQAAAAAAWQAAAAAJWQAAAAAGWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAHWQAAAAAAWQAAAAAAWQAAAAALWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAALWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAMWQAAAAAIWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAGWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA - version: 6 + tiles: WQAAAAAAAFkAAAAABABZAAAAAAQAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAkAWQAAAAAAAFkAAAAAAABZAAAAAAcAWQAAAAAAAFkAAAAACQBZAAAAAAYAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACgBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAcAWQAAAAAAAFkAAAAAAABZAAAAAAsAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAATwAAAAAAAFkAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAIAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAsAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAABQBZAAAAAAAAWQAAAAAAAFkAAAAADABZAAAAAAgAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAJAFkAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAGAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAoAWQAAAAACAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAIAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAwBZAAAAAAkAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAA== + version: 7 1,1: ind: 1,1 - tiles: WQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAAMWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAGWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMWQAAAAAAWQAAAAAAWQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAABWQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: WQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAoAWQAAAAAMAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAABABZAAAAAAAAWQAAAAAAAFkAAAAABABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAGAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAwAWQAAAAAAAFkAAAAAAABZAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACQBZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAkAWQAAAAAAAFkAAAAAAQBZAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAkAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 1,0: ind: 1,0 - tiles: WQAAAAAATwAAAAAATwAAAAAAWQAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAALWQAAAAALWQAAAAAAWQAAAAAMWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAWQAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAMWQAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAFWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAHAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAEWQAAAAAHWQAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAEWQAAAAAJWQAAAAAAWQAAAAAHWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAHWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: WQAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAADsAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAAAOwAAAAAAADsAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAALAFkAAAAACwBZAAAAAAAAWQAAAAAMAFkAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAMAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAADsAAAAAAAA7AAAAAAAAWQAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAADABZAAAAAAAAWQAAAAAAAFkAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAFAFkAAAAABQBZAAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAgA7AAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAcAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAWQAAAAAAAFkAAAAACgBZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABABZAAAAAAcAWQAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAEAFkAAAAACQBZAAAAAAAAWQAAAAAHAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAAJAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAoAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABwBZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAABWQAAAAAAWQAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAMWQAAAAAAWQAAAAALWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAMWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAagAAAAAAHQAAAAACHQAAAAADHQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAACHQAAAAABagAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJfAAAAAAAagAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAABagAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAagAAAAAAHQAAAAAAHQAAAAABHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAACHQAAAAADHQAAAAACagAAAAAAfAAAAAAAWQAAAAALWQAAAAAAWQAAAAAAWQAAAAAEHQAAAAACHQAAAAACHQAAAAABHQAAAAABTQAAAAAATQAAAAAATQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAD - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAgAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAFAFkAAAAAAQBZAAAAAAAAWQAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAwAWQAAAAAAAFkAAAAACwBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAKAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABQBZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAQAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAADABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAfAAAAAAAAGoAAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAgB8AAAAAAAAfAAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAQBqAAAAAAAAfAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAJAHwAAAAAAABqAAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAMAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAABAB0AAAAAAQAdAAAAAAEAagAAAAAAAHwAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAAagAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAACAGoAAAAAAAB8AAAAAAAAWQAAAAALAFkAAAAAAABZAAAAAAAAWQAAAAAEAB0AAAAAAgAdAAAAAAIAHQAAAAABAB0AAAAAAQBNAAAAAAAATQAAAAAAAE0AAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAgAdAAAAAAAAfAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAA== + version: 7 -2,0: ind: -2,0 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAHWQAAAAAAWQAAAAABTwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAATwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAETwAAAAAATwAAAAAATwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAALWQAAAAAAWQAAAAALWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAALWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA - version: 6 + tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAQAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAABwBZAAAAAAAAWQAAAAABAE8AAAAAAAB8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAFAFkAAAAAAABPAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAEAE8AAAAAAABPAAAAAAAATwAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAALAFkAAAAAAABZAAAAAAsAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAgAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACwBZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAA== + version: 7 -2,1: ind: -2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAKFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAHWQAAAAAKWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAGWQAAAAAJWQAAAAALWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAALWQAAAAAIWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAWQAAAAAGFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAEWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAEWQAAAAAAWQAAAAAMWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAkAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACQBZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACQBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAATwAAAAAAAFkAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAE8AAAAAAABZAAAAAAoAFAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAkAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAABQAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAcAWQAAAAAKAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAYAWQAAAAAJAFkAAAAACwBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAFAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAALAFkAAAAACABZAAAAAAAAWQAAAAAIAFkAAAAAAABZAAAAAAAAWQAAAAAGABQAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAABABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABQBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAABABZAAAAAAAAWQAAAAAMAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAEAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAgAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAFAFkAAAAABQBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAA== + version: 7 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,0: ind: 2,0 - tiles: TwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: TwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,-1: ind: 2,-1 - tiles: TwAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAWQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAWQAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: TwAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAAAAAABZAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAAFkAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAIWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAgAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -2,2: ind: -2,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,2: ind: 0,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAEWQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABQBZAAAAAAQAWQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 1,2: ind: 1,2 - tiles: WQAAAAAAWQAAAAAFWQAAAAACWQAAAAAJWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: WQAAAAAAAFkAAAAABQBZAAAAAAIAWQAAAAAJAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -3,0: ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -1620,16 +1631,19 @@ entities: - type: RadiationGridResistance - type: OccluderTree - type: Shuttle + dampingModifier: 0.25 - type: GravityShake shakeTimes: 10 - type: GasTileOverlay - type: SpreaderGrid - type: GridPathfinding + - type: ImplicitRoof - uid: 1295 components: - type: MetaData - type: Transform - type: Map + mapPaused: True - type: GridTree - type: FTLDestination whitelist: @@ -1658,7 +1672,6 @@ entities: - 0 - 0 - 0 - - type: LoadedMap - proto: AirlockExternalGlassNukeopLocked entities: - uid: 49 @@ -6668,14 +6681,14 @@ entities: - uid: 1635 components: - type: Transform - pos: 5.4970627,10.597828 + pos: 5.568222,13.296588 parent: 104 - proto: BoxMagazinePistolSubMachineGunPractice entities: - uid: 1634 components: - type: Transform - pos: 5.388983,13.953581 + pos: 5.4014716,13.713544 parent: 104 - proto: BoxPillCanister entities: @@ -10318,13 +10331,6 @@ entities: - type: Transform pos: 19.246769,6.507033 parent: 104 -- proto: CombatKnife - entities: - - uid: 1694 - components: - - type: Transform - pos: 5.483225,11.368477 - parent: 104 - proto: ComfyChair entities: - uid: 21 @@ -10417,18 +10423,6 @@ entities: - type: Transform pos: -0.5303154,-6.2851996 parent: 104 -- proto: EmpGrenade - entities: - - uid: 2456 - components: - - type: Transform - pos: 14.40774,-17.385033 - parent: 104 - - uid: 2457 - components: - - type: Transform - pos: 14.62649,-17.385033 - parent: 104 - proto: ExtinguisherCabinetFilled entities: - uid: 139 @@ -10771,18 +10765,6 @@ entities: parent: 104 - type: PointLight radius: 175.75 -- proto: GrenadeFlashBang - entities: - - uid: 2309 - components: - - type: Transform - pos: 11.399388,-16.363453 - parent: 104 - - uid: 2310 - components: - - type: Transform - pos: 11.571263,-16.363453 - parent: 104 - proto: Grille entities: - uid: 95 @@ -11138,7 +11120,7 @@ entities: - uid: 1648 components: - type: Transform - pos: 5.7430096,13.989216 + pos: 5.5473785,13.984566 parent: 104 - type: BallisticAmmoProvider unspawnedCount: 35 @@ -11164,55 +11146,6 @@ entities: - type: Transform pos: -1.5,-16.5 parent: 104 -- proto: MedkitAdvancedFilled - entities: - - uid: 447 - components: - - type: Transform - pos: 7.5183387,-10.279964 - parent: 104 -- proto: MedkitBruteFilled - entities: - - uid: 138 - components: - - type: Transform - pos: 7.5183387,-10.576839 - parent: 104 -- proto: MedkitBurnFilled - entities: - - uid: 1894 - components: - - type: Transform - pos: 7.5339637,-10.889339 - parent: 104 -- proto: MedkitFilled - entities: - - uid: 770 - components: - - type: Transform - pos: 0.48478004,-16.399067 - parent: 104 -- proto: MedkitOxygenFilled - entities: - - uid: 1895 - components: - - type: Transform - pos: 7.5339637,-11.186214 - parent: 104 -- proto: MedkitRadiationFilled - entities: - - uid: 448 - components: - - type: Transform - pos: 7.5495887,-11.733089 - parent: 104 -- proto: MedkitToxinFilled - entities: - - uid: 1388 - components: - - type: Transform - pos: 7.5339637,-11.436214 - parent: 104 - proto: Mirror entities: - uid: 142 @@ -11265,6 +11198,63 @@ entities: - type: Transform pos: 12.149857,15.427643 parent: 104 +- proto: NukeOpsAmmoSpawner + entities: + - uid: 770 + components: + - type: Transform + pos: 5.5,10.5 + parent: 104 +- proto: NukeOpsGrenadeSpawner + entities: + - uid: 228 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 104 + - uid: 448 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 104 +- proto: NukeOpsLootSpawner + entities: + - uid: 1703 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 104 + - uid: 1704 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 104 +- proto: NukeOpsMedkitBruteSpawner + entities: + - uid: 447 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 104 +- proto: NukeOpsMedkitSpawner + entities: + - uid: 306 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 104 +- proto: NukeOpsWeaponSpawner + entities: + - uid: 1388 + components: + - type: Transform + pos: 5.5,11.5 + parent: 104 + - uid: 1694 + components: + - type: Transform + pos: 5.5,12.5 + parent: 104 - proto: OperatingTable entities: - uid: 2435 @@ -11452,18 +11442,6 @@ entities: - type: Transform pos: 8.5,-12.5 parent: 104 -- proto: PosterContrabandLustyExomorph - entities: - - uid: 754 - components: - - type: Transform - pos: -3.5,-13.5 - parent: 104 - - uid: 2447 - components: - - type: Transform - pos: 15.5,-15.5 - parent: 104 - proto: PosterContrabandMoth entities: - uid: 2462 @@ -11492,6 +11470,18 @@ entities: - type: Transform pos: 25.5,-12.5 parent: 104 +- proto: PosterContrabandRealExomorph + entities: + - uid: 754 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 104 + - uid: 2447 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 104 - proto: PosterContrabandRebelsUnite entities: - uid: 2446 @@ -12972,6 +12962,11 @@ entities: parent: 104 - proto: SprayBottle entities: + - uid: 138 + components: + - type: Transform + pos: 14.5635,-16.40939 + parent: 104 - uid: 1699 components: - type: Transform @@ -13586,24 +13581,12 @@ entities: - type: Transform pos: 0.5,10.5 parent: 104 -- proto: TearGasGrenade - entities: - - uid: 306 - components: - - type: Transform - pos: 14.638793,-16.908663 - parent: 104 - - uid: 1703 - components: - - type: Transform - pos: 14.341918,-16.877413 - parent: 104 - proto: Telecrystal1 entities: - uid: 2474 components: - type: Transform - pos: 2.9398513,-3.4842777 + pos: 3.1330178,-3.4578767 parent: 104 - proto: TimerTrigger entities: @@ -13651,7 +13634,7 @@ entities: - uid: 2470 components: - type: Transform - pos: 2.5657434,-3.260709 + pos: 2.3930676,-2.59717 parent: 104 - proto: ToyFigurineNukie entities: @@ -15143,22 +15126,6 @@ entities: - type: Transform pos: 11.5,-4.5 parent: 104 -- proto: WeaponPistolCobra - entities: - - uid: 1705 - components: - - type: Transform - pos: 5.4793262,12.166912 - parent: 104 -- proto: WeaponShotgunSawn - entities: - - uid: 228 - components: - - type: Transform - pos: 5.347948,13.528896 - parent: 104 - - type: BallisticAmmoProvider - unspawnedCount: 2 - proto: WeaponSprayNozzle entities: - uid: 152 @@ -15166,13 +15133,6 @@ entities: - type: Transform pos: 9.67418,-4.571714 parent: 104 -- proto: WeaponSubMachineGunC20r - entities: - - uid: 1704 - components: - - type: Transform - pos: 5.497257,12.817707 - parent: 104 - proto: WelderIndustrial entities: - uid: 207 diff --git a/Resources/Maps/Shuttles/ShuttleEvent/cruiser.yml b/Resources/Maps/Shuttles/ShuttleEvent/cruiser.yml index 45e7558d71..d779c5f7c3 100644 --- a/Resources/Maps/Shuttles/ShuttleEvent/cruiser.yml +++ b/Resources/Maps/Shuttles/ShuttleEvent/cruiser.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 266.0.0 + forkId: "" + forkVersion: "" + time: 08/17/2025 23:21:08 + entityCount: 566 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] tilemap: 0: Space 32: FloorDark @@ -26,28 +37,28 @@ entities: chunks: 0,0: ind: 0,0 - tiles: bwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAADYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAACYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAADYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAACIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAAAIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADbwAAAAAAIAAAAAADIAAAAAACIAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAbwAAAAAAIAAAAAADIAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: bwAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHMAAAAAAwBgAAAAAAMAgQAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABzAAAAAAIAYAAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAACAGAAAAAAAwCBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHMAAAAAAwBgAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACAGAAAAAAAwCBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAQBgAAAAAAIAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAEAYAAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACAGAAAAAAAgCBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIAIAAAAAABACAAAAAAAQAgAAAAAAAAgQAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADACAAAAAAAgAgAAAAAAAAIAAAAAAAACAAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAAAACAAAAAAAAAgAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAMAbwAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAG8AAAAAAAAgAAAAAAAAIAAAAAAAAIEAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcQAAAAABcQAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcQAAAAAAcQAAAAADcQAAAAAAcQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAYAAAAAABYAAAAAABbwAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAYAAAAAACYAAAAAACbwAAAAAAYAAAAAAAYAAAAAACYAAAAAABbwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACbwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAABbwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAEAAAAAAACBAAAAAAAAAAAAAAAAAIAAAAAAAACBAAAAAAAAgQAAAAAAAHEAAAAAAQBxAAAAAAMAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAcQAAAAAAAHEAAAAAAwBxAAAAAAAAcQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmAAAAAAAAJgAAAAAAAGAAAAAAAgBgAAAAAAEAgQAAAAAAAIEAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAACYAAAAAAABgAAAAAAEAYAAAAAABAG8AAAAAAABgAAAAAAEAYAAAAAABAGAAAAAAAgCBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACYAAAAAAAAmAAAAAAAAYAAAAAACAGAAAAAAAgBvAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAEAbwAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAQCBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAACAG8AAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACAGAAAAAAAwCBAAAAAAAAgAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAQBvAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAABbwAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABvAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgQAAAAAAACAAAAAAAAAgAAAAAAAAbwAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcQAAAAAAcQAAAAADgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcQAAAAABcQAAAAADcQAAAAACcQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADbwAAAAAAYAAAAAADYAAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAbwAAAAAAYAAAAAADYAAAAAACYAAAAAADbwAAAAAAYAAAAAADYAAAAAABJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAbwAAAAAAYAAAAAACYAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAD - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAABxAAAAAAAAcQAAAAADAIEAAAAAAACBAAAAAAAAgAAAAAAAAAAAAAAAAACBAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAcQAAAAABAHEAAAAAAwBxAAAAAAIAcQAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQAmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAMAbwAAAAAAAGAAAAAAAwBgAAAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAbwAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAADAG8AAAAAAABgAAAAAAMAYAAAAAABACYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAG8AAAAAAABgAAAAAAEAYAAAAAACAGAAAAAAAQCBAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAABvAAAAAAAAYAAAAAACAGAAAAAAAACBAAAAAAAAAAAAAAAAAIAAAAAAAACBAAAAAAAAYAAAAAADAA== + version: 7 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAABbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIEAAAAAAAAgAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,1: ind: 0,1 - tiles: gQAAAAAAbwAAAAAAIAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: gQAAAAAAAG8AAAAAAAAgAAAAAAAAgQAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -60,6 +71,7 @@ entities: - type: OccluderTree - type: SpreaderGrid - type: Shuttle + dampingModifier: 0.25 - type: GridPathfinding - type: Gravity gravityShakeSound: !type:SoundPathSpecifier @@ -409,6 +421,7 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance + - type: ImplicitRoof - proto: AirAlarm entities: - uid: 502 @@ -420,6 +433,8 @@ entities: devices: - 494 - 493 + - type: Fixtures + fixtures: {} - uid: 506 components: - type: Transform @@ -429,6 +444,8 @@ entities: - type: DeviceList devices: - 505 + - type: Fixtures + fixtures: {} - uid: 507 components: - type: Transform @@ -437,6 +454,17 @@ entities: - type: DeviceList devices: - 504 + - type: Fixtures + fixtures: {} +- proto: AirAlarmVox + entities: + - uid: 566 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - type: Fixtures + fixtures: {} - proto: AirCanister entities: - uid: 500 @@ -457,7 +485,7 @@ entities: bodyType: Static - proto: Airlock entities: - - uid: 227 + - uid: 166 components: - type: Transform pos: 0.5,10.5 @@ -594,11 +622,15 @@ entities: rot: 3.141592653589793 rad pos: 1.5,10.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 503 components: - type: Transform pos: -1.5,-0.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: AtmosDeviceFanDirectional entities: - uid: 555 @@ -1509,26 +1541,29 @@ entities: - type: Transform pos: -0.5,13.5 parent: 1 -- proto: ComputerSurveillanceWirelessCameraMonitor - entities: - - uid: 166 + - uid: 178 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,14.5 parent: 1 - - uid: 178 + - uid: 227 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,14.5 parent: 1 -- proto: CrateEngineeringElectricalSupplies +- proto: CrateFilledSpawner entities: - - uid: 533 + - uid: 534 components: - type: Transform - pos: 1.5,-2.5 + pos: -0.5,-4.5 + parent: 1 + - uid: 536 + components: + - type: Transform + pos: -0.5,-2.5 parent: 1 - proto: CrateFunArtSupplies entities: @@ -1537,26 +1572,12 @@ entities: - type: Transform pos: 0.5,-3.5 parent: 1 -- proto: CrateServiceBooks +- proto: CratePermaEscapeSpawner entities: - - uid: 534 + - uid: 565 components: - type: Transform - pos: -0.5,-4.5 - parent: 1 -- proto: CrateVendingMachineRestockDinnerwareFilled - entities: - - uid: 537 - components: - - type: Transform - pos: -0.5,-2.5 - parent: 1 -- proto: CrateVendingMachineRestockHotDrinksFilled - entities: - - uid: 536 - components: - - type: Transform - pos: 0.5,-2.5 + pos: 1.5,-4.5 parent: 1 - proto: DefibrillatorCabinetFilled entities: @@ -1565,6 +1586,8 @@ entities: - type: Transform pos: 1.5,5.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: EncryptionKeyFreelance entities: - uid: 550 @@ -2645,6 +2668,13 @@ entities: - type: Transform pos: 1.3176541,4.7092643 parent: 1 +- proto: LootSpawnerRandomCrateEngineering + entities: + - uid: 533 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 - proto: MedicalBed entities: - uid: 196 @@ -2854,6 +2884,13 @@ entities: - type: Transform pos: 3.5,11.5 parent: 1 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 537 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 - proto: SecurityVisitorSpawner entities: - uid: 546 @@ -2883,6 +2920,10 @@ entities: showEnts: False occludes: True ent: 162 + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: ShuttleWindow entities: - uid: 2 @@ -3022,11 +3063,16 @@ entities: - type: DeviceLinkSource linkedPorts: 375: - - Pressed: Toggle + - - Pressed + - Toggle 376: - - Pressed: Toggle + - - Pressed + - Toggle 377: - - Pressed: Toggle + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - uid: 382 components: - type: Transform @@ -3035,11 +3081,16 @@ entities: - type: DeviceLinkSource linkedPorts: 378: - - Pressed: Toggle + - - Pressed + - Toggle 379: - - Pressed: Toggle + - - Pressed + - Toggle 380: - - Pressed: Toggle + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - uid: 385 components: - type: Transform @@ -3049,11 +3100,16 @@ entities: - type: DeviceLinkSource linkedPorts: 358: - - Pressed: Toggle + - - Pressed + - Toggle 357: - - Pressed: Toggle + - - Pressed + - Toggle 356: - - Pressed: Toggle + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - proto: SMESBasic entities: - uid: 323 @@ -3183,6 +3239,20 @@ entities: - type: Transform pos: 1.6926541,4.5530143 parent: 1 +- proto: Table + entities: + - uid: 562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - uid: 563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 - proto: TableGlass entities: - uid: 198 @@ -3298,6 +3368,13 @@ entities: - type: Transform pos: -5.5,1.5 parent: 1 +- proto: ToolboxMechanicalFilledAllTools + entities: + - uid: 564 + components: + - type: Transform + pos: -0.5382964,-0.35850996 + parent: 1 - proto: TwoWayLever entities: - uid: 191 @@ -3310,11 +3387,16 @@ entities: - type: DeviceLinkSource linkedPorts: 161: - - Left: On - - Left: Trigger - - Right: On - - Right: Trigger - - Middle: Off + - - Left + - On + - - Left + - Trigger + - - Right + - On + - - Right + - Trigger + - - Middle + - Off - proto: VendingMachineCigs entities: - uid: 517 diff --git a/Resources/Maps/Shuttles/ShuttleEvent/cryptid.yml b/Resources/Maps/Shuttles/ShuttleEvent/cryptid.yml index 055d5a8c73..23f9195710 100644 --- a/Resources/Maps/Shuttles/ShuttleEvent/cryptid.yml +++ b/Resources/Maps/Shuttles/ShuttleEvent/cryptid.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 266.0.0 + forkId: "" + forkVersion: "" + time: 09/01/2025 20:37:26 + entityCount: 564 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] tilemap: 0: Space 1: FloorMetalDiamond @@ -25,20 +36,20 @@ entities: chunks: 0,0: ind: 0,0 - tiles: fQAAAAACfQAAAAABfQAAAAACfQAAAAABfQAAAAADfQAAAAADgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAABfQAAAAACfQAAAAABgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAABfQAAAAAAfQAAAAACfQAAAAACfQAAAAACfQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAACfQAAAAACfQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAACfQAAAAADfQAAAAABfQAAAAAAfQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAACfQAAAAACfQAAAAABfQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAABfQAAAAACfQAAAAADfQAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAADfQAAAAABfQAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAACfQAAAAACgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fQAAAAACAH0AAAAAAQB9AAAAAAIAfQAAAAABAH0AAAAAAwB9AAAAAAMAgQAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAH0AAAAAAAB9AAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAQB9AAAAAAAAfQAAAAAAAH0AAAAAAQB9AAAAAAIAfQAAAAABAIEAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAB9AAAAAAAAfQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAEAfQAAAAAAAH0AAAAAAgB9AAAAAAIAfQAAAAACAH0AAAAAAgCBAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAfQAAAAAAAH0AAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAgB9AAAAAAIAfQAAAAAAAH0AAAAAAgCBAAAAAAAAgQAAAAAAAIAAAAAAAACAAAAAAAAAgQAAAAAAAH0AAAAAAAB9AAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAgB9AAAAAAMAfQAAAAABAH0AAAAAAAB9AAAAAAIAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACBAAAAAAAAgQAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAIAfQAAAAACAH0AAAAAAQB9AAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAABAH0AAAAAAgB9AAAAAAMAfQAAAAADAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAwB9AAAAAAEAfQAAAAADAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAIAfQAAAAACAIEAAAAAAACBAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAACfQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAAAfQAAAAADfQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAADfQAAAAAAfQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAAAfQAAAAABfQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAAAfQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAfQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAB9AAAAAAMAfQAAAAABAH0AAAAAAgB9AAAAAAIAfQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAfQAAAAADAH0AAAAAAwB9AAAAAAAAfQAAAAADAH0AAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAH0AAAAAAgB9AAAAAAMAfQAAAAADAH0AAAAAAAB9AAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAfQAAAAADAH0AAAAAAAB9AAAAAAEAfQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAH0AAAAAAQB9AAAAAAMAfQAAAAAAAH0AAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAfQAAAAACAH0AAAAAAQB9AAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAH0AAAAAAwB9AAAAAAEAfQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAfQAAAAACAH0AAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgQAAAAAAAIEAAAAAAAB9AAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAAAfQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAfQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAADfQAAAAAAfQAAAAAB - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAAB9AAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAAB9AAAAAAMAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAB9AAAAAAAAfQAAAAABAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAfQAAAAADAH0AAAAAAQB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAfQAAAAADAH0AAAAAAgB9AAAAAAAAfQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAH0AAAAAAAB9AAAAAAIAfQAAAAAAAH0AAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAwB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAB9AAAAAAEAfQAAAAABAH0AAAAAAwB9AAAAAAAAfQAAAAABAA== + version: 7 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAADfQAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAACfQAAAAACfQAAAAADfQAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAACfQAAAAABfQAAAAABfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAABfQAAAAADfQAAAAADfQAAAAADfQAAAAADbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcQAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAADfQAAAAACfQAAAAABfQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAcQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAAAfQAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcQAAAAACgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAABfQAAAAADfQAAAAACfQAAAAABfQAAAAABfQAAAAADgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAABAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAMAfQAAAAABAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAIAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAgB9AAAAAAIAfQAAAAADAH0AAAAAAQCBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACBAAAAAAAAgQAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAIAfQAAAAABAH0AAAAAAQB9AAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAABAH0AAAAAAwB9AAAAAAMAfQAAAAADAH0AAAAAAwBvAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAbwAAAAAAAHEAAAAAAwCBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAMAfQAAAAACAH0AAAAAAQB9AAAAAAAAgQAAAAAAAIEAAAAAAAABAAAAAAAAgQAAAAAAAIEAAAAAAABxAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAgB9AAAAAAEAfQAAAAAAAH0AAAAAAQCBAAAAAAAAgAAAAAAAAIAAAAAAAACBAAAAAAAAcQAAAAACAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAABAH0AAAAAAwB9AAAAAAIAfQAAAAABAH0AAAAAAQB9AAAAAAMAgQAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -51,6 +62,7 @@ entities: - type: OccluderTree - type: SpreaderGrid - type: Shuttle + dampingModifier: 0.25 - type: GridPathfinding - type: Gravity gravityShakeSound: !type:SoundPathSpecifier @@ -351,6 +363,7 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance + - type: ImplicitRoof - proto: AirCanister entities: - uid: 551 @@ -404,6 +417,8 @@ entities: - type: Transform pos: 6.5,-2.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: AtmosDeviceFanDirectional entities: - uid: 305 @@ -1387,8 +1402,7 @@ entities: - uid: 304 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.432869,2.2409668 + pos: 11.192277,2.7941139 parent: 1 - proto: CarpetBlack entities: @@ -2041,13 +2055,6 @@ entities: - type: Transform pos: 4.3126225,4.8620963 parent: 1 -- proto: DrinkWatermelonJuice - entities: - - uid: 548 - components: - - type: Transform - pos: 11.787036,2.772217 - parent: 1 - proto: FaxMachineBase entities: - uid: 262 @@ -2083,19 +2090,12 @@ entities: - type: Transform pos: 5.5,2.5 parent: 1 -- proto: FoodBurgerChicken +- proto: FoodPlatePlastic entities: - uid: 554 components: - type: Transform - pos: 11.422453,2.6368003 - parent: 1 -- proto: FoodPlateSmallPlastic - entities: - - uid: 547 - components: - - type: Transform - pos: 11.401619,2.6368003 + pos: 11.484088,2.5300417 parent: 1 - proto: GasPassiveVent entities: @@ -3056,6 +3056,20 @@ entities: - type: Transform pos: 8.5,-3.5 parent: 1 +- proto: RandomDrinkSoda + entities: + - uid: 547 + components: + - type: Transform + pos: 11.5,2.5 + parent: 1 +- proto: RandomFoodSingle + entities: + - uid: 548 + components: + - type: Transform + pos: 11.5,2.5 + parent: 1 - proto: ShuttleWindow entities: - uid: 15 @@ -3200,6 +3214,8 @@ entities: - type: Transform pos: 0.5,-8.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SMESBasic entities: - uid: 302 @@ -3379,7 +3395,7 @@ entities: - uid: 553 components: - type: Transform - pos: 11.776619,2.4701335 + pos: 11.685576,2.9053025 parent: 1 - proto: ToyFigurineRatServant entities: @@ -3697,6 +3713,12 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-0.5 parent: 1 + - uid: 94 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-0.5 + parent: 1 - uid: 97 components: - type: Transform @@ -3749,14 +3771,6 @@ entities: rot: 3.141592653589793 rad pos: 11.5,-6.5 parent: 1 -- proto: WallShuttleInterior - entities: - - uid: 94 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-0.5 - parent: 1 - proto: WindoorSecure entities: - uid: 78 diff --git a/Resources/Maps/Shuttles/ShuttleEvent/flatline.yml b/Resources/Maps/Shuttles/ShuttleEvent/flatline.yml index b623ec6813..7dcdf12eeb 100644 --- a/Resources/Maps/Shuttles/ShuttleEvent/flatline.yml +++ b/Resources/Maps/Shuttles/ShuttleEvent/flatline.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 266.0.0 + forkId: "" + forkVersion: "" + time: 08/18/2025 00:22:49 + entityCount: 232 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] tilemap: 0: Space 1: FloorMetalDiamond @@ -24,20 +35,20 @@ entities: chunks: 0,0: ind: 0,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcQAAAAACgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcQAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAABxAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvAAAAAAAAcQAAAAACAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAHEAAAAAAQCBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAdQAAAAAAdQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAdQAAAAADdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAdQAAAAABdQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAdQAAAAACdQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACBAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAdQAAAAAAAHUAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAHUAAAAAAwB1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAB1AAAAAAEAdQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAdQAAAAACAHUAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAdwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAdwAAAAAAdwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAdwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAQAAAAAAdwAAAAAC - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIEAAAAAAAB3AAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAB3AAAAAAAAdwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAdwAAAAAAAHcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIEAAAAAAAB3AAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAABAAAAAAAAdwAAAAACAA== + version: 7 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAABdwAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAACdwAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAABdwAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAABAAAAAAAAgQAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB3AAAAAAEAdwAAAAADAIEAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACAHcAAAAAAgB3AAAAAAMAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHcAAAAAAQB3AAAAAAEAgQAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB3AAAAAAIAdwAAAAACAIEAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -50,6 +61,7 @@ entities: - type: OccluderTree - type: SpreaderGrid - type: Shuttle + dampingModifier: 0.25 - type: GridPathfinding - type: Gravity gravityShakeSound: !type:SoundPathSpecifier @@ -300,6 +312,7 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance + - type: ImplicitRoof - proto: AirCanister entities: - uid: 98 @@ -360,6 +373,8 @@ entities: - type: Transform pos: 1.5,-0.49999997 parent: 1 + - type: Fixtures + fixtures: {} - proto: AtmosDeviceFanDirectional entities: - uid: 104 @@ -387,37 +402,17 @@ entities: parent: 1 - proto: Bloodpack entities: - - uid: 112 - components: - - type: Transform - pos: 0.53517246,-1.2409748 - parent: 1 - - uid: 113 - components: - - type: Transform - pos: 0.56642246,-1.449308 - parent: 1 - uid: 114 components: - type: Transform - pos: 0.81642246,-1.2409748 - parent: 1 - - uid: 115 - components: - - type: Transform - pos: 0.8685057,-1.3763914 + pos: 1.1232822,-1.2575787 parent: 1 - proto: Brutepack entities: - - uid: 235 - components: - - type: Transform - pos: 1.8104452,-1.8881177 - parent: 1 - uid: 236 components: - type: Transform - pos: 1.8104452,-2.0756176 + pos: 1.3732822,-2.3513286 parent: 1 - proto: ButtonFrameCaution entities: @@ -758,6 +753,13 @@ entities: rot: 3.141592653589793 rad pos: -0.49999997,3.5 parent: 1 +- proto: ChemistryBottleEpinephrine + entities: + - uid: 124 + components: + - type: Transform + pos: 1.3524488,-1.965912 + parent: 1 - proto: ClosetWallEmergencyFilledRandom entities: - uid: 204 @@ -800,6 +802,8 @@ entities: - 212 - 213 - 215 + - type: Fixtures + fixtures: {} - proto: ClothingEyesHudMedical entities: - uid: 233 @@ -859,7 +863,7 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitParamedicNT +- proto: ClothingUniformJumpsuitParamedic entities: - uid: 213 components: @@ -906,6 +910,8 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-1.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: DoubleEmergencyOxygenTankFilled entities: - uid: 209 @@ -932,18 +938,6 @@ entities: - type: Transform pos: -1.6332935,-3.5610697 parent: 1 -- proto: EpinephrineChemistryBottle - entities: - - uid: 124 - components: - - type: Transform - pos: 1.3126785,-1.980415 - parent: 1 - - uid: 125 - components: - - type: Transform - pos: 1.3458732,-1.7341763 - parent: 1 - proto: ExtinguisherCabinetFilled entities: - uid: 232 @@ -952,6 +946,8 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-2.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: FloorDrain entities: - uid: 198 @@ -1162,20 +1158,10 @@ entities: color: '#FF1212FF' - proto: Gauze entities: - - uid: 116 - components: - - type: Transform - pos: 1.6271232,-1.2133429 - parent: 1 - - uid: 117 - components: - - type: Transform - pos: 1.4083732,-1.3175095 - parent: 1 - uid: 118 components: - type: Transform - pos: 1.76254,-1.4529263 + pos: 0.8107822,-1.528412 parent: 1 - proto: GeneratorBasic15kW entities: @@ -1270,10 +1256,11 @@ entities: parent: 1 - proto: HandheldHealthAnalyzerUnpowered entities: - - uid: 132 + - uid: 112 components: - type: Transform - pos: 1.7501786,-2.5637481 + rot: -1.5707963267948966 rad + pos: 0.7066155,-1.2992454 parent: 1 - proto: IntercomMedical entities: @@ -1283,6 +1270,8 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,-0.49999997 parent: 1 + - type: Fixtures + fixtures: {} - proto: LightBulb entities: - uid: 217 @@ -1376,12 +1365,7 @@ entities: - uid: 130 components: - type: Transform - pos: 1.4041953,-1.6485344 - parent: 1 - - uid: 237 - components: - - type: Transform - pos: 1.6750284,-1.7527012 + pos: 1.2795322,-1.6429952 parent: 1 - proto: OxygenTankFilled entities: @@ -1548,11 +1532,11 @@ entities: parent: 1 - proto: Scalpel entities: - - uid: 199 + - uid: 115 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.0872557,-1.386808 + pos: 0.4357822,-1.3825787 parent: 1 - proto: ShuttleWindow entities: @@ -1624,19 +1608,28 @@ entities: - type: DeviceLinkSource linkedPorts: 216: - - Pressed: Toggle + - - Pressed + - Toggle 227: - - Pressed: Toggle + - - Pressed + - Toggle 218: - - Pressed: Toggle + - - Pressed + - Toggle 229: - - Pressed: Toggle + - - Pressed + - Toggle 223: - - Pressed: Toggle + - - Pressed + - Toggle 225: - - Pressed: Toggle + - - Pressed + - Toggle 220: - - Pressed: Toggle + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - proto: SMESBasic entities: - uid: 43 @@ -1663,28 +1656,35 @@ entities: - uid: 120 components: - type: Transform - pos: 1.41879,-2.1404262 + pos: 1.5920322,-1.559662 parent: 1 - proto: SyringeDermaline entities: - uid: 121 components: - type: Transform - pos: 1.66879,-2.119593 + pos: 1.5607822,-2.111745 parent: 1 - proto: SyringeInaprovaline entities: - - uid: 123 + - uid: 116 components: - type: Transform - pos: 1.3979566,-2.4112594 + pos: 1.6441156,-1.7575787 + parent: 1 +- proto: SyringeSigynate + entities: + - uid: 117 + components: + - type: Transform + pos: 1.6753656,-2.5492454 parent: 1 - proto: SyringeTranexamicAcid entities: - - uid: 122 + - uid: 113 components: - type: Transform - pos: 1.8042066,-2.1925094 + pos: 1.6336988,-2.3513286 parent: 1 - proto: TableReinforced entities: @@ -1747,16 +1747,29 @@ entities: parent: 1 - proto: Tourniquet entities: - - uid: 133 - components: - - type: Transform - pos: 1.9146119,-1.4193677 - parent: 1 - uid: 134 components: - type: Transform - pos: 1.8625284,-1.221451 + pos: 1.5086988,-1.2367454 parent: 1 +- proto: VendingMachineWallMedicalCivilian + entities: + - uid: 122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + - type: Fixtures + fixtures: {} - proto: VisitorParamedicSpawner entities: - uid: 214 diff --git a/Resources/Maps/Shuttles/ShuttleEvent/incorporation.yml b/Resources/Maps/Shuttles/ShuttleEvent/incorporation.yml index bbcef8f933..63e2c7f6f3 100644 --- a/Resources/Maps/Shuttles/ShuttleEvent/incorporation.yml +++ b/Resources/Maps/Shuttles/ShuttleEvent/incorporation.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 266.0.0 + forkId: "" + forkVersion: "" + time: 08/18/2025 04:40:53 + entityCount: 876 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] tilemap: 0: Space 32: FloorDark @@ -32,28 +43,28 @@ entities: chunks: 0,0: ind: 0,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAfQAAAAABfQAAAAAAfQAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAADbwAAAAAAfQAAAAABfQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAADgQAAAAAAfwAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAADgQAAAAAAfQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAIEAAAAAAAB9AAAAAAEAfQAAAAADAH0AAAAAAwCBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAQCBAAAAAAAAfQAAAAABAH0AAAAAAAB9AAAAAAEAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAgBgAAAAAAAAgQAAAAAAAH0AAAAAAAB9AAAAAAEAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABACAAAAAAAQAgAAAAAAMAIAAAAAADAG8AAAAAAAB9AAAAAAEAfQAAAAACAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAADACAAAAAAAwCBAAAAAAAAfwAAAAABAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAEAIAAAAAABACAAAAAAAAAgAAAAAAMAgQAAAAAAAH0AAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAYAAAAAACYAAAAAADYAAAAAADbwAAAAAAYAAAAAACYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcQAAAAAAcQAAAAADgQAAAAAAYAAAAAACYAAAAAAAIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAcQAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcQAAAAABgQAAAAAAIAAAAAADIAAAAAACIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAbwAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAG8AAAAAAABgAAAAAAIAYAAAAAADAGAAAAAAAwBvAAAAAAAAYAAAAAACAGAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAHEAAAAAAABxAAAAAAMAgQAAAAAAAGAAAAAAAgBgAAAAAAAAIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAcQAAAAAAAIEAAAAAAAAgAAAAAAAAIAAAAAABACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAHEAAAAAAQCBAAAAAAAAIAAAAAADACAAAAAAAgAgAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: awAAAAADYAAAAAAAYAAAAAABbwAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAABYAAAAAABYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAADcQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAADcwAAAAABcwAAAAADcwAAAAAAcwAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACgQAAAAAAcwAAAAACdwAAAAABdwAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAcwAAAAABdwAAAAACdwAAAAABcwAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAcwAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAfQAAAAADfQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: awAAAAADAGAAAAAAAABgAAAAAAEAbwAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAABAGAAAAAAAQCBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGsAAAAAAQBgAAAAAAEAYAAAAAACAIEAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAABgAAAAAAMAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABrAAAAAAMAcQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIAAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAQBgAAAAAAAAgQAAAAAAAHMAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAIAYAAAAAADAHMAAAAAAQBzAAAAAAMAcwAAAAAAAHMAAAAAAgCBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABAGAAAAAAAgCBAAAAAAAAcwAAAAACAHcAAAAAAQB3AAAAAAMAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAHMAAAAAAQB3AAAAAAIAdwAAAAABAHMAAAAAAwCBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTAAAAAAAAUwAAAAAAAIEAAAAAAABzAAAAAAAAcwAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAFMAAAAAAACBAAAAAAAAcwAAAAABAIEAAAAAAACBAAAAAAAAfQAAAAADAH0AAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADbwAAAAAAYAAAAAAAYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAYAAAAAACYAAAAAACbwAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAABYAAAAAABgQAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAUwAAAAAAUwAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAADAG8AAAAAAABgAAAAAAAAYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAACAGAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABxAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAgQAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACAAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAGAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAG8AAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAgBgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAG8AAAAAAABgAAAAAAEAYAAAAAACAGAAAAAAAABgAAAAAAIAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAABvAAAAAAAAYAAAAAACAGAAAAAAAgBvAAAAAAAAgQAAAAAAAG8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAGAAAAAAAQBgAAAAAAEAgQAAAAAAAFMAAAAAAABTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvAAAAAAAAbwAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAAAAIEAAAAAAABTAAAAAAAAUwAAAAAAAA== + version: 7 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAABwAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAABgAAAAAAEAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + version: 7 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAHAAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAgQAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAAAAGAAAAAAAQCBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -66,6 +77,7 @@ entities: - type: OccluderTree - type: SpreaderGrid - type: Shuttle + dampingModifier: 0.25 - type: GridPathfinding - type: Gravity gravityShakeSound: !type:SoundPathSpecifier @@ -582,6 +594,7 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance + - type: ImplicitRoof - proto: AirAlarm entities: - uid: 855 @@ -594,6 +607,8 @@ entities: - 854 - 703 - 704 + - type: Fixtures + fixtures: {} - uid: 856 components: - type: Transform @@ -606,6 +621,8 @@ entities: - 619 - 616 - 618 + - type: Fixtures + fixtures: {} - uid: 857 components: - type: Transform @@ -620,6 +637,8 @@ entities: - 811 - 659 - 660 + - type: Fixtures + fixtures: {} - uid: 858 components: - type: Transform @@ -631,6 +650,8 @@ entities: - 853 - 611 - 626 + - type: Fixtures + fixtures: {} - proto: AirCanister entities: - uid: 770 @@ -789,11 +810,15 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-16.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 456 components: - type: Transform pos: -1.5,-2.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: AtmosDeviceFanDirectional entities: - uid: 733 @@ -925,27 +950,6 @@ entities: hard: True restitution: 0 friction: 0.4 -- proto: BorgModuleClowning - entities: - - uid: 779 - components: - - type: Transform - pos: -4.5,-17.5 - parent: 1 -- proto: BorgModuleService - entities: - - uid: 869 - components: - - type: Transform - pos: -4.5,-17.5 - parent: 1 -- proto: BorgModuleTool - entities: - - uid: 868 - components: - - type: Transform - pos: -4.5,-17.5 - parent: 1 - proto: BoxBeaker entities: - uid: 679 @@ -2402,20 +2406,26 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-15.5 parent: 1 + - type: AnalysisConsole + analyzerEntity: 398 - type: DeviceLinkSource linkedPorts: - 272: - - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver + 398: + - - ArtifactAnalyzerSender + - ArtifactAnalyzerReceiver - uid: 784 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-15.5 parent: 1 + - type: AnalysisConsole + analyzerEntity: 272 - type: DeviceLinkSource linkedPorts: - 398: - - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver + 272: + - - ArtifactAnalyzerSender + - ArtifactAnalyzerReceiver - proto: ComputerComms entities: - uid: 67 @@ -2480,54 +2490,25 @@ entities: - proto: CrateArtifactContainer entities: - uid: 766 - components: - - type: Transform - pos: 7.5,-16.5 - parent: 1 - - type: Lock - locked: False - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 767 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 768 components: - type: Transform pos: -6.5,-16.5 parent: 1 - type: Lock locked: False - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 769 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateMaterialGlass - entities: - - uid: 765 + - uid: 768 components: - type: Transform - pos: -6.496111,-14.5 + pos: 7.5,-16.5 parent: 1 -- proto: CrateMaterialPlastic + - type: Lock + locked: False +- proto: CrateFilledSpawner entities: - - uid: 785 + - uid: 779 components: - type: Transform - pos: 7.501801,-14.5 + pos: -1.5,-14.5 parent: 1 - proto: CrateMaterialSteel entities: @@ -2536,6 +2517,13 @@ entities: - type: Transform pos: -4.5,4.5 parent: 1 +- proto: CratePermaEscapeSpawner + entities: + - uid: 230 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1 - proto: CrowbarRed entities: - uid: 875 @@ -2557,6 +2545,8 @@ entities: - type: Transform pos: 5.5,-1.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: DresserCaptainFilled entities: - uid: 410 @@ -2611,12 +2601,16 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-16.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 777 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-16.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: FaxMachineCaptain entities: - uid: 743 @@ -4282,19 +4276,13 @@ entities: - uid: 272 components: - type: Transform - pos: 6.5,-12.5 + pos: -5.5,-12.5 parent: 1 - - type: ItemPlacer - placedEntities: - - 789 - uid: 398 components: - type: Transform - pos: -5.5,-12.5 + pos: 6.5,-12.5 parent: 1 - - type: ItemPlacer - placedEntities: - - 788 - proto: MedicalBed entities: - uid: 422 @@ -4309,16 +4297,16 @@ entities: parent: 1 - proto: NetworkConfigurator entities: + - uid: 785 + components: + - type: Transform + pos: -3.7083337,-14.34175 + parent: 1 - uid: 809 components: - type: Transform pos: 4.2934732,-14.35611 parent: 1 - - uid: 810 - components: - - type: Transform - pos: -3.716944,-14.345694 - parent: 1 - proto: PaperCaptainsThoughts entities: - uid: 744 @@ -4595,6 +4583,18 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-14.5 parent: 1 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 418 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 1 + - uid: 765 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 1 - proto: SecurityVisitorSpawner entities: - uid: 871 @@ -4859,9 +4859,13 @@ entities: - type: DeviceLinkSource linkedPorts: 289: - - Pressed: Toggle + - - Pressed + - Toggle 278: - - Pressed: DoorBolt + - - Pressed + - DoorBolt + - type: Fixtures + fixtures: {} - uid: 298 components: - type: Transform @@ -4871,7 +4875,10 @@ entities: - type: DeviceLinkSource linkedPorts: 261: - - Pressed: Toggle + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - uid: 308 components: - type: MetaData @@ -4882,9 +4889,13 @@ entities: - type: DeviceLinkSource linkedPorts: 307: - - Pressed: Toggle + - - Pressed + - Toggle 277: - - Pressed: DoorBolt + - - Pressed + - DoorBolt + - type: Fixtures + fixtures: {} - uid: 560 components: - type: Transform @@ -4894,7 +4905,10 @@ entities: - type: DeviceLinkSource linkedPorts: 562: - - Pressed: Toggle + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - uid: 795 components: - type: Transform @@ -4903,11 +4917,16 @@ entities: - type: DeviceLinkSource linkedPorts: 571: - - Pressed: Toggle + - - Pressed + - Toggle 443: - - Pressed: Toggle + - - Pressed + - Toggle 438: - - Pressed: Toggle + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - proto: SinkStemlessWater entities: - uid: 687 @@ -5286,48 +5305,18 @@ entities: - type: Transform pos: 5.5,-14.5 parent: 1 -- proto: VariedXenoArtifactItem +- proto: VendingMachineMedicalBase entities: - uid: 767 components: - type: Transform - parent: 766 - - type: XenoArtifact - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 6.5,-2.5 + parent: 1 - uid: 769 - components: - - type: Transform - parent: 768 - - type: XenoArtifact - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 788 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5242987,-12.5 - parent: 1 - - uid: 789 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.506952,-12.5 - parent: 1 -- proto: VendingMachineMedical - entities: - - uid: 230 components: - type: Transform pos: 3.5,-5.5 parent: 1 - - uid: 418 - components: - - type: Transform - pos: 6.5,-2.5 - parent: 1 - proto: VendingMachineTankDispenserEVA entities: - uid: 28 diff --git a/Resources/Maps/Shuttles/ShuttleEvent/instigator.yml b/Resources/Maps/Shuttles/ShuttleEvent/instigator.yml index dd00483017..b67960cab4 100644 --- a/Resources/Maps/Shuttles/ShuttleEvent/instigator.yml +++ b/Resources/Maps/Shuttles/ShuttleEvent/instigator.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 266.0.0 + forkId: "" + forkVersion: "" + time: 08/18/2025 00:34:06 + entityCount: 541 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] tilemap: 0: Space 86: FloorShuttleBlack @@ -23,20 +34,20 @@ entities: chunks: 0,0: ind: 0,0 - tiles: WwAAAAADWwAAAAABWwAAAAABgQAAAAAAgQAAAAAAWwAAAAADVgAAAAAAcAAAAAAAcQAAAAADcQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWwAAAAADWwAAAAACVgAAAAADgQAAAAAAgQAAAAAAVgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWwAAAAAAWwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAWwAAAAAAgQAAAAAAVgAAAAAAVgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAABVgAAAAAAVgAAAAACVgAAAAAAVgAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWwAAAAABgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAVgAAAAACVgAAAAADVgAAAAACVgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAVgAAAAACVgAAAAABVgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAVgAAAAACVgAAAAABVgAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAAAVgAAAAACVgAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAABVgAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAACVgAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAVgAAAAAAVgAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: WwAAAAADAFsAAAAAAQBbAAAAAAEAgQAAAAAAAIEAAAAAAABbAAAAAAMAVgAAAAAAAHAAAAAAAABxAAAAAAMAcQAAAAAAAIEAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFsAAAAAAQBbAAAAAAMAWwAAAAACAFYAAAAAAwCBAAAAAAAAgQAAAAAAAFYAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAABWAAAAAAAAWwAAAAAAAIEAAAAAAABWAAAAAAAAVgAAAAADAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAVgAAAAABAFYAAAAAAABWAAAAAAIAVgAAAAAAAFYAAAAAAQCBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFsAAAAAAQBbAAAAAAEAgQAAAAAAAIEAAAAAAAAAAAAAAAAAgAAAAAAAAIEAAAAAAABWAAAAAAIAVgAAAAADAFYAAAAAAgBWAAAAAAIAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABWAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAABWAAAAAAIAVgAAAAABAFYAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACBAAAAAAAAVgAAAAACAFYAAAAAAQBWAAAAAAIAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAFYAAAAAAABWAAAAAAIAVgAAAAABAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAABWAAAAAAEAVgAAAAACAIEAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAVgAAAAACAFYAAAAAAgCBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAFYAAAAAAABWAAAAAAMAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACBAAAAAAAAgQAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVgAAAAABVgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVgAAAAADVgAAAAADVgAAAAABVgAAAAACVgAAAAACVgAAAAABVgAAAAADgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACWwAAAAABWwAAAAABVgAAAAAAVgAAAAADVgAAAAAAVgAAAAAAgQAAAAAAcQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFYAAAAAAQBWAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABWAAAAAAMAVgAAAAADAFYAAAAAAQBWAAAAAAIAVgAAAAACAFYAAAAAAQBWAAAAAAMAgQAAAAAAAIEAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAEAVgAAAAAAAFYAAAAAAwBWAAAAAAAAVgAAAAAAAIEAAAAAAABxAAAAAAAAgQAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAcQAAAAABcQAAAAAAcAAAAAAAVgAAAAACWwAAAAACgQAAAAAAgQAAAAAAWwAAAAAAWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAWwAAAAABWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVgAAAAAAVgAAAAABgQAAAAAAWwAAAAAAVgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAAAVgAAAAADVgAAAAADVgAAAAACVgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVgAAAAABVgAAAAAAVgAAAAAAVgAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAVgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAAAVgAAAAACVgAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAADVgAAAAABVgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAABVgAAAAABVgAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAVgAAAAAAVgAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAABVgAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAAAVgAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgQAAAAAAAHEAAAAAAQBxAAAAAAAAcAAAAAAAAFYAAAAAAgBbAAAAAAIAgQAAAAAAAIEAAAAAAABbAAAAAAAAWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABWAAAAAAAAgQAAAAAAAIEAAAAAAABWAAAAAAAAWwAAAAABAFsAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABWAAAAAAAAVgAAAAABAIEAAAAAAABbAAAAAAAAVgAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAFsAAAAAAABbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAVgAAAAAAAFYAAAAAAwBWAAAAAAMAVgAAAAACAFYAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAABbAAAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAFYAAAAAAQBWAAAAAAAAVgAAAAAAAFYAAAAAAwCBAAAAAAAAgAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAFsAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAVgAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAVgAAAAAAAFYAAAAAAgBWAAAAAAMAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAFYAAAAAAwBWAAAAAAEAVgAAAAAAAIEAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAABWAAAAAAEAVgAAAAABAFYAAAAAAQCBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgQAAAAAAAFYAAAAAAABWAAAAAAIAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAABWAAAAAAEAVgAAAAADAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAVgAAAAAAAFYAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIEAAAAAAACBAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAVgAAAAAAVgAAAAACVgAAAAACVgAAAAADVgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAcQAAAAABgQAAAAAAVgAAAAAAVgAAAAACVgAAAAAAVgAAAAACWwAAAAACWwAAAAAC - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAFYAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIEAAAAAAACBAAAAAAAAVgAAAAAAAFYAAAAAAABWAAAAAAIAVgAAAAACAFYAAAAAAwBWAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIEAAAAAAABxAAAAAAEAgQAAAAAAAFYAAAAAAABWAAAAAAIAVgAAAAAAAFYAAAAAAgBbAAAAAAIAWwAAAAACAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -49,6 +60,7 @@ entities: - type: OccluderTree - type: SpreaderGrid - type: Shuttle + dampingModifier: 0.25 - type: GridPathfinding - type: Gravity gravityShakeSound: !type:SoundPathSpecifier @@ -433,6 +445,29 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance + - type: ImplicitRoof +- proto: ActionToggleInternals + entities: + - uid: 495 + mapInit: true + paused: true + components: + - type: Transform + parent: 493 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 493 +- proto: ActionToggleJetpack + entities: + - uid: 494 + mapInit: true + paused: true + components: + - type: Transform + parent: 493 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 493 - proto: AirCanister entities: - uid: 441 @@ -460,7 +495,8 @@ entities: - type: DeviceLinkSource linkedPorts: 127: - - DoorStatus: DoorBolt + - - DoorStatus + - DoorBolt - uid: 126 components: - type: Transform @@ -476,7 +512,8 @@ entities: - type: DeviceLinkSource linkedPorts: 128: - - DoorStatus: DoorBolt + - - DoorStatus + - DoorBolt - uid: 127 components: - type: Transform @@ -492,7 +529,8 @@ entities: - type: DeviceLinkSource linkedPorts: 125: - - DoorStatus: DoorBolt + - - DoorStatus + - DoorBolt - uid: 128 components: - type: Transform @@ -508,7 +546,8 @@ entities: - type: DeviceLinkSource linkedPorts: 126: - - DoorStatus: DoorBolt + - - DoorStatus + - DoorBolt - proto: AirlockMaint entities: - uid: 43 @@ -568,6 +607,8 @@ entities: - type: Transform pos: -2.5,0.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: AtmosDeviceFanDirectional entities: - uid: 87 @@ -770,12 +811,12 @@ entities: - uid: 463 components: - type: Transform - pos: -7.332144,10.686393 + pos: -7.396112,7.4312053 parent: 1 - uid: 464 components: - type: Transform - pos: -7.311311,7.5718102 + pos: -7.271112,7.639539 parent: 1 - proto: ButtonFrameExit entities: @@ -1748,11 +1789,47 @@ entities: - type: Transform pos: -7.5,9.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: 460 components: - type: Transform pos: -7.5,8.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 - proto: CyberPen entities: - uid: 328 @@ -1765,7 +1842,7 @@ entities: - uid: 496 components: - type: Transform - pos: 8.55729,9.557987 + pos: 8.469106,9.509953 parent: 1 - proto: FaxMachineSyndie entities: @@ -2708,13 +2785,31 @@ entities: - type: Transform pos: 0.5,-2.5 parent: 1 +- proto: HandheldHealthAnalyzer + entities: + - uid: 540 + components: + - type: Transform + pos: -7.6773615,10.327039 + parent: 1 - proto: JetpackMiniFilled entities: - uid: 493 components: - type: Transform - pos: 8.505206,10.057987 + pos: 8.489939,10.312036 parent: 1 + - type: GasTank + toggleActionEntity: 495 + - type: Jetpack + toggleActionEntity: 494 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 494 + - 495 - proto: LockerSyndicate entities: - uid: 471 @@ -2770,6 +2865,34 @@ entities: showEnts: False occludes: True ent: null +- proto: MedkitAdvancedFilled + entities: + - uid: 538 + components: + - type: Transform + pos: -7.6565285,10.806205 + parent: 1 +- proto: MedkitBruteFilled + entities: + - uid: 537 + components: + - type: Transform + pos: -7.250519,10.341591 + parent: 1 +- proto: MedkitCombatFilled + entities: + - uid: 539 + components: + - type: Transform + pos: 8.510773,9.89537 + parent: 1 +- proto: MedkitFilled + entities: + - uid: 541 + components: + - type: Transform + pos: -7.2296853,10.747841 + parent: 1 - proto: PhoneInstrumentSyndicate entities: - uid: 498 @@ -2869,6 +2992,13 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,3.5 parent: 1 +- proto: PowerCellRecharger + entities: + - uid: 536 + components: + - type: Transform + pos: 8.5,10.5 + parent: 1 - proto: PoweredlightRed entities: - uid: 432 @@ -2974,11 +3104,16 @@ entities: - type: DeviceLinkSource linkedPorts: 208: - - Pressed: Toggle + - - Pressed + - Toggle 209: - - Pressed: Toggle + - - Pressed + - Toggle 210: - - Pressed: Toggle + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - uid: 330 components: - type: MetaData @@ -2990,11 +3125,16 @@ entities: - type: DeviceLinkSource linkedPorts: 211: - - Pressed: Toggle + - - Pressed + - Toggle 212: - - Pressed: Toggle + - - Pressed + - Toggle 213: - - Pressed: Toggle + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - proto: SMESBasic entities: - uid: 198 @@ -3109,11 +3249,15 @@ entities: - type: Transform pos: -2.5,2.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 469 components: - type: Transform pos: 3.5,2.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SyndieHandyFlag entities: - uid: 466 @@ -3259,17 +3403,27 @@ entities: - type: DeviceLinkSource linkedPorts: 129: - - Left: On - - Left: Trigger - - Right: On - - Right: Trigger - - Middle: Off + - - Left + - On + - - Left + - Trigger + - - Right + - On + - - Right + - Trigger + - - Middle + - Off 132: - - Left: On - - Left: Trigger - - Right: On - - Right: Trigger - - Middle: Off + - - Left + - On + - - Left + - Trigger + - - Right + - On + - - Right + - Trigger + - - Middle + - Off - proto: VendingMachineClothing entities: - uid: 465 @@ -4015,11 +4169,11 @@ entities: - uid: 461 components: - type: Transform - pos: -7.4571443,7.4884768 + pos: -7.5419455,7.639539 parent: 1 - uid: 462 components: - type: Transform - pos: -7.4154773,10.488477 + pos: -7.6356955,7.483289 parent: 1 ... diff --git a/Resources/Maps/Shuttles/arrivals_relic.yml b/Resources/Maps/Shuttles/arrivals_relic.yml index 3f6c7e846c..4d586843fe 100644 --- a/Resources/Maps/Shuttles/arrivals_relic.yml +++ b/Resources/Maps/Shuttles/arrivals_relic.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Grid - engineVersion: 260.0.0 + engineVersion: 264.0.0 forkId: "" forkVersion: "" - time: 06/09/2025 21:38:40 - entityCount: 317 + time: 08/21/2025 00:31:06 + entityCount: 318 maps: [] grids: - 2 @@ -30,11 +30,27 @@ entities: chunks: 0,0: ind: 0,0 - tiles: XwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAAAAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAABfAAAAAAAAXwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAggAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAIIAAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAAAAAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAAAAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAAAAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAAAAAAAAAABfAAAAAAAAXwAAAAAAAA== version: 7 - 0,-1: - ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAggAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAAAAAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAAAAAAAAAAA== + 0,1: + ind: 0,1 + tiles: XwAAAAAAAF8AAAAAAABfAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAIIAAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAAAAAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 1,1: + ind: 1,1 + tiles: XwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAA== + version: 7 + 1,0: + ind: 1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 - type: Broadphase - type: Physics @@ -63,71 +79,57 @@ entities: version: 2 data: tiles: - 0,0: - 0: 52975 - 1: 8448 - 0,-1: - 0: 61120 - 1: 292 - 0,1: - 1: 4 - 1,0: - 0: 61183 - 1,-1: - 0: 65248 - 1,1: - 1: 8464 - 0: 52416 - 2,0: - 0: 30587 - 2,1: - 0: 65328 - 1: 64 - 1,2: - 1: 8 - 2,-1: - 0: 30576 - 2,2: - 0: 12 - 1: 64 - 3,0: - 0: 4919 - 1: 16384 - 3,-1: - 0: 13072 - 1: 66 - 3,1: - 1: 16898 - 3,2: - 1: 36 - 1,-2: - 1: 4392 - 0: 52416 - 2,-2: - 0: 16380 - 1: 16384 - 2,-3: - 1: 16384 - 3,-3: - 1: 8192 - 3,-2: - 1: 580 + 0,3: + 0: 67 + 1: 28672 + -1,3: + 0: 128 + 0,4: + 1: 61159 + 0: 4104 + 1,3: + 0: 18 + 1: 3776 + 1,4: + 1: 61166 + 2,3: + 1: 8049 + 0: 8 + 2,4: + 1: 65534 + 3,3: + 0: 88 + 1: 49152 + 3,4: + 1: 61164 + 0: 2 + 4,3: + 0: 33 + 1: 4096 + -1,4: + 0: 8 + 0,5: + 1: 14 + 0: 3104 + 1,5: + 1: 59630 + 1,6: + 0: 1057 + 1: 206 + 2,5: + 1: 62463 + 2,6: + 1: 383 + 0: 1152 + 3,6: + 0: 1 + 3,5: + 1: 14 + 0: 1664 + 4,4: + 1: 1 + 0: 4098 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: @@ -143,1849 +145,1796 @@ entities: - 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 + - type: ImplicitRoof - proto: AirlockCommandGlassLocked - entities: - - uid: 67 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,0.5 - parent: 2 -- proto: AirlockExternalGlassLocked - entities: - - uid: 108 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-6.5 - parent: 2 - - uid: 109 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,7.5 - parent: 2 - - uid: 110 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,6.5 - parent: 2 - - uid: 111 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-5.5 - parent: 2 -- proto: AirlockGlassShuttle - entities: - - uid: 66 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,0.5 - parent: 2 -- proto: APCBasic - entities: - - uid: 291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,0.5 - parent: 2 -- proto: CableApcExtension - entities: - - uid: 175 - components: - - type: Transform - pos: 12.5,2.5 - parent: 2 - - uid: 188 - components: - - type: Transform - pos: 12.5,1.5 - parent: 2 - - uid: 189 - components: - - type: Transform - pos: 9.5,0.5 - parent: 2 - - uid: 192 - components: - - type: Transform - pos: 11.5,0.5 - parent: 2 - - uid: 193 - components: - - type: Transform - pos: 10.5,0.5 - parent: 2 - - uid: 194 - components: - - type: Transform - pos: 12.5,-1.5 - parent: 2 - - uid: 195 - components: - - type: Transform - pos: 12.5,-0.5 - parent: 2 - - uid: 196 - components: - - type: Transform - pos: 13.5,0.5 - parent: 2 - - uid: 197 - components: - - type: Transform - pos: 12.5,0.5 - parent: 2 - - uid: 198 - components: - - type: Transform - pos: 10.5,-2.5 - parent: 2 - - uid: 199 - components: - - type: Transform - pos: 9.5,-2.5 - parent: 2 - - uid: 200 - components: - - type: Transform - pos: 8.5,-2.5 - parent: 2 - - uid: 201 - components: - - type: Transform - pos: 7.5,-2.5 - parent: 2 - - uid: 202 - components: - - type: Transform - pos: 6.5,-2.5 - parent: 2 - - uid: 203 - components: - - type: Transform - pos: 5.5,-2.5 - parent: 2 - - uid: 204 - components: - - type: Transform - pos: 5.5,-1.5 - parent: 2 - - uid: 205 - components: - - type: Transform - pos: 5.5,-0.5 - parent: 2 - - uid: 206 - components: - - type: Transform - pos: 5.5,0.5 - parent: 2 - - uid: 207 - components: - - type: Transform - pos: 5.5,1.5 - parent: 2 - - uid: 208 - components: - - type: Transform - pos: 5.5,2.5 - parent: 2 - - uid: 209 - components: - - type: Transform - pos: 5.5,3.5 - parent: 2 - - uid: 210 - components: - - type: Transform - pos: 6.5,3.5 - parent: 2 - - uid: 211 - components: - - type: Transform - pos: 7.5,3.5 - parent: 2 - - uid: 212 - components: - - type: Transform - pos: 8.5,3.5 - parent: 2 - - uid: 213 - components: - - type: Transform - pos: 9.5,3.5 - parent: 2 - - uid: 214 - components: - - type: Transform - pos: 10.5,3.5 - parent: 2 - - uid: 215 - components: - - type: Transform - pos: 4.5,0.5 - parent: 2 - - uid: 216 - components: - - type: Transform - pos: 3.5,0.5 - parent: 2 - - uid: 217 - components: - - type: Transform - pos: 2.5,0.5 - parent: 2 - - uid: 218 - components: - - type: Transform - pos: 1.5,0.5 - parent: 2 - - uid: 219 - components: - - type: Transform - pos: 3.5,1.5 - parent: 2 - - uid: 220 - components: - - type: Transform - pos: 3.5,2.5 - parent: 2 - - uid: 221 - components: - - type: Transform - pos: 3.5,3.5 - parent: 2 - - uid: 222 - components: - - type: Transform - pos: 3.5,0.5 - parent: 2 - - uid: 223 - components: - - type: Transform - pos: 3.5,-0.5 - parent: 2 - - uid: 224 - components: - - type: Transform - pos: 3.5,-1.5 - parent: 2 - - uid: 225 - components: - - type: Transform - pos: 3.5,-2.5 - parent: 2 - - uid: 228 - components: - - type: Transform - pos: 7.5,4.5 - parent: 2 - - uid: 229 - components: - - type: Transform - pos: 7.5,5.5 - parent: 2 - - uid: 230 - components: - - type: Transform - pos: 7.5,6.5 - parent: 2 - - uid: 231 - components: - - type: Transform - pos: 8.5,6.5 - parent: 2 - - uid: 232 - components: - - type: Transform - pos: 9.5,6.5 - parent: 2 - - uid: 233 - components: - - type: Transform - pos: 9.5,7.5 - parent: 2 - - uid: 234 - components: - - type: Transform - pos: 10.5,7.5 - parent: 2 - - uid: 235 - components: - - type: Transform - pos: 11.5,7.5 - parent: 2 - - uid: 236 - components: - - type: Transform - pos: 11.5,8.5 - parent: 2 - - uid: 237 - components: - - type: Transform - pos: 7.5,-3.5 - parent: 2 - - uid: 238 - components: - - type: Transform - pos: 7.5,-4.5 - parent: 2 - - uid: 239 - components: - - type: Transform - pos: 7.5,-5.5 - parent: 2 - - uid: 240 - components: - - type: Transform - pos: 8.5,-5.5 - parent: 2 - - uid: 241 - components: - - type: Transform - pos: 9.5,-5.5 - parent: 2 - - uid: 242 - components: - - type: Transform - pos: 9.5,-6.5 - parent: 2 - - uid: 243 - components: - - type: Transform - pos: 10.5,-6.5 - parent: 2 - - uid: 244 - components: - - type: Transform - pos: 11.5,-6.5 - parent: 2 - - uid: 245 - components: - - type: Transform - pos: 11.5,-7.5 - parent: 2 - - uid: 292 - components: - - type: Transform - pos: 8.5,0.5 - parent: 2 - - uid: 293 - components: - - type: Transform - pos: 7.5,0.5 - parent: 2 - - uid: 294 - components: - - type: Transform - pos: 6.5,0.5 - parent: 2 -- proto: CableHV - entities: - - uid: 1 - components: - - type: Transform - pos: 11.5,1.5 - parent: 2 - - uid: 174 - components: - - type: Transform - pos: 7.5,4.5 - parent: 2 - - uid: 176 - components: - - type: Transform - pos: 12.5,-2.5 - parent: 2 - - uid: 177 - components: - - type: Transform - pos: 12.5,-1.5 - parent: 2 - - uid: 178 - components: - - type: Transform - pos: 12.5,-0.5 - parent: 2 - - uid: 179 - components: - - type: Transform - pos: 12.5,0.5 - parent: 2 - - uid: 180 - components: - - type: Transform - pos: 12.5,1.5 - parent: 2 - - uid: 181 - components: - - type: Transform - pos: 12.5,2.5 - parent: 2 - - uid: 182 - components: - - type: Transform - pos: 12.5,3.5 - parent: 2 - - uid: 186 - components: - - type: Transform - pos: 9.5,6.5 - parent: 2 - - uid: 289 - components: - - type: Transform - pos: 8.5,6.5 - parent: 2 - - uid: 290 - components: - - type: Transform - pos: 7.5,3.5 - parent: 2 - - uid: 295 - components: - - type: Transform - pos: 7.5,2.5 - parent: 2 - - uid: 296 - components: - - type: Transform - pos: 7.5,1.5 - parent: 2 - - uid: 297 - components: - - type: Transform - pos: 7.5,0.5 - parent: 2 - - uid: 298 - components: - - type: Transform - pos: 7.5,-0.5 - parent: 2 - - uid: 299 - components: - - type: Transform - pos: 7.5,-1.5 - parent: 2 - - uid: 300 - components: - - type: Transform - pos: 7.5,-3.5 - parent: 2 - - uid: 301 - components: - - type: Transform - pos: 7.5,-4.5 - parent: 2 - - uid: 302 - components: - - type: Transform - pos: 7.5,-5.5 - parent: 2 - - uid: 303 - components: - - type: Transform - pos: 7.5,-2.5 - parent: 2 - - uid: 304 - components: - - type: Transform - pos: 8.5,-5.5 - parent: 2 - - uid: 305 - components: - - type: Transform - pos: 7.5,5.5 - parent: 2 - - uid: 306 - components: - - type: Transform - pos: 9.5,-5.5 - parent: 2 - - uid: 307 - components: - - type: Transform - pos: 9.5,3.5 - parent: 2 - - uid: 308 - components: - - type: Transform - pos: 10.5,3.5 - parent: 2 - - uid: 309 - components: - - type: Transform - pos: 9.5,-2.5 - parent: 2 - - uid: 310 - components: - - type: Transform - pos: 10.5,-2.5 - parent: 2 - - uid: 313 - components: - - type: Transform - pos: 11.5,3.5 - parent: 2 - - uid: 314 - components: - - type: Transform - pos: 11.5,-2.5 - parent: 2 - - uid: 315 - components: - - type: Transform - pos: 7.5,6.5 - parent: 2 - - uid: 316 - components: - - type: Transform - pos: 8.5,-2.5 - parent: 2 - - uid: 317 - components: - - type: Transform - pos: 8.5,3.5 - parent: 2 -- proto: CableMV - entities: - - uid: 184 - components: - - type: Transform - pos: 11.5,1.5 - parent: 2 - - uid: 190 - components: - - type: Transform - pos: 11.5,0.5 - parent: 2 - - uid: 191 - components: - - type: Transform - pos: 10.5,0.5 - parent: 2 -- proto: CableTerminal - entities: - - uid: 311 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,3.5 - parent: 2 - - uid: 312 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-2.5 - parent: 2 -- proto: Chair - entities: - - uid: 68 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,2.5 - parent: 2 - - uid: 69 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,2.5 - parent: 2 - - uid: 70 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,2.5 - parent: 2 - - uid: 71 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,2.5 - parent: 2 - - uid: 72 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,2.5 - parent: 2 - - uid: 73 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,2.5 - parent: 2 - - uid: 74 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,1.5 - parent: 2 - - uid: 75 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,1.5 - parent: 2 - - uid: 76 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,1.5 - parent: 2 - - uid: 77 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,1.5 - parent: 2 - - uid: 78 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,1.5 - parent: 2 - - uid: 79 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-1.5 - parent: 2 - - uid: 80 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-1.5 - parent: 2 - - uid: 81 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-1.5 - parent: 2 - - uid: 82 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 2 - - uid: 83 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 - parent: 2 - - uid: 84 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 2 - - uid: 85 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 2 - - uid: 86 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-0.5 - parent: 2 - - uid: 87 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 2 - - uid: 88 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 - parent: 2 - - uid: 89 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 - parent: 2 -- proto: ComputerShuttle - entities: - - uid: 63 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,0.5 - parent: 2 -- proto: GasPipeBend - entities: - - uid: 261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,7.5 - parent: 2 - - uid: 264 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-6.5 - parent: 2 - - uid: 275 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-7.5 - parent: 2 - - uid: 278 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,8.5 - parent: 2 -- proto: GasPipeStraight - entities: - - uid: 265 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,7.5 - parent: 2 - - uid: 267 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-6.5 - parent: 2 - - uid: 268 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-6.5 - parent: 2 - - uid: 269 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,7.5 - parent: 2 - - uid: 273 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-6.5 - parent: 2 - - uid: 274 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-7.5 - parent: 2 - - uid: 279 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,7.5 - parent: 2 - - uid: 280 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,8.5 - parent: 2 -- proto: GasPipeTJunction - entities: - - uid: 173 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-5.5 - parent: 2 - - uid: 258 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-5.5 - parent: 2 - - uid: 259 - components: - - type: Transform - pos: 7.5,6.5 - parent: 2 - - uid: 260 - components: - - type: Transform - pos: 6.5,6.5 - parent: 2 - - uid: 262 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,6.5 - parent: 2 - - uid: 263 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-5.5 - parent: 2 - - uid: 266 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-6.5 - parent: 2 - - uid: 270 - components: - - type: Transform - pos: 11.5,-6.5 - parent: 2 - - uid: 271 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,7.5 - parent: 2 - - uid: 272 - components: - - type: Transform - pos: 13.5,-7.5 - parent: 2 - - uid: 276 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,8.5 - parent: 2 - - uid: 277 - components: - - type: Transform - pos: 13.5,7.5 - parent: 2 -- proto: GasPort - entities: - - uid: 252 - components: - - type: Transform - pos: 6.5,-4.5 - parent: 2 - - uid: 253 - components: - - type: Transform - pos: 7.5,-4.5 - parent: 2 - - uid: 254 - components: - - type: Transform - pos: 8.5,-4.5 - parent: 2 - - uid: 255 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,5.5 - parent: 2 - - uid: 256 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,5.5 - parent: 2 - - uid: 257 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,5.5 - parent: 2 -- proto: GeneratorBasic15kW - entities: - - uid: 185 - components: - - type: Transform - pos: 9.5,6.5 - parent: 2 - - uid: 187 - components: - - type: Transform - pos: 9.5,-5.5 - parent: 2 -- proto: GravityGeneratorMini - entities: - - uid: 287 - components: - - type: Transform - pos: 11.5,8.5 - parent: 2 -- proto: Grille - entities: - - uid: 51 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,4.5 - parent: 2 - - uid: 152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,6.5 - parent: 2 - - uid: 160 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-5.5 - parent: 2 - - uid: 161 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-5.5 - parent: 2 - - uid: 162 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-6.5 - parent: 2 - - uid: 163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-7.5 - parent: 2 - - uid: 164 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-8.5 - parent: 2 - - uid: 165 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-6.5 - parent: 2 - - uid: 166 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-7.5 - parent: 2 - - uid: 167 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,7.5 - parent: 2 - - uid: 168 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,7.5 - parent: 2 - - uid: 169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,8.5 - parent: 2 - - uid: 170 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,8.5 - parent: 2 - - uid: 171 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,9.5 - parent: 2 - - uid: 172 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,6.5 - parent: 2 - - uid: 227 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-3.5 - parent: 2 -- proto: Gyroscope - entities: - - uid: 288 - components: - - type: Transform - pos: 11.5,-7.5 - parent: 2 -- proto: LiquidCarbonDioxideCanister - entities: - - uid: 285 - components: - - type: Transform - anchored: True - pos: 8.5,5.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 286 - components: - - type: Transform - anchored: True - pos: 8.5,-4.5 - parent: 2 - - type: Physics - bodyType: Static -- proto: LiquidOxygenCanister - entities: - - uid: 283 - components: - - type: Transform - anchored: True - pos: 7.5,5.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 284 - components: - - type: Transform - anchored: True - pos: 7.5,-4.5 - parent: 2 - - type: Physics - bodyType: Static -- proto: LockerSteel - entities: - - uid: 90 - components: - - type: Transform - anchored: True - pos: 10.5,3.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 91 - components: - - type: Transform - anchored: True - pos: 9.5,3.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 92 - components: - - type: Transform - anchored: True - pos: 8.5,3.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 93 - components: - - type: Transform - anchored: True - pos: 7.5,3.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 94 - components: - - type: Transform - anchored: True - pos: 6.5,3.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 95 - components: - - type: Transform - anchored: True - pos: 5.5,3.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 96 - components: - - type: Transform - anchored: True - pos: 10.5,-2.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 97 - components: - - type: Transform - anchored: True - pos: 9.5,-2.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 98 - components: - - type: Transform - anchored: True - pos: 8.5,-2.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 99 - components: - - type: Transform - anchored: True - pos: 7.5,-2.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 100 - components: - - type: Transform - anchored: True - pos: 6.5,-2.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 101 - components: - - type: Transform - anchored: True - pos: 5.5,-2.5 - parent: 2 - - type: Physics - bodyType: Static -- proto: PlasmaCanister - entities: - - uid: 281 - components: - - type: Transform - anchored: True - pos: 6.5,5.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 282 - components: - - type: Transform - anchored: True - pos: 6.5,-4.5 - parent: 2 - - type: Physics - bodyType: Static -- proto: PoweredlightLED - entities: - - uid: 246 - components: - - type: Transform - pos: 4.5,1.5 - parent: 2 - - uid: 247 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-0.5 - parent: 2 - - uid: 248 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,0.5 - parent: 2 - - uid: 249 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,0.5 - parent: 2 - - uid: 250 - components: - - type: Transform - pos: 8.5,7.5 - parent: 2 - - uid: 251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-6.5 - parent: 2 -- proto: ShuttleWindow - entities: - - uid: 40 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,4.5 - parent: 2 - - uid: 132 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,6.5 - parent: 2 - - uid: 146 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,9.5 - parent: 2 - - uid: 147 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,8.5 - parent: 2 - - uid: 148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,7.5 - parent: 2 - - uid: 149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,6.5 - parent: 2 - - uid: 150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,8.5 - parent: 2 - - uid: 151 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,7.5 - parent: 2 - - uid: 153 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-6.5 - parent: 2 - - uid: 154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-7.5 - parent: 2 - - uid: 155 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-5.5 - parent: 2 - - uid: 156 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-6.5 - parent: 2 - - uid: 157 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-7.5 - parent: 2 - - uid: 158 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-8.5 - parent: 2 - - uid: 159 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-5.5 - parent: 2 - - uid: 226 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-3.5 - parent: 2 -- proto: SMESBasic - entities: - - uid: 64 - components: - - type: Transform - pos: 12.5,3.5 - parent: 2 - - uid: 65 - components: - - type: Transform - pos: 12.5,-2.5 - parent: 2 -- proto: SubstationWallBasic - entities: - - uid: 183 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,1.5 - parent: 2 -- proto: Thruster - entities: - - uid: 136 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-5.5 - parent: 2 - - uid: 137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-6.5 - parent: 2 - - uid: 138 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-7.5 - parent: 2 - - uid: 139 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-8.5 - parent: 2 - - uid: 140 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,9.5 - parent: 2 - - uid: 141 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,8.5 - parent: 2 - - uid: 142 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,7.5 - parent: 2 - - uid: 143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,6.5 - parent: 2 - - uid: 144 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,6.5 - parent: 2 - - uid: 145 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-5.5 - parent: 2 -- proto: WallShuttle entities: - uid: 3 components: - type: Transform - pos: 8.5,-7.5 - parent: 2 - - uid: 4 - components: - - type: Transform - pos: 0.5,1.5 - parent: 2 - - uid: 5 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 2 - - uid: 6 - components: - - type: Transform - pos: 14.5,1.5 - parent: 2 - - uid: 7 - components: - - type: Transform - pos: 14.5,-0.5 - parent: 2 - - uid: 8 - components: - - type: Transform - pos: 14.5,2.5 - parent: 2 - - uid: 9 - components: - - type: Transform - pos: 14.5,-1.5 - parent: 2 - - uid: 20 - components: - - type: Transform - pos: 3.5,-3.5 - parent: 2 - - uid: 21 - components: - - type: Transform - pos: 3.5,4.5 - parent: 2 - - uid: 22 - components: - - type: Transform - pos: 4.5,-3.5 - parent: 2 - - uid: 23 - components: - - type: Transform - pos: 4.5,4.5 - parent: 2 - - uid: 24 - components: - - type: Transform - pos: 4.5,-2.5 - parent: 2 - - uid: 25 - components: - - type: Transform - pos: 4.5,-1.5 - parent: 2 - - uid: 26 - components: - - type: Transform - pos: 4.5,3.5 - parent: 2 - - uid: 27 - components: - - type: Transform - pos: 4.5,2.5 - parent: 2 - - uid: 36 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-2.5 - parent: 2 - - uid: 37 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,3.5 - parent: 2 - - uid: 38 - components: - - type: Transform - pos: 5.5,4.5 - parent: 2 - - uid: 39 - components: - - type: Transform - pos: 6.5,4.5 - parent: 2 - - uid: 41 - components: - - type: Transform - pos: 8.5,4.5 - parent: 2 - - uid: 42 - components: - - type: Transform - pos: 9.5,4.5 - parent: 2 - - uid: 43 - components: - - type: Transform - pos: 10.5,4.5 - parent: 2 - - uid: 44 - components: - - type: Transform - pos: 11.5,4.5 - parent: 2 - - uid: 45 - components: - - type: Transform - pos: 12.5,4.5 - parent: 2 - - uid: 46 - components: - - type: Transform - pos: 12.5,-3.5 - parent: 2 - - uid: 47 - components: - - type: Transform - pos: 11.5,-3.5 - parent: 2 - - uid: 48 - components: - - type: Transform - pos: 10.5,-3.5 - parent: 2 - - uid: 49 - components: - - type: Transform - pos: 9.5,-3.5 - parent: 2 - - uid: 50 - components: - - type: Transform - pos: 8.5,-3.5 - parent: 2 - - uid: 52 - components: - - type: Transform - pos: 6.5,-3.5 - parent: 2 - - uid: 53 - components: - - type: Transform - pos: 5.5,-3.5 - parent: 2 - - uid: 54 - components: - - type: Transform - pos: 11.5,-2.5 - parent: 2 - - uid: 55 - components: - - type: Transform - pos: 11.5,-1.5 - parent: 2 - - uid: 56 - components: - - type: Transform - pos: 11.5,-0.5 - parent: 2 - - uid: 57 - components: - - type: Transform - pos: 11.5,1.5 - parent: 2 - - uid: 58 - components: - - type: Transform - pos: 11.5,2.5 - parent: 2 - - uid: 59 - components: - - type: Transform - pos: 11.5,3.5 - parent: 2 - - uid: 60 - components: - - type: Transform - pos: 10.5,0.5 - parent: 2 - - uid: 112 - components: - - type: Transform - pos: 9.5,-7.5 - parent: 2 - - uid: 113 - components: - - type: Transform - pos: 11.5,9.5 - parent: 2 - - uid: 114 - components: - - type: Transform - pos: 8.5,8.5 - parent: 2 - - uid: 115 - components: - - type: Transform - pos: 9.5,8.5 - parent: 2 - - uid: 116 - components: - - type: Transform - pos: 5.5,5.5 - parent: 2 - - uid: 117 - components: - - type: Transform - pos: 5.5,-4.5 + rot: -1.5707963267948966 rad + pos: 8.5,12.5 parent: 2 +- proto: AirlockExternalGlassLocked + entities: - uid: 118 - components: - - type: Transform - pos: 11.5,-8.5 - parent: 2 -- proto: WallShuttleDiagonal - entities: - - uid: 10 - components: - - type: Transform - pos: 0.5,2.5 - parent: 2 - - uid: 11 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,2.5 - parent: 2 - - uid: 12 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 2 - - uid: 13 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 2 - - uid: 14 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 2 - - uid: 15 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 2 - - uid: 16 - components: - - type: Transform - pos: 1.5,3.5 - parent: 2 - - uid: 17 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,3.5 - parent: 2 - - uid: 18 - components: - - type: Transform - pos: 2.5,4.5 - parent: 2 - - uid: 19 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 2 - - uid: 28 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 2 - - uid: 29 - components: - - type: Transform - pos: 4.5,5.5 - parent: 2 - - uid: 30 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,3.5 - parent: 2 - - uid: 31 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-2.5 - parent: 2 - - uid: 32 - components: - - type: Transform - pos: 13.5,-1.5 - parent: 2 - - uid: 33 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,2.5 - parent: 2 - - uid: 34 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,4.5 - parent: 2 - - uid: 35 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-3.5 - parent: 2 - - uid: 61 - components: - - type: Transform - pos: 10.5,1.5 - parent: 2 - - uid: 62 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-0.5 + pos: 15.5,20.5 parent: 2 - uid: 119 - components: - - type: Transform - pos: 5.5,7.5 - parent: 2 - - uid: 120 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-6.5 - parent: 2 - - uid: 121 - components: - - type: Transform - pos: 7.5,8.5 - parent: 2 - - uid: 122 - components: - - type: Transform - pos: 10.5,9.5 - parent: 2 - - uid: 123 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,8.5 - parent: 2 - - uid: 124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,7.5 - parent: 2 - - uid: 125 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-7.5 - parent: 2 - - uid: 126 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-8.5 - parent: 2 - - uid: 127 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-7.5 - parent: 2 - - uid: 128 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-6.5 + pos: 1.5,20.5 parent: 2 - uid: 129 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-4.5 + pos: 2.5,15.5 + parent: 2 + - uid: 136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,15.5 + parent: 2 +- proto: AirlockGlassShuttle + entities: + - uid: 103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,26.5 + parent: 2 +- proto: APCBasic + entities: + - uid: 303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,16.5 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 171 + components: + - type: Transform + pos: 8.5,13.5 + parent: 2 + - uid: 172 + components: + - type: Transform + pos: 8.5,14.5 + parent: 2 + - uid: 173 + components: + - type: Transform + pos: 8.5,15.5 + parent: 2 + - uid: 174 + components: + - type: Transform + pos: 8.5,16.5 + parent: 2 + - uid: 175 + components: + - type: Transform + pos: 8.5,17.5 + parent: 2 + - uid: 176 + components: + - type: Transform + pos: 8.5,18.5 + parent: 2 + - uid: 177 + components: + - type: Transform + pos: 8.5,19.5 + parent: 2 + - uid: 178 + components: + - type: Transform + pos: 8.5,20.5 + parent: 2 + - uid: 179 + components: + - type: Transform + pos: 8.5,21.5 + parent: 2 + - uid: 180 + components: + - type: Transform + pos: 8.5,22.5 + parent: 2 + - uid: 181 + components: + - type: Transform + pos: 8.5,23.5 + parent: 2 + - uid: 182 + components: + - type: Transform + pos: 8.5,24.5 + parent: 2 + - uid: 183 + components: + - type: Transform + pos: 8.5,25.5 + parent: 2 + - uid: 184 + components: + - type: Transform + pos: 10.5,14.5 + parent: 2 + - uid: 185 + components: + - type: Transform + pos: 9.5,14.5 + parent: 2 + - uid: 186 + components: + - type: Transform + pos: 7.5,14.5 + parent: 2 + - uid: 187 + components: + - type: Transform + pos: 6.5,14.5 + parent: 2 + - uid: 188 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 189 + components: + - type: Transform + pos: 9.5,21.5 + parent: 2 + - uid: 190 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - uid: 191 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 + - uid: 192 + components: + - type: Transform + pos: 11.5,20.5 + parent: 2 + - uid: 193 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 + - uid: 194 + components: + - type: Transform + pos: 11.5,18.5 + parent: 2 + - uid: 195 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 196 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - uid: 197 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 + - uid: 198 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - uid: 199 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: 5.5,20.5 + parent: 2 + - uid: 202 + components: + - type: Transform + pos: 5.5,21.5 + parent: 2 + - uid: 203 + components: + - type: Transform + pos: 6.5,21.5 + parent: 2 + - uid: 204 + components: + - type: Transform + pos: 7.5,21.5 + parent: 2 + - uid: 205 + components: + - type: Transform + pos: 11.5,23.5 + parent: 2 + - uid: 206 + components: + - type: Transform + pos: 10.5,23.5 + parent: 2 + - uid: 207 + components: + - type: Transform + pos: 9.5,23.5 + parent: 2 + - uid: 208 + components: + - type: Transform + pos: 7.5,23.5 + parent: 2 + - uid: 209 + components: + - type: Transform + pos: 6.5,23.5 + parent: 2 + - uid: 210 + components: + - type: Transform + pos: 5.5,23.5 + parent: 2 + - uid: 211 + components: + - type: Transform + pos: 12.5,19.5 + parent: 2 + - uid: 212 + components: + - type: Transform + pos: 14.5,19.5 + parent: 2 + - uid: 213 + components: + - type: Transform + pos: 2.5,19.5 + parent: 2 + - uid: 214 + components: + - type: Transform + pos: 3.5,19.5 + parent: 2 + - uid: 215 + components: + - type: Transform + pos: 4.5,19.5 + parent: 2 + - uid: 216 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 + - uid: 217 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 + - uid: 218 + components: + - type: Transform + pos: 14.5,18.5 + parent: 2 + - uid: 219 + components: + - type: Transform + pos: 14.5,17.5 + parent: 2 + - uid: 220 + components: + - type: Transform + pos: 15.5,17.5 + parent: 2 + - uid: 221 + components: + - type: Transform + pos: 1.5,17.5 + parent: 2 + - uid: 222 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - uid: 223 + components: + - type: Transform + pos: 1.5,15.5 + parent: 2 + - uid: 224 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - uid: 226 + components: + - type: Transform + pos: 15.5,16.5 + parent: 2 + - uid: 227 + components: + - type: Transform + pos: 15.5,15.5 + parent: 2 + - uid: 228 + components: + - type: Transform + pos: 16.5,15.5 + parent: 2 +- proto: CableHV + entities: + - uid: 225 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 232 + components: + - type: Transform + pos: 10.5,14.5 + parent: 2 + - uid: 233 + components: + - type: Transform + pos: 9.5,14.5 + parent: 2 + - uid: 234 + components: + - type: Transform + pos: 8.5,14.5 + parent: 2 + - uid: 235 + components: + - type: Transform + pos: 7.5,14.5 + parent: 2 + - uid: 236 + components: + - type: Transform + pos: 6.5,14.5 + parent: 2 + - uid: 237 + components: + - type: Transform + pos: 5.5,14.5 + parent: 2 + - uid: 239 + components: + - type: Transform + pos: 9.5,15.5 + parent: 2 + - uid: 240 + components: + - type: Transform + pos: 14.5,19.5 + parent: 2 + - uid: 241 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 242 + components: + - type: Transform + pos: 12.5,19.5 + parent: 2 + - uid: 243 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 + - uid: 244 + components: + - type: Transform + pos: 10.5,19.5 + parent: 2 + - uid: 245 + components: + - type: Transform + pos: 9.5,19.5 + parent: 2 + - uid: 246 + components: + - type: Transform + pos: 8.5,19.5 + parent: 2 + - uid: 247 + components: + - type: Transform + pos: 7.5,19.5 + parent: 2 + - uid: 248 + components: + - type: Transform + pos: 6.5,19.5 + parent: 2 + - uid: 249 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 + - uid: 250 + components: + - type: Transform + pos: 4.5,19.5 + parent: 2 + - uid: 251 + components: + - type: Transform + pos: 3.5,19.5 + parent: 2 + - uid: 252 + components: + - type: Transform + pos: 2.5,19.5 + parent: 2 + - uid: 253 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 + - uid: 254 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 + - uid: 255 + components: + - type: Transform + pos: 14.5,18.5 + parent: 2 + - uid: 256 + components: + - type: Transform + pos: 14.5,17.5 + parent: 2 + - uid: 257 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 + - uid: 258 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - uid: 259 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 260 + components: + - type: Transform + pos: 11.5,18.5 + parent: 2 + - uid: 261 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - uid: 262 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 + - uid: 263 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - uid: 264 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 +- proto: CableMV + entities: + - uid: 229 + components: + - type: Transform + pos: 8.5,16.5 + parent: 2 + - uid: 230 + components: + - type: Transform + pos: 8.5,15.5 + parent: 2 + - uid: 231 + components: + - type: Transform + pos: 9.5,15.5 + parent: 2 +- proto: CableTerminal + entities: + - uid: 265 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - uid: 266 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 +- proto: Chair + entities: + - uid: 27 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,16.5 + parent: 2 + - uid: 59 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,17.5 + parent: 2 + - uid: 60 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,18.5 + parent: 2 + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,19.5 + parent: 2 + - uid: 62 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,20.5 + parent: 2 + - uid: 63 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,21.5 + parent: 2 + - uid: 64 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,16.5 + parent: 2 + - uid: 65 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,17.5 + parent: 2 + - uid: 66 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,18.5 + parent: 2 + - uid: 67 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,19.5 + parent: 2 + - uid: 68 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,20.5 + parent: 2 + - uid: 69 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,21.5 + parent: 2 + - uid: 70 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,17.5 + parent: 2 + - uid: 71 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,18.5 + parent: 2 + - uid: 72 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,19.5 + parent: 2 + - uid: 73 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,20.5 + parent: 2 + - uid: 74 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,21.5 + parent: 2 + - uid: 75 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,17.5 + parent: 2 + - uid: 76 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,18.5 + parent: 2 + - uid: 77 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,19.5 + parent: 2 + - uid: 78 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,20.5 + parent: 2 + - uid: 79 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,21.5 + parent: 2 +- proto: ComputerShuttle + entities: + - uid: 302 + components: + - type: Transform + pos: 8.5,15.5 + parent: 2 +- proto: GasPipeBend + entities: + - uid: 284 + components: + - type: Transform + pos: 15.5,18.5 + parent: 2 + - uid: 285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,18.5 + parent: 2 + - uid: 287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,15.5 + parent: 2 + - uid: 288 + components: + - type: Transform + pos: 16.5,15.5 + parent: 2 +- proto: GasPipeStraight + entities: + - uid: 289 + components: + - type: Transform + pos: 15.5,17.5 + parent: 2 + - uid: 290 + components: + - type: Transform + pos: 15.5,16.5 + parent: 2 + - uid: 291 + components: + - type: Transform + pos: 15.5,14.5 + parent: 2 + - uid: 292 + components: + - type: Transform + pos: 16.5,14.5 + parent: 2 + - uid: 293 + components: + - type: Transform + pos: 1.5,14.5 + parent: 2 + - uid: 294 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - uid: 295 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - uid: 296 + components: + - type: Transform + pos: 1.5,17.5 + parent: 2 + - uid: 297 + components: + - type: Transform + pos: 2.5,21.5 + parent: 2 + - uid: 298 + components: + - type: Transform + pos: 14.5,21.5 + parent: 2 +- proto: GasPipeTJunction + entities: + - uid: 238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,15.5 + parent: 2 + - uid: 273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,20.5 + parent: 2 + - uid: 274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,19.5 + parent: 2 + - uid: 275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,18.5 + parent: 2 + - uid: 276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,20.5 + parent: 2 + - uid: 277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,19.5 + parent: 2 + - uid: 278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,18.5 + parent: 2 + - uid: 279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,15.5 + parent: 2 + - uid: 280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,13.5 + parent: 2 + - uid: 281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,13.5 + parent: 2 + - uid: 282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,13.5 + parent: 2 + - uid: 283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,13.5 + parent: 2 +- proto: GasPort + entities: + - uid: 267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,20.5 + parent: 2 + - uid: 268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,19.5 + parent: 2 + - uid: 269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,18.5 + parent: 2 + - uid: 270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,20.5 + parent: 2 + - uid: 271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,19.5 + parent: 2 + - uid: 272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,18.5 + parent: 2 +- proto: GeneratorBasic15kW + entities: + - uid: 310 + components: + - type: Transform + pos: 14.5,17.5 + parent: 2 + - uid: 311 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 +- proto: GravityGeneratorMini + entities: + - uid: 318 + components: + - type: Transform + pos: 16.5,15.5 + parent: 2 +- proto: Grille + entities: + - uid: 80 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,19.5 + parent: 2 + - uid: 81 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,19.5 + parent: 2 + - uid: 112 + components: + - type: Transform + pos: 2.5,21.5 + parent: 2 + - uid: 113 + components: + - type: Transform + pos: 14.5,21.5 + parent: 2 + - uid: 139 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 + - uid: 140 + components: + - type: Transform + pos: 1.5,14.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - uid: 142 + components: + - type: Transform + pos: -0.5,14.5 + parent: 2 + - uid: 143 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 144 + components: + - type: Transform + pos: 1.5,13.5 + parent: 2 + - uid: 145 + components: + - type: Transform + pos: 17.5,14.5 + parent: 2 + - uid: 146 + components: + - type: Transform + pos: 16.5,14.5 + parent: 2 + - uid: 147 + components: + - type: Transform + pos: 15.5,14.5 + parent: 2 + - uid: 148 + components: + - type: Transform + pos: 14.5,14.5 + parent: 2 + - uid: 149 + components: + - type: Transform + pos: 15.5,13.5 + parent: 2 + - uid: 150 + components: + - type: Transform + pos: 16.5,13.5 + parent: 2 +- proto: Gyroscope + entities: + - uid: 309 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 +- proto: LiquidCarbonDioxideCanister + entities: + - uid: 316 + components: + - type: Transform + anchored: True + pos: 13.5,18.5 + parent: 2 + - type: Physics + bodyType: Static + - uid: 317 + components: + - type: Transform + anchored: True + pos: 3.5,18.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: LiquidOxygenCanister + entities: + - uid: 314 + components: + - type: Transform + anchored: True + pos: 13.5,19.5 + parent: 2 + - type: Physics + bodyType: Static + - uid: 315 + components: + - type: Transform + anchored: True + pos: 3.5,19.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: LockerSteel + entities: + - uid: 41 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - uid: 42 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 43 + components: + - type: Transform + pos: 11.5,18.5 + parent: 2 + - uid: 44 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 + - uid: 45 + components: + - type: Transform + pos: 11.5,20.5 + parent: 2 + - uid: 46 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 + - uid: 53 + components: + - type: Transform + pos: 5.5,21.5 + parent: 2 + - uid: 54 + components: + - type: Transform + pos: 5.5,20.5 + parent: 2 + - uid: 55 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 + - uid: 56 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 57 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - uid: 58 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 +- proto: PlasmaCanister + entities: + - uid: 312 + components: + - type: Transform + anchored: True + pos: 13.5,20.5 + parent: 2 + - type: Physics + bodyType: Static + - uid: 313 + components: + - type: Transform + anchored: True + pos: 3.5,20.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: PoweredlightLED + entities: + - uid: 286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,18.5 + parent: 2 + - uid: 304 + components: + - type: Transform + pos: 8.5,15.5 + parent: 2 + - uid: 305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,17.5 + parent: 2 + - uid: 306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,22.5 + parent: 2 + - uid: 307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,22.5 + parent: 2 + - uid: 308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,18.5 + parent: 2 +- proto: ShuttleWindow + entities: + - uid: 33 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,19.5 + parent: 2 + - uid: 38 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,19.5 + parent: 2 + - uid: 114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,21.5 + parent: 2 + - uid: 115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,21.5 + parent: 2 + - uid: 159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,14.5 + parent: 2 + - uid: 160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,14.5 + parent: 2 + - uid: 161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,14.5 + parent: 2 + - uid: 162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,14.5 + parent: 2 + - uid: 163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,13.5 + parent: 2 + - uid: 164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,13.5 + parent: 2 + - uid: 165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,14.5 + parent: 2 + - uid: 166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,14.5 + parent: 2 + - uid: 167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,14.5 + parent: 2 + - uid: 168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,14.5 + parent: 2 + - uid: 169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,13.5 + parent: 2 + - uid: 170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,13.5 + parent: 2 +- proto: SMESBasic + entities: + - uid: 299 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 300 + components: + - type: Transform + pos: 5.5,14.5 + parent: 2 +- proto: SubstationWallBasic + entities: + - uid: 301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,15.5 + parent: 2 +- proto: Thruster + entities: + - uid: 108 + components: + - type: Transform + pos: 14.5,22.5 + parent: 2 + - uid: 109 + components: + - type: Transform + pos: 2.5,22.5 + parent: 2 + - uid: 151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,13.5 + parent: 2 + - uid: 152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,12.5 + parent: 2 + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,12.5 + parent: 2 + - uid: 154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,13.5 + parent: 2 + - uid: 155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,13.5 + parent: 2 + - uid: 156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 2 + - uid: 157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 2 + - uid: 158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,13.5 + parent: 2 +- proto: WallShuttle + entities: + - uid: 1 + components: + - type: Transform + pos: 4.5,16.5 + parent: 2 + - uid: 8 + components: + - type: Transform + pos: 10.5,12.5 + parent: 2 + - uid: 9 + components: + - type: Transform + pos: 9.5,12.5 + parent: 2 + - uid: 10 + components: + - type: Transform + pos: 7.5,12.5 + parent: 2 + - uid: 11 + components: + - type: Transform + pos: 6.5,12.5 + parent: 2 + - uid: 14 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,13.5 + parent: 2 + - uid: 15 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,13.5 + parent: 2 + - uid: 16 + components: + - type: Transform + pos: 12.5,14.5 + parent: 2 + - uid: 17 + components: + - type: Transform + pos: 4.5,14.5 + parent: 2 + - uid: 18 + components: + - type: Transform + pos: 12.5,15.5 + parent: 2 + - uid: 19 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 + - uid: 20 + components: + - type: Transform + pos: 10.5,15.5 + parent: 2 + - uid: 21 + components: + - type: Transform + pos: 9.5,15.5 + parent: 2 + - uid: 22 + components: + - type: Transform + pos: 7.5,15.5 + parent: 2 + - uid: 23 + components: + - type: Transform + pos: 6.5,15.5 + parent: 2 + - uid: 24 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - uid: 25 + components: + - type: Transform + pos: 4.5,15.5 + parent: 2 + - uid: 26 + components: + - type: Transform + pos: 12.5,16.5 + parent: 2 + - uid: 30 + components: + - type: Transform + pos: 8.5,16.5 + parent: 2 + - uid: 31 + components: + - type: Transform + pos: 12.5,17.5 + parent: 2 + - uid: 32 + components: + - type: Transform + pos: 12.5,18.5 + parent: 2 + - uid: 34 + components: + - type: Transform + pos: 12.5,20.5 + parent: 2 + - uid: 35 + components: + - type: Transform + pos: 12.5,21.5 + parent: 2 + - uid: 36 + components: + - type: Transform + pos: 4.5,21.5 + parent: 2 + - uid: 37 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 + - uid: 39 + components: + - type: Transform + pos: 4.5,18.5 + parent: 2 + - uid: 40 + components: + - type: Transform + pos: 4.5,17.5 + parent: 2 + - uid: 47 + components: + - type: Transform + pos: 12.5,22.5 + parent: 2 + - uid: 48 + components: + - type: Transform + pos: 11.5,22.5 + parent: 2 + - uid: 49 + components: + - type: Transform + pos: 10.5,22.5 + parent: 2 + - uid: 50 + components: + - type: Transform + pos: 4.5,22.5 + parent: 2 + - uid: 51 + components: + - type: Transform + pos: 5.5,22.5 + parent: 2 + - uid: 52 + components: + - type: Transform + pos: 6.5,22.5 + parent: 2 + - uid: 83 + components: + - type: Transform + pos: 4.5,23.5 + parent: 2 + - uid: 84 + components: + - type: Transform + pos: 12.5,23.5 + parent: 2 + - uid: 101 + components: + - type: Transform + pos: 7.5,26.5 + parent: 2 + - uid: 102 + components: + - type: Transform + pos: 9.5,26.5 + parent: 2 + - uid: 110 + components: + - type: Transform + pos: 3.5,21.5 + parent: 2 + - uid: 111 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 + - uid: 122 + components: + - type: Transform + pos: 16.5,18.5 + parent: 2 + - uid: 123 + components: + - type: Transform + pos: 0.5,18.5 + parent: 2 + - uid: 124 + components: + - type: Transform + pos: 0.5,17.5 + parent: 2 + - uid: 125 + components: + - type: Transform + pos: 16.5,17.5 + parent: 2 + - uid: 134 + components: + - type: Transform + pos: -0.5,15.5 + parent: 2 + - uid: 135 + components: + - type: Transform + pos: 17.5,15.5 + parent: 2 +- proto: WallShuttleDiagonal + entities: + - uid: 4 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,12.5 + parent: 2 + - uid: 5 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,13.5 + parent: 2 + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,12.5 + parent: 2 + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,13.5 + parent: 2 + - uid: 12 + components: + - type: Transform + pos: 10.5,13.5 + parent: 2 + - uid: 13 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,13.5 + parent: 2 + - uid: 28 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,16.5 + parent: 2 + - uid: 29 + components: + - type: Transform + pos: 7.5,16.5 + parent: 2 + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,16.5 + parent: 2 + - uid: 91 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,24.5 + parent: 2 + - uid: 92 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,24.5 + parent: 2 + - uid: 93 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,24.5 + parent: 2 + - uid: 94 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,25.5 + parent: 2 + - uid: 95 + components: + - type: Transform + pos: 4.5,24.5 + parent: 2 + - uid: 96 + components: + - type: Transform + pos: 5.5,25.5 + parent: 2 + - uid: 97 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,26.5 + parent: 2 + - uid: 98 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,25.5 + parent: 2 + - uid: 99 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,25.5 + parent: 2 + - uid: 100 + components: + - type: Transform + pos: 6.5,26.5 + parent: 2 + - uid: 104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,22.5 + parent: 2 + - uid: 105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,21.5 + parent: 2 + - uid: 106 + components: + - type: Transform + pos: 3.5,22.5 + parent: 2 + - uid: 107 + components: + - type: Transform + pos: 1.5,21.5 + parent: 2 + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,19.5 + parent: 2 + - uid: 117 + components: + - type: Transform + pos: 0.5,19.5 + parent: 2 + - uid: 120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,19.5 + parent: 2 + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,19.5 + parent: 2 + - uid: 126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,17.5 + parent: 2 + - uid: 127 + components: + - type: Transform + pos: 3.5,17.5 + parent: 2 + - uid: 128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,16.5 parent: 2 - uid: 130 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-5.5 + pos: 16.5,16.5 parent: 2 - uid: 131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-4.5 + rot: -1.5707963267948966 rad + pos: 17.5,16.5 + parent: 2 + - uid: 132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,16.5 parent: 2 - uid: 133 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,5.5 + pos: -0.5,16.5 parent: 2 - - uid: 134 + - uid: 137 components: - type: Transform - pos: 10.5,6.5 + rot: -1.5707963267948966 rad + pos: 14.5,16.5 parent: 2 - - uid: 135 + - uid: 138 components: - type: Transform - pos: 9.5,5.5 + pos: 2.5,16.5 parent: 2 - proto: WardrobeBlueFilled entities: - - uid: 105 + - uid: 88 components: - type: Transform - anchored: True - pos: 3.5,-2.5 + pos: 5.5,23.5 parent: 2 - - type: Physics - bodyType: Static - - uid: 106 + - uid: 89 components: - type: Transform - anchored: True - pos: 3.5,-1.5 + pos: 6.5,23.5 parent: 2 - - type: Physics - bodyType: Static - - uid: 107 + - uid: 90 components: - type: Transform - anchored: True - pos: 2.5,-1.5 + pos: 6.5,24.5 parent: 2 - - type: Physics - bodyType: Static - proto: WardrobeMixedFilled entities: - - uid: 102 + - uid: 85 components: - type: Transform - anchored: True - pos: 3.5,3.5 + pos: 11.5,23.5 parent: 2 - - type: Physics - bodyType: Static - - uid: 103 + - uid: 86 components: - type: Transform - anchored: True - pos: 3.5,2.5 + pos: 10.5,23.5 parent: 2 - - type: Physics - bodyType: Static - - uid: 104 + - uid: 87 components: - type: Transform - anchored: True - pos: 2.5,2.5 + pos: 10.5,24.5 parent: 2 - - type: Physics - bodyType: Static ... diff --git a/Resources/Maps/Shuttles/cargo_relic.yml b/Resources/Maps/Shuttles/cargo_relic.yml index 68a9892277..7b3e935ea0 100644 --- a/Resources/Maps/Shuttles/cargo_relic.yml +++ b/Resources/Maps/Shuttles/cargo_relic.yml @@ -1,54 +1,43 @@ meta: format: 7 category: Grid - engineVersion: 249.0.0 + engineVersion: 264.0.0 forkId: "" forkVersion: "" - time: 03/23/2025 22:34:49 + time: 08/06/2025 14:30:26 entityCount: 176 maps: [] grids: -- 173 +- 1 orphans: -- 173 +- 1 nullspace: [] tilemap: - 0: Space - 1: FloorReinforced - 84: FloorShuttleBlue - 89: FloorShuttleWhite - 93: FloorSteel - 108: FloorTechMaint - 2: Lattice - 126: Plating + 2: Space + 0: FloorShuttleBlue + 3: FloorShuttleOrange + 4: Lattice + 1: Plating entities: - proto: "" entities: - - uid: 173 + - uid: 1 components: - type: MetaData - name: Cargo shuttle + name: prison shuttle - type: Transform - pos: 2.2710133,-2.4148211 + pos: -7.265625,2.28125 parent: invalid - type: MapGrid chunks: - -1,0: - ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 0,0: ind: 0,0 - tiles: XQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAQAAAAAA - version: 6 + tiles: AAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAEAAAAAAAAAQAAAAAAAAMAAAAAAAABAAAAAAAABAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAADAAAAAAAABAAAAAAAAAEAAAAAAAADAAAAAAAAAQAAAAAAAAQAAAAAAAACAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -58,125 +47,49 @@ entities: bodyType: Dynamic - type: Fixtures fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: CargoShuttle + - type: GridPathfinding - type: Gravity gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg - - type: CargoShuttle - type: DecalGrid chunkCollection: version: 2 - nodes: - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 14: -1,1 - 15: -1,3 - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 26: -4,4 - 27: -4,3 - 29: -4,0 - 30: -4,1 - 31: -4,2 - 33: -6,4 - 34: -6,3 - 35: -6,2 - 36: -6,1 - 37: -6,0 - - node: - color: '#FFFFFFFF' - id: Box - decals: - 78: -8,2 - 79: -2,2 - - node: - color: '#A4610696' - id: CheckerNWSE - decals: - 17: -3,1 - 19: -3,3 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - decals: - 55: -3,5 - 57: -5,5 - 58: -4,5 - 59: -6,5 - 60: -7,5 - 61: -7,4 - 62: -7,3 - 63: -7,2 - 64: -7,1 - 65: -7,0 - 66: -7,-1 - 67: -6,-1 - 68: -5,-1 - 71: -3,-1 - 72: -3,0 - 75: -3,4 - 76: -4,-1 - 81: -3,2 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - decals: - 39: -3,0 - 40: -3,-1 - 42: -5,-1 - 43: -6,-1 - 44: -7,-1 - 45: -7,0 - 46: -7,1 - 47: -7,2 - 48: -7,3 - 49: -7,4 - 50: -7,5 - 51: -6,5 - 52: -5,5 - 53: -4,5 - 54: -3,5 - 73: -3,4 - 74: -4,-1 - 80: -3,2 + nodes: [] - type: GridAtmosphere version: 2 data: tiles: - -4,0: - 0: 8 - -3,0: - 1: 65520 - -4,1: - 0: 8 - -3,-1: - 0: 26624 - -3,1: - 0: 2144 - -2,0: - 1: 65534 - -2,1: - 1: 254 - -2,-1: - 1: 61440 - -1,0: - 1: 65535 - -1,1: - 1: 63 - 0: 2048 - -1,-1: - 1: 12288 - 0: 2048 0,0: - 1: 4112 - 0,1: - 0: 256 + 0: 16 + 1: 14 0,-1: - 0: 256 + 1: 61166 + 1,0: + 1: 15 + 1,-1: + 1: 65535 + 2,0: + 1: 27 + 0: 64 + 2,-1: + 1: 65531 + 3,0: + 1: 1 + 0: 64 + 3,-1: + 1: 13105 + 0,-2: + 0: 4096 + 2,-2: + 1: 4096 + 0: 16384 + 3,-2: + 0: 16384 uniqueMixes: - volume: 2500 immutable: True @@ -209,1051 +122,1024 @@ entities: - 0 - 0 chunkSize: 4 - - type: OccluderTree - - type: Shuttle - - type: GridPathfinding - - type: RadiationGridResistance - - type: SpreaderGrid - - type: GravityShake - shakeTimes: 10 - type: GasTileOverlay + - type: RadiationGridResistance + - type: ImplicitRoof - proto: AirCanister entities: - - uid: 176 + - uid: 140 components: - type: Transform - pos: -9.5,3.5 - parent: 173 -- proto: AirlockGlassShuttle - entities: - - uid: 2 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,3.5 - parent: 173 - - uid: 53 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,1.5 - parent: 173 -- proto: APCHyperCapacity - entities: - - uid: 15 - components: - - type: Transform - pos: -2.5,6.5 - parent: 173 -- proto: AtmosDeviceFanDirectional - entities: - - uid: 169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,3.5 - parent: 173 - - uid: 170 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,1.5 - parent: 173 -- proto: BlastDoor - entities: - - uid: 1 - components: - - type: Transform - pos: 0.5,4.5 - parent: 173 - - uid: 54 - components: - - type: Transform - pos: 0.5,0.5 - parent: 173 -- proto: ButtonFrameCaution - entities: - - uid: 68 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,5.5 - parent: 173 - - uid: 102 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 173 -- proto: CableApcExtension - entities: - - uid: 11 - components: - - type: Transform - pos: -0.5,0.5 - parent: 173 - - uid: 58 - components: - - type: Transform - pos: -8.5,3.5 - parent: 173 - - uid: 62 - components: - - type: Transform - pos: -0.5,4.5 - parent: 173 - - uid: 64 - components: - - type: Transform - pos: -5.5,4.5 - parent: 173 - - uid: 65 - components: - - type: Transform - pos: -5.5,5.5 - parent: 173 - - uid: 66 - components: - - type: Transform - pos: -7.5,0.5 - parent: 173 - - uid: 67 - components: - - type: Transform - pos: -8.5,1.5 - parent: 173 - - uid: 84 - components: - - type: Transform - pos: -5.5,-0.5 - parent: 173 - - uid: 85 - components: - - type: Transform - pos: -5.5,0.5 - parent: 173 - - uid: 90 - components: - - type: Transform - pos: -5.5,1.5 - parent: 173 - - uid: 91 - components: - - type: Transform - pos: -2.5,6.5 - parent: 173 - - uid: 96 - components: - - type: Transform - pos: -7.5,5.5 - parent: 173 - - uid: 100 - components: - - type: Transform - pos: -7.5,4.5 - parent: 173 - - uid: 101 - components: - - type: Transform - pos: -9.5,3.5 - parent: 173 - - uid: 103 - components: - - type: Transform - pos: -2.5,5.5 - parent: 173 - - uid: 104 - components: - - type: Transform - pos: -9.5,1.5 - parent: 173 - - uid: 109 - components: - - type: Transform - pos: -2.5,4.5 - parent: 173 - - uid: 110 - components: - - type: Transform - pos: -2.5,3.5 - parent: 173 - - uid: 111 - components: - - type: Transform - pos: -2.5,2.5 - parent: 173 - - uid: 112 - components: - - type: Transform - pos: -2.5,1.5 - parent: 173 - - uid: 113 - components: - - type: Transform - pos: -2.5,0.5 - parent: 173 - - uid: 114 - components: - - type: Transform - pos: -2.5,-0.5 - parent: 173 - - uid: 117 - components: - - type: Transform - pos: -6.5,1.5 - parent: 173 - - uid: 118 - components: - - type: Transform - pos: -5.5,1.5 - parent: 173 - - uid: 122 - components: - - type: Transform - pos: -7.5,-0.5 - parent: 173 - - uid: 125 - components: - - type: Transform - pos: -1.5,3.5 - parent: 173 - - uid: 126 - components: - - type: Transform - pos: -0.5,3.5 - parent: 173 - - uid: 127 - components: - - type: Transform - pos: -1.5,1.5 - parent: 173 - - uid: 128 - components: - - type: Transform - pos: -0.5,1.5 - parent: 173 - - uid: 129 - components: - - type: Transform - pos: -3.5,1.5 - parent: 173 - - uid: 130 - components: - - type: Transform - pos: -4.5,1.5 - parent: 173 - - uid: 131 - components: - - type: Transform - pos: -3.5,3.5 - parent: 173 - - uid: 132 - components: - - type: Transform - pos: -4.5,3.5 - parent: 173 - - uid: 136 - components: - - type: Transform - pos: -5.5,3.5 - parent: 173 - - uid: 137 - components: - - type: Transform - pos: -6.5,3.5 - parent: 173 - - uid: 138 - components: - - type: Transform - pos: -7.5,1.5 - parent: 173 - - uid: 139 - components: - - type: Transform - pos: -7.5,3.5 - parent: 173 -- proto: CableHV - entities: - - uid: 155 - components: - - type: Transform - pos: -11.5,1.5 - parent: 173 - - uid: 156 - components: - - type: Transform - pos: -10.5,1.5 - parent: 173 - - uid: 157 - components: - - type: Transform - pos: -9.5,1.5 - parent: 173 -- proto: CableMV - entities: - - uid: 3 - components: - - type: Transform - pos: -9.5,1.5 - parent: 173 - - uid: 6 - components: - - type: Transform - pos: -2.5,2.5 - parent: 173 - - uid: 28 - components: - - type: Transform - pos: -5.5,1.5 - parent: 173 - - uid: 29 - components: - - type: Transform - pos: -3.5,1.5 - parent: 173 - - uid: 41 - components: - - type: Transform - pos: -2.5,3.5 - parent: 173 - - uid: 42 - components: - - type: Transform - pos: -2.5,1.5 - parent: 173 - - uid: 43 - components: - - type: Transform - pos: -2.5,4.5 - parent: 173 - - uid: 45 - components: - - type: Transform - pos: -2.5,5.5 - parent: 173 - - uid: 47 - components: - - type: Transform - pos: -2.5,6.5 - parent: 173 - - uid: 52 - components: - - type: Transform - pos: -4.5,1.5 - parent: 173 - - uid: 81 - components: - - type: Transform - pos: -8.5,1.5 - parent: 173 - - uid: 82 - components: - - type: Transform - pos: -7.5,1.5 - parent: 173 - - uid: 98 - components: - - type: Transform - pos: -6.5,1.5 - parent: 173 -- proto: CableTerminal - entities: - - uid: 158 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,1.5 - parent: 173 -- proto: CargoPallet - entities: - - uid: 12 - components: - - type: Transform - pos: -3.5,1.5 - parent: 173 - - uid: 48 - components: - - type: Transform - pos: -3.5,4.5 - parent: 173 - - uid: 49 - components: - - type: Transform - pos: -3.5,3.5 - parent: 173 - - uid: 50 - components: - - type: Transform - pos: -3.5,0.5 - parent: 173 - - uid: 55 - components: - - type: Transform - pos: -5.5,3.5 - parent: 173 - - uid: 63 - components: - - type: Transform - pos: -5.5,4.5 - parent: 173 - - uid: 69 - components: - - type: Transform - pos: -5.5,2.5 - parent: 173 - - uid: 99 - components: - - type: Transform - pos: -5.5,1.5 - parent: 173 - - uid: 120 - components: - - type: Transform - pos: -5.5,0.5 - parent: 173 - - uid: 159 - components: - - type: Transform - pos: -3.5,2.5 - parent: 173 -- proto: Chair - entities: - - uid: 20 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,3.5 - parent: 173 - - uid: 95 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,1.5 - parent: 173 -- proto: ChairPilotSeat - entities: - - uid: 75 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,2.5 - parent: 173 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 19 - components: - - type: Transform - pos: -7.5,5.5 - parent: 173 -- proto: ClosetEmergencyN2FilledRandom - entities: - - uid: 107 - components: - - type: Transform - pos: -7.5,-0.5 - parent: 173 -- proto: ComputerShuttle - entities: - - uid: 94 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,2.5 - parent: 173 -- proto: ConveyorBelt - entities: - - uid: 38 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,4.5 - parent: 173 - - uid: 39 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,4.5 - parent: 173 - - uid: 40 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,4.5 - parent: 173 - - uid: 46 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,0.5 - parent: 173 - - uid: 51 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,0.5 - parent: 173 - - uid: 167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,0.5 - parent: 173 -- proto: GasPipeBend - entities: - - uid: 60 - components: - - type: Transform - pos: -1.5,3.5 - parent: 173 -- proto: GasPipeStraight - entities: - - uid: 164 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 173 - - uid: 165 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,3.5 - parent: 173 - - uid: 168 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,3.5 - parent: 173 - - uid: 171 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,3.5 - parent: 173 - - uid: 172 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 173 - - uid: 174 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,3.5 - parent: 173 - - uid: 175 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,3.5 - parent: 173 -- proto: GasPort - entities: - - uid: 163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,3.5 - parent: 173 -- proto: GasVentPump + anchored: True + pos: 4.5,-3.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockShuttle entities: - uid: 59 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 1 + - uid: 60 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,2.5 - parent: 173 -- proto: GeneratorBasic15kW + pos: 8.5,1.5 + parent: 1 +- proto: APCBasic entities: - - uid: 13 + - uid: 174 components: - type: Transform - pos: -11.5,1.5 - parent: 173 -- proto: GravityGeneratorMini + pos: 6.5,1.5 + parent: 1 +- proto: CableApcExtension entities: - - uid: 162 + - uid: 111 components: - type: Transform - pos: -10.5,3.5 - parent: 173 -- proto: Grille - entities: - - uid: 5 + pos: 4.5,-0.5 + parent: 1 + - uid: 112 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,3.5 - parent: 173 - - uid: 9 + pos: 3.5,-0.5 + parent: 1 + - uid: 113 components: - type: Transform - pos: -11.5,4.5 - parent: 173 - - uid: 72 + pos: 2.5,-0.5 + parent: 1 + - uid: 114 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,2.5 - parent: 173 - - uid: 73 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,1.5 - parent: 173 - - uid: 83 - components: - - type: Transform - pos: -10.5,4.5 - parent: 173 - - uid: 88 - components: - - type: Transform - pos: -11.5,0.5 - parent: 173 - - uid: 97 - components: - - type: Transform - pos: -10.5,0.5 - parent: 173 -- proto: GrilleDiagonal - entities: - - uid: 14 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,0.5 - parent: 173 - - uid: 134 - components: - - type: Transform - pos: -12.5,4.5 - parent: 173 -- proto: Gyroscope - entities: - - uid: 161 - components: - - type: Transform - pos: -11.5,3.5 - parent: 173 -- proto: HolopadCargoShuttle - entities: - - uid: 116 - components: - - type: Transform - pos: -7.5,2.5 - parent: 173 -- proto: LockableButtonCargo - entities: - - uid: 79 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,5.5 - parent: 173 - - type: DeviceLinkSource - linkedPorts: - 1: - - Pressed: Toggle + pos: 2.5,-1.5 + parent: 1 - uid: 115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 173 - - type: DeviceLinkSource - linkedPorts: - 54: - - Pressed: Toggle -- proto: PlasticFlapsAirtightClear - entities: - - uid: 44 + pos: 2.5,-2.5 + parent: 1 + - uid: 116 components: - type: Transform - pos: 0.5,0.5 - parent: 173 - - uid: 166 + pos: 5.5,-0.5 + parent: 1 + - uid: 117 components: - type: Transform - pos: 0.5,4.5 - parent: 173 -- proto: Poweredlight - entities: - - uid: 22 + pos: 6.5,-0.5 + parent: 1 + - uid: 118 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 173 - - uid: 23 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 173 - - uid: 25 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,5.5 - parent: 173 - - uid: 57 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,5.5 - parent: 173 - - uid: 70 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-0.5 - parent: 173 - - uid: 108 - components: - - type: Transform - pos: -3.5,5.5 - parent: 173 - - uid: 147 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,2.5 - parent: 173 - - type: ApcPowerReceiver - powerLoad: 0 -- proto: ShuttleWindow - entities: - - uid: 4 - components: - - type: Transform - pos: -12.5,3.5 - parent: 173 - - uid: 74 - components: - - type: Transform - pos: -11.5,4.5 - parent: 173 - - uid: 76 - components: - - type: Transform - pos: -12.5,2.5 - parent: 173 - - uid: 92 - components: - - type: Transform - pos: -11.5,0.5 - parent: 173 - - uid: 93 - components: - - type: Transform - pos: -12.5,1.5 - parent: 173 - - uid: 133 - components: - - type: Transform - pos: -10.5,4.5 - parent: 173 - - uid: 148 - components: - - type: Transform - pos: -10.5,0.5 - parent: 173 -- proto: ShuttleWindowDiagonal - entities: - - uid: 8 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,0.5 - parent: 173 - - uid: 135 - components: - - type: Transform - pos: -12.5,4.5 - parent: 173 -- proto: SMESBasic - entities: - - uid: 89 - components: - - type: Transform - pos: -10.5,1.5 - parent: 173 -- proto: SubstationBasic - entities: - - uid: 160 - components: - - type: Transform - pos: -9.5,1.5 - parent: 173 -- proto: Thruster - entities: - - uid: 24 - components: - - type: Transform - pos: -0.5,6.5 - parent: 173 - - uid: 34 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-0.5 - parent: 173 - - uid: 37 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 173 - - uid: 78 - components: - - type: Transform - pos: -10.5,5.5 - parent: 173 - - uid: 80 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-1.5 - parent: 173 - - uid: 87 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,5.5 - parent: 173 - - uid: 121 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,6.5 - parent: 173 - - uid: 124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 173 -- proto: TwoWayLever - entities: - - uid: 35 - components: - - type: Transform - pos: -1.5,1.5 - parent: 173 - - type: DeviceLinkSource - linkedPorts: - 51: - - Left: Forward - - Right: Reverse - - Middle: Off - 46: - - Left: Forward - - Right: Reverse - - Middle: Off - 167: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 36 - components: - - type: Transform - pos: -1.5,3.5 - parent: 173 - - type: DeviceLinkSource - linkedPorts: - 38: - - Left: Forward - - Right: Reverse - - Middle: Off - 39: - - Left: Forward - - Right: Reverse - - Middle: Off - 40: - - Left: Forward - - Right: Reverse - - Middle: Off -- proto: WallShuttle - entities: - - uid: 16 - components: - - type: Transform - pos: -2.5,-1.5 - parent: 173 - - uid: 17 - components: - - type: Transform - pos: -3.5,-1.5 - parent: 173 - - uid: 18 - components: - - type: Transform - pos: -4.5,-1.5 - parent: 173 - - uid: 21 - components: - - type: Transform - pos: -5.5,-1.5 - parent: 173 - - uid: 26 - components: - - type: Transform - pos: -4.5,6.5 - parent: 173 - - uid: 27 - components: - - type: Transform - pos: -5.5,6.5 - parent: 173 - - uid: 30 - components: - - type: Transform - pos: 0.5,5.5 - parent: 173 - - uid: 31 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 173 - - uid: 32 - components: - - type: Transform - pos: 0.5,2.5 - parent: 173 - - uid: 33 - components: - - type: Transform - pos: -1.5,-0.5 - parent: 173 - - uid: 56 - components: - - type: Transform - pos: -0.5,5.5 - parent: 173 - - uid: 61 - components: - - type: Transform - pos: -0.5,-0.5 - parent: 173 - - uid: 71 - components: - - type: Transform - pos: -7.5,0.5 - parent: 173 - - uid: 86 - components: - - type: Transform - pos: -7.5,4.5 - parent: 173 - - uid: 105 - components: - - type: Transform - pos: -9.5,0.5 - parent: 173 - - uid: 106 - components: - - type: Transform - pos: -8.5,4.5 - parent: 173 + pos: 9.5,0.5 + parent: 1 - uid: 119 components: - type: Transform - pos: -1.5,-1.5 - parent: 173 + pos: 8.5,0.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 - uid: 123 components: - type: Transform - pos: -1.5,5.5 - parent: 173 - - uid: 140 + pos: 6.5,-1.5 + parent: 1 + - uid: 124 components: - type: Transform - pos: -1.5,6.5 - parent: 173 - - uid: 141 + pos: 6.5,-2.5 + parent: 1 + - uid: 125 components: - type: Transform - pos: -2.5,6.5 - parent: 173 - - uid: 142 + pos: 7.5,-2.5 + parent: 1 + - uid: 126 components: - type: Transform - pos: -3.5,6.5 - parent: 173 - - uid: 143 + pos: 8.5,-2.5 + parent: 1 + - uid: 127 components: - type: Transform - pos: -8.5,5.5 - parent: 173 - - uid: 144 + pos: 9.5,-2.5 + parent: 1 + - uid: 128 components: - type: Transform - pos: -8.5,6.5 - parent: 173 - - uid: 145 + pos: 10.5,-2.5 + parent: 1 + - uid: 129 components: - type: Transform - pos: -7.5,6.5 - parent: 173 - - uid: 146 + pos: 11.5,-2.5 + parent: 1 + - uid: 130 components: - type: Transform - pos: -6.5,6.5 - parent: 173 - - uid: 149 + pos: 9.5,-0.5 + parent: 1 + - uid: 131 components: - type: Transform - pos: -9.5,4.5 - parent: 173 - - uid: 150 + pos: 10.5,-0.5 + parent: 1 + - uid: 132 components: - type: Transform - pos: -8.5,-1.5 - parent: 173 - - uid: 151 + pos: 11.5,-0.5 + parent: 1 + - uid: 162 components: - type: Transform - pos: -8.5,-0.5 - parent: 173 - - uid: 152 + pos: 1.5,-0.5 + parent: 1 + - uid: 163 components: - type: Transform - pos: -8.5,0.5 - parent: 173 - - uid: 153 + pos: 1.5,-2.5 + parent: 1 + - uid: 164 components: - type: Transform - pos: -7.5,-1.5 - parent: 173 - - uid: 154 + pos: 12.5,-0.5 + parent: 1 + - uid: 165 components: - type: Transform - pos: -6.5,-1.5 - parent: 173 -- proto: WindoorCargoLocked + pos: 13.5,-0.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 +- proto: CableHV entities: - - uid: 10 + - uid: 103 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 +- proto: CableMV + entities: + - uid: 12 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 102 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,2.5 - parent: 173 -- proto: WindowReinforcedDirectional + pos: 1.5,0.5 + parent: 1 +- proto: Chair entities: - uid: 7 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,3.5 - parent: 173 - - uid: 77 + pos: 7.5,-1.5 + parent: 1 + - uid: 8 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,1.5 - parent: 173 + pos: 7.5,-2.5 + parent: 1 + - uid: 38 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + - uid: 52 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 81 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 1 + - uid: 82 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 1 + - uid: 83 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 1 + - uid: 84 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 97 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 +- proto: ChemistryBottleEpinephrine + entities: + - uid: 86 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 +- proto: ChemistryBottleNocturine + entities: + - uid: 139 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 +- proto: ComputerShuttleCargo + entities: + - uid: 9 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 1 +- proto: GasPipeBend + entities: + - uid: 146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 +- proto: GasPipeStraight + entities: + - uid: 149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 +- proto: GasPipeTJunction + entities: + - uid: 145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + - uid: 155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1 +- proto: GasPort + entities: + - uid: 143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 + - uid: 159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 1 +- proto: GasPressurePump + entities: + - uid: 144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 +- proto: GasVentPump + entities: + - uid: 141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1 +- proto: GasVentScrubber + entities: + - uid: 153 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 1 +- proto: GeneratorWallmountAPU + entities: + - uid: 99 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 98 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 +- proto: Grille + entities: + - uid: 10 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 12.5,1.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 1 + - uid: 45 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 88 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 110 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 +- proto: MedkitFilled + entities: + - uid: 80 + components: + - type: Transform + pos: 11.5,0.5 + parent: 1 +- proto: ParchisBoard + entities: + - uid: 79 + components: + - type: Transform + pos: 12.5,0.5 + parent: 1 +- proto: PillCanisterCharcoal + entities: + - uid: 93 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 +- proto: PoweredlightLED + entities: + - uid: 133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + - uid: 134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - uid: 135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-3.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,0.5 + parent: 1 +- proto: PrefilledSyringe + entities: + - uid: 6 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 +- proto: RadioHandheld + entities: + - uid: 94 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 32 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 12.5,1.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 100 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 +- proto: StorageCanister + entities: + - uid: 158 + components: + - type: Transform + anchored: True + pos: 6.5,-3.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: SubstationBasic + entities: + - uid: 101 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 +- proto: Table + entities: + - uid: 76 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,0.5 + parent: 1 + - uid: 77 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 1 + - uid: 78 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 1 +- proto: Thruster + entities: + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + - uid: 13 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 20 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,1.5 + parent: 1 + - uid: 29 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-4.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1 + - uid: 161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-4.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 2 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 3 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 14.5,0.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 13.5,0.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 13.5,1.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 11.5,1.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1 +- proto: WardrobePrisonFilled + entities: + - uid: 92 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 1 +- proto: WeaponTaser + entities: + - uid: 85 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 1 +- proto: Windoor + entities: + - uid: 73 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1 + - uid: 74 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 1 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 11 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 +- proto: WindowDirectional + entities: + - uid: 36 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 61 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 1 + - uid: 62 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 1 + - uid: 63 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 1 + - uid: 65 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,0.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 1 + - uid: 68 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 1 + - uid: 69 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,0.5 + parent: 1 + - uid: 70 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 87 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 1 + - uid: 170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 ... diff --git a/Resources/Maps/Shuttles/emergency_relic.yml b/Resources/Maps/Shuttles/emergency_relic.yml index 03567878ef..b5c48b5786 100644 --- a/Resources/Maps/Shuttles/emergency_relic.yml +++ b/Resources/Maps/Shuttles/emergency_relic.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Grid - engineVersion: 247.2.0 + engineVersion: 264.0.0 forkId: "" forkVersion: "" - time: 03/22/2025 16:54:04 - entityCount: 138 + time: 07/25/2025 18:00:45 + entityCount: 176 maps: [] grids: - 1 @@ -22,7 +22,7 @@ entities: - uid: 1 components: - type: MetaData - name: grid + name: NT Evac Reliquary - type: Transform pos: -7.265625,2.28125 parent: invalid @@ -30,12 +30,12 @@ entities: chunks: 0,0: ind: 0,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAA - version: 6 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -48,6 +48,7 @@ entities: - type: OccluderTree - type: SpreaderGrid - type: Shuttle + dampingModifier: 0.25 - type: GridPathfinding - type: Gravity gravityShakeSound: !type:SoundPathSpecifier @@ -102,6 +103,17 @@ entities: configurators: [] deviceLists: [] transmitFrequencyId: ShuttleTimer + - type: ImplicitRoof +- proto: AirCanister + entities: + - uid: 139 + components: + - type: Transform + anchored: True + pos: 3.5,-3.5 + parent: 1 + - type: Physics + bodyType: Static - proto: AirlockFreezerLocked entities: - uid: 10 @@ -122,7 +134,7 @@ entities: - - Engineering - - Medical - type: Door - secondsUntilStateChange: -60.848633 + secondsUntilStateChange: -613.913 state: Opening - type: DeviceLinkSource lastSignals: @@ -345,14 +357,33 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-1.5 parent: 1 -- proto: ClosetFireFilled +- proto: ChemistryBottleEpinephrine entities: - - uid: 88 + - uid: 173 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 +- proto: ClothingMaskGas + entities: + - uid: 171 components: - type: Transform pos: 6.5,0.5 parent: 1 - - uid: 90 + - uid: 172 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 +- proto: ClothingOuterSuitFire + entities: + - uid: 169 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 170 components: - type: Transform pos: 7.5,0.5 @@ -365,6 +396,174 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,-1.5 parent: 1 +- proto: GasPipeBend + entities: + - uid: 159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + - uid: 160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 1 +- proto: GasPipeStraight + entities: + - uid: 145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + - uid: 155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 1 + - uid: 165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + - uid: 166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 1 +- proto: GasPipeTJunction + entities: + - uid: 157 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 +- proto: GasPort + entities: + - uid: 163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 +- proto: GasPressurePump + entities: + - uid: 161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 +- proto: GasVentPump + entities: + - uid: 143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + - uid: 144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 1 +- proto: GasVentScrubber + entities: + - uid: 141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1 + - uid: 142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 - proto: GeneratorWallmountAPU entities: - uid: 99 @@ -491,6 +690,18 @@ entities: - type: Transform pos: 1.5,-2.5 parent: 1 +- proto: OxygenTankFilled + entities: + - uid: 167 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 - proto: ParchisBoard entities: - uid: 79 @@ -498,6 +709,13 @@ entities: - type: Transform pos: 12.5,0.5 parent: 1 +- proto: PillCanisterCharcoal + entities: + - uid: 174 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 - proto: PoweredlightLED entities: - uid: 133 @@ -535,6 +753,34 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,0.5 parent: 1 +- proto: PrefilledSyringe + entities: + - uid: 175 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 +- proto: Rack + entities: + - uid: 88 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + - uid: 90 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 +- proto: RadioHandheld + entities: + - uid: 176 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 1 - proto: ReinforcedWindow entities: - uid: 86 @@ -613,6 +859,16 @@ entities: - type: Transform pos: 1.5,-3.5 parent: 1 +- proto: StorageCanister + entities: + - uid: 140 + components: + - type: Transform + anchored: True + pos: 3.5,-1.5 + parent: 1 + - type: Physics + bodyType: Static - proto: SubstationBasic entities: - uid: 101 @@ -670,6 +926,16 @@ entities: - type: Transform pos: 0.5,1.5 parent: 1 + - uid: 11 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 - uid: 13 components: - type: Transform @@ -780,6 +1046,16 @@ entities: - type: Transform pos: 4.5,-4.5 parent: 1 + - uid: 46 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1 - uid: 48 components: - type: Transform @@ -795,28 +1071,6 @@ entities: - type: Transform pos: 0.5,-3.5 parent: 1 -- proto: WallShuttleInterior - entities: - - uid: 11 - components: - - type: Transform - pos: 4.5,1.5 - parent: 1 - - uid: 12 - components: - - type: Transform - pos: 4.5,0.5 - parent: 1 - - uid: 46 - components: - - type: Transform - pos: 10.5,-3.5 - parent: 1 - - uid: 47 - components: - - type: Transform - pos: 10.5,0.5 - parent: 1 - proto: Windoor entities: - uid: 73 diff --git a/Resources/Maps/Shuttles/infiltrator.yml b/Resources/Maps/Shuttles/infiltrator.yml index 784886c892..d8b50e99ab 100644 --- a/Resources/Maps/Shuttles/infiltrator.yml +++ b/Resources/Maps/Shuttles/infiltrator.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 266.0.0 + forkId: "" + forkVersion: "" + time: 08/18/2025 05:46:30 + entityCount: 822 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] tilemap: 0: Space 3: FloorArcadeRed @@ -34,20 +45,20 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACWAAAAAAAHwAAAAACHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACaAAAAAAAWQAAAAAAHwAAAAADHwAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADWQAAAAAAaAAAAAABWAAAAAAAHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADWAAAAAAAHwAAAAACHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAgAfAAAAAAEAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAWAAAAAAAAB8AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAFgAAAAAAAAfAAAAAAIAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABYAAAAAAAAHwAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAFgAAAAAAAAfAAAAAAIAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAIAaAAAAAAAAFkAAAAAAAAfAAAAAAMAHwAAAAAAAB8AAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAADAFkAAAAAAABoAAAAAAEAWAAAAAAAAB8AAAAAAAAfAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAADAFgAAAAAAAAfAAAAAAIAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: HwAAAAABHwAAAAABHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACWAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACWAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABWAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABWAAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAAAHwAAAAAAegAAAAADegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAWAAAAAAAegAAAAAAAwAAAAAAegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADWAAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: HwAAAAABAB8AAAAAAQAfAAAAAAEAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAIAWAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACAFgAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAQBYAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABAFgAAAAAAAB6AAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAAAAHoAAAAAAwB6AAAAAAEAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAWAAAAAAAAHoAAAAAAAADAAAAAAAAegAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADAFgAAAAAAAB+AAAAAAAAAwAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAABYAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAJAAAAAAAOAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAJAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAJAAAAAAAOAAAAAAAWAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADWAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACTwAAAAAAHwAAAAABWAAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAWAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAWAAAAAAAHwAAAAADHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAWAAAAAAAHwAAAAAAWAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAA4AAAAAAAAJAAAAAAAADgAAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAOAAAAAAAACQAAAAAAAA4AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAADgAAAAAAAAkAAAAAAAAOAAAAAAAAFgAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAwBYAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAACAE8AAAAAAAAfAAAAAAEAWAAAAAAAAH4AAAAAAAB+AAAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAFgAAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAKAAAAAAAACgAAAAAAABYAAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAFgAAAAAAAAfAAAAAAAAWAAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAAAAB8AAAAAAwAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG4AAAAAAAAfAAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAABWAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAE8AAAAAAAB+AAAAAAAATwAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAABPAAAAAAAAfgAAAAAAAE8AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAH4AAAAAAABPAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAABAB8AAAAAAwAfAAAAAAEAWAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAAAfAAAAAAIAHwAAAAADAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAADAB8AAAAAAQB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAQAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAACAG4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -576,12 +587,14 @@ entities: flags: Hide - type: OccluderTree - type: Shuttle + dampingModifier: 0.25 - type: RadiationGridResistance - type: GravityShake shakeTimes: 10 - type: GasTileOverlay - type: SpreaderGrid - type: GridPathfinding + - type: ImplicitRoof - proto: AirlockExternalGlassShuttleSyndicateLocked entities: - uid: 8 @@ -593,7 +606,8 @@ entities: - type: DeviceLinkSource linkedPorts: 13: - - DoorStatus: Close + - - DoorStatus + - Close - type: DeviceLinkSink invokeCounter: 1 - uid: 10 @@ -605,7 +619,8 @@ entities: - type: DeviceLinkSource linkedPorts: 3: - - DoorStatus: Close + - - DoorStatus + - Close - type: DeviceLinkSink invokeCounter: 1 - proto: AirlockExternalSyndicateLocked @@ -618,7 +633,8 @@ entities: - type: DeviceLinkSource linkedPorts: 14: - - DoorStatus: DoorBolt + - - DoorStatus + - DoorBolt - uid: 3 components: - type: Transform @@ -629,7 +645,8 @@ entities: - type: DeviceLinkSource linkedPorts: 10: - - DoorStatus: Close + - - DoorStatus + - Close - uid: 7 components: - type: Transform @@ -638,7 +655,8 @@ entities: - type: DeviceLinkSource linkedPorts: 12: - - DoorStatus: DoorBolt + - - DoorStatus + - DoorBolt - uid: 9 components: - type: Transform @@ -647,7 +665,8 @@ entities: - type: DeviceLinkSource linkedPorts: 22: - - DoorStatus: DoorBolt + - - DoorStatus + - DoorBolt - uid: 12 components: - type: Transform @@ -656,7 +675,8 @@ entities: - type: DeviceLinkSource linkedPorts: 7: - - DoorStatus: DoorBolt + - - DoorStatus + - DoorBolt - uid: 13 components: - type: Transform @@ -667,7 +687,8 @@ entities: - type: DeviceLinkSource linkedPorts: 8: - - DoorStatus: Close + - - DoorStatus + - Close - uid: 14 components: - type: Transform @@ -676,7 +697,8 @@ entities: - type: DeviceLinkSource linkedPorts: 2: - - DoorStatus: DoorBolt + - - DoorStatus + - DoorBolt - uid: 22 components: - type: Transform @@ -685,7 +707,8 @@ entities: - type: DeviceLinkSource linkedPorts: 9: - - DoorStatus: DoorBolt + - - DoorStatus + - DoorBolt - proto: AirlockSyndicateGlassLocked entities: - uid: 4 @@ -727,12 +750,16 @@ entities: - type: Transform pos: -3.5,-18.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 19 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-8.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: AtmosFixNitrogenMarker entities: - uid: 25 @@ -820,45 +847,6 @@ entities: - type: Transform pos: 1.4510483,-2.399527 parent: 1 -- proto: Brutepack - entities: - - uid: 44 - components: - - type: Transform - pos: -3.292087,-4.1600046 - parent: 1 - - uid: 45 - components: - - type: Transform - pos: -3.354587,-4.4256296 - parent: 1 -- proto: C4 - entities: - - uid: 46 - components: - - type: Transform - pos: 1.7857682,-12.631323 - parent: 1 - - uid: 47 - components: - - type: Transform - pos: 1.5045182,-12.646948 - parent: 1 - - uid: 48 - components: - - type: Transform - pos: 1.5982682,-12.646948 - parent: 1 - - uid: 49 - components: - - type: Transform - pos: 1.4107682,-12.646948 - parent: 1 - - uid: 50 - components: - - type: Transform - pos: 1.6920182,-12.631323 - parent: 1 - proto: CableApcExtension entities: - uid: 51 @@ -2210,26 +2198,26 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-3.5 parent: 1 -- proto: CigPackSyndicate +- proto: ClothingBackpackDuffelSyndicateAmmoFilled entities: - - uid: 313 + - uid: 49 components: - type: Transform - pos: -3.5658307,-17.516623 + pos: 1.4468282,-11.670399 parent: 1 - proto: ClothingBackpackDuffelSyndicateFilledMedical entities: - uid: 314 components: - type: Transform - pos: -3.5044222,-6.293252 + pos: -5.6167116,-4.2485933 parent: 1 - proto: ClothingHeadHatSyndie entities: - uid: 315 components: - type: Transform - pos: -3.1200604,-17.289778 + pos: -3.0420556,-17.469692 parent: 1 - proto: ClothingHeadHatSyndieMAA entities: @@ -3617,18 +3605,6 @@ entities: - type: Transform pos: -4.5,-3.5 parent: 1 -- proto: MedkitCombatFilled - entities: - - uid: 501 - components: - - type: Transform - pos: -3.401462,-3.5350046 - parent: 1 - - uid: 502 - components: - - type: Transform - pos: -3.557712,-3.4256296 - parent: 1 - proto: Mirror entities: - uid: 503 @@ -3636,6 +3612,8 @@ entities: - type: Transform pos: 4.5,-3.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: Multitool entities: - uid: 504 @@ -3672,17 +3650,38 @@ entities: - type: Transform pos: -2.5,-12.5 parent: 1 -- proto: Ointment +- proto: NukeOpsGrenadeSpawner entities: - - uid: 511 + - uid: 44 components: - type: Transform - pos: -3.651462,-4.5193796 + pos: 1.5,-12.5 parent: 1 - - uid: 512 +- proto: NukeOpsLootSpawner + entities: + - uid: 46 components: - type: Transform - pos: -3.667087,-4.2225046 + pos: -3.5,-17.5 + parent: 1 +- proto: NukeOpsMedkitBruteSpawner + entities: + - uid: 48 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 +- proto: NukeOpsMedkitSpawner + entities: + - uid: 47 + components: + - type: Transform + pos: -3.5,-4.5 parent: 1 - proto: OperatingTable entities: @@ -3761,6 +3760,8 @@ entities: - type: Transform pos: 1.5,-14.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandCC64KAd entities: - uid: 525 @@ -3768,6 +3769,8 @@ entities: - type: Transform pos: -5.5,-18.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandCybersun600 entities: - uid: 526 @@ -3775,6 +3778,8 @@ entities: - type: Transform pos: 2.5,-6.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandDonk entities: - uid: 527 @@ -3783,6 +3788,8 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-18.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandDonutCorp entities: - uid: 528 @@ -3791,6 +3798,8 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-22.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandEnergySwords entities: - uid: 529 @@ -3798,6 +3807,8 @@ entities: - type: Transform pos: 2.5,-18.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandEnlistGorlex entities: - uid: 530 @@ -3806,6 +3817,8 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-13.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandFreeSyndicateEncryptionKey entities: - uid: 531 @@ -3813,6 +3826,8 @@ entities: - type: Transform pos: -2.5,-8.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandInterdyne entities: - uid: 532 @@ -3821,6 +3836,8 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-6.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandKosmicheskayaStantsiya entities: - uid: 533 @@ -3828,6 +3845,8 @@ entities: - type: Transform pos: -2.5,-22.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandMoth entities: - uid: 534 @@ -3835,11 +3854,15 @@ entities: - type: Transform pos: -2.5,-14.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 535 components: - type: Transform pos: 2.5,-3.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandNuclearDeviceInformational entities: - uid: 536 @@ -3848,11 +3871,15 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-13.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 537 components: - type: Transform pos: 0.5,-14.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandSyndicatePistol entities: - uid: 538 @@ -3860,6 +3887,8 @@ entities: - type: Transform pos: 1.5,-10.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandSyndicateRecruitment entities: - uid: 539 @@ -3867,6 +3896,8 @@ entities: - type: Transform pos: -1.5,-14.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandWaffleCorp entities: - uid: 540 @@ -3875,6 +3906,8 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-23.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: Poweredlight entities: - uid: 541 @@ -4302,9 +4335,13 @@ entities: - type: DeviceLinkSource linkedPorts: 600: - - Pressed: Toggle + - - Pressed + - Toggle 599: - - Pressed: Toggle + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - uid: 611 components: - type: Transform @@ -4313,7 +4350,10 @@ entities: - type: DeviceLinkSource linkedPorts: 605: - - Pressed: Toggle + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - proto: SignalButtonDirectional entities: - uid: 20 @@ -4325,9 +4365,13 @@ entities: - type: DeviceLinkSource linkedPorts: 602: - - Pressed: Toggle + - - Pressed + - Toggle 598: - - Pressed: Toggle + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - uid: 21 components: - type: Transform @@ -4337,19 +4381,28 @@ entities: - type: DeviceLinkSource linkedPorts: 597: - - Pressed: Toggle + - - Pressed + - Toggle 601: - - Pressed: Toggle + - - Pressed + - Toggle 608: - - Pressed: Toggle + - - Pressed + - Toggle 606: - - Pressed: Toggle + - - Pressed + - Toggle 604: - - Pressed: Toggle + - - Pressed + - Toggle 607: - - Pressed: Toggle + - - Pressed + - Toggle 603: - - Pressed: Toggle + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - proto: SignDirectionalEvac entities: - uid: 613 @@ -4357,30 +4410,40 @@ entities: - type: Transform pos: 0.5,-22.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 614 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-15.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 615 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-14.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 616 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-14.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 617 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-15.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignElectricalMed entities: - uid: 618 @@ -4388,6 +4451,8 @@ entities: - type: Transform pos: -2.5,-18.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignNosmoking entities: - uid: 619 @@ -4395,6 +4460,8 @@ entities: - type: Transform pos: 5.5,-22.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignSecureSmallRed entities: - uid: 620 @@ -4402,16 +4469,22 @@ entities: - type: Transform pos: -3.5,-11.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 621 components: - type: Transform pos: 4.5,-17.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 622 components: - type: Transform pos: 2.5,-11.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SMESBasic entities: - uid: 623 @@ -4481,30 +4554,6 @@ entities: - type: Transform pos: 3.5,-19.5 parent: 1 -- proto: SyndieMiniBomb - entities: - - uid: 633 - components: - - type: Transform - pos: 1.4127003,-11.973867 - parent: 1 - - uid: 634 - components: - - type: Transform - pos: 1.6939503,-11.973867 - parent: 1 -- proto: SyringeInaprovaline - entities: - - uid: 635 - components: - - type: Transform - pos: -3.510837,-4.3787546 - parent: 1 - - uid: 636 - components: - - type: Transform - pos: -3.510837,-4.0193796 - parent: 1 - proto: Table entities: - uid: 637 @@ -4689,14 +4738,7 @@ entities: - uid: 669 components: - type: Transform - pos: -2.5731854,-17.414778 - parent: 1 -- proto: ToolboxSyndicateFilled - entities: - - uid: 670 - components: - - type: Transform - pos: 1.5034143,-11.298322 + pos: -2.468854,-17.396727 parent: 1 - proto: VendingMachineTankDispenserEVA entities: @@ -5516,6 +5558,8 @@ entities: - type: Transform pos: 4.5,-25.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: WarningO2 entities: - uid: 828 @@ -5523,6 +5567,8 @@ entities: - type: Transform pos: 2.5,-25.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: WarningWaste entities: - uid: 829 @@ -5530,6 +5576,8 @@ entities: - type: Transform pos: 4.5,-18.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: WaterCooler entities: - uid: 830 diff --git a/Resources/Maps/Shuttles/mothership.yml b/Resources/Maps/Shuttles/mothership.yml new file mode 100644 index 0000000000..b958c47401 --- /dev/null +++ b/Resources/Maps/Shuttles/mothership.yml @@ -0,0 +1,2703 @@ +meta: + format: 7 + category: Grid + engineVersion: 266.0.0 + forkId: "" + forkVersion: "" + time: 08/14/2025 23:46:23 + entityCount: 435 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 1: Space + 3: FloorBlueCircuit + 4: FloorXenoborg + 2: Lattice + 0: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: mothership + - type: Transform + pos: -0.49999905,-0.4677186 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AwAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAAEAAAAAAAAAwAAAAAAAAAAAAAAAAAEAAAAAAAAAwAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAwAAAAAAAAQAAAAAAAAAAAAAAAAAAwAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAABAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAQAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAAEAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAABAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAQAAAAAAAADAAAAAAAAAAAAAAAAAAQAAAAAAAADAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAADAAAAAAAABAAAAAAAAAAAAAAAAAADAAAAAAAABAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#0000FFFF' + id: WarnCornerSmallGreyscaleNE + decals: + 43: 4,0 + 50: 4,-4 + 51: -4,4 + 57: -4,-1 + - node: + color: '#0000FFFF' + id: WarnCornerSmallGreyscaleNW + decals: + 44: -4,0 + 49: -4,-4 + 52: 4,4 + 58: 4,-1 + - node: + color: '#0000FFFF' + id: WarnCornerSmallGreyscaleSE + decals: + 45: 4,0 + 48: 4,4 + 55: -4,1 + - node: + color: '#0000FFFF' + id: WarnCornerSmallGreyscaleSW + decals: + 46: -4,0 + 47: -4,4 + 56: 4,1 + - node: + color: '#0000FFFF' + id: WarnLineGreyscaleE + decals: + 1: 4,3 + 2: 4,2 + 3: 4,1 + 4: 4,-1 + 5: 4,-2 + 6: 4,-3 + 8: -1,-4 + 9: -1,-5 + 10: -1,-7 + 11: -1,-8 + 12: -1,-9 + 13: -1,-10 + 14: -1,-11 + 53: -4,0 + - node: + color: '#0000FFFF' + id: WarnLineGreyscaleN + decals: + 15: 5,0 + 16: -5,0 + 17: -3,4 + 18: -2,4 + 19: -1,4 + 20: 0,4 + 21: 1,4 + 22: 2,4 + 23: 3,4 + - node: + color: '#0000FFFF' + id: WarnLineGreyscaleS + decals: + 26: 5,0 + 27: -5,0 + - node: + color: '#0000FFFF' + id: WarnLineGreyscaleW + decals: + 29: -4,3 + 30: -4,2 + 31: -4,1 + 32: -4,-1 + 33: -4,-2 + 34: -4,-3 + 36: 1,-4 + 37: 1,-5 + 38: 1,-7 + 39: 1,-8 + 40: 1,-9 + 41: 1,-10 + 42: 1,-11 + 54: 4,0 + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirlockGlassShuttleXenoborgLocked + entities: + - uid: 107 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 1 +- proto: AirlockXenoborgLocked + entities: + - uid: 104 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - uid: 367 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 +- proto: APCXenoborg + entities: + - uid: 148 + components: + - type: MetaData + name: west APC + - type: Transform + pos: -8.5,2.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 240 + components: + - type: MetaData + name: docking APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 424 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: BlastDoor + entities: + - uid: 253 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 +- proto: BorgCharger + entities: + - uid: 347 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 351 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 + - uid: 352 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 353 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 + - uid: 393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 1 + - uid: 394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 261 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - uid: 332 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 333 + components: + - type: Transform + pos: -10.5,0.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: -9.5,0.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 401 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 402 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 406 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 407 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 410 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 +- proto: CableApcStack + entities: + - uid: 345 + components: + - type: Transform + parent: 425 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableHV + entities: + - uid: 139 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: -10.5,0.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: -10.5,1.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: -9.5,1.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: -9.5,0.5 + parent: 1 +- proto: CableHVStack + entities: + - uid: 343 + components: + - type: Transform + parent: 425 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableMV + entities: + - uid: 149 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: -9.5,0.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: -10.5,0.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: -11.5,0.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: -11.5,1.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 360 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 +- proto: CableMVStack + entities: + - uid: 339 + components: + - type: Transform + parent: 425 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableTerminal + entities: + - uid: 138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,0.5 + parent: 1 + - uid: 371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,0.5 + parent: 1 +- proto: ComputerIFFSyndicate + entities: + - uid: 278 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 +- proto: ComputerPowerMonitoring + entities: + - uid: 279 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 273 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 +- proto: ComputerSurveillanceWirelessXenoborgCameraMonitor + entities: + - uid: 276 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 431 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 +- proto: ComputerXenoborgsControl + entities: + - uid: 277 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 +- proto: ConveyorBelt + entities: + - uid: 243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 1 + - uid: 244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 1 + - uid: 245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 1 + - uid: 246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 + - uid: 247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 1 + - uid: 248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + - uid: 251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 +- proto: CrateGenericSteel + entities: + - uid: 425 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 339 + - 341 + - 343 + - 342 + - 345 + - 344 + - 340 + - 346 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: DisposalBend + entities: + - uid: 377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - uid: 386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 +- proto: DisposalJunctionFlipped + entities: + - uid: 376 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 1 +- proto: DisposalPipe + entities: + - uid: 378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + - uid: 379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 + - uid: 380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + - uid: 384 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 385 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 1 +- proto: DisposalTrunk + entities: + - uid: 325 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 1 +- proto: DisposalUnit + entities: + - uid: 326 + components: + - type: MetaData + name: external launch unit + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 369 + components: + - type: MetaData + name: external launch unit + - type: Transform + pos: -3.5,-3.5 + parent: 1 +- proto: FloorDrain + entities: + - uid: 396 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 397 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 398 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 399 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: GeneratorBasic15kW + entities: + - uid: 133 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 132 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 +- proto: Grille + entities: + - uid: 212 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: -11.5,1.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: -11.5,0.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1 + - uid: 358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 1 +- proto: MachineArtifactCrusher + entities: + - uid: 372 + components: + - type: MetaData + name: body crusher + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 373 + components: + - type: MetaData + name: body crusher + - type: Transform + pos: 2.5,-4.5 + parent: 1 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 252 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 +- proto: PoweredlightBlue + entities: + - uid: 127 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - uid: 128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-0.5 + parent: 1 + - uid: 238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 1 + - uid: 239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + - uid: 432 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + - uid: 434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 1 +- proto: Recycler + entities: + - uid: 370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 1 +- proto: SheetGlass + entities: + - uid: 341 + components: + - type: Transform + parent: 425 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetPlasteel + entities: + - uid: 342 + components: + - type: Transform + parent: 425 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetPlastic + entities: + - uid: 344 + components: + - type: Transform + parent: 425 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetSteel + entities: + - uid: 340 + components: + - type: Transform + parent: 425 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 346 + components: + - type: Transform + parent: 425 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SignDoors + entities: + - uid: 428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: SignEngine + entities: + - uid: 427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: SignSpace + entities: + - uid: 430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: SMESAdvanced + entities: + - uid: 129 + components: + - type: Transform + pos: -10.5,1.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: -9.5,1.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 135 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 +- proto: SurveillanceCameraGeneral + entities: + - uid: 270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: front + - uid: 271 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: docking + - uid: 272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: core + - uid: 274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: starboard + - uid: 280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: port + - uid: 292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,0.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: engineering + - uid: 435 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: stern +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 327 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 +- proto: SurveillanceCameraWirelessRouterXenoborg + entities: + - uid: 395 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 +- proto: Thruster + entities: + - uid: 111 + components: + - type: Transform + pos: -10.5,3.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: -9.5,3.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 + - uid: 115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 1 + - uid: 116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 1 + - uid: 117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-2.5 + parent: 1 + - uid: 118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-2.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 1 + - uid: 120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,0.5 + parent: 1 + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,1.5 + parent: 1 + - uid: 122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,1.5 + parent: 1 + - uid: 123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + - uid: 124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 + - uid: 125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-6.5 + parent: 1 + - uid: 126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-6.5 + parent: 1 +- proto: TwoWayLever + entities: + - uid: 5 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 251: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 250: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 249: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 248: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 247: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 246: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 245: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 244: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 243: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + - uid: 328 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 253: + - - Left + - Open + - - Right + - Open + - - Middle + - Close + - uid: 415 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 370: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off +- proto: WallXenoborg + entities: + - uid: 2 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -11.5,2.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: -12.5,2.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: -11.5,3.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: -8.5,3.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - uid: 364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + - uid: 383 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 +- proto: WallXenoborgDiagonal + entities: + - uid: 88 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 91 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,7.5 + parent: 1 + - uid: 92 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 + - uid: 93 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 1 + - uid: 94 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,3.5 + parent: 1 + - uid: 95 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 1 + - uid: 96 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 1 + - uid: 97 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 1 + - uid: 98 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 1 + - uid: 99 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 1 + - uid: 100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: -12.5,3.5 + parent: 1 + - uid: 363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + - uid: 366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 418 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 419 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - uid: 421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 +- proto: XenoborgWindow + entities: + - uid: 3 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: -11.5,0.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -11.5,1.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 354 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 355 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 368 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 408 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 +... diff --git a/Resources/Maps/Test/Atmospherics/DeltaPressure/deltapressuretest.yml b/Resources/Maps/Test/Atmospherics/DeltaPressure/deltapressuretest.yml new file mode 100644 index 0000000000..cedbfb1cff --- /dev/null +++ b/Resources/Maps/Test/Atmospherics/DeltaPressure/deltapressuretest.yml @@ -0,0 +1,234 @@ +meta: + format: 7 + category: Map + engineVersion: 265.0.0 + forkId: "" + forkVersion: "" + time: 08/16/2025 22:09:01 + entityCount: 27 +maps: +- 1 +grids: +- 2 +orphans: [] +nullspace: [] +tilemap: + 1: Space + 0: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: GridTree + - type: Broadphase + - type: OccluderTree + - uid: 2 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.33581543,-0.640625 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 19 + 0,-1: + 0: 4096 + -1,0: + 0: 8 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AtmosFixBlockerMarker + entities: + - uid: 23 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 24 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 25 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2 + - uid: 26 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - uid: 27 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 +- proto: WallPlastitaniumIndestructible + entities: + - uid: 3 + components: + - type: Transform + pos: -1.5,2.5 + parent: 2 + - uid: 4 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2 + - uid: 5 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 6 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 + - uid: 7 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 8 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 9 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 10 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 11 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 12 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 + - uid: 13 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - uid: 14 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 15 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 2 + - uid: 16 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 2 + - uid: 17 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 + - uid: 18 + components: + - type: Transform + pos: -1.5,1.5 + parent: 2 + - uid: 19 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 20 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - uid: 21 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 22 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 +... diff --git a/Resources/Maps/Test/dev_map.yml b/Resources/Maps/Test/dev_map.yml index a50bf22fe1..738940ac71 100644 --- a/Resources/Maps/Test/dev_map.yml +++ b/Resources/Maps/Test/dev_map.yml @@ -1,6 +1,19 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Map + engineVersion: 266.0.0 + forkId: "" + forkVersion: "" + time: 08/31/2025 05:06:28 + entityCount: 3156 +maps: +- 23 +grids: +- 1 +- 2709 +- 2869 +orphans: [] +nullspace: [] tilemap: 0: Space 24: FloorAstroGrass @@ -53,120 +66,120 @@ entities: chunks: 0,0: ind: 0,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAkwAAAAAAAA== + version: 7 0,1: ind: 0,1 - tiles: mQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: mQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,2: ind: 0,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 1,0: ind: 1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAQAAAAACAQAAAAACmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAQAAAAAAAgAAAAACAgAAAAAC - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAQAAAAADAAEAAAAAAgABAAAAAAIAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAkwAAAAAAAAEAAAAAAAACAAAAAAIAAgAAAAACAA== + version: 7 1,1: ind: 1,1 - tiles: mQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAwAAAAAAAQAAAAABAgAAAAABAgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAQAAAAAAAgAAAAABAgAAAAADmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAwAAAAADAQAAAAABAgAAAAABAgAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAQAAAAACAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAABAAAAAACBAAAAAACBAAAAAABBgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAABAAAAAADBQAAAAAABAAAAAADBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAABAAAAAABBAAAAAADBAAAAAACBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAABAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAA - version: 6 + tiles: mQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAAwAAAAAAAAEAAAAAAQACAAAAAAEAAgAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAMAAAAAAAABAAAAAAAAAgAAAAABAAIAAAAAAwCZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAAADAAAAAAMAAQAAAAABAAIAAAAAAQACAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAACZAAAAAAAAkwAAAAAAAAEAAAAAAgABAAAAAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAJMAAAAAAAAEAAAAAAIABAAAAAAAAAQAAAAAAgAEAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAACTAAAAAAAABAAAAAACAAQAAAAAAgAEAAAAAAEABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAkwAAAAAAAAQAAAAAAwAFAAAAAAAABAAAAAADAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAJMAAAAAAAAEAAAAAAEABAAAAAADAAQAAAAAAgAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAEAAAAAAAABAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAA== + version: 7 1,2: ind: 1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAABwAAAAAABwAAAAAABwAAAAAAkwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAABwAAAAAABwAAAAAABwAAAAAAkwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAADAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAACAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAwAAAAABAgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAgAAAAAB - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAACTAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAJMAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAEAAAAAAwABAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAAABAAAAAAIAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAACQAAAAAAAAkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAkwAAAAAAAAMAAAAAAQACAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAAgAAAAABAA== + version: 7 2,0: ind: 2,0 - tiles: kwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAQAAAAAAAQAAAAACAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACAQAAAAACAQAAAAADAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAADAQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAQAAAAACAQAAAAADAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAQAAAAACAQAAAAADAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAQAAAAADAQAAAAAAAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABAQAAAAACAQAAAAABAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAADAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABAQAAAAAAAQAAAAABAQAAAAACAQAAAAACkwAAAAAAAQAAAAAAAQAAAAACAQAAAAADAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABAgAAAAADAQAAAAAAAgAAAAABAgAAAAACAQAAAAACkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: kwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAEAAAAAAwABAAAAAAAAAQAAAAACAAEAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAABAAAAAAMAAQAAAAABAAEAAAAAAAABAAAAAAIAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAQAAAAADAAEAAAAAAQABAAAAAAMAAQAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAEAAAAAAwABAAAAAAEAAQAAAAADAAEAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAABAAAAAAIAAQAAAAACAAEAAAAAAwABAAAAAAEAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAMAAQAAAAACAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAEAAAAAAwABAAAAAAIAAQAAAAADAAEAAAAAAQCTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAQABAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAQAAAAADAAEAAAAAAgABAAAAAAMAAQAAAAABAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAEAAAAAAwABAAAAAAMAAQAAAAAAAAEAAAAAAQCTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAABAAAAAAEAAQAAAAACAAEAAAAAAQABAAAAAAEAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAADAAAAAAEAAQAAAAAAAAEAAAAAAAABAAAAAAMAAQAAAAABAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAEAAAAAAQABAAAAAAAAAQAAAAABAAEAAAAAAgABAAAAAAIAkwAAAAAAAAEAAAAAAAABAAAAAAIAAQAAAAADAAEAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAQAAAAABAAIAAAAAAwABAAAAAAAAAgAAAAABAAIAAAAAAgABAAAAAAIAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,1: ind: 2,1 - tiles: AQAAAAAAAgAAAAACAQAAAAAAAgAAAAABAgAAAAAAAQAAAAABkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAgAAAAABAQAAAAADAgAAAAADAgAAAAAAAQAAAAABkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAgAAAAABAQAAAAADAgAAAAADAgAAAAABAQAAAAACkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAQAAAAACAQAAAAABAQAAAAABkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAABCgAAAAACCgAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAACBAAAAAAABAAAAAADBAAAAAABkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAADBQAAAAAABAAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAABAAAAAADBQAAAAAABAAAAAADBQAAAAAABAAAAAABBAAAAAABBAAAAAACkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAABBAAAAAACkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAABAAAAAACBQAAAAAABAAAAAADkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAABBAAAAAADkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AQAAAAAAAAIAAAAAAgABAAAAAAAAAgAAAAABAAIAAAAAAAABAAAAAAEAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAwACAAAAAAEAAQAAAAADAAIAAAAAAwACAAAAAAAAAQAAAAABAJMAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAIAAgAAAAABAAEAAAAAAwACAAAAAAMAAgAAAAABAAEAAAAAAgCTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAIAAQAAAAABAAEAAAAAAQCTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAQAKAAAAAAIACgAAAAACAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAIABAAAAAAAAAQAAAAAAgAEAAAAAAEABAAAAAACAAQAAAAAAAAEAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAIABgAAAAACAAQAAAAAAAAEAAAAAAMABAAAAAABAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAEABAAAAAADAAQAAAAAAQAEAAAAAAMABQAAAAAAAAQAAAAAAACTAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAAAEAAAAAAMABQAAAAAAAAQAAAAAAwAFAAAAAAAABAAAAAABAAQAAAAAAQAEAAAAAAIAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADAAQAAAAAAAAEAAAAAAMABAAAAAADAAQAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgAEAAAAAAEABAAAAAACAJMAAAAAAACTAAAAAAAAkwAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAAAEAAAAAAIABQAAAAAAAAQAAAAAAwCTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACAAQAAAAAAQAEAAAAAAMAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 3,0: ind: 3,0 - tiles: kwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABAQAAAAADAQAAAAACAQAAAAACAQAAAAABAQAAAAACAQAAAAADAQAAAAABAQAAAAAAAQAAAAACAQAAAAADAQAAAAAAAQAAAAACAQAAAAABAQAAAAABkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAABAQAAAAABAQAAAAABAQAAAAADAQAAAAABAQAAAAADAQAAAAADAQAAAAAAAQAAAAABAQAAAAAAAQAAAAADAQAAAAADkwAAAAAAAQAAAAADAQAAAAAAAQAAAAADAQAAAAADAQAAAAACAQAAAAADAQAAAAACAQAAAAACAQAAAAAAAQAAAAABAQAAAAADAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAkwAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAAAAQAAAAACAQAAAAABAQAAAAACAQAAAAADAQAAAAAAAQAAAAACAQAAAAABAQAAAAADAQAAAAAAAQAAAAADAQAAAAABkwAAAAAAAQAAAAABAQAAAAABAQAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAAAAQAAAAADAQAAAAABAQAAAAABAQAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAAAkwAAAAAAAQAAAAABAQAAAAABAQAAAAADAQAAAAADAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAABAQAAAAADAQAAAAAAAQAAAAAAAQAAAAACAQAAAAADAQAAAAACkwAAAAAAAQAAAAABAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAADAQAAAAABAQAAAAABAQAAAAABAQAAAAABAQAAAAADAQAAAAAAAQAAAAACAQAAAAADAQAAAAABkwAAAAAAAQAAAAACAQAAAAACAQAAAAACAQAAAAAAAQAAAAAAAQAAAAABAQAAAAADAQAAAAADAQAAAAAAAQAAAAAAAQAAAAADAQAAAAADAQAAAAADAQAAAAACAQAAAAACkwAAAAAAAQAAAAACAQAAAAACAQAAAAABAQAAAAACAQAAAAABAQAAAAADAQAAAAACAQAAAAACAQAAAAADAQAAAAABAQAAAAABAQAAAAAAAQAAAAADAQAAAAADAQAAAAAAkwAAAAAAAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAABAQAAAAAAAQAAAAAAAQAAAAABAQAAAAACAQAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAACAQAAAAACAQAAAAAAAQAAAAABAQAAAAABAQAAAAADAQAAAAABAQAAAAADAQAAAAADAQAAAAABkwAAAAAAAQAAAAADAQAAAAABAQAAAAABAQAAAAADAQAAAAABAQAAAAADAQAAAAACAQAAAAADAQAAAAACAQAAAAACAQAAAAACAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAQAAAAABAQAAAAABAQAAAAABAQAAAAAAAQAAAAACAQAAAAACAQAAAAADAQAAAAACAQAAAAABAQAAAAAAAQAAAAAAAQAAAAABAQAAAAABAQAAAAACAQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: kwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAEAAAAAAQABAAAAAAMAAQAAAAACAAEAAAAAAgABAAAAAAEAAQAAAAACAAEAAAAAAwABAAAAAAEAAQAAAAAAAAEAAAAAAgABAAAAAAMAAQAAAAAAAAEAAAAAAgABAAAAAAEAAQAAAAABAJMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAgABAAAAAAEAAQAAAAABAAEAAAAAAQABAAAAAAMAAQAAAAABAAEAAAAAAwABAAAAAAMAAQAAAAAAAAEAAAAAAQABAAAAAAAAAQAAAAADAAEAAAAAAwCTAAAAAAAAAQAAAAADAAEAAAAAAAABAAAAAAMAAQAAAAADAAEAAAAAAgABAAAAAAMAAQAAAAACAAEAAAAAAgABAAAAAAAAAQAAAAABAAEAAAAAAwABAAAAAAAAAQAAAAAAAAEAAAAAAgABAAAAAAAAkwAAAAAAAAEAAAAAAwABAAAAAAEAAQAAAAAAAAEAAAAAAAABAAAAAAIAAQAAAAABAAEAAAAAAgABAAAAAAMAAQAAAAAAAAEAAAAAAgABAAAAAAEAAQAAAAADAAEAAAAAAAABAAAAAAMAAQAAAAABAJMAAAAAAAABAAAAAAEAAQAAAAABAAEAAAAAAAABAAAAAAIAAQAAAAAAAAEAAAAAAwABAAAAAAAAAQAAAAADAAEAAAAAAQABAAAAAAEAAQAAAAAAAAEAAAAAAQABAAAAAAIAAQAAAAAAAAEAAAAAAACTAAAAAAAAAQAAAAABAAEAAAAAAQABAAAAAAMAAQAAAAADAAEAAAAAAQABAAAAAAIAAQAAAAAAAAEAAAAAAQABAAAAAAEAAQAAAAADAAEAAAAAAAABAAAAAAAAAQAAAAACAAEAAAAAAwABAAAAAAIAkwAAAAAAAAEAAAAAAQABAAAAAAAAAQAAAAADAAEAAAAAAAABAAAAAAAAAQAAAAADAAEAAAAAAQABAAAAAAEAAQAAAAABAAEAAAAAAQABAAAAAAMAAQAAAAAAAAEAAAAAAgABAAAAAAMAAQAAAAABAJMAAAAAAAABAAAAAAIAAQAAAAACAAEAAAAAAgABAAAAAAAAAQAAAAAAAAEAAAAAAQABAAAAAAMAAQAAAAADAAEAAAAAAAABAAAAAAAAAQAAAAADAAEAAAAAAwABAAAAAAMAAQAAAAACAAEAAAAAAgCTAAAAAAAAAQAAAAACAAEAAAAAAgABAAAAAAEAAQAAAAACAAEAAAAAAQABAAAAAAMAAQAAAAACAAEAAAAAAgABAAAAAAMAAQAAAAABAAEAAAAAAQABAAAAAAAAAQAAAAADAAEAAAAAAwABAAAAAAAAkwAAAAAAAAEAAAAAAQABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAIAAQAAAAACAAEAAAAAAAABAAAAAAMAAQAAAAADAAEAAAAAAQABAAAAAAAAAQAAAAAAAAEAAAAAAQABAAAAAAIAAQAAAAAAAJMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAwABAAAAAAAAAQAAAAAAAAEAAAAAAgABAAAAAAIAAQAAAAAAAAEAAAAAAQABAAAAAAEAAQAAAAADAAEAAAAAAQABAAAAAAMAAQAAAAADAAEAAAAAAQCTAAAAAAAAAQAAAAADAAEAAAAAAQABAAAAAAEAAQAAAAADAAEAAAAAAQABAAAAAAMAAQAAAAACAAEAAAAAAwABAAAAAAIAAQAAAAACAAEAAAAAAgABAAAAAAEAAQAAAAAAAAEAAAAAAAABAAAAAAAAkwAAAAAAAAEAAAAAAQABAAAAAAEAAQAAAAABAAEAAAAAAAABAAAAAAIAAQAAAAACAAEAAAAAAwABAAAAAAIAAQAAAAABAAEAAAAAAAABAAAAAAAAAQAAAAABAAEAAAAAAQABAAAAAAIAAQAAAAADAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 3,1: ind: 3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAQAAAAABAQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAADwAAAAABDwAAAAADkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAQAAAAABAgAAAAADAgAAAAACkwAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAAEAAAAAACEAAAAAACDwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAQAAAAABAQAAAAACkwAAAAAADgAAAAAABQAAAAAADgAAAAAAkwAAAAAAEAAAAAACEAAAAAAADwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABkwAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAAEQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAACwAAAAADCwAAAAABCwAAAAACCwAAAAADCwAAAAACCwAAAAADCwAAAAADCwAAAAABCwAAAAACCwAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACwAAAAADDAAAAAACDAAAAAAACwAAAAABCwAAAAAACwAAAAADCwAAAAABDQAAAAADkwAAAAAACwAAAAADkwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAkwAAAAAACwAAAAABDAAAAAACDAAAAAADCwAAAAADCwAAAAAACwAAAAADCwAAAAABCwAAAAAACwAAAAACCwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAkwAAAAAACwAAAAAACwAAAAACCwAAAAACCwAAAAACCwAAAAADCwAAAAAACwAAAAACDQAAAAADkwAAAAAACwAAAAAAkwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAkwAAAAAAkwAAAAAACwAAAAABCwAAAAADDQAAAAACAQAAAAAAAQAAAAAAAQAAAAADCwAAAAAACwAAAAABCwAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACAQAAAAACAQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAAQAAAAABAAEAAAAAAwCTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAA8AAAAAAQAPAAAAAAMAkwAAAAAAAJMAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACTAAAAAAAAAQAAAAABAAIAAAAAAwACAAAAAAIAkwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAJMAAAAAAAAQAAAAAAIAEAAAAAACAA8AAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAAABAAAAAAEAAQAAAAACAJMAAAAAAAAOAAAAAAAABQAAAAAAAA4AAAAAAACTAAAAAAAAEAAAAAACABAAAAAAAAAPAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAEAAAAAAQCTAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAkwAAAAAAABEAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAACwAAAAADAAsAAAAAAQALAAAAAAIACwAAAAADAAsAAAAAAgALAAAAAAMACwAAAAADAAsAAAAAAQALAAAAAAIACwAAAAACAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAsAAAAAAwAMAAAAAAIADAAAAAAAAAsAAAAAAQALAAAAAAAACwAAAAADAAsAAAAAAQANAAAAAAMAkwAAAAAAAAsAAAAAAwCTAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAAJMAAAAAAAALAAAAAAEADAAAAAACAAwAAAAAAwALAAAAAAMACwAAAAAAAAsAAAAAAwALAAAAAAEACwAAAAAAAAsAAAAAAgALAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAACTAAAAAAAACwAAAAAAAAsAAAAAAgALAAAAAAIACwAAAAACAAsAAAAAAwALAAAAAAAACwAAAAACAA0AAAAAAwCTAAAAAAAACwAAAAAAAJMAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAAAkwAAAAAAAJMAAAAAAAALAAAAAAEACwAAAAADAA0AAAAAAgABAAAAAAAAAQAAAAAAAAEAAAAAAwALAAAAAAAACwAAAAABAAsAAAAAAQCTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAQAAAAACAAEAAAAAAgABAAAAAAMAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 4,1: ind: 4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACAgAAAAACAgAAAAACAgAAAAACAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAgAAAAABAgAAAAADAgAAAAABAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAAAAgAAAAADAgAAAAACkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAABAAAAAAIAAgAAAAACAAIAAAAAAgACAAAAAAIAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAQAAAAADAAIAAAAAAQACAAAAAAMAAgAAAAABAAEAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAACAAAAAAAAAgAAAAADAAIAAAAAAgCTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAEAAAAAAQCTAAAAAAAAkwAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAmQAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJkAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 3,2: ind: 3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABQAAAAAABQAAAAAABQAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAADgAAAAAABQAAAAAADgAAAAAAkwAAAAAAkwAAAAAABQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAACwAAAAACCwAAAAACCwAAAAABkwAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAAkwAAAAAACwAAAAADCwAAAAADCwAAAAADkwAAAAAAAAAAAAAAAAAAAAAACwAAAAACDQAAAAACCwAAAAABCwAAAAADCwAAAAABCwAAAAADEwAAAAACCwAAAAACCwAAAAAACwAAAAADFQAAAAACFQAAAAACFQAAAAACkwAAAAAAAAAAAAAAAAAAAAAAEwAAAAABEwAAAAABEwAAAAACEwAAAAADEwAAAAABEwAAAAAAEwAAAAABEwAAAAACEwAAAAACEwAAAAACFQAAAAABDQAAAAABFQAAAAACkwAAAAAAAAAAAAAAAAAAAAAACwAAAAACCwAAAAABCwAAAAAACwAAAAACCwAAAAAACwAAAAACEwAAAAABCwAAAAABCwAAAAAACwAAAAAAFQAAAAACFQAAAAADFQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAQAAAAADAQAAAAADkwAAAAAACwAAAAABCwAAAAACCwAAAAACCwAAAAACCwAAAAACkwAAAAAACwAAAAAACwAAAAADCwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAQAAAAAAFAAAAAAAAQAAAAACkwAAAAAACwAAAAACEwAAAAACEwAAAAADEwAAAAABCwAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAACkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAABkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAACTAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAJMAAAAAAACZAAAAAAAAmQAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAADgAAAAAAAAUAAAAAAAAOAAAAAAAAkwAAAAAAAJMAAAAAAAAFAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAIACwAAAAACAAsAAAAAAQCTAAAAAAAAkwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAJMAAAAAAACTAAAAAAAACwAAAAADAAsAAAAAAwALAAAAAAMAkwAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAACAA0AAAAAAgALAAAAAAEACwAAAAADAAsAAAAAAQALAAAAAAMAEwAAAAACAAsAAAAAAgALAAAAAAAACwAAAAADABUAAAAAAgAVAAAAAAIAFQAAAAACAJMAAAAAAAAAAAAAAAAAAAAAAAAAABMAAAAAAQATAAAAAAEAEwAAAAACABMAAAAAAwATAAAAAAEAEwAAAAAAABMAAAAAAQATAAAAAAIAEwAAAAACABMAAAAAAgAVAAAAAAEADQAAAAABABUAAAAAAgCTAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAIACwAAAAABAAsAAAAAAAALAAAAAAIACwAAAAAAAAsAAAAAAgATAAAAAAEACwAAAAABAAsAAAAAAAALAAAAAAAAFQAAAAACABUAAAAAAwAVAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAAEAAAAAAwABAAAAAAMAkwAAAAAAAAsAAAAAAQALAAAAAAIACwAAAAACAAsAAAAAAgALAAAAAAIAkwAAAAAAAAsAAAAAAAALAAAAAAMACwAAAAAAAJMAAAAAAACZAAAAAAAAmQAAAAAAAAEAAAAAAAAUAAAAAAAAAQAAAAACAJMAAAAAAAALAAAAAAIAEwAAAAACABMAAAAAAwATAAAAAAEACwAAAAABAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAACwAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAAAsAAAAAAgCTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAsAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAAALAAAAAAEAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,2: ind: 2,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAABQAAAAAADgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAgAAAAABAQAAAAACDwAAAAACDwAAAAABDwAAAAAADwAAAAACkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAADgAAAAAADgAAAAAAAQAAAAAAAgAAAAADAQAAAAABEAAAAAACEAAAAAAAEAAAAAADEAAAAAABDwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAADgAAAAAADgAAAAAAAQAAAAABAgAAAAACAQAAAAABEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAADwAAAAABkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAADgAAAAAADgAAAAAAAQAAAAACAgAAAAACAQAAAAAADwAAAAADDwAAAAACDwAAAAACDwAAAAACkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAQAAAAACCQAAAAAAAQAAAAACAQAAAAAAAQAAAAADkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAADCQAAAAAAAQAAAAACAQAAAAADAQAAAAABkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACCQAAAAAAAwAAAAABAgAAAAADAwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAACQAAAAAAAwAAAAACAgAAAAACkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAFAAAAAAAADgAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAQAAAAADAAIAAAAAAQABAAAAAAIADwAAAAACAA8AAAAAAQAPAAAAAAAADwAAAAACAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAAAOAAAAAAAADgAAAAAAAAEAAAAAAAACAAAAAAMAAQAAAAABABAAAAAAAgAQAAAAAAAAEAAAAAADABAAAAAAAQAPAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAADgAAAAAAAA4AAAAAAAABAAAAAAEAAgAAAAACAAEAAAAAAQAQAAAAAAAAEAAAAAAAABAAAAAAAgAQAAAAAAAADwAAAAABAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAA4AAAAAAAAOAAAAAAAAAQAAAAACAAIAAAAAAgABAAAAAAAADwAAAAADAA8AAAAAAgAPAAAAAAIADwAAAAACAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAADAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJMAAAAAAAABAAAAAAIACQAAAAAAAAEAAAAAAgABAAAAAAAAAQAAAAADAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAAQAAAAADAAkAAAAAAAABAAAAAAIAAQAAAAADAAEAAAAAAQCTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAIACQAAAAAAAAMAAAAAAQACAAAAAAMAAwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAkAAAAAAAADAAAAAAIAAgAAAAACAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 1,3: ind: 1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,3: ind: 2,3 - tiles: kwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAADgAAAAAABQAAAAAADgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAFgAAAAAAFgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACgAAAAAACgAAAAAAkwAAAAAA - version: 6 + tiles: kwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAADgAAAAAAAAUAAAAAAAAOAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAACgAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAFgAAAAAAABYAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAoAAAAAAAAKAAAAAAAAkwAAAAAAAA== + version: 7 4,0: ind: 4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAADgAAAAAABQAAAAAADgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAJMAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAOAAAAAAAABQAAAAAAAA4AAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAkwAAAAAAAA== + version: 7 5,1: ind: 5,1 - tiles: kwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAA - version: 6 + tiles: kwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAA== + version: 7 5,0: ind: 5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACZAAAAAAAAmQAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAmQAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJkAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJkAAAAAAACZAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAA== + version: 7 6,0: ind: 6,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 6,1: ind: 6,1 - tiles: kwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: kwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 5,2: ind: 5,2 - tiles: AAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 4,2: ind: 4,2 - tiles: AAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAADgAAAAAABQAAAAAADgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAAQAAAAAAAQAAAAABAgAAAAABAQAAAAAAAQAAAAAAAQAAAAACAgAAAAADAQAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAAQAAAAADAQAAAAACAgAAAAACAQAAAAADAQAAAAADAQAAAAABAgAAAAADAQAAAAAAAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAAQAAAAADAQAAAAADAgAAAAAAAQAAAAABAQAAAAABAQAAAAACAgAAAAADAQAAAAACAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAAQAAAAADAQAAAAADAgAAAAABAQAAAAAAAQAAAAACAQAAAAABAgAAAAAAAQAAAAACAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAAQAAAAADAQAAAAADAgAAAAAAAQAAAAACAQAAAAABAQAAAAADAgAAAAACAQAAAAACAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAAQAAAAACAQAAAAADAgAAAAAAAQAAAAADAQAAAAACAQAAAAADAgAAAAADAQAAAAACAQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAAQAAAAAAAQAAAAABAgAAAAABAQAAAAABAQAAAAACAQAAAAADAgAAAAACAQAAAAADAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAAgAAAAAAAgAAAAADAgAAAAADAgAAAAACAgAAAAACAgAAAAAAAgAAAAADAgAAAAABAgAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAAQAAAAADAQAAAAADAQAAAAACAQAAAAADAQAAAAACAQAAAAACAQAAAAABAQAAAAADAQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAAQAAAAABAQAAAAABAQAAAAABAQAAAAAAAQAAAAAAAQAAAAADAQAAAAADAQAAAAADAQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAAQAAAAACAQAAAAAAAQAAAAACAQAAAAACAQAAAAADAQAAAAABAQAAAAAAAQAAAAACAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAQAAAAABAQAAAAADAQAAAAACAQAAAAACAQAAAAAAAQAAAAACAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAABAQAAAAAAAQAAAAACAQAAAAACkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAADgAAAAAAAAUAAAAAAAAOAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAmQAAAAAAAJMAAAAAAAABAAAAAAAAAQAAAAABAAIAAAAAAQABAAAAAAAAAQAAAAAAAAEAAAAAAgACAAAAAAMAAQAAAAAAAAEAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAACTAAAAAAAAAQAAAAADAAEAAAAAAgACAAAAAAIAAQAAAAADAAEAAAAAAwABAAAAAAEAAgAAAAADAAEAAAAAAAABAAAAAAEAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAkwAAAAAAAAEAAAAAAwABAAAAAAMAAgAAAAAAAAEAAAAAAQABAAAAAAEAAQAAAAACAAIAAAAAAwABAAAAAAIAAQAAAAABAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAJMAAAAAAAABAAAAAAMAAQAAAAADAAIAAAAAAQABAAAAAAAAAQAAAAACAAEAAAAAAQACAAAAAAAAAQAAAAACAAEAAAAAAQCTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAACTAAAAAAAAAQAAAAADAAEAAAAAAwACAAAAAAAAAQAAAAACAAEAAAAAAQABAAAAAAMAAgAAAAACAAEAAAAAAgABAAAAAAEAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAkwAAAAAAAAEAAAAAAgABAAAAAAMAAgAAAAAAAAEAAAAAAwABAAAAAAIAAQAAAAADAAIAAAAAAwABAAAAAAIAAQAAAAADAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAmQAAAAAAAJMAAAAAAAABAAAAAAAAAQAAAAABAAIAAAAAAQABAAAAAAEAAQAAAAACAAEAAAAAAwACAAAAAAIAAQAAAAADAAEAAAAAAQCTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAACTAAAAAAAAAgAAAAAAAAIAAAAAAwACAAAAAAMAAgAAAAACAAIAAAAAAgACAAAAAAAAAgAAAAADAAIAAAAAAQACAAAAAAMAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAkwAAAAAAAAEAAAAAAwABAAAAAAMAAQAAAAACAAEAAAAAAwABAAAAAAIAAQAAAAACAAEAAAAAAQABAAAAAAMAAQAAAAADAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAJMAAAAAAAABAAAAAAEAAQAAAAABAAEAAAAAAQABAAAAAAAAAQAAAAAAAAEAAAAAAwABAAAAAAMAAQAAAAADAAEAAAAAAgCTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAACTAAAAAAAAAQAAAAACAAEAAAAAAAABAAAAAAIAAQAAAAACAAEAAAAAAwABAAAAAAEAAQAAAAAAAAEAAAAAAgABAAAAAAEAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAAABAAAAAAEAAQAAAAADAAEAAAAAAgABAAAAAAIAAQAAAAAAAAEAAAAAAgABAAAAAAEAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAIAAQAAAAABAAEAAAAAAAABAAAAAAIAAQAAAAACAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 4,3: ind: 4,3 - tiles: AAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACAQAAAAACAQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAABAAAAAAIAAQAAAAACAAEAAAAAAwCTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 6,2: ind: 6,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,4: ind: 2,4 - tiles: AAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAFwAAAAAEFwAAAAAGkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAGAAAAAADGQAAAAAAGgAAAAAAGwAAAAAAHQAAAAAAHwAAAAAAIAAAAAADIQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAHAAAAAAAHgAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAABcAAAAABAAXAAAAAAYAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAABgAAAAAAwAZAAAAAAAAGgAAAAAAABsAAAAAAAAdAAAAAAAAHwAAAAAAACAAAAAAAwAhAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAcAAAAAAAAHgAAAAACAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 3,3: ind: 3,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAACgAAAAAACgAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAACgAAAAAACgAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAAAKAAAAAAAACgAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAoAAAAAAAAKAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 3,4: ind: 3,4 - tiles: kwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: kwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 4,-1: ind: 4,-1 - tiles: AAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAAAAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAAAAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAAAAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAAAAAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAAAAAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAAAAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAAAAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAAAAAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAAAAAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAAAAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAAAAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAAAAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAAAAAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAAAAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAAAAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAAAAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAAAAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAAAAAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAAAAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAAAAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAAAAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAAAAAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAAAAAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAAAAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 4,-2: ind: 4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -979,6 +992,7 @@ entities: 368: 39.592293,65.77571 - type: OccluderTree - type: Shuttle + dampingModifier: 0.25 - type: GridPathfinding - type: SpreaderGrid - type: GravityShake @@ -1702,6 +1716,7 @@ entities: chunkSize: 4 - type: BecomesStation id: Dev + - type: ImplicitRoof - uid: 23 components: - type: MetaData @@ -1712,7 +1727,6 @@ entities: - type: GridTree - type: Broadphase - type: OccluderTree - - type: LoadedMap - uid: 2709 components: - type: MetaData @@ -1725,20 +1739,20 @@ entities: chunks: 0,0: ind: 0,0 - tiles: kwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: kwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAmQAAAAAAAJkAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAmQAAAAAAAJkAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTAAAAAAAAkwAAAAAAAJMAAAAAAACTAAAAAAAAkwAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -1751,6 +1765,7 @@ entities: - type: OccluderTree - type: SpreaderGrid - type: Shuttle + dampingModifier: 0.25 - type: GridPathfinding - type: Gravity gravityShakeSound: !type:SoundPathSpecifier @@ -1824,6 +1839,7 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance + - type: ImplicitRoof - uid: 2869 components: - type: MetaData @@ -1835,8 +1851,8 @@ entities: chunks: 1,1: ind: 1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZAAAAAAAAmQAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJkAAAAAAACZAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -1849,6 +1865,7 @@ entities: - type: OccluderTree - type: SpreaderGrid - type: Shuttle + dampingModifier: 0.25 - type: GridPathfinding - type: Gravity gravityShakeSound: !type:SoundPathSpecifier @@ -1864,6 +1881,7 @@ entities: - type: GasTileOverlay - type: IFF flags: HideLabel + - type: ImplicitRoof - proto: AirAlarm entities: - uid: 1270 @@ -1876,6 +1894,8 @@ entities: devices: - 1269 - 1167 + - type: Fixtures + fixtures: {} - uid: 1539 components: - type: Transform @@ -1885,6 +1905,8 @@ entities: - type: DeviceList devices: - 1538 + - type: Fixtures + fixtures: {} - uid: 1680 components: - type: Transform @@ -1894,6 +1916,8 @@ entities: - type: DeviceList devices: - 1712 + - type: Fixtures + fixtures: {} - proto: AirCanister entities: - uid: 1111 @@ -2041,6 +2065,8 @@ entities: rot: 3.141592653589793 rad pos: 77.5,8.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: APCHyperCapacity entities: - uid: 456 @@ -2048,51 +2074,69 @@ entities: - type: Transform pos: 53.5,14.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 458 components: - type: Transform pos: 33.5,14.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 619 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,16.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 863 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,23.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 1068 components: - type: Transform pos: 33.5,48.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 1220 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,37.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 1394 components: - type: Transform pos: 75.5,18.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2295 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,34.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 2601 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,48.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: AtmosDeviceFanDirectional entities: - uid: 574 @@ -3018,6 +3062,8 @@ entities: - type: Transform pos: 37.5,42.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: BaseBallBat entities: - uid: 2686 @@ -8925,6 +8971,25 @@ entities: - type: Transform pos: 56.75264,43.50025 parent: 1 +- proto: ChemistryBottleRobustHarvest + entities: + - uid: 1058 + components: + - type: Transform + pos: 30.295897,44.102787 + parent: 1 +- proto: ChemistryBottleUnstableMutagen + entities: + - uid: 1056 + components: + - type: Transform + pos: 30.637724,44.013588 + parent: 1 + - uid: 1057 + components: + - type: Transform + pos: 30.726896,43.86493 + parent: 1 - proto: ChemistryHotplate entities: - uid: 1129 @@ -8999,6 +9064,8 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,-1.5 parent: 2709 + - type: Fixtures + fixtures: {} - proto: ClosetWallMixed entities: - uid: 829 @@ -9007,6 +9074,8 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,21.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: ClothingBackpackDuffelSurgeryFilled entities: - uid: 1218 @@ -9084,7 +9153,8 @@ entities: - type: DeviceLinkSource linkedPorts: 844: - - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver + - - ArtifactAnalyzerSender + - ArtifactAnalyzerReceiver - uid: 2616 components: - type: Transform @@ -9131,13 +9201,6 @@ entities: - type: Transform pos: 47.5,55.5 parent: 1 -- proto: ComputerCargoShuttle - entities: - - uid: 2637 - components: - - type: Transform - pos: 49.5,55.5 - parent: 1 - proto: ComputerCloningConsole entities: - uid: 1183 @@ -9149,9 +9212,11 @@ entities: - type: DeviceLinkSource linkedPorts: 1185: - - MedicalScannerSender: MedicalScannerReceiver + - - MedicalScannerSender + - MedicalScannerReceiver 1184: - - CloningPodSender: CloningPodReceiver + - - CloningPodSender + - CloningPodReceiver - uid: 2620 components: - type: Transform @@ -9299,6 +9364,11 @@ entities: - type: Transform pos: 50.5,55.5 parent: 1 + - uid: 2637 + components: + - type: Transform + pos: 49.5,55.5 + parent: 1 - proto: ComputerShuttleSyndie entities: - uid: 2630 @@ -9619,7 +9689,6 @@ entities: showEnts: False occludes: True ents: - - 2115 - 2114 - 2113 - 2112 @@ -9861,6 +9930,8 @@ entities: - type: Transform pos: -0.5,1.5 parent: 2709 + - type: Fixtures + fixtures: {} - proto: DebugGenerator entities: - uid: 2256 @@ -9931,12 +10002,16 @@ entities: rot: 3.141592653589793 rad pos: 47.5,37.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 1910 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,40.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: DogBed entities: - uid: 780 @@ -10019,30 +10094,40 @@ entities: rot: 3.141592653589793 rad pos: 56.5,23.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 1008 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,39.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 1907 components: - type: Transform rot: -1.5707963267948966 rad pos: 79.5,18.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 1908 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,34.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 1909 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,37.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: FireAxeCabinetFilled entities: - uid: 1633 @@ -10051,12 +10136,16 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,15.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 3074 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,20.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: FireExtinguisher entities: - uid: 425 @@ -10332,6 +10421,8 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,43.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: GasAnalyzer entities: - uid: 1258 @@ -12105,15 +12196,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: MagazineLightRifleMaxim - entities: - - uid: 2115 - components: - - type: Transform - parent: 2107 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: MagazineLightRiflePractice entities: - uid: 2110 @@ -12958,6 +13040,8 @@ entities: rot: 3.141592653589793 rad pos: 94.5,11.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterLegitJustAWeekAway entities: - uid: 3144 @@ -12965,6 +13049,8 @@ entities: - type: Transform pos: 61.5,39.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PottedPlant21 entities: - uid: 928 @@ -14354,13 +14440,6 @@ entities: - type: Transform pos: 50.542976,20.508951 parent: 1 -- proto: RobustHarvestChemistryBottle - entities: - - uid: 1058 - components: - - type: Transform - pos: 30.295897,44.102787 - parent: 1 - proto: SalvageMagnet entities: - uid: 2678 @@ -14770,6 +14849,8 @@ entities: parent: 1 - type: Lock locked: False + - type: Fixtures + fixtures: {} - proto: ShotGunCabinetFilled entities: - uid: 1906 @@ -14778,6 +14859,8 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,19.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: ShuttleGunDuster entities: - uid: 2781 @@ -14875,27 +14958,40 @@ entities: - type: DeviceLinkSource linkedPorts: 585: - - Pressed: Toggle + - - Pressed + - Toggle 586: - - Pressed: Toggle + - - Pressed + - Toggle 587: - - Pressed: Toggle + - - Pressed + - Toggle 588: - - Pressed: Toggle + - - Pressed + - Toggle 589: - - Pressed: Toggle + - - Pressed + - Toggle 590: - - Pressed: Toggle + - - Pressed + - Toggle 591: - - Pressed: Toggle + - - Pressed + - Toggle 592: - - Pressed: Toggle + - - Pressed + - Toggle 593: - - Pressed: Toggle + - - Pressed + - Toggle 584: - - Pressed: Toggle + - - Pressed + - Toggle 608: - - Pressed: Toggle + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - uid: 740 components: - type: MetaData @@ -14906,27 +15002,40 @@ entities: - type: DeviceLinkSource linkedPorts: 598: - - Pressed: Toggle + - - Pressed + - Toggle 599: - - Pressed: Toggle + - - Pressed + - Toggle 607: - - Pressed: Toggle + - - Pressed + - Toggle 606: - - Pressed: Toggle + - - Pressed + - Toggle 605: - - Pressed: Toggle + - - Pressed + - Toggle 604: - - Pressed: Toggle + - - Pressed + - Toggle 603: - - Pressed: Toggle + - - Pressed + - Toggle 602: - - Pressed: Toggle + - - Pressed + - Toggle 601: - - Pressed: Toggle + - - Pressed + - Toggle 600: - - Pressed: Toggle + - - Pressed + - Toggle 609: - - Pressed: Toggle + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - uid: 753 components: - type: MetaData @@ -14938,11 +15047,16 @@ entities: - type: DeviceLinkSource linkedPorts: 596: - - Pressed: Toggle + - - Pressed + - Toggle 852: - - Pressed: Toggle + - - Pressed + - Toggle 853: - - Pressed: Toggle + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - uid: 1593 components: - type: MetaData @@ -14954,7 +15068,10 @@ entities: - type: DeviceLinkSource linkedPorts: 1597: - - Pressed: Trigger + - - Pressed + - Trigger + - type: Fixtures + fixtures: {} - uid: 1594 components: - type: MetaData @@ -14966,7 +15083,10 @@ entities: - type: DeviceLinkSource linkedPorts: 1579: - - Pressed: Toggle + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - uid: 2794 components: - type: MetaData @@ -14978,17 +15098,27 @@ entities: - type: DeviceLinkSource linkedPorts: 2783: - - Pressed: Toggle - - Pressed: Trigger + - - Pressed + - Toggle + - - Pressed + - Trigger 2782: - - Pressed: Toggle - - Pressed: Trigger + - - Pressed + - Toggle + - - Pressed + - Trigger 2781: - - Pressed: Toggle - - Pressed: Trigger + - - Pressed + - Toggle + - - Pressed + - Trigger 2784: - - Pressed: Toggle - - Pressed: Trigger + - - Pressed + - Toggle + - - Pressed + - Trigger + - type: Fixtures + fixtures: {} - uid: 2795 components: - type: MetaData @@ -15000,7 +15130,10 @@ entities: - type: DeviceLinkSource linkedPorts: 2779: - - Pressed: Toggle + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - uid: 2796 components: - type: Transform @@ -15009,8 +15142,12 @@ entities: - type: DeviceLinkSource linkedPorts: 2781: - - Pressed: Toggle - - Pressed: Trigger + - - Pressed + - Toggle + - - Pressed + - Trigger + - type: Fixtures + fixtures: {} - uid: 2797 components: - type: Transform @@ -15019,8 +15156,12 @@ entities: - type: DeviceLinkSource linkedPorts: 2784: - - Pressed: Toggle - - Pressed: Trigger + - - Pressed + - Toggle + - - Pressed + - Trigger + - type: Fixtures + fixtures: {} - uid: 2798 components: - type: Transform @@ -15029,8 +15170,12 @@ entities: - type: DeviceLinkSource linkedPorts: 2783: - - Pressed: Toggle - - Pressed: Trigger + - - Pressed + - Toggle + - - Pressed + - Trigger + - type: Fixtures + fixtures: {} - uid: 2799 components: - type: Transform @@ -15039,8 +15184,12 @@ entities: - type: DeviceLinkSource linkedPorts: 2782: - - Pressed: Toggle - - Pressed: Trigger + - - Pressed + - Toggle + - - Pressed + - Trigger + - type: Fixtures + fixtures: {} - proto: SignalButtonDirectional entities: - uid: 2642 @@ -15054,7 +15203,10 @@ entities: - type: DeviceLinkSource linkedPorts: 2641: - - Pressed: Toggle + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - proto: SignalTrigger entities: - uid: 2863 @@ -15725,6 +15877,8 @@ entities: - type: Transform pos: 45.5,65.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: StationMapBroken entities: - uid: 1911 @@ -15732,6 +15886,8 @@ entities: - type: Transform pos: 46.5,65.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: Stunbaton entities: - uid: 2683 @@ -16144,6 +16300,7 @@ entities: - type: Transform pos: 82.5,21.5 parent: 1 + - type: Conveyed - uid: 2881 components: - type: Transform @@ -16302,53 +16459,89 @@ entities: - type: DeviceLinkSource linkedPorts: 2850: - - Left: Forward - - Right: Reverse - - Middle: Off + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off 2848: - - Left: Forward - - Right: Reverse - - Middle: Off + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off 2847: - - Left: Forward - - Right: Reverse - - Middle: Off + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off 2626: - - Left: Forward - - Right: Reverse - - Middle: Off + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off 2844: - - Left: Forward - - Right: Reverse - - Middle: Off + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off 2621: - - Left: Forward - - Right: Reverse - - Middle: Off + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off 432: - - Left: Forward - - Right: Reverse - - Middle: Off + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off 2615: - - Left: Forward - - Right: Reverse - - Middle: Off + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off 2213: - - Left: Forward - - Right: Reverse - - Middle: Off + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off 2849: - - Left: Forward - - Right: Reverse - - Middle: Off + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off 2852: - - Left: Forward - - Right: Reverse - - Middle: Off + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off 2851: - - Left: Forward - - Right: Reverse - - Middle: Off + - - Left + - Forward + - - Right + - Reverse + - - Middle + - Off - proto: UniformPrinter entities: - uid: 428 @@ -16356,18 +16549,12 @@ entities: - type: Transform pos: 37.5,18.5 parent: 1 -- proto: UnstableMutagenChemistryBottle - entities: - - uid: 1056 - components: - - type: Transform - pos: 30.637724,44.013588 - parent: 1 - - uid: 1057 - components: - - type: Transform - pos: 30.726896,43.86493 - parent: 1 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: UraniumReinforcedWindowDirectional entities: - uid: 748 @@ -16531,6 +16718,8 @@ entities: - type: Transform pos: 57.5,41.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: VendingMachineYouTool entities: - uid: 1292 diff --git a/Resources/Maps/Test/empty.yml b/Resources/Maps/Test/empty.yml index 000b91ea43..e54a18422b 100644 --- a/Resources/Maps/Test/empty.yml +++ b/Resources/Maps/Test/empty.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Map + engineVersion: 266.0.0 + forkId: "" + forkVersion: "" + time: 08/31/2025 14:22:33 + entityCount: 4 +maps: +- 3 +grids: +- 2 +orphans: [] +nullspace: [] tilemap: 0: Space 89: FloorSteel @@ -16,8 +27,8 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -31,6 +42,7 @@ entities: id: Empty - type: OccluderTree - type: Shuttle + dampingModifier: 0.25 - type: GridPathfinding - type: Gravity gravityShakeSound: !type:SoundPathSpecifier @@ -40,20 +52,29 @@ entities: version: 2 nodes: [] - type: SpreaderGrid + - type: ImplicitRoof - uid: 3 components: - type: MetaData name: map 89 - type: Transform - type: Map + mapPaused: True - type: GridTree - type: Broadphase - type: OccluderTree +- proto: SpawnPointAnyJob + entities: + - uid: 4 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 - proto: SpawnPointLatejoin entities: - uid: 1 components: - type: Transform - anchored: False - parent: 3 + pos: -0.5,-0.5 + parent: 2 ... diff --git a/Resources/Maps/amber.yml b/Resources/Maps/amber.yml index 83f668d433..503d82bbf7 100644 --- a/Resources/Maps/amber.yml +++ b/Resources/Maps/amber.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 264.0.0 + engineVersion: 266.0.0 forkId: "" forkVersion: "" - time: 07/22/2025 15:41:03 - entityCount: 24836 + time: 08/28/2025 21:24:20 + entityCount: 24843 maps: - 1 grids: @@ -98,7 +98,7 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: CQAAAAACAAkAAAAAAwAJAAAAAAMACQAAAAAAAAkAAAAAAgAOAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAEADgAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAAAAAkAAAAAAgAJAAAAAAEADgAAAAAAAAkAAAAAAAAJAAAAAAMACQAAAAABABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAJAAAAAAMADgAAAAAAAAkAAAAAAwAJAAAAAAEACQAAAAAAAAkAAAAAAgAJAAAAAAAACQAAAAAAAAkAAAAAAwAbAAAAAAAAGwAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAAADwAAAAABAA8AAAAAAAAPAAAAAAMACQAAAAABAAkAAAAAAAAJAAAAAAIADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAMACQAAAAABAA8AAAAAAQAPAAAAAAMADwAAAAABAAkAAAAAAgAJAAAAAAMACQAAAAABAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAIADgAAAAAAAAkAAAAAAAAJAAAAAAIACQAAAAACAAkAAAAAAgAJAAAAAAMACQAAAAABAAkAAAAAAgAOAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAQAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAAACQAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAABAAkAAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAADAAkAAAAAAgAJAAAAAAEADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAJAAAAAAEADgAAAAAAAAkAAAAAAAAJAAAAAAIACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAAAJAAAAAAIACQAAAAABAAkAAAAAAwAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAEAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMADgAAAAAAAAkAAAAAAwAJAAAAAAMACQAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: CQAAAAACAAkAAAAAAwAJAAAAAAMACQAAAAAAAAkAAAAAAgAOAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAEADgAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAAAAAkAAAAAAgAJAAAAAAEADgAAAAAAAAkAAAAAAAAJAAAAAAMACQAAAAABABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAJAAAAAAMADgAAAAAAAAkAAAAAAwAJAAAAAAEACQAAAAAAAAkAAAAAAgAJAAAAAAAACQAAAAAAAAkAAAAAAwAbAAAAAAAAGwAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAAADwAAAAABAA8AAAAAAAAPAAAAAAMACQAAAAABAAkAAAAAAAAJAAAAAAIADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAMACQAAAAABAA8AAAAAAQAPAAAAAAMADwAAAAABAAkAAAAAAgAJAAAAAAMACQAAAAABAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAIADgAAAAAAAAkAAAAAAAAJAAAAAAIACQAAAAACAAkAAAAAAgAJAAAAAAMACQAAAAABAAkAAAAAAgAOAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAQAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAAACQAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAABAAkAAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAADAAkAAAAAAgAJAAAAAAEADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAJAAAAAAEADgAAAAAAAAkAAAAAAAAJAAAAAAIACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAAAJAAAAAAIACQAAAAABAAkAAAAAAwAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAEAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMADgAAAAAAAAkAAAAAAwAJAAAAAAMACQAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 -1,-2: ind: -1,-2 @@ -118,7 +118,7 @@ entities: version: 7 -1,0: ind: -1,0 - tiles: CQAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAAAAA4AAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACQAAAAAAAAkAAAAAAgAOAAAAAAAADgAAAAAAAAsAAAAAAAALAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAAADgAAAAAAAA4AAAAAAAALAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAAAAA4AAAAAAAALAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAwAOAAAAAAAADgAAAAAAAA4AAAAAAAALAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAIAAQAAAAACAAEAAAAAAwAOAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAAAAAEAAAAAAgABAAAAAAEADgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAACQAAAAAAAAkAAAAAAAABAAAAAAMAAQAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAADAAkAAAAAAwAJAAAAAAAACQAAAAACAAkAAAAAAgAJAAAAAAMACQAAAAADAAkAAAAAAAAJAAAAAAIACQAAAAABAAkAAAAAAQAJAAAAAAEACQAAAAABAAkAAAAAAAAvAAAAAAEALwAAAAADAC8AAAAAAQAvAAAAAAIALwAAAAABAC8AAAAAAwAvAAAAAAIALwAAAAADAC8AAAAAAwAvAAAAAAAALwAAAAABAC8AAAAAAQAvAAAAAAIALwAAAAABAC8AAAAAAgAvAAAAAAIAAQAAAAADAC8AAAAAAAAvAAAAAAIALwAAAAADAAEAAAAAAAABAAAAAAIAAQAAAAABAC8AAAAAAgAvAAAAAAEADgAAAAAAAAkAAAAAAAAJAAAAAAIACQAAAAADAAkAAAAAAgAJAAAAAAAACQAAAAABAAEAAAAAAgAvAAAAAAIALwAAAAACAC8AAAAAAgABAAAAAAAAAQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAABAAAAAAMALwAAAAACAC8AAAAAAwAvAAAAAAAAAQAAAAAAAAEAAAAAAwAOAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAAAQAAAAACAC8AAAAAAgAvAAAAAAAALwAAAAAAAAEAAAAAAgABAAAAAAMADgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: HAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAAAAA4AAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACQAAAAAAAAkAAAAAAgAOAAAAAAAADgAAAAAAAAsAAAAAAAALAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAAADgAAAAAAAA4AAAAAAAALAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAAAAA4AAAAAAAALAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAwAOAAAAAAAADgAAAAAAAA4AAAAAAAALAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAIAAQAAAAACAAEAAAAAAwAOAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAAAAAEAAAAAAgABAAAAAAEADgAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAACQAAAAAAAAkAAAAAAAABAAAAAAMAAQAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAADAAkAAAAAAwAJAAAAAAAACQAAAAACAAkAAAAAAgAJAAAAAAMACQAAAAADABwAAAAAAAAJAAAAAAIACQAAAAABAAkAAAAAAQAJAAAAAAEACQAAAAABAAkAAAAAAAAvAAAAAAEALwAAAAADAC8AAAAAAQAvAAAAAAIALwAAAAABAC8AAAAAAwAvAAAAAAIALwAAAAADAC8AAAAAAwAcAAAAAAAALwAAAAABAC8AAAAAAQAvAAAAAAIALwAAAAABAC8AAAAAAgAvAAAAAAIAAQAAAAADAC8AAAAAAAAvAAAAAAIALwAAAAADAAEAAAAAAAABAAAAAAIAAQAAAAABAC8AAAAAAgAvAAAAAAEADgAAAAAAAAkAAAAAAAAJAAAAAAIACQAAAAADAAkAAAAAAgAJAAAAAAAACQAAAAABAAEAAAAAAgAvAAAAAAIALwAAAAACAC8AAAAAAgABAAAAAAAAAQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAABAAAAAAMALwAAAAACAC8AAAAAAwAvAAAAAAAAAQAAAAAAAAEAAAAAAwAOAAAAAAAALgAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAAAQAAAAACAC8AAAAAAgAvAAAAAAAALwAAAAAAAAEAAAAAAgABAAAAAAMADgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 -1,1: ind: -1,1 @@ -126,7 +126,7 @@ entities: version: 7 -2,-1: ind: -2,-1 - tiles: DgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAAAAAkAAAAAAQAJAAAAAAEACQAAAAACAAgAAAAAAAAIAAAAAAAACAAAAAAAAAkAAAAAAgAJAAAAAAEACQAAAAACAAgAAAAAAAAJAAAAAAIACQAAAAADAA4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAAAIAAAAAAAACAAAAAAAAAkAAAAAAQAIAAAAAAAACAAAAAAAAAgAAAAAAAAJAAAAAAAACQAAAAACAAkAAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAwAeAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAAACAAAAAAAAAgAAAAAAAAJAAAAAAIACQAAAAACAAkAAAAAAwAJAAAAAAIACQAAAAABAAkAAAAAAwAJAAAAAAIADgAAAAAAAAkAAAAAAQAJAAAAAAIAHgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAIAAAAAAAACQAAAAADAAkAAAAAAwAJAAAAAAMACQAAAAACAAgAAAAAAAAIAAAAAAAACAAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAABAA4AAAAAAAAOAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAwAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAIAHAAAAAAAABwAAAAAAQAcAAAAAAIAIwAAAAACACMAAAAAAAAjAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAAAcAAAAAAIAHAAAAAADABwAAAAAAwAcAAAAAAMAHAAAAAADAA4AAAAAAAAjAAAAAAIAIwAAAAACAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAEACQAAAAADAAkAAAAAAwAcAAAAAAIAHAAAAAABABwAAAAAAgAcAAAAAAAAHAAAAAACABwAAAAAAAAOAAAAAAAAIwAAAAAAACMAAAAAAwAOAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAMACQAAAAACAAkAAAAAAwAOAAAAAAAAHAAAAAABABwAAAAAAAAcAAAAAAMAHAAAAAACABwAAAAAAQAcAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAAAJAAAAAAIADgAAAAAAABwAAAAAAwAcAAAAAAIADgAAAAAAAA4AAAAAAAAcAAAAAAMAHAAAAAABAA4AAAAAAAAJAAAAAAIACQAAAAABAAkAAAAAAwAJAAAAAAEACQAAAAACAAkAAAAAAgAJAAAAAAMACQAAAAADABwAAAAAAAAcAAAAAAMAHAAAAAACABwAAAAAAwAcAAAAAAAAHAAAAAAAABwAAAAAAwAcAAAAAAIACQAAAAACAAkAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAACQAAAAABAAkAAAAAAgAcAAAAAAEAHAAAAAACABwAAAAAAgAcAAAAAAIAHAAAAAACABwAAAAAAAAcAAAAAAAAHAAAAAAAAAkAAAAAAQAJAAAAAAAADwAAAAABAA8AAAAAAQAPAAAAAAIADwAAAAADAAkAAAAAAQAJAAAAAAMAHAAAAAACABwAAAAAAwAcAAAAAAAAHAAAAAABABwAAAAAAwAcAAAAAAMAHAAAAAADABwAAAAAAQAJAAAAAAEACQAAAAAAAA8AAAAAAAAPAAAAAAEADwAAAAADAA8AAAAAAQAJAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAAAJAAAAAAAACQAAAAACAAkAAAAAAAAJAAAAAAMACQAAAAADAA== + tiles: DgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAAAAAkAAAAAAQAJAAAAAAEACQAAAAACAAgAAAAAAAAIAAAAAAAACAAAAAAAAAkAAAAAAgAJAAAAAAEACQAAAAACAAgAAAAAAAAJAAAAAAIACQAAAAADAA4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAAAIAAAAAAAACAAAAAAAAAkAAAAAAQAIAAAAAAAACAAAAAAAAAgAAAAAAAAJAAAAAAAACQAAAAACAAkAAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAwAeAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAAACAAAAAAAAAgAAAAAAAAJAAAAAAIACQAAAAACAAkAAAAAAwAJAAAAAAIACQAAAAABAAkAAAAAAwAJAAAAAAIADgAAAAAAAAkAAAAAAQAJAAAAAAIAHgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAIAAAAAAAACQAAAAADAAkAAAAAAwAJAAAAAAMACQAAAAACAAgAAAAAAAAIAAAAAAAACAAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAABAA4AAAAAAAAOAAAAAAAALgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAwAOAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAsAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAIAHAAAAAAAABwAAAAAAQAcAAAAAAIAIwAAAAACACMAAAAAAAAjAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAAAcAAAAAAIAHAAAAAADABwAAAAAAwAcAAAAAAMAHAAAAAADAA4AAAAAAAAjAAAAAAIAIwAAAAACAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAEACQAAAAADAAkAAAAAAwAcAAAAAAIAHAAAAAABABwAAAAAAgAcAAAAAAAAHAAAAAACABwAAAAAAAAOAAAAAAAAIwAAAAAAACMAAAAAAwAOAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAMACQAAAAACAAkAAAAAAwAOAAAAAAAAHAAAAAABABwAAAAAAAAcAAAAAAMAHAAAAAACABwAAAAAAQAcAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAAAABwAAAAAAAAJAAAAAAIADgAAAAAAABwAAAAAAwAcAAAAAAIADgAAAAAAAA4AAAAAAAAcAAAAAAMAHAAAAAABAA4AAAAAAAAJAAAAAAIACQAAAAABAAkAAAAAAwAJAAAAAAEACQAAAAACAAkAAAAAAgAJAAAAAAMACQAAAAADABwAAAAAAAAcAAAAAAMAHAAAAAACABwAAAAAAwAcAAAAAAAAHAAAAAAAABwAAAAAAwAcAAAAAAIACQAAAAACAAkAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAACQAAAAABAAkAAAAAAgAcAAAAAAEAHAAAAAACABwAAAAAAgAcAAAAAAIAHAAAAAACABwAAAAAAAAcAAAAAAAAHAAAAAAAAAkAAAAAAQAJAAAAAAAADwAAAAABAA8AAAAAAQAPAAAAAAIADwAAAAADAAkAAAAAAQAJAAAAAAMAHAAAAAACABwAAAAAAwAcAAAAAAAAHAAAAAABABwAAAAAAwAcAAAAAAMAHAAAAAADABwAAAAAAQAJAAAAAAEACQAAAAAAAA8AAAAAAAAPAAAAAAEADwAAAAADAA8AAAAAAQAJAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAAAJAAAAAAAACQAAAAACAAkAAAAAAAAJAAAAAAMACQAAAAADAA== version: 7 -2,-2: ind: -2,-2 @@ -146,7 +146,7 @@ entities: version: 7 -2,0: ind: -2,0 - tiles: CQAAAAACAA4AAAAAAAAcAAAAAAEAHAAAAAABABwAAAAAAAAcAAAAAAMAHAAAAAACABwAAAAAAQAOAAAAAAAAHAAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAADAAkAAAAAAAAOAAAAAAAAHAAAAAACABwAAAAAAQAcAAAAAAEAHAAAAAACABwAAAAAAAAcAAAAAAAAHAAAAAADABwAAAAAAwAcAAAAAAEADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAADAAkAAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAQAcAAAAAAEAHAAAAAABABwAAAAAAAAcAAAAAAIAHAAAAAACABwAAAAAAAAcAAAAAAMAHAAAAAACAA4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAwAJAAAAAAAADQAAAAAAAA4AAAAAAAAcAAAAAAMAHAAAAAACABwAAAAAAAAOAAAAAAAAHAAAAAABABwAAAAAAwAcAAAAAAIAHAAAAAADABwAAAAAAwAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAAAAA4AAAAAAAAcAAAAAAMADgAAAAAAABwAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAEAAAAAAgABAAAAAAIACQAAAAADAAkAAAAAAAAOAAAAAAAAHAAAAAABABwAAAAAAgAcAAAAAAIAHAAAAAABAA4AAAAAAAAJAAAAAAEACQAAAAAAAAkAAAAAAwAJAAAAAAAACQAAAAAAAAkAAAAAAgAJAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAIACQAAAAACAAkAAAAAAgAJAAAAAAAACQAAAAAAAAkAAAAAAQAOAAAAAAAACQAAAAABAAkAAAAAAwAJAAAAAAIACQAAAAACAAkAAAAAAAAJAAAAAAMACQAAAAACAAkAAAAAAAAJAAAAAAMACQAAAAADAAkAAAAAAwAJAAAAAAEACQAAAAADAAkAAAAAAQAJAAAAAAEADgAAAAAAAAkAAAAAAQAJAAAAAAEACQAAAAABAAkAAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAgAJAAAAAAMACQAAAAAAAAkAAAAAAwAJAAAAAAAAHAAAAAABABwAAAAAAgAJAAAAAAIACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAABABwAAAAAAgAcAAAAAAMACQAAAAAAAAkAAAAAAwAOAAAAAAAAHAAAAAACABwAAAAAAwAcAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAIACQAAAAAAAAkAAAAAAgAcAAAAAAIAHAAAAAABAAkAAAAAAQAJAAAAAAIAHAAAAAADABwAAAAAAQAcAAAAAAEAHAAAAAABABwAAAAAAQAcAAAAAAIADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAABAAkAAAAAAAAJAAAAAAIAHAAAAAADABwAAAAAAwAJAAAAAAAACQAAAAAAABwAAAAAAgAcAAAAAAAAHAAAAAADABwAAAAAAgAcAAAAAAAAHAAAAAADAA4AAAAAAAAOAAAAAAAALwAAAAABAC8AAAAAAQAvAAAAAAEACQAAAAACABwAAAAAAAAcAAAAAAEACQAAAAAAAAkAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAAAQAAAAAAAAkAAAAAAgAcAAAAAAEAHAAAAAADAAkAAAAAAAAJAAAAAAEACQAAAAADAAkAAAAAAAAJAAAAAAIACQAAAAADAA4AAAAAAAAsAAAAAAAADgAAAAAAADEAAAAAAwAOAAAAAAAADgAAAAAAAAEAAAAAAwAJAAAAAAIACQAAAAAAAAkAAAAAAQAJAAAAAAMACQAAAAADAAkAAAAAAwAJAAAAAAIACQAAAAACAAkAAAAAAQAOAAAAAAAALAAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAABAAAAAAEACQAAAAAAAAkAAAAAAgAJAAAAAAIACQAAAAAAAAkAAAAAAwAJAAAAAAIACQAAAAAAAAkAAAAAAgAJAAAAAAEADgAAAAAAACwAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAAQAAAAADAA== + tiles: CQAAAAACAA4AAAAAAAAcAAAAAAEAHAAAAAABABwAAAAAAAAcAAAAAAMAHAAAAAACABwAAAAAAQAOAAAAAAAAHAAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAAAHAAAAAAAAAkAAAAAAAAOAAAAAAAAHAAAAAACABwAAAAAAQAcAAAAAAEAHAAAAAACABwAAAAAAAAcAAAAAAAAHAAAAAADABwAAAAAAwAcAAAAAAEADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAADAAkAAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAQAcAAAAAAEAHAAAAAABABwAAAAAAAAcAAAAAAIAHAAAAAACABwAAAAAAAAcAAAAAAMAHAAAAAACAA4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAwAJAAAAAAAADQAAAAAAAA4AAAAAAAAcAAAAAAMAHAAAAAACABwAAAAAAAAOAAAAAAAAHAAAAAABABwAAAAAAwAcAAAAAAIAHAAAAAADABwAAAAAAwAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAAAAA4AAAAAAAAcAAAAAAMADgAAAAAAABwAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAEAAAAAAgABAAAAAAIACQAAAAADAAkAAAAAAAAOAAAAAAAAHAAAAAABABwAAAAAAgAcAAAAAAIAHAAAAAABAA4AAAAAAAAJAAAAAAEACQAAAAAAAAkAAAAAAwAJAAAAAAAACQAAAAAAAAkAAAAAAgAJAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAIACQAAAAACAAkAAAAAAgAJAAAAAAAACQAAAAAAAAkAAAAAAQAOAAAAAAAACQAAAAABAAkAAAAAAwAJAAAAAAIACQAAAAACAAkAAAAAAAAJAAAAAAMACQAAAAACAAkAAAAAAAAJAAAAAAMACQAAAAADAAkAAAAAAwAJAAAAAAEACQAAAAADAAkAAAAAAQAJAAAAAAEADgAAAAAAAAkAAAAAAQAJAAAAAAEACQAAAAABAAkAAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAgAJAAAAAAMACQAAAAAAAAkAAAAAAwAJAAAAAAAAHAAAAAABABwAAAAAAgAJAAAAAAIACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAABABwAAAAAAgAcAAAAAAMACQAAAAAAAAkAAAAAAwAOAAAAAAAAHAAAAAACABwAAAAAAwAcAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAIACQAAAAAAAAkAAAAAAgAcAAAAAAIAHAAAAAABAAkAAAAAAQAJAAAAAAIAHAAAAAADABwAAAAAAQAcAAAAAAEAHAAAAAABABwAAAAAAQAcAAAAAAIADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAABAAkAAAAAAAAJAAAAAAIAHAAAAAADABwAAAAAAwAJAAAAAAAACQAAAAAAABwAAAAAAgAcAAAAAAAAHAAAAAADABwAAAAAAgAcAAAAAAAAHAAAAAADAA4AAAAAAAAOAAAAAAAALwAAAAABAC8AAAAAAQAvAAAAAAEACQAAAAACABwAAAAAAAAcAAAAAAEACQAAAAAAAAkAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAAAQAAAAAAAAkAAAAAAgAcAAAAAAEAHAAAAAADAAkAAAAAAAAJAAAAAAEACQAAAAADAAkAAAAAAAAJAAAAAAIACQAAAAADAA4AAAAAAAAsAAAAAAAADgAAAAAAADEAAAAAAwAOAAAAAAAADgAAAAAAAAEAAAAAAwAJAAAAAAIACQAAAAAAAAkAAAAAAQAJAAAAAAMACQAAAAADAAkAAAAAAwAJAAAAAAIACQAAAAACAAkAAAAAAQAOAAAAAAAALAAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAABAAAAAAEACQAAAAAAAAkAAAAAAgAJAAAAAAIACQAAAAAAAAkAAAAAAwAJAAAAAAIACQAAAAAAAAkAAAAAAgAJAAAAAAEADgAAAAAAACwAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAAQAAAAADAA== version: 7 -2,1: ind: -2,1 @@ -214,7 +214,7 @@ entities: version: 7 0,-1: ind: 0,-1 - tiles: GwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAACAAkAAAAAAQAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAAHgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAAB4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAeAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAEAAAAAAAABAAAAAAEADgAAAAAAAB4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAABAAAAAAIAAQAAAAAAAA4AAAAAAAAeAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAAAQAAAAACAAEAAAAAAwAOAAAAAAAAHgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAABAAAAAAEADgAAAAAAAB4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAeAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAeAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: GwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAACAAkAAAAAAQAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAAHgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAAB4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAeAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAEAAAAAAAABAAAAAAEADgAAAAAAAB4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAABAAAAAAIAAQAAAAAAAA4AAAAAAAAeAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAeAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAeAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 0,-2: ind: 0,-2 @@ -222,7 +222,7 @@ entities: version: 7 0,-3: ind: 0,-3 - tiles: CQAAAAABAAkAAAAAAgAJAAAAAAMACQAAAAAAAAkAAAAAAwAJAAAAAAIACQAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAABAAkAAAAAAwAJAAAAAAIADgAAAAAAAAkAAAAAAgAJAAAAAAMACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAMACQAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAIwAAAAACACMAAAAAAwAOAAAAAAAAGwAAAAAAAA4AAAAAAAABAAAAAAAAAQAAAAABAA4AAAAAAAAJAAAAAAMACQAAAAAAAAkAAAAAAgAOAAAAAAAAIwAAAAAAACMAAAAAAgAjAAAAAAIAJAAAAAAAACMAAAAAAAAjAAAAAAIAGwAAAAAAAA4AAAAAAAAbAAAAAAAAAQAAAAAAAAEAAAAAAAAJAAAAAAAACQAAAAABAAkAAAAAAgAJAAAAAAAADgAAAAAAACMAAAAAAgAjAAAAAAAAIwAAAAABAA4AAAAAAAAjAAAAAAMAIwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAEACQAAAAAAAA4AAAAAAAAOAAAAAAAAIwAAAAADACMAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAJAAAAAAMACQAAAAABAAkAAAAAAwAJAAAAAAMADgAAAAAAACMAAAAAAwAjAAAAAAIAHAAAAAABABwAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACgAAAAAAAAoAAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAAAJAAAAAAAACQAAAAADAAkAAAAAAAAjAAAAAAEAIwAAAAACABwAAAAAAwAcAAAAAAMAGwAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAEACQAAAAABAAkAAAAAAgAJAAAAAAEAIwAAAAACACMAAAAAAAAcAAAAAAAAHAAAAAACAA4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAA/AAAAAAAAPwAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAAAAAkAAAAAAgAJAAAAAAAACQAAAAABACMAAAAAAwAjAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAAPwAAAAAAAD8AAAAAAAA/AAAAAAAACQAAAAADAAkAAAAAAAAJAAAAAAIACAAAAAAAAA4AAAAAAAAjAAAAAAIAIwAAAAACABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAIACQAAAAAAAA4AAAAAAAAOAAAAAAAAIwAAAAAAACMAAAAAAwAbAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAAAkAAAAAAwAJAAAAAAMACQAAAAAAAAkAAAAAAAAOAAAAAAAAIwAAAAADACMAAAAAAAAjAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAgAJAAAAAAMADgAAAAAAACMAAAAAAwAjAAAAAAEAIwAAAAAAACEAAAAAAwAhAAAAAAIADgAAAAAAAA4AAAAAAAAbAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAACQAAAAABAAkAAAAAAAAJAAAAAAIACQAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAhAAAAAAMAIQAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAAkAAAAAAwAJAAAAAAIACQAAAAADAAkAAAAAAgAJAAAAAAMACQAAAAABAAkAAAAAAQAJAAAAAAMAIQAAAAAAACEAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAQAJAAAAAAIACQAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAABAA== + tiles: CQAAAAABAAkAAAAAAgAJAAAAAAMACQAAAAAAAAkAAAAAAwAJAAAAAAIACQAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAABAAkAAAAAAwAJAAAAAAIADgAAAAAAAAkAAAAAAgAJAAAAAAMACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAMACQAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAIwAAAAACACMAAAAAAwAOAAAAAAAAGwAAAAAAAA4AAAAAAAABAAAAAAAAAQAAAAABAA4AAAAAAAAJAAAAAAMACQAAAAAAAAkAAAAAAgAOAAAAAAAAIwAAAAAAACMAAAAAAgAjAAAAAAIAJAAAAAAAACMAAAAAAAAjAAAAAAIAGwAAAAAAAA4AAAAAAAAbAAAAAAAAAQAAAAAAAAEAAAAAAAAJAAAAAAAACQAAAAABAAkAAAAAAgAJAAAAAAAADgAAAAAAACMAAAAAAgAjAAAAAAAAIwAAAAABAA4AAAAAAAAjAAAAAAMAIwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAEACQAAAAAAAA4AAAAAAAAOAAAAAAAAIwAAAAADACMAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAJAAAAAAMACQAAAAABAAkAAAAAAwAJAAAAAAMADgAAAAAAACMAAAAAAwAjAAAAAAIAHAAAAAABABwAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACgAAAAAAAAoAAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAAAJAAAAAAAACQAAAAADAAkAAAAAAAAjAAAAAAEAIwAAAAACABwAAAAAAwAcAAAAAAMAGwAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAEACQAAAAABAAkAAAAAAgAJAAAAAAEAIwAAAAACACMAAAAAAAAcAAAAAAAAHAAAAAACAA4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAA/AAAAAAAAPwAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAAAAAkAAAAAAgAJAAAAAAAACQAAAAABACMAAAAAAwAjAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAAPwAAAAAAAD8AAAAAAAA/AAAAAAAACQAAAAADAAkAAAAAAAAJAAAAAAIACAAAAAAAAA4AAAAAAAAjAAAAAAIAIwAAAAACABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAIACQAAAAAAAA4AAAAAAAAOAAAAAAAAIwAAAAAAACMAAAAAAwAbAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAAAkAAAAAAwAJAAAAAAMACQAAAAAAAAkAAAAAAAAOAAAAAAAAIwAAAAADACMAAAAAAAAjAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADgAAAAAAACMAAAAAAwAjAAAAAAEAIwAAAAAAACEAAAAAAwAhAAAAAAIADgAAAAAAAA4AAAAAAAAbAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAACQAAAAABAAkAAAAAAAAJAAAAAAIACQAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAhAAAAAAMAIQAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAAkAAAAAAwAJAAAAAAIACQAAAAADAAkAAAAAAgAJAAAAAAMACQAAAAABAAkAAAAAAQAJAAAAAAMAIQAAAAAAACEAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAQAJAAAAAAIACQAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAABAA== version: 7 0,-4: ind: 0,-4 @@ -234,7 +234,7 @@ entities: version: 7 0,0: ind: 0,0 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAABsAAAAAAAAsAAAAAAAACwAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAgAuAAAAAAAALAAAAAAAACwAAAAAAAALAAAAAAAADgAAAAAAAA4AAAAAAAALAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAABwAAAAAAAAcAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAQAJAAAAAAAACQAAAAADAAkAAAAAAwAJAAAAAAIACQAAAAABAAkAAAAAAQAJAAAAAAEACQAAAAABAAkAAAAAAAAJAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAIACQAAAAADAAkAAAAAAwAvAAAAAAIALwAAAAACAC8AAAAAAgAvAAAAAAAALwAAAAADAC8AAAAAAAAvAAAAAAIALwAAAAADAC8AAAAAAAAvAAAAAAEALwAAAAACAC8AAAAAAAAvAAAAAAEALwAAAAACAC8AAAAAAAAvAAAAAAEACQAAAAAAAAkAAAAAAgAJAAAAAAEACQAAAAAAAAkAAAAAAAAJAAAAAAIACQAAAAAAAAkAAAAAAwAJAAAAAAAACQAAAAABAAkAAAAAAgAJAAAAAAEACQAAAAABAAkAAAAAAwAJAAAAAAMACQAAAAADAA4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAwAJAAAAAAAACQAAAAADAAkAAAAAAwAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAACAAkAAAAAAAAJAAAAAAMADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAIACQAAAAAAAAkAAAAAAgAJAAAAAAIADgAAAAAAACwAAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAgAJAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAIADgAAAAAAAAkAAAAAAQAJAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAIACQAAAAABAA4AAAAAAAAcAAAAAAMAHAAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAABsAAAAAAAAsAAAAAAAACwAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAALgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACwAAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAgAuAAAAAAAALAAAAAAAACwAAAAAAAALAAAAAAAADgAAAAAAAA4AAAAAAAALAAAAAAAALAAAAAAAAC4AAAAAAAAuAAAAAAAALAAAAAAAAC4AAAAAAAAsAAAAAAAADgAAAAAAABwAAAAAAAAcAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAQAJAAAAAAAACQAAAAADAAkAAAAAAwAJAAAAAAIACQAAAAABAAkAAAAAAQAJAAAAAAEACQAAAAABAAkAAAAAAAAJAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAIACQAAAAADAAkAAAAAAwAvAAAAAAIALwAAAAACAC8AAAAAAgAvAAAAAAAALwAAAAADAC8AAAAAAAAvAAAAAAIALwAAAAADAC8AAAAAAAAvAAAAAAEALwAAAAACAC8AAAAAAAAvAAAAAAEALwAAAAACAC8AAAAAAAAvAAAAAAEACQAAAAAAAAkAAAAAAgAJAAAAAAEACQAAAAAAAAkAAAAAAAAJAAAAAAIACQAAAAAAAAkAAAAAAwAJAAAAAAAACQAAAAABAAkAAAAAAgAJAAAAAAEACQAAAAABAAkAAAAAAwAJAAAAAAMACQAAAAADAA4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAwAJAAAAAAAACQAAAAADAAkAAAAAAwAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAACAAkAAAAAAAAJAAAAAAMADgAAAAAAAA4AAAAAAAAsAAAAAAAADgAAAAAAAAkAAAAAAQAJAAAAAAIACQAAAAAAAAkAAAAAAgAJAAAAAAIADgAAAAAAACwAAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAgAJAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAIADgAAAAAAAAkAAAAAAQAJAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAIACQAAAAABAA4AAAAAAAAcAAAAAAMAHAAAAAAAAA== version: 7 0,1: ind: 0,1 @@ -246,11 +246,11 @@ entities: version: 7 1,-1: ind: 1,-1 - tiles: HgAAAAAAAA4AAAAAAABKAAAAAAAAHAAAAAAAABwAAAAAAwAcAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAAAAA4AAAAAAAAOAAAAAAAASgAAAAAAAEoAAAAAAQBKAAAAAAEASgAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAgAJAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAADgAAAAAAAAkAAAAAAgAJAAAAAAIACQAAAAACAA4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAgAJAAAAAAIACQAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAgAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAIACQAAAAAAAAkAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAMAHAAAAAAAAA4AAAAAAAAbAAAAAAAAHAAAAAACAAkAAAAAAAAJAAAAAAEADgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAAAAAkAAAAAAgAJAAAAAAMADgAAAAAAAA4AAAAAAAAcAAAAAAIAHAAAAAACABwAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAACAA4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAQAJAAAAAAIACQAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAACAAkAAAAAAAAOAAAAAAAAGwAAAAAAAAkAAAAAAgAJAAAAAAAACQAAAAACAAkAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAQAJAAAAAAIADgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAABAAkAAAAAAAAJAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAgAOAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAJAAAAAAAACQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAADAAAAAAEAAwAAAAAAABsAAAAAAAAOAAAAAAAAHgAAAAAAAA4AAAAAAAAeAAAAAAAADgAAAAAAAB4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAAAOAAAAAAAAHgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAAAwAAAAADABwAAAAAAgAcAAAAAAMAHAAAAAABAA4AAAAAAAAcAAAAAAEAHAAAAAAAABwAAAAAAQAcAAAAAAIAHAAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAADAA== + tiles: HgAAAAAAAA4AAAAAAABKAAAAAAAAHAAAAAAAABwAAAAAAwAcAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAAAHAAAAAAAAA4AAAAAAAAOAAAAAAAASgAAAAAAAEoAAAAAAQBKAAAAAAEASgAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAgAJAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAADgAAAAAAAAkAAAAAAgAJAAAAAAIACQAAAAACAA4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAgAJAAAAAAIACQAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAgAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAIACQAAAAAAAAkAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAMAHAAAAAAAAA4AAAAAAAAbAAAAAAAAHAAAAAACAAkAAAAAAAAJAAAAAAEADgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAAAAAkAAAAAAgAJAAAAAAMADgAAAAAAAA4AAAAAAAAcAAAAAAIAHAAAAAACABwAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAACQAAAAACAA4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAQAJAAAAAAIACQAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAACAAkAAAAAAAAOAAAAAAAAGwAAAAAAAAkAAAAAAgAJAAAAAAAACQAAAAACAAkAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAADAAkAAAAAAQAJAAAAAAIADgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAABAAkAAAAAAAAJAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAAAABwAAAAAAAAOAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAJAAAAAAAACQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAADAAAAAAEAAwAAAAAAABsAAAAAAAAOAAAAAAAAHgAAAAAAAA4AAAAAAAAeAAAAAAAADgAAAAAAAB4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAAAOAAAAAAAAHgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAAAwAAAAADABwAAAAAAgAcAAAAAAMAHAAAAAABAA4AAAAAAAAcAAAAAAEAHAAAAAAAABwAAAAAAQAcAAAAAAIAHAAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAADAA== version: 7 1,-2: ind: 1,-2 - tiles: CQAAAAADAAkAAAAAAAAOAAAAAAAAHAAAAAACABwAAAAAAAAcAAAAAAAACQAAAAACAAkAAAAAAQAJAAAAAAIACQAAAAACAA4AAAAAAAAJAAAAAAAACQAAAAACAAkAAAAAAQAJAAAAAAEADgAAAAAAAAkAAAAAAwAJAAAAAAAADgAAAAAAABwAAAAAAQAcAAAAAAEAHAAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAADAAkAAAAAAwAJAAAAAAIACQAAAAADAAkAAAAAAQAJAAAAAAEACQAAAAAAAA4AAAAAAAAJAAAAAAMADgAAAAAAAA4AAAAAAAAcAAAAAAAAHAAAAAABABwAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAIACQAAAAAAAAkAAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAgAOAAAAAAAAHAAAAAABABwAAAAAAQAcAAAAAAEADgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAABAAkAAAAAAQAJAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAMACQAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAwAJAAAAAAMACQAAAAACAA4AAAAAAAAcAAAAAAAADgAAAAAAABwAAAAAAwAJAAAAAAIADwAAAAAAAAkAAAAAAQAcAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAgAJAAAAAAIACQAAAAACAAkAAAAAAAAOAAAAAAAAHAAAAAABAA4AAAAAAAAcAAAAAAAACQAAAAACAA8AAAAAAgAJAAAAAAIACQAAAAADABwAAAAAAgAcAAAAAAMAHAAAAAABABwAAAAAAAAJAAAAAAIACQAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAADABwAAAAAAQAOAAAAAAAAHAAAAAABAAkAAAAAAAAJAAAAAAEACQAAAAAAABwAAAAAAQAOAAAAAAAAHAAAAAABABwAAAAAAQAcAAAAAAMACQAAAAABAAkAAAAAAAAJAAAAAAMACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAACAAkAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAADAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAAAJAAAAAAMACQAAAAACAAkAAAAAAgAJAAAAAAEACQAAAAAAAAkAAAAAAgAJAAAAAAEACQAAAAACAAkAAAAAAgAJAAAAAAMACQAAAAADAAkAAAAAAwAJAAAAAAEACQAAAAACAAkAAAAAAQAJAAAAAAIACQAAAAAAAAkAAAAAAgAJAAAAAAMACQAAAAAAAAkAAAAAAwAJAAAAAAIACQAAAAAAAAkAAAAAAQAJAAAAAAAACQAAAAAAAAkAAAAAAQAJAAAAAAIACQAAAAAAAAkAAAAAAQAOAAAAAAAACQAAAAABAAkAAAAAAQAJAAAAAAMACQAAAAAAAAkAAAAAAgAJAAAAAAMACQAAAAACAAkAAAAAAQAJAAAAAAMACQAAAAADAAkAAAAAAAAJAAAAAAMACQAAAAAAAAkAAAAAAgAJAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAABABwAAAAAAAAcAAAAAAIADgAAAAAAAAkAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAAAcAAAAAAMAHAAAAAACAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAACQAAAAACAAkAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAADABwAAAAAAAAcAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAbAAAAAAAAGwAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAACAA== + tiles: CQAAAAADAAkAAAAAAAAOAAAAAAAAHAAAAAACABwAAAAAAAAcAAAAAAAACQAAAAACAAkAAAAAAQAJAAAAAAIACQAAAAACAA4AAAAAAAAJAAAAAAAACQAAAAACAAkAAAAAAQAJAAAAAAEADgAAAAAAAAkAAAAAAwAJAAAAAAAADgAAAAAAABwAAAAAAQAcAAAAAAEAHAAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAADAAkAAAAAAwAJAAAAAAIACQAAAAADAAkAAAAAAQAJAAAAAAEACQAAAAAAAA4AAAAAAAAJAAAAAAMADgAAAAAAAA4AAAAAAAAcAAAAAAAAHAAAAAABABwAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAIACQAAAAAAAAkAAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAgAOAAAAAAAAHAAAAAABABwAAAAAAQAcAAAAAAEADgAAAAAAACwAAAAAAAAsAAAAAAAALgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAABAAkAAAAAAQAJAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAAAJAAAAAAMACQAAAAAAAA4AAAAAAAAOAAAAAAAALAAAAAAAAC4AAAAAAAAOAAAAAAAACQAAAAABAAkAAAAAAwAJAAAAAAMACQAAAAACAA4AAAAAAAAcAAAAAAAADgAAAAAAABwAAAAAAwAJAAAAAAIADwAAAAAAAAkAAAAAAQAcAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAgAJAAAAAAIACQAAAAACAAkAAAAAAAAOAAAAAAAAHAAAAAABAA4AAAAAAAAcAAAAAAAACQAAAAACAA8AAAAAAgAJAAAAAAIACQAAAAADABwAAAAAAgAcAAAAAAMAHAAAAAABABwAAAAAAAAJAAAAAAIACQAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAADABwAAAAAAQAOAAAAAAAAHAAAAAABAAkAAAAAAAAJAAAAAAEACQAAAAAAABwAAAAAAQAOAAAAAAAAHAAAAAABABwAAAAAAQAcAAAAAAMACQAAAAABAAkAAAAAAAAJAAAAAAMACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAACAAkAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAEACQAAAAADAA4AAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAAAJAAAAAAMACQAAAAACAAkAAAAAAgAJAAAAAAEACQAAAAAAAAkAAAAAAgAJAAAAAAEAHAAAAAAAAAkAAAAAAgAJAAAAAAMACQAAAAADAAkAAAAAAwAJAAAAAAEACQAAAAACAAkAAAAAAQAJAAAAAAIACQAAAAAAAAkAAAAAAgAJAAAAAAMACQAAAAAAAAkAAAAAAwAJAAAAAAIACQAAAAAAABwAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAQAJAAAAAAIACQAAAAAAAAkAAAAAAQAOAAAAAAAACQAAAAABAAkAAAAAAQAJAAAAAAMACQAAAAAAAAkAAAAAAgAJAAAAAAMACQAAAAACAAkAAAAAAQAcAAAAAAAACQAAAAADAAkAAAAAAAAJAAAAAAMACQAAAAAAAAkAAAAAAgAJAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAABABwAAAAAAAAcAAAAAAIADgAAAAAAAAkAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAIACQAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAAAcAAAAAAMAHAAAAAACAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAACQAAAAACAAkAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAABsAAAAAAAAbAAAAAAAADgAAAAAAAAkAAAAAAwAJAAAAAAMADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAADABwAAAAAAAAcAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAbAAAAAAAAGwAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAACAA== version: 7 1,-3: ind: 1,-3 @@ -266,7 +266,7 @@ entities: version: 7 1,0: ind: 1,0 - tiles: DgAAAAAAAA4AAAAAAAADAAAAAAIAAwAAAAACABwAAAAAAAAcAAAAAAAAHAAAAAAAAA4AAAAAAAAcAAAAAAEAHAAAAAAAABwAAAAAAQAcAAAAAAMAHAAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAACAA4AAAAAAAAOAAAAAAAAAwAAAAACAAMAAAAAAgAcAAAAAAIAHAAAAAADABwAAAAAAgAOAAAAAAAAHAAAAAAAABwAAAAAAwAcAAAAAAAAHAAAAAACAAkAAAAAAgAJAAAAAAIACQAAAAABAAkAAAAAAQAOAAAAAAAADgAAAAAAABwAAAAAAwAcAAAAAAAAHAAAAAACABwAAAAAAwAcAAAAAAEADgAAAAAAABwAAAAAAwAcAAAAAAMAHAAAAAABABwAAAAAAAAJAAAAAAIACQAAAAACAAkAAAAAAQAJAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAIAHAAAAAACABwAAAAAAAAcAAAAAAIAHAAAAAAAAA4AAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAwAcAAAAAAAAHAAAAAADAA4AAAAAAAAJAAAAAAEACQAAAAABABsAAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAADABwAAAAAAQAcAAAAAAAACQAAAAAAAAkAAAAAAgAJAAAAAAAACQAAAAADAAkAAAAAAgAJAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAIACQAAAAAAAAkAAAAAAwAJAAAAAAMADgAAAAAAAAkAAAAAAwAcAAAAAAAAHAAAAAADAAkAAAAAAgAJAAAAAAAACQAAAAACAAkAAAAAAgAJAAAAAAEACQAAAAADAAkAAAAAAQAJAAAAAAMACQAAAAADAAkAAAAAAQAJAAAAAAAACQAAAAACAAkAAAAAAgAJAAAAAAEACQAAAAAAAAkAAAAAAgAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAADAAkAAAAAAgAJAAAAAAAACQAAAAADAAkAAAAAAAAJAAAAAAAACQAAAAADAAkAAAAAAQAJAAAAAAMACQAAAAACAAkAAAAAAwAJAAAAAAIACQAAAAABAAkAAAAAAgAcAAAAAAIADgAAAAAAAAkAAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAQAJAAAAAAEACQAAAAABAAkAAAAAAwAJAAAAAAIACQAAAAACAAkAAAAAAwAJAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAwAbAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAOAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAAkAAAAAAgAvAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAAAABwAAAAAAwAcAAAAAAIAHAAAAAADABwAAAAAAQAcAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAOAAAAAAAACQAAAAACAA4AAAAAAAAOAAAAAAAAHAAAAAADABwAAAAAAgAcAAAAAAEADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAADgAAAAAAAAkAAAAAAQAcAAAAAAMAHAAAAAABABwAAAAAAwAcAAAAAAIAHAAAAAABABwAAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAIAHAAAAAADABwAAAAAAgAcAAAAAAIAHAAAAAAAABwAAAAAAgAcAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAOAAAAAAAACQAAAAACAA== + tiles: DgAAAAAAAA4AAAAAAAADAAAAAAIAAwAAAAACABwAAAAAAAAcAAAAAAAAHAAAAAAAAA4AAAAAAAAcAAAAAAEAHAAAAAAAABwAAAAAAQAcAAAAAAMAHAAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAACAA4AAAAAAAAOAAAAAAAAAwAAAAACAAMAAAAAAgAcAAAAAAIAHAAAAAADABwAAAAAAgAOAAAAAAAAHAAAAAAAABwAAAAAAwAcAAAAAAAAHAAAAAACAAkAAAAAAgAJAAAAAAIACQAAAAABAAkAAAAAAQAOAAAAAAAADgAAAAAAABwAAAAAAwAcAAAAAAAAHAAAAAACABwAAAAAAwAcAAAAAAEADgAAAAAAABwAAAAAAwAcAAAAAAMAHAAAAAABABwAAAAAAAAJAAAAAAIACQAAAAACAAkAAAAAAQAJAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAIAHAAAAAACABwAAAAAAAAcAAAAAAIAHAAAAAAAAA4AAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAwAcAAAAAAAAHAAAAAADAA4AAAAAAAAJAAAAAAEACQAAAAABABsAAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAADABwAAAAAAQAcAAAAAAAACQAAAAAAAAkAAAAAAgAJAAAAAAAACQAAAAADAAkAAAAAAgAJAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAIACQAAAAAAAAkAAAAAAwAJAAAAAAMADgAAAAAAAAkAAAAAAwAcAAAAAAAAHAAAAAADAAkAAAAAAgAJAAAAAAAACQAAAAACAAkAAAAAAgAJAAAAAAEACQAAAAADAAkAAAAAAQAJAAAAAAMACQAAAAADAAkAAAAAAQAJAAAAAAAACQAAAAACABwAAAAAAAAJAAAAAAEACQAAAAAAAAkAAAAAAgAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAADAAkAAAAAAgAJAAAAAAAACQAAAAADAAkAAAAAAAAJAAAAAAAACQAAAAADAAkAAAAAAQAcAAAAAAAACQAAAAACAAkAAAAAAwAJAAAAAAIACQAAAAABAAkAAAAAAgAcAAAAAAIADgAAAAAAAAkAAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAACQAAAAACAAkAAAAAAQAJAAAAAAEAHAAAAAAAAAkAAAAAAwAJAAAAAAIACQAAAAACAAkAAAAAAwAJAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAAAAAkAAAAAAwAbAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAOAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAAkAAAAAAgAvAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAA4AAAAAAAAJAAAAAAMACQAAAAAAABwAAAAAAwAcAAAAAAIAHAAAAAADABwAAAAAAQAcAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAOAAAAAAAACQAAAAACAA4AAAAAAAAOAAAAAAAAHAAAAAADABwAAAAAAgAcAAAAAAEADgAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAADgAAAAAAAAkAAAAAAQAcAAAAAAMAHAAAAAABABwAAAAAAwAcAAAAAAIAHAAAAAABABwAAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAIAHAAAAAADABwAAAAAAgAcAAAAAAIAHAAAAAAAABwAAAAAAgAcAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAOAAAAAAAACQAAAAACAA== version: 7 1,1: ind: 1,1 @@ -278,7 +278,7 @@ entities: version: 7 2,-1: ind: 2,-1 - tiles: CQAAAAABAA4AAAAAAABAAAAAAAEAQAAAAAABAA8AAAAAAgBAAAAAAAAAQAAAAAABAEAAAAAAAgBAAAAAAAIADgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAAkAAAAAAgAOAAAAAAAACQAAAAABAAkAAAAAAQAOAAAAAAAAQAAAAAACAEAAAAAAAAAPAAAAAAMAQAAAAAADAEAAAAAAAAAOAAAAAAAAQAAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAIADgAAAAAAAEAAAAAAAABAAAAAAAMADwAAAAACAEAAAAAAAwBAAAAAAAMAQAAAAAACAEAAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAMAAAAAAAACQAAAAACAA4AAAAAAABAAAAAAAEAQAAAAAACAEAAAAAAAABAAAAAAAIAQAAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAwAcAAAAAAIADgAAAAAAAA4AAAAAAAAbAAAAAAAADAAAAAAAAAkAAAAAAAAOAAAAAAAAIwAAAAADACMAAAAAAgAjAAAAAAMAIwAAAAABACMAAAAAAQAOAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAAwAAAAAAAAJAAAAAAMADgAAAAAAACMAAAAAAgAjAAAAAAEAIwAAAAACACMAAAAAAwAjAAAAAAMADgAAAAAAABwAAAAAAgAcAAAAAAIAHAAAAAADABwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAA4AAAAAAAAjAAAAAAEAIwAAAAACACMAAAAAAAAjAAAAAAMAIwAAAAAAAA4AAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAwAcAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAADAAkAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAQAJAAAAAAAACQAAAAADAA4AAAAAAAAcAAAAAAMAHAAAAAADABwAAAAAAwAcAAAAAAIAHAAAAAADABwAAAAAAwAcAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAMACQAAAAADAAkAAAAAAQAOAAAAAAAAHAAAAAAAABwAAAAAAgAcAAAAAAAAHAAAAAADABwAAAAAAwAcAAAAAAMAHAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAkAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAJAAAAAAMACAAAAAAAAA4AAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAACQAAAAAAAAgAAAAAAAAOAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAOAAAAAAAAGwAAAAAAAAkAAAAAAwAIAAAAAAAADgAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAACAAAAAAAAA4AAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAACQAAAAABAAgAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAA== + tiles: HAAAAAAAAA4AAAAAAABAAAAAAAEAQAAAAAABAA8AAAAAAgBAAAAAAAAAQAAAAAABAEAAAAAAAgBAAAAAAAIADgAAAAAAAC4AAAAAAAAuAAAAAAAADgAAAAAAAAkAAAAAAgAOAAAAAAAACQAAAAABAAkAAAAAAQAOAAAAAAAAQAAAAAACAEAAAAAAAAAPAAAAAAMAQAAAAAADAEAAAAAAAAAOAAAAAAAAQAAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAAA4AAAAAAAAbAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAIADgAAAAAAAEAAAAAAAABAAAAAAAMADwAAAAACAEAAAAAAAwBAAAAAAAMAQAAAAAACAEAAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAMAAAAAAAACQAAAAACAA4AAAAAAABAAAAAAAEAQAAAAAACAEAAAAAAAABAAAAAAAIAQAAAAAABAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAwAcAAAAAAIADgAAAAAAAA4AAAAAAAAbAAAAAAAADAAAAAAAAAkAAAAAAAAOAAAAAAAAIwAAAAADACMAAAAAAgAjAAAAAAMAIwAAAAABACMAAAAAAQAOAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAAwAAAAAAAAJAAAAAAMADgAAAAAAACMAAAAAAgAjAAAAAAEAIwAAAAACACMAAAAAAwAjAAAAAAMADgAAAAAAABwAAAAAAgAcAAAAAAIAHAAAAAADABwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAACQAAAAACAA4AAAAAAAAjAAAAAAEAIwAAAAACACMAAAAAAAAjAAAAAAMAIwAAAAAAAA4AAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAwAcAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAADAAkAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAAHAAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAQAJAAAAAAAACQAAAAADAA4AAAAAAAAcAAAAAAMAHAAAAAADABwAAAAAAwAcAAAAAAIAHAAAAAADABwAAAAAAwAcAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAcAAAAAAMACQAAAAADAAkAAAAAAQAOAAAAAAAAHAAAAAAAABwAAAAAAgAcAAAAAAAAHAAAAAADABwAAAAAAwAcAAAAAAMAHAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABwAAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGwAAAAAAAA4AAAAAAAAJAAAAAAMACAAAAAAAAA4AAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAbAAAAAAAACQAAAAAAAAgAAAAAAAAOAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAOAAAAAAAADgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAOAAAAAAAAGwAAAAAAAAkAAAAAAwAIAAAAAAAADgAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAADgAAAAAAAA4AAAAAAAAJAAAAAAAACAAAAAAAAA4AAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAuAAAAAAAACQAAAAABAAgAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABsAAAAAAAAOAAAAAAAALAAAAAAAACwAAAAAAAAuAAAAAAAALgAAAAAAAA== version: 7 2,-2: ind: 2,-2 @@ -9560,7 +9560,7 @@ entities: id: Flowersy1 decals: 15776: 50.140865,-24.035677 - 15928: 13.019715,-10.544371 + 23734: 12.061334,-10.917027 - node: zIndex: 1 color: '#FFFFFFFF' @@ -9576,7 +9576,7 @@ entities: 312: -4.9800406,-39.202244 15782: 49.40649,-24.098177 15799: 47.97223,-24.092237 - 15925: 13.129791,-9.737151 + 23735: 13.009721,-10.833636 - node: zIndex: 2 color: '#FFFFFFFF' @@ -9603,7 +9603,6 @@ entities: 15780: 47.890865,-20.051302 15798: 48.62848,-24.076612 15923: 12.872949,-12.109887 - 15926: 12.285879,-9.981764 15929: 13.11756,-11.35159 - node: zIndex: 1 @@ -9632,8 +9631,6 @@ entities: 15823: -20.387651,29.416546 15824: -19.965776,30.729046 15922: 12.004576,-11.999812 - 15924: 12.970793,-8.954393 - 15927: 11.821117,-10.006225 22090: -27.503916,-14.886336 - node: zIndex: 1 @@ -13752,7 +13749,7 @@ entities: 0: 53727 -5,-3: 0: 52428 - 1: 256 + 2: 256 -4,-2: 0: 53725 -5,-2: @@ -13763,7 +13760,7 @@ entities: 0: 65535 -4,0: 0: 13241 - 2: 2048 + 3: 2048 -3,-4: 0: 65501 -3,-3: @@ -13774,8 +13771,8 @@ entities: 0: 52735 -3,0: 0: 15 - 2: 13056 - 1: 3072 + 3: 13056 + 2: 3072 -3,-5: 0: 36863 -2,-4: @@ -13788,7 +13785,7 @@ entities: 0: 65535 -2,0: 0: 15 - 1: 3840 + 2: 3840 -2,-5: 0: 36349 -1,-4: @@ -13801,7 +13798,7 @@ entities: 0: 65535 -1,0: 0: 15 - 1: 3840 + 2: 3840 0,-4: 0: 30707 0,-3: @@ -13836,23 +13833,23 @@ entities: 0: 56793 -2,-8: 0: 61495 - 3: 136 + 1: 136 -2,-7: 0: 8176 -2,-6: 0: 64988 -2,-9: 0: 13299 - 3: 32768 + 1: 32768 -1,-8: - 3: 51 + 1: 51 0: 63500 -1,-6: 0: 65535 -1,-5: 0: 4095 -1,-9: - 3: 12288 + 1: 12288 0: 35059 -1,-7: 0: 3822 @@ -13913,11 +13910,11 @@ entities: 0,-9: 0: 48056 -4,-16: - 1: 17663 + 2: 17663 -5,-16: - 1: 255 + 2: 255 -4,-15: - 1: 100 + 2: 100 0: 45056 -5,-15: 0: 65024 @@ -13928,9 +13925,9 @@ entities: -5,-13: 0: 53759 -4,-17: - 1: 17663 + 2: 17663 -3,-16: - 1: 17 + 2: 17 0: 52428 -3,-15: 0: 47308 @@ -13938,63 +13935,63 @@ entities: 0: 35775 -3,-17: 0: 52360 - 1: 19 + 2: 19 -2,-16: 0: 13175 - 1: 32768 + 2: 32768 -2,-15: 0: 64435 -2,-14: 0: 65339 -2,-17: 0: 13119 - 1: 2048 + 2: 2048 -1,-15: 0: 65328 - 1: 8 + 2: 8 -1,-14: 0: 65295 -1,-16: - 1: 59392 + 2: 59392 0,-15: - 1: 15 + 2: 15 0: 65280 0,-14: 0: 65295 0,-13: 0: 65535 -4,-18: - 1: 59592 + 2: 59592 -5,-18: - 1: 40960 + 2: 40960 -5,-17: - 1: 255 + 2: 255 -4,-20: - 1: 51400 + 2: 51400 -4,-21: - 1: 51404 + 2: 51404 -4,-19: - 1: 51400 + 2: 51400 -3,-18: - 1: 12288 + 2: 12288 0: 34952 -3,-21: - 1: 18575 + 2: 18575 -3,-20: 0: 2176 -3,-19: 0: 34952 -2,-20: 0: 4913 - 1: 34816 + 2: 34816 -2,-19: 0: 15347 -2,-18: 0: 45875 - 1: 136 + 2: 136 -2,-21: 0: 4096 - 1: 17203 + 2: 17203 -1,-19: 0: 16 -1,-17: @@ -14003,7 +14000,7 @@ entities: 0: 52972 -4,1: 0: 62259 - 2: 128 + 3: 128 -5,1: 0: 65535 -4,2: @@ -14017,14 +14014,14 @@ entities: -4,4: 0: 21759 -3,1: - 2: 513 - 1: 8208 + 3: 513 + 2: 8208 -3,2: 0: 65280 - 1: 8 + 2: 8 -3,3: 0: 13119 - 1: 32768 + 2: 32768 -3,4: 0: 47283 -2,1: @@ -14032,37 +14029,37 @@ entities: 5: 1092 -2,2: 0: 65280 - 1: 10 + 2: 10 -2,3: 0: 13 - 1: 61696 + 2: 61696 -1,1: - 2: 1365 + 3: 1365 -1,2: 0: 65280 - 1: 10 + 2: 10 -1,3: 0: 15 - 1: 5120 + 2: 5120 -2,4: - 1: 8 + 2: 8 0: 16176 -1,4: 0: 61420 0,0: 0: 15 - 1: 3328 - 2: 512 + 2: 3328 + 3: 512 0,1: 6: 273 - 2: 3276 + 3: 3276 0,2: 0: 65280 - 1: 6 - 2: 8 + 2: 6 + 3: 8 0,3: 0: 19663 - 1: 256 + 2: 256 -5,4: 0: 62395 -4,5: @@ -14070,29 +14067,29 @@ entities: -5,5: 0: 8079 -4,6: - 1: 50272 + 2: 50272 -3,5: 0: 8099 -3,6: 0: 119 - 1: 53248 + 2: 53248 -3,7: - 1: 4401 + 2: 4401 -3,8: - 1: 4401 + 2: 4401 -2,5: 0: 13104 - 1: 2184 + 2: 2184 -2,6: 0: 63 - 1: 6144 + 2: 6144 -1,6: 0: 3311 - 1: 4096 + 2: 4096 -1,5: 0: 61038 -1,7: - 1: 2 + 2: 2 0,4: 0: 65535 0,5: @@ -14106,7 +14103,7 @@ entities: -9,-3: 0: 55736 -8,-3: - 1: 1064 + 2: 1064 0: 4096 -8,-2: 0: 56828 @@ -14122,7 +14119,7 @@ entities: 0: 61439 -7,-3: 0: 61440 - 1: 64 + 2: 64 -7,-2: 0: 53247 -7,-1: @@ -14225,30 +14222,30 @@ entities: 0: 65262 -8,-17: 0: 24576 - 1: 206 + 2: 206 -7,-16: 0: 4368 - 1: 204 + 2: 204 -7,-15: - 1: 96 + 2: 96 0: 57344 -7,-14: 0: 58478 -6,-16: - 1: 17663 + 2: 17663 -6,-14: 0: 48042 -6,-15: 0: 40960 - 1: 196 + 2: 196 -6,-17: - 1: 17663 + 2: 17663 -8,-20: 0: 1 - 1: 512 + 2: 512 -8,-21: 0: 4096 - 1: 32 + 2: 32 -9,-20: 0: 61423 -9,-19: @@ -14256,15 +14253,15 @@ entities: -9,-18: 0: 61423 -8,-18: - 1: 40960 + 2: 40960 -9,-17: 0: 65519 -7,-17: - 1: 511 + 2: 511 -7,-18: - 1: 40960 + 2: 40960 -6,-18: - 1: 40960 + 2: 40960 -9,0: 0: 53724 -9,1: @@ -14293,10 +14290,10 @@ entities: 0: 30480 -6,3: 0: 4368 - 1: 17472 + 2: 17472 -6,4: 0: 63233 - 1: 4 + 2: 4 -8,4: 0: 18016 -8,5: @@ -14311,80 +14308,80 @@ entities: 0: 65497 -8,7: 0: 1 - 2: 768 - 1: 4224 + 3: 768 + 2: 4224 -9,7: 0: 12 - 1: 55296 - 2: 9728 + 2: 55296 + 3: 9728 -8,8: - 1: 18163 + 2: 18163 -7,5: 0: 26159 -7,6: - 1: 4368 + 2: 4368 -7,7: - 1: 4369 + 2: 4369 -7,8: - 1: 55569 + 2: 55569 -6,5: 0: 3903 -6,6: - 1: 16454 + 2: 16454 -6,7: - 1: 2 + 2: 2 0: 35968 -6,8: - 1: 4978 + 2: 4978 -5,6: 0: 4369 - 1: 16452 + 2: 16452 -5,7: 0: 14128 - 1: 8 + 2: 8 -5,8: 0: 1 - 1: 2248 + 2: 2248 -9,8: - 1: 15 + 2: 15 -8,9: - 1: 8 + 2: 8 -7,9: - 1: 19038 + 2: 19038 -7,10: - 1: 136 + 2: 136 -6,9: - 1: 61440 + 2: 61440 -6,10: - 1: 116 + 2: 116 -5,9: - 1: 61440 + 2: 61440 -5,10: - 1: 196 + 2: 196 -4,8: - 1: 29456 + 2: 29456 -4,9: - 1: 23118 + 2: 23118 -4,10: - 1: 50 + 2: 50 -12,-4: - 2: 1 - 1: 14 + 3: 1 + 2: 14 0: 3840 -12,-5: - 2: 4401 - 1: 58048 + 3: 4401 + 2: 58048 -13,-4: 0: 32627 -12,-3: - 2: 1 + 3: 1 0: 49152 - 1: 8 + 2: 8 -12,-2: - 1: 1 + 2: 1 0: 60620 -13,-2: - 1: 2048 + 2: 2048 0: 13105 -12,-1: 0: 61166 @@ -14395,7 +14392,7 @@ entities: -11,-1: 0: 16319 -11,-5: - 1: 4976 + 2: 4976 0: 32768 -11,-3: 0: 43682 @@ -14421,14 +14418,14 @@ entities: 0: 56349 -13,-7: 0: 51404 - 1: 17 + 2: 17 -12,-6: 0: 52701 -13,-6: 0: 3838 -13,-5: - 2: 34952 - 1: 1600 + 3: 34952 + 2: 1600 -11,-8: 0: 65535 -11,-7: @@ -14453,7 +14450,7 @@ entities: 0: 61058 -12,-11: 0: 4367 - 1: 1024 + 2: 1024 -13,-11: 0: 34958 -12,-10: @@ -14462,7 +14459,7 @@ entities: 0: 49080 -13,-9: 0: 52424 - 1: 272 + 2: 272 -11,-10: 0: 65399 -11,-13: @@ -14471,7 +14468,7 @@ entities: 0: 61152 -11,-11: 0: 14 - 1: 1024 + 2: 1024 -10,-12: 0: 32738 -10,-11: @@ -14481,7 +14478,7 @@ entities: -10,-13: 0: 65294 -12,-15: - 1: 3 + 2: 3 0: 30464 -12,-14: 0: 30576 @@ -14491,40 +14488,40 @@ entities: 0: 60629 -11,-15: 0: 7936 - 1: 10 + 2: 10 -11,-14: 0: 56799 -10,-15: 0: 3968 - 1: 2 + 2: 2 -10,-14: 0: 61166 -10,-16: - 1: 16384 + 2: 16384 -10,-20: - 1: 4 + 2: 4 0: 3072 -10,-21: - 1: 17536 + 2: 17536 -10,-19: 0: 12 - 1: 1024 + 2: 1024 -10,-18: - 1: 4 + 2: 4 0: 3072 -10,-17: 0: 12 - 1: 1024 + 2: 1024 -9,-21: 0: 64170 -13,0: - 1: 8 + 2: 8 0: 28979 -12,0: - 1: 4352 + 2: 4352 0: 52416 -12,1: - 1: 1536 + 2: 1536 -12,2: 0: 30215 -13,1: @@ -14562,21 +14559,21 @@ entities: -13,5: 0: 63937 -12,6: - 1: 32910 + 2: 32910 -12,7: - 1: 34358 - 2: 2248 + 2: 34358 + 3: 2248 -13,7: - 1: 1204 - 2: 57408 + 2: 1204 + 3: 57408 -11,5: 0: 45051 -11,6: - 1: 12800 + 2: 12800 0: 34946 -11,7: 0: 240 - 1: 28672 + 2: 28672 -10,5: 0: 62459 -10,6: @@ -14584,54 +14581,54 @@ entities: -10,7: 0: 10098 -11,8: - 1: 32456 + 2: 32456 -10,8: - 1: 248 + 2: 248 -12,9: - 1: 4040 + 2: 4040 -13,9: - 1: 61428 + 2: 61428 -11,9: - 1: 19 + 2: 19 -16,2: - 2: 337 - 1: 17572 + 3: 337 + 2: 17572 -17,2: - 2: 3855 - 1: 240 + 3: 3855 + 2: 240 -16,3: - 2: 337 - 1: 17444 + 3: 337 + 2: 17444 -17,3: - 2: 3855 - 1: 240 + 3: 3855 + 2: 240 -16,1: - 1: 16384 + 2: 16384 -16,4: - 1: 17572 - 2: 337 + 2: 17572 + 3: 337 -15,2: - 1: 52 + 2: 52 0: 34816 -15,0: - 1: 17476 + 2: 17476 -15,3: 0: 136 - 1: 16384 + 2: 16384 -15,4: - 1: 52468 + 2: 52468 -15,-1: - 1: 34952 + 2: 34952 -14,0: 0: 51705 -15,1: - 1: 2176 + 2: 2176 -14,2: 0: 57167 -14,3: 0: 62717 -14,-1: - 2: 13107 + 3: 13107 0: 34952 -14,1: 0: 58094 @@ -14640,24 +14637,24 @@ entities: -13,-1: 0: 13107 -16,-8: - 1: 10098 + 2: 10098 -16,-7: - 1: 58147 + 2: 58147 -16,-6: - 1: 11235 + 2: 11235 -16,-5: - 1: 13091 - 2: 32768 + 2: 13091 + 3: 32768 -16,-4: - 1: 8995 + 2: 8995 -16,-9: - 1: 12848 + 2: 12848 -15,-8: 0: 32631 -15,-7: - 1: 6144 + 2: 6144 -15,-6: - 1: 6004 + 2: 6004 -15,-4: 0: 65534 -15,-5: @@ -14673,152 +14670,152 @@ entities: -14,-4: 0: 65535 -16,-12: - 1: 16369 + 2: 16369 -16,-13: - 1: 4369 - 2: 8738 + 2: 4369 + 3: 8738 -17,-12: - 1: 49137 + 2: 49137 -16,-11: - 1: 12850 + 2: 12850 -16,-10: - 1: 5272 - 2: 49668 + 2: 5272 + 3: 49668 -15,-12: - 1: 4083 + 2: 4083 -15,-10: - 1: 39248 - 2: 160 + 2: 39248 + 3: 160 -15,-13: - 1: 4352 - 2: 8208 + 2: 4352 + 3: 8208 0: 8 -14,-12: - 1: 3888 + 2: 3888 0: 8 -14,-10: - 2: 816 - 1: 1 + 3: 816 + 2: 1 0: 34944 -15,-9: - 1: 8 + 2: 8 -14,-9: - 1: 273 - 2: 2 + 2: 273 + 3: 2 -14,-13: 0: 52428 -16,-16: - 1: 319 + 2: 319 -16,-17: - 1: 12288 + 2: 12288 -17,-16: - 1: 20991 - 2: 8192 + 2: 20991 + 3: 8192 -16,-15: 0: 287 - 2: 4096 - 1: 8192 + 3: 4096 + 2: 8192 -16,-14: - 2: 12337 - 1: 450 + 3: 12337 + 2: 450 -17,-15: - 1: 33045 - 2: 12834 + 2: 33045 + 3: 12834 -17,-14: - 1: 361 - 2: 45200 + 2: 361 + 3: 45200 -17,-13: - 2: 43690 - 1: 4369 + 3: 43690 + 2: 4369 -15,-16: - 1: 15 + 2: 15 0: 57344 -15,-15: 0: 239 - 1: 4096 + 2: 4096 -15,-14: - 1: 1 + 2: 1 0: 61120 -14,-16: - 1: 63 + 2: 63 0: 53248 -14,-15: 0: 3295 - 1: 4096 + 2: 4096 -14,-14: 0: 57308 -13,-16: - 1: 33843 + 2: 33843 0: 4096 -13,-15: 0: 22387 -21,-16: - 1: 52460 + 2: 52460 -21,-17: - 1: 57344 + 2: 57344 -21,-15: - 1: 52428 + 2: 52428 -21,-14: - 1: 52428 + 2: 52428 -21,-13: - 1: 50252 + 2: 50252 -21,-12: - 1: 61164 + 2: 61164 -20,-16: - 1: 159 - 2: 32768 + 2: 159 + 3: 32768 -20,-14: - 1: 722 - 2: 32800 + 2: 722 + 3: 32800 -20,-17: - 1: 32768 + 2: 32768 -19,-16: - 1: 4607 - 2: 40960 + 2: 4607 + 3: 40960 -20,-15: - 2: 34952 + 3: 34952 -19,-15: - 1: 273 - 2: 47786 + 2: 273 + 3: 47786 -19,-14: - 2: 45072 - 1: 481 + 3: 45072 + 2: 481 -20,-13: - 2: 34952 + 3: 34952 -19,-13: - 1: 4369 - 2: 43690 + 2: 4369 + 3: 43690 -19,-17: - 1: 45056 + 2: 45056 -19,-12: - 1: 49137 + 2: 49137 -18,-16: - 1: 4607 - 2: 40960 + 2: 4607 + 3: 40960 -18,-15: - 1: 273 - 2: 47786 + 2: 273 + 3: 47786 -18,-14: - 2: 45072 - 1: 481 + 3: 45072 + 2: 481 -18,-13: - 1: 4369 - 2: 43690 + 2: 4369 + 3: 43690 -18,-17: - 1: 45056 + 2: 45056 -18,-12: - 1: 49073 + 2: 49073 -17,-17: - 1: 45056 + 2: 45056 1,-4: 0: 1136 - 1: 61440 + 2: 61440 1,-3: - 2: 52417 - 1: 4368 + 3: 52417 + 2: 4368 1,-2: - 2: 1 - 1: 240 + 3: 1 + 2: 240 0: 61440 1,-1: 0: 65535 @@ -14826,28 +14823,28 @@ entities: 0: 65535 1,0: 0: 15 - 1: 20224 + 2: 20224 2,-4: 0: 119 - 1: 28672 + 2: 28672 2,-3: - 2: 4372 - 1: 17472 + 3: 37140 + 2: 17472 2,-2: - 1: 112 + 2: 112 0: 61568 - 2: 4 + 3: 4 2,-1: 0: 32631 2,-5: 0: 65535 2,0: 0: 2063 - 1: 1792 + 2: 1792 3,-4: 0: 4090 3,-3: - 0: 43963 + 0: 59579 3,-2: 0: 21968 3,-1: @@ -14929,9 +14926,9 @@ entities: 4,-9: 0: 16151 0,-16: - 1: 43520 + 2: 43520 1,-16: - 1: 45056 + 2: 45056 1,-15: 0: 65248 1,-14: @@ -14960,63 +14957,63 @@ entities: 0: 2240 1,-17: 0: 12 - 1: 2048 + 2: 2048 1,-18: 0: 32768 - 1: 136 + 2: 136 1,-20: - 1: 34816 + 2: 34816 2,-19: 0: 61182 2,-21: - 1: 7918 + 2: 7918 0: 16384 2,-20: 0: 20196 2,-18: 0: 61166 3,-21: - 1: 39167 + 2: 39167 3,-18: - 1: 58600 + 2: 58600 3,-20: - 1: 34952 + 2: 34952 4,-20: - 1: 4112 + 2: 4112 3,-19: - 1: 34952 + 2: 34952 4,-19: - 1: 4112 + 2: 4112 4,-18: - 1: 62960 - 2: 2560 + 2: 62960 + 3: 2560 1,1: - 2: 16657 - 1: 1028 + 3: 16657 + 2: 1028 1,2: 0: 65280 - 2: 4 - 1: 8 + 3: 4 + 2: 8 1,3: 0: 14207 1,4: 0: 65535 2,1: - 2: 1911 + 3: 1911 2,2: 0: 65280 - 1: 4 + 2: 4 2,3: 0: 49359 - 1: 256 + 2: 256 2,4: 0: 65535 3,1: - 1: 4113 + 2: 4113 0: 52416 3,2: 0: 65484 - 1: 1 + 2: 1 3,3: 0: 55487 3,4: @@ -15049,25 +15046,25 @@ entities: 0: 30719 3,7: 0: 7 - 1: 17408 - 2: 32768 + 2: 17408 + 3: 32768 3,8: - 1: 36452 - 2: 136 + 2: 36452 + 3: 136 4,4: 0: 47553 4,5: 0: 16369 4,6: 0: 13107 - 1: 8 + 2: 8 4,7: 0: 823 - 2: 12288 - 1: 16392 + 3: 12288 + 2: 16392 4,8: - 2: 307 - 1: 16068 + 3: 307 + 2: 16068 5,-4: 0: 44987 5,-3: @@ -15114,7 +15111,7 @@ entities: 0: 15291 5,-8: 0: 13311 - 1: 32768 + 2: 32768 5,-7: 0: 32627 5,-6: @@ -15123,9 +15120,9 @@ entities: 0: 7943 6,-8: 0: 35067 - 1: 4096 + 2: 4096 6,-7: - 1: 1 + 2: 1 0: 65416 6,-6: 0: 65520 @@ -15173,7 +15170,7 @@ entities: 0: 12275 7,-13: 0: 4113 - 1: 50176 + 2: 50176 8,-12: 0: 65520 8,-11: @@ -15191,50 +15188,50 @@ entities: 6,-14: 0: 15295 6,-16: - 1: 32768 - 7,-16: - 1: 14476 2: 32768 + 7,-16: + 2: 14476 + 3: 32768 7,-15: 0: 64432 7,-14: 0: 53247 7,-17: - 1: 19596 + 2: 19596 8,-16: - 2: 4096 + 3: 4096 8,-14: 0: 3838 8,-13: - 1: 36906 + 2: 36906 4,-21: - 1: 4112 + 2: 4112 5,-18: - 1: 62974 - 2: 2048 + 2: 62974 + 3: 2048 5,-19: - 1: 51200 + 2: 51200 6,-19: - 1: 4990 + 2: 4990 6,-18: - 1: 62960 - 2: 512 + 2: 62960 + 3: 512 6,-20: - 1: 51200 + 2: 51200 7,-20: - 1: 65530 - 2: 4 + 2: 65530 + 3: 4 7,-19: - 1: 17487 + 2: 17487 7,-18: - 1: 30068 - 2: 512 + 2: 30068 + 3: 512 7,-21: - 1: 64256 + 2: 64256 8,-20: - 1: 29456 + 2: 29456 8,-19: - 1: 2255 + 2: 2255 5,1: 0: 65522 5,2: @@ -15270,15 +15267,15 @@ entities: 5,5: 0: 61424 5,7: - 2: 39 - 1: 16 + 3: 39 + 2: 16 5,6: - 1: 4096 - 2: 8192 + 2: 4096 + 3: 8192 6,5: 0: 36848 6,6: - 1: 2 + 2: 2 0: 34952 6,7: 0: 140 @@ -15286,17 +15283,17 @@ entities: 0: 40952 7,6: 0: 221 - 1: 24576 + 2: 24576 7,7: 0: 1 - 1: 2 + 2: 2 8,4: 0: 65523 8,5: 0: 4369 8,6: 0: 3327 - 1: 4096 + 2: 4096 9,-4: 0: 30583 9,-3: @@ -15311,7 +15308,7 @@ entities: 0: 65339 10,-4: 0: 49425 - 1: 192 + 2: 192 10,-3: 0: 8191 10,-2: @@ -15324,7 +15321,7 @@ entities: 0: 48682 11,-1: 0: 59 - 1: 12288 + 2: 12288 11,-4: 0: 59946 11,-3: @@ -15335,10 +15332,10 @@ entities: 0: 65327 12,-3: 0: 4367 - 1: 1024 + 2: 1024 12,-2: 0: 4353 - 1: 52420 + 2: 52420 9,-8: 0: 60943 9,-7: @@ -15355,9 +15352,9 @@ entities: 0: 47291 10,-7: 0: 14 - 1: 25600 + 2: 25600 10,-5: - 1: 33376 + 2: 33376 11,-8: 0: 25328 11,-7: @@ -15368,7 +15365,7 @@ entities: 0: 58976 12,-8: 0: 4415 - 1: 51200 + 2: 51200 12,-7: 0: 65489 12,-6: @@ -15382,25 +15379,25 @@ entities: 9,-10: 0: 61408 9,-13: - 1: 4096 + 2: 4096 10,-12: 0: 4368 10,-10: 0: 48952 10,-13: - 1: 4368 + 2: 4368 0: 140 10,-11: - 1: 8736 + 2: 8736 11,-11: 0: 21776 11,-10: 0: 28455 11,-12: - 1: 5456 + 2: 5456 12,-12: 0: 13107 - 1: 34816 + 2: 34816 12,-11: 0: 8115 12,-10: @@ -15408,27 +15405,27 @@ entities: 12,-9: 0: 16155 8,-15: - 1: 1634 + 2: 1634 9,-14: 0: 61439 9,-15: - 1: 17 + 2: 17 0: 60620 9,-16: 0: 52364 9,-17: 0: 51336 - 1: 32 + 2: 32 10,-16: 0: 56704 - 1: 2 + 2: 2 10,-15: 0: 57309 10,-14: 0: 57297 10,-17: - 2: 34816 - 1: 576 + 3: 34816 + 2: 576 11,-16: 0: 65520 11,-15: @@ -15438,8 +15435,8 @@ entities: 11,-13: 0: 127 11,-17: - 2: 62208 - 1: 3104 + 3: 62208 + 2: 3104 12,-16: 0: 56712 12,-15: @@ -15449,36 +15446,36 @@ entities: 12,-13: 0: 47935 9,-19: - 1: 62736 - 2: 2082 + 2: 62736 + 3: 2082 9,-20: - 2: 3136 + 3: 3136 9,-18: - 1: 2126 + 2: 2126 10,-20: - 1: 1792 + 2: 1792 10,-18: - 1: 25862 + 2: 25862 11,-20: - 2: 13056 - 1: 50304 + 3: 13056 + 2: 50304 11,-19: - 2: 30583 - 1: 8 + 3: 30583 + 2: 8 11,-18: - 2: 375 - 1: 17920 + 3: 375 + 2: 17920 11,-21: - 1: 6513 - 2: 142 + 2: 6513 + 3: 142 12,-20: - 2: 13107 + 3: 13107 12,-19: - 1: 5633 - 2: 24610 + 2: 5633 + 3: 24610 12,-18: - 1: 17425 - 2: 8366 + 2: 17425 + 3: 8366 9,1: 0: 8083 9,2: @@ -15487,7 +15484,7 @@ entities: 0: 65339 10,1: 0: 9010 - 1: 2176 + 2: 2176 10,2: 0: 56575 10,3: @@ -15497,38 +15494,38 @@ entities: 11,0: 0: 32624 11,1: - 1: 16 + 2: 16 0: 57344 11,2: 0: 65535 11,3: 0: 271 12,0: - 1: 51393 + 2: 51393 0: 768 - 2: 1024 + 3: 1024 12,1: - 1: 49665 + 2: 49665 12,2: 0: 30577 12,3: 0: 7 - 1: 17408 + 2: 17408 9,6: 0: 119 - 1: 8192 + 2: 8192 9,5: 0: 28398 10,4: 0: 62256 - 1: 128 + 2: 128 10,5: 0: 511 - 1: 49152 + 2: 49152 10,6: - 1: 3 + 2: 3 11,4: - 1: 80 + 2: 80 0: 61440 11,5: 0: 44799 @@ -15536,544 +15533,544 @@ entities: 0: 2730 12,4: 0: 61440 - 1: 68 + 2: 68 12,5: 0: 241 - 1: 24576 + 2: 24576 12,-1: - 1: 4 + 2: 4 13,-4: 0: 1 - 1: 64 + 2: 64 13,-2: - 1: 4080 + 2: 4080 13,-5: 0: 62451 14,-2: - 1: 20478 + 2: 20478 14,-5: 0: 12336 14,-1: - 2: 43690 - 1: 17476 + 3: 43690 + 2: 17476 14,0: - 2: 1038 - 1: 19264 + 3: 1038 + 2: 19264 15,-2: - 1: 20478 + 2: 20478 15,-1: - 2: 43690 - 1: 17476 + 3: 43690 + 2: 17476 15,0: - 2: 1038 - 1: 19264 + 3: 1038 + 2: 19264 16,-2: - 1: 20478 + 2: 20478 13,-8: 0: 3 - 1: 17476 + 2: 17476 13,-7: 0: 62448 13,-6: 0: 65523 13,-9: - 1: 17408 + 2: 17408 0: 259 - 2: 128 + 3: 128 14,-7: 0: 12336 14,-6: - 1: 8224 + 2: 8224 13,-12: - 1: 7168 + 2: 7168 13,-11: 0: 33552 - 1: 4 + 2: 4 13,-10: 0: 49075 13,-13: 0: 13075 - 1: 2176 + 2: 2176 14,-11: 0: 28672 - 2: 34816 + 3: 34816 14,-10: 0: 14129 - 2: 8 + 3: 8 14,-9: - 1: 16 - 2: 8 + 2: 16 + 3: 8 14,-12: 0: 238 14,-13: 0: 58606 15,-11: - 1: 16657 - 2: 12288 + 2: 16657 + 3: 12288 15,-10: - 1: 61489 - 2: 4038 + 2: 61489 + 3: 4038 15,-9: - 1: 1 + 2: 1 15,-12: - 1: 61672 - 2: 3584 + 2: 61672 + 3: 3584 15,-13: - 2: 33824 - 1: 19008 + 3: 33824 + 2: 19008 16,-12: - 2: 289 - 1: 4178 + 3: 289 + 2: 4178 0: 49152 16,-10: - 1: 61584 - 2: 3872 + 2: 61584 + 3: 3872 12,-17: 0: 34880 - 1: 162 + 2: 162 13,-16: 0: 4353 - 1: 17408 + 2: 17408 13,-15: 0: 12561 - 1: 2116 + 2: 2116 13,-14: 0: 48123 13,-17: 0: 4096 - 2: 16 - 1: 230 + 3: 16 + 2: 230 14,-14: 0: 65535 14,-16: - 1: 28 + 2: 28 0: 8192 14,-17: - 1: 4096 - 2: 2 + 2: 4096 + 3: 2 14,-15: 0: 57890 15,-16: - 1: 32775 - 2: 2176 + 2: 32775 + 3: 2176 15,-14: 0: 10016 15,-15: - 1: 28360 + 2: 28360 15,-17: - 1: 34944 + 2: 34944 16,-16: - 2: 61105 - 1: 14 + 3: 61105 + 2: 14 16,-15: - 2: 119 + 3: 119 16,-13: - 1: 4098 + 2: 4098 12,-21: - 1: 20480 - 2: 8977 + 2: 20480 + 3: 8977 13,-18: - 2: 8448 - 1: 4096 + 3: 8448 + 2: 4096 14,-19: - 1: 14540 + 2: 14540 14,-18: - 1: 21789 - 2: 2 + 2: 21789 + 3: 2 14,-20: - 1: 60416 - 2: 192 + 2: 60416 + 3: 192 15,-19: - 2: 57102 - 1: 8192 + 3: 57102 + 2: 8192 15,-18: - 2: 19 - 1: 32780 + 3: 19 + 2: 32780 15,-21: - 2: 7680 + 3: 7680 0: 64 15,-20: - 2: 3686 + 3: 3686 16,-20: - 2: 63235 - 1: 2216 + 3: 63235 + 2: 2216 16,-19: - 2: 48031 + 3: 48031 16,-18: - 2: 139 - 1: 31744 + 3: 139 + 2: 31744 16,-17: - 2: 49022 - 1: 16384 + 3: 49022 + 2: 16384 13,0: - 1: 20288 + 2: 20288 13,2: - 1: 65280 + 2: 65280 14,2: - 1: 65348 - 2: 10 + 2: 65348 + 3: 10 14,1: - 2: 43694 - 1: 17472 + 3: 43694 + 2: 17472 14,3: - 1: 14 + 2: 14 15,2: - 1: 65348 - 2: 10 + 2: 65348 + 3: 10 15,1: - 2: 43694 - 1: 17472 + 3: 43694 + 2: 17472 15,3: - 1: 14 + 2: 14 16,0: - 1: 19264 - 2: 1038 + 2: 19264 + 3: 1038 16,2: - 1: 65348 - 2: 10 + 2: 65348 + 3: 10 12,6: - 1: 2 + 2: 2 16,-1: - 2: 43690 - 1: 17476 + 3: 43690 + 2: 17476 17,-2: - 1: 20478 + 2: 20478 17,-1: - 2: 43690 - 1: 17476 + 3: 43690 + 2: 17476 17,0: - 2: 1038 - 1: 19264 + 3: 1038 + 2: 19264 17,-3: - 1: 32768 + 2: 32768 18,-3: - 1: 14316 + 2: 14316 18,-2: - 1: 59185 + 2: 59185 18,-1: - 1: 34956 + 2: 34956 18,-4: - 1: 32768 + 2: 32768 19,-4: - 1: 14316 + 2: 14316 19,-3: - 1: 1 + 2: 1 19,-1: - 1: 4407 + 2: 4407 18,0: - 1: 44456 - 2: 512 + 2: 44456 + 3: 512 19,0: - 1: 13105 + 2: 13105 19,-2: - 1: 60544 + 2: 60544 19,-5: - 1: 32896 + 2: 32896 20,-2: - 1: 311 + 2: 311 20,-7: - 2: 24576 + 3: 24576 19,-7: - 1: 32768 + 2: 32768 20,-6: - 1: 16912 - 2: 36078 + 2: 16912 + 3: 36078 19,-6: - 1: 200 + 2: 200 20,-5: - 1: 784 - 2: 60552 + 2: 784 + 3: 60552 20,-4: - 2: 18022 + 3: 18022 21,-6: - 2: 18367 - 1: 2048 + 3: 18367 + 2: 2048 21,-5: - 2: 55735 - 1: 8 + 3: 55735 + 2: 8 21,-8: - 1: 546 - 2: 34952 + 2: 546 + 3: 34952 21,-7: - 2: 34958 - 1: 512 + 3: 34958 + 2: 512 21,-4: - 2: 31612 + 3: 31612 21,-9: - 2: 36356 - 1: 10 + 3: 36356 + 2: 10 22,-8: - 2: 57339 - 1: 4 + 3: 57339 + 2: 4 22,-7: - 2: 4271 - 1: 57600 + 3: 4271 + 2: 57600 22,-6: - 2: 60621 - 1: 16 + 3: 60621 + 2: 16 22,-5: - 1: 1 - 2: 65534 + 2: 1 + 3: 65534 22,-9: - 2: 56673 - 1: 540 + 3: 56673 + 2: 540 22,-4: - 2: 15031 - 1: 8 + 3: 15031 + 2: 8 23,-8: - 2: 65295 + 3: 65295 23,-7: - 1: 13056 - 2: 52462 + 2: 13056 + 3: 52462 23,-6: - 2: 34511 - 1: 2096 + 3: 34511 + 2: 2096 23,-5: - 2: 52215 - 1: 12288 + 3: 52215 + 2: 12288 0: 1024 23,-9: - 2: 59973 - 1: 1176 + 3: 59973 + 2: 1176 0: 258 23,-4: - 2: 4 - 1: 336 + 3: 4 + 2: 336 24,-8: - 2: 4899 + 3: 4899 24,-7: - 2: 4371 + 3: 4371 24,-6: - 2: 275 - 1: 4640 + 3: 275 + 2: 4640 16,1: - 2: 43694 - 1: 17472 + 3: 43694 + 2: 17472 16,3: - 1: 14 + 2: 14 17,2: - 1: 65348 - 2: 10 + 2: 65348 + 3: 10 17,1: - 2: 43694 - 1: 17472 + 3: 43694 + 2: 17472 17,3: - 1: 14 + 2: 14 18,2: - 1: 65416 + 2: 65416 18,1: - 1: 34952 + 2: 34952 19,1: - 1: 4369 + 2: 4369 19,2: - 1: 13073 + 2: 13073 18,3: - 1: 8 + 2: 8 19,3: - 1: 3 + 2: 3 24,-9: - 2: 12545 + 3: 12545 0: 530 4,-24: - 1: 13107 + 2: 13107 4,-25: - 1: 4096 + 2: 4096 3,-24: - 1: 224 - 2: 12567 + 2: 224 + 3: 12567 4,-23: - 1: 4915 + 2: 4915 3,-23: - 2: 4415 - 1: 34816 + 3: 4415 + 2: 34816 4,-22: - 1: 4369 + 2: 4369 3,-22: - 1: 35016 - 2: 1 + 2: 35016 + 3: 1 8,-21: - 1: 4352 + 2: 4352 16,-11: 0: 52428 17,-12: 0: 61440 - 1: 154 - 2: 100 + 2: 154 + 3: 100 17,-11: 0: 62451 17,-10: - 1: 57456 - 2: 3840 + 2: 57456 + 3: 3840 17,-13: - 2: 16384 - 1: 1092 + 3: 16384 + 2: 1092 18,-12: - 1: 116 + 2: 116 0: 61440 - 2: 136 + 3: 136 18,-11: 0: 64732 18,-10: - 2: 3840 - 1: 57584 + 3: 3840 + 2: 57584 18,-13: - 2: 32768 - 1: 2184 + 3: 32768 + 2: 2184 19,-12: - 1: 245 + 2: 245 0: 57344 - 2: 8 + 3: 8 19,-11: 0: 61422 19,-10: - 1: 4112 - 2: 256 + 2: 4112 + 3: 256 0: 3784 19,-13: - 1: 17065 - 2: 35910 + 2: 17065 + 3: 35910 20,-12: - 2: 49 + 3: 49 0: 12288 - 1: 202 + 2: 202 20,-11: 0: 15291 11,-23: - 2: 49152 + 3: 49152 11,-22: - 2: 43148 - 1: 1088 + 3: 43148 + 2: 1088 12,-23: - 2: 4096 + 3: 4096 12,-22: - 2: 273 + 3: 273 -4,-24: - 2: 238 - 1: 19456 + 3: 238 + 2: 19456 -4,-25: - 2: 57344 + 3: 57344 -4,-23: - 1: 52292 - 2: 128 + 2: 52292 + 3: 128 -4,-22: - 1: 52428 + 2: 52428 -3,-24: - 1: 487 - 2: 63000 + 2: 487 + 3: 63000 -3,-23: - 2: 51071 - 1: 4096 + 3: 51071 + 2: 4096 -3,-25: - 1: 11840 - 2: 49152 + 2: 11840 + 3: 49152 -3,-22: - 2: 4 - 1: 34816 - -2,-24: - 2: 49147 - -2,-23: - 2: 49416 - 1: 13024 - -2,-22: - 1: 13106 - 2: 68 - -2,-25: + 3: 4 2: 34816 - 1: 640 + -2,-24: + 3: 49147 + -2,-23: + 3: 49416 + 2: 13024 + -2,-22: + 2: 13106 + 3: 68 + -2,-25: + 3: 34816 + 2: 640 -1,-24: - 2: 65535 + 3: 65535 -1,-23: - 1: 248 - 2: 39426 + 2: 248 + 3: 39426 -1,-22: - 1: 48 - 2: 32974 + 2: 48 + 3: 32974 -1,-25: - 2: 7492 - 1: 178 + 3: 7492 + 2: 178 0,-24: - 2: 30481 - 1: 35054 + 3: 30481 + 2: 35054 0,-23: - 1: 58 - 2: 57284 + 2: 58 + 3: 57284 0,-22: - 2: 29439 + 3: 29439 -3,9: - 1: 18 + 2: 18 -16,-3: - 1: 9187 + 2: 9187 -15,-3: 0: 2062 - 1: 8960 + 2: 8960 -15,-2: - 1: 32772 + 2: 32772 -14,-3: 0: 53215 -14,-2: 0: 35065 - 2: 12288 + 3: 12288 -13,-3: 0: 13059 - 1: 128 + 2: 128 0,-21: - 2: 2 + 3: 2 0,-25: - 1: 43679 - 2: 256 + 2: 43679 + 3: 256 1,-24: - 1: 547 - 2: 60620 + 2: 547 + 3: 60620 1,-23: - 2: 52730 + 3: 52730 1,-22: - 1: 96 + 2: 96 1,-25: - 1: 8449 - 2: 50910 + 2: 8449 + 3: 50910 2,-24: - 2: 61438 + 3: 61438 2,-23: - 2: 32552 + 3: 32552 2,-22: - 2: 231 - 1: 60928 + 3: 231 + 2: 60928 2,-25: - 2: 24576 - 1: 3329 + 3: 24576 + 2: 3329 24,-13: - 1: 4096 - 2: 257 + 2: 4096 + 3: 257 24,-12: - 1: 34882 + 2: 34882 0: 4096 23,-12: 0: 65392 24,-11: 0: 4369 - 1: 34816 + 2: 34816 23,-11: 0: 65262 23,-10: 0: 127 24,-10: - 2: 4096 - 1: 584 + 3: 4096 + 2: 584 20,-13: - 1: 12560 + 2: 12560 20,-10: - 1: 608 + 2: 608 21,-12: - 2: 19 + 3: 19 0: 51200 21,-11: 0: 52701 21,-13: - 2: 29032 - 1: 2708 + 3: 29032 + 2: 2708 21,-10: - 1: 20496 - 2: 8704 + 2: 20496 + 3: 8704 0: 8 22,-12: 0: 65520 @@ -16082,208 +16079,208 @@ entities: 22,-10: 0: 255 16,-21: - 2: 48058 + 3: 48058 16,-14: - 1: 2 - 17,-16: - 1: 1 - 2: 65534 - 17,-15: - 2: 34021 - 1: 25360 - 17,-17: - 2: 65505 - 17,-14: - 1: 17612 - 18,-16: - 2: 64511 - 1: 1024 - 18,-15: - 2: 45055 - 1: 20480 - 18,-14: - 1: 35090 - 2: 136 - 18,-17: - 2: 63482 - 19,-16: - 2: 27475 - 1: 37920 - 19,-15: - 2: 14111 - 1: 16416 - 19,-14: - 2: 9015 - 1: 21568 - 19,-17: - 2: 4096 - 1: 256 - 20,-16: - 1: 8448 - 2: 4096 - 20,-15: - 2: 36071 - 1: 24 - 17,-20: - 2: 34989 - 1: 22032 - 17,-19: - 1: 34055 - 2: 2240 - 17,-18: - 1: 28417 - 2: 16 - 17,-21: - 2: 56817 - 1: 4 - 18,-20: - 2: 65527 - 18,-19: - 2: 56784 - 18,-18: - 1: 1999 - 2: 61440 - 18,-21: - 2: 12544 - 19,-19: - 2: 4384 - 19,-18: - 1: 4097 - 2: 34 - 16,-22: - 1: 3168 - 2: 32768 - 17,-22: - 2: 12288 - 20,-3: - 1: 60544 - 2: 8 - 21,-3: - 2: 127 - 1: 256 - 22,-3: - 2: 37 - 21,-15: - 1: 37904 - 2: 25344 - 20,-14: - 1: 8 - 21,-14: - 2: 2255 - 1: 33824 - 22,-15: - 1: 4096 - 22,-14: - 2: 49553 - 1: 3076 - 22,-13: - 2: 533 - 1: 1408 - 23,-14: - 2: 45344 - 1: 16960 - 23,-13: - 1: 3924 2: 2 + 17,-16: + 2: 1 + 3: 65534 + 17,-15: + 3: 34021 + 2: 25360 + 17,-17: + 3: 65505 + 17,-14: + 2: 17612 + 18,-16: + 3: 64511 + 2: 1024 + 18,-15: + 3: 45055 + 2: 20480 + 18,-14: + 2: 35090 + 3: 136 + 18,-17: + 3: 63482 + 19,-16: + 3: 27475 + 2: 37920 + 19,-15: + 3: 14111 + 2: 16416 + 19,-14: + 3: 9015 + 2: 21568 + 19,-17: + 3: 4096 + 2: 256 + 20,-16: + 2: 8448 + 3: 4096 + 20,-15: + 3: 36071 + 2: 24 + 17,-20: + 3: 34989 + 2: 22032 + 17,-19: + 2: 34055 + 3: 2240 + 17,-18: + 2: 28417 + 3: 16 + 17,-21: + 3: 56817 + 2: 4 + 18,-20: + 3: 65527 + 18,-19: + 3: 56784 + 18,-18: + 2: 1999 + 3: 61440 + 18,-21: + 3: 12544 + 19,-19: + 3: 4384 + 19,-18: + 2: 4097 + 3: 34 + 16,-22: + 2: 3168 + 3: 32768 + 17,-22: + 3: 12288 + 20,-3: + 2: 60544 + 3: 8 + 21,-3: + 3: 127 + 2: 256 + 22,-3: + 3: 37 + 21,-15: + 2: 37904 + 3: 25344 + 20,-14: + 2: 8 + 21,-14: + 3: 2255 + 2: 33824 + 22,-15: + 2: 4096 + 22,-14: + 3: 49553 + 2: 3076 + 22,-13: + 3: 533 + 2: 1408 + 23,-14: + 3: 45344 + 2: 16960 + 23,-13: + 2: 3924 + 3: 2 24,-14: - 1: 4096 + 2: 4096 -1,-26: - 1: 24576 + 2: 24576 0,-26: - 1: 52352 + 2: 52352 1,-26: - 1: 4672 - 2: 60416 + 2: 4672 + 3: 60416 2,-26: - 2: 29440 - 1: 35856 + 3: 29440 + 2: 35856 3,-25: - 1: 768 + 2: 768 -20,-12: - 1: 36848 + 2: 36848 -17,4: - 2: 3855 - 1: 240 + 3: 3855 + 2: 240 -16,5: - 2: 337 - 1: 17572 + 3: 337 + 2: 17572 -17,5: - 2: 3855 - 1: 240 + 3: 3855 + 2: 240 -16,6: - 2: 337 - 1: 17444 + 3: 337 + 2: 17444 -17,6: - 2: 3855 - 1: 240 + 3: 3855 + 2: 240 -16,7: - 1: 1204 - 2: 57408 + 2: 1204 + 3: 57408 -17,7: - 1: 1200 - 2: 57408 + 2: 1200 + 3: 57408 -16,8: - 2: 43690 - 1: 17476 + 3: 43690 + 2: 17476 -15,5: - 1: 35900 + 2: 35900 -15,7: - 1: 1200 - 2: 57408 + 2: 1200 + 3: 57408 -15,8: - 2: 43690 - 1: 17476 + 3: 43690 + 2: 17476 -15,6: - 1: 8 + 2: 8 -14,7: - 1: 1204 - 2: 57408 + 2: 1204 + 3: 57408 -14,5: 0: 61166 -14,6: - 1: 17440 + 2: 17440 0: 8 -14,8: - 2: 43690 - 1: 17476 + 3: 43690 + 2: 17476 -13,6: 0: 3 - 1: 17536 + 2: 17536 -13,8: - 2: 43690 - 1: 17476 + 3: 43690 + 2: 17476 -18,4: - 1: 26615 + 2: 26615 -18,5: - 1: 26615 + 2: 26615 -18,6: - 1: 10231 + 2: 10231 -18,7: - 1: 11131 - 2: 128 + 2: 11131 + 3: 128 -18,3: - 1: 26615 + 2: 26615 -18,8: - 1: 12850 + 2: 12850 -17,8: - 2: 43690 - 1: 17476 + 3: 43690 + 2: 17476 -18,2: - 1: 26615 + 2: 26615 -18,0: - 1: 25088 + 2: 25088 -18,1: - 1: 26214 + 2: 26214 -16,9: - 1: 61428 + 2: 61428 -17,9: - 1: 61412 + 2: 61412 -15,9: - 1: 61428 + 2: 61428 -14,9: - 1: 61428 + 2: 61428 -18,9: - 1: 32626 + 2: 32626 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -16300,6 +16297,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 235 + moles: + - 27.225372 + - 102.419266 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 immutable: True moles: @@ -16330,21 +16342,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 235 - moles: - - 27.225372 - - 102.419266 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -16402,6 +16399,17 @@ entities: - type: Transform pos: -9.451197,-24.49092 parent: 2 +- proto: ActionToggleLight + entities: + - uid: 5544 + mapInit: true + paused: true + components: + - type: Transform + parent: 3105 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 3105 - proto: AirAlarm entities: - uid: 29 @@ -16420,6 +16428,8 @@ entities: - 13651 - 13649 - 13666 + - type: Fixtures + fixtures: {} - uid: 58 components: - type: Transform @@ -16445,6 +16455,8 @@ entities: - 13168 - 14030 - 1809 + - type: Fixtures + fixtures: {} - uid: 103 components: - type: MetaData @@ -16457,6 +16469,8 @@ entities: devices: - 3837 - 6844 + - type: Fixtures + fixtures: {} - uid: 409 components: - type: Transform @@ -16466,6 +16480,8 @@ entities: devices: - 14078 - 17441 + - type: Fixtures + fixtures: {} - uid: 1413 components: - type: Transform @@ -16476,6 +16492,8 @@ entities: - 1953 - 24089 - 24119 + - type: Fixtures + fixtures: {} - uid: 1909 components: - type: Transform @@ -16488,6 +16506,8 @@ entities: - 17941 - 24828 - 1913 + - type: Fixtures + fixtures: {} - uid: 1931 components: - type: MetaData @@ -16506,6 +16526,8 @@ entities: - 19644 - 19642 - 19646 + - type: Fixtures + fixtures: {} - uid: 2196 components: - type: MetaData @@ -16521,6 +16543,8 @@ entities: - 23806 - 24826 - 24827 + - type: Fixtures + fixtures: {} - uid: 2237 components: - type: Transform @@ -16531,6 +16555,8 @@ entities: - 23807 - 1569 - 7482 + - type: Fixtures + fixtures: {} - uid: 2395 components: - type: Transform @@ -16545,6 +16571,8 @@ entities: - 15210 - 15209 - 15208 + - type: Fixtures + fixtures: {} - uid: 2583 components: - type: MetaData @@ -16575,6 +16603,8 @@ entities: - 11142 - 11143 - 11140 + - type: Fixtures + fixtures: {} - uid: 3489 components: - type: MetaData @@ -16587,6 +16617,8 @@ entities: devices: - 15099 - 23085 + - type: Fixtures + fixtures: {} - uid: 3722 components: - type: MetaData @@ -16601,6 +16633,8 @@ entities: - 21076 - 11155 - 21069 + - type: Fixtures + fixtures: {} - uid: 5030 components: - type: Transform @@ -16618,6 +16652,8 @@ entities: - 10579 - 11140 - 8188 + - type: Fixtures + fixtures: {} - uid: 5565 components: - type: Transform @@ -16627,6 +16663,8 @@ entities: devices: - 1188 - 2752 + - type: Fixtures + fixtures: {} - uid: 6547 components: - type: MetaData @@ -16638,6 +16676,8 @@ entities: devices: - 6404 - 3742 + - type: Fixtures + fixtures: {} - uid: 7178 components: - type: Transform @@ -16665,6 +16705,8 @@ entities: - 15193 - 15194 - 23125 + - type: Fixtures + fixtures: {} - uid: 7632 components: - type: Transform @@ -16678,6 +16720,8 @@ entities: - 13680 - 151 - 14089 + - type: Fixtures + fixtures: {} - uid: 7931 components: - type: Transform @@ -16694,6 +16738,8 @@ entities: - 16318 - 16319 - 16320 + - type: Fixtures + fixtures: {} - uid: 8606 components: - type: Transform @@ -16713,6 +16759,8 @@ entities: - 24318 - 24315 - 24317 + - type: Fixtures + fixtures: {} - uid: 8983 components: - type: Transform @@ -16727,6 +16775,8 @@ entities: - 23175 - 23171 - 9311 + - type: Fixtures + fixtures: {} - uid: 9147 components: - type: MetaData @@ -16741,6 +16791,8 @@ entities: - 21800 - 21801 - 21856 + - type: Fixtures + fixtures: {} - uid: 9309 components: - type: Transform @@ -16764,6 +16816,8 @@ entities: - 16260 - 16256 - 16267 + - type: Fixtures + fixtures: {} - uid: 9393 components: - type: Transform @@ -16781,6 +16835,8 @@ entities: - 1537 - 1533 - 21135 + - type: Fixtures + fixtures: {} - uid: 10102 components: - type: Transform @@ -16802,6 +16858,8 @@ entities: - 14710 - 15301 - 15302 + - type: Fixtures + fixtures: {} - uid: 10105 components: - type: MetaData @@ -16816,6 +16874,8 @@ entities: - 21855 - 21854 - 21853 + - type: Fixtures + fixtures: {} - uid: 11632 components: - type: Transform @@ -16827,6 +16887,8 @@ entities: - 2176 - 9861 - 6545 + - type: Fixtures + fixtures: {} - uid: 12518 components: - type: Transform @@ -16844,6 +16906,8 @@ entities: - 8446 - 8436 - 6558 + - type: Fixtures + fixtures: {} - uid: 13549 components: - type: Transform @@ -16862,6 +16926,8 @@ entities: - 3122 - 21899 - 3299 + - type: Fixtures + fixtures: {} - uid: 13600 components: - type: Transform @@ -16877,6 +16943,8 @@ entities: - 15120 - 13619 - 13618 + - type: Fixtures + fixtures: {} - uid: 13612 components: - type: Transform @@ -16892,6 +16960,8 @@ entities: - 15223 - 15224 - 15225 + - type: Fixtures + fixtures: {} - uid: 13638 components: - type: Transform @@ -16902,6 +16972,8 @@ entities: - 13633 - 13634 - 13635 + - type: Fixtures + fixtures: {} - uid: 13639 components: - type: Transform @@ -16926,6 +16998,8 @@ entities: - 15222 - 15228 - 15229 + - type: Fixtures + fixtures: {} - uid: 13640 components: - type: Transform @@ -16946,6 +17020,8 @@ entities: - 15214 - 15213 - 15212 + - type: Fixtures + fixtures: {} - uid: 13645 components: - type: Transform @@ -16962,6 +17038,8 @@ entities: - 15429 - 15430 - 4410 + - type: Fixtures + fixtures: {} - uid: 13653 components: - type: Transform @@ -16972,6 +17050,8 @@ entities: - 6761 - 6759 - 15435 + - type: Fixtures + fixtures: {} - uid: 13654 components: - type: Transform @@ -16986,6 +17066,8 @@ entities: - 15182 - 15183 - 15435 + - type: Fixtures + fixtures: {} - uid: 13655 components: - type: Transform @@ -16999,6 +17081,8 @@ entities: - 15437 - 15229 - 15228 + - type: Fixtures + fixtures: {} - uid: 13657 components: - type: Transform @@ -17016,6 +17100,8 @@ entities: - 14305 - 14308 - 14329 + - type: Fixtures + fixtures: {} - uid: 13658 components: - type: Transform @@ -17025,6 +17111,8 @@ entities: devices: - 11354 - 4246 + - type: Fixtures + fixtures: {} - uid: 13665 components: - type: Transform @@ -17055,6 +17143,8 @@ entities: - 23058 - 1021 - 23059 + - type: Fixtures + fixtures: {} - uid: 13793 components: - type: Transform @@ -17071,6 +17161,8 @@ entities: - 15395 - 15396 - 2516 + - type: Fixtures + fixtures: {} - uid: 13796 components: - type: Transform @@ -17084,6 +17176,8 @@ entities: - 15394 - 15393 - 23143 + - type: Fixtures + fixtures: {} - uid: 13800 components: - type: Transform @@ -17093,6 +17187,8 @@ entities: devices: - 131 - 4794 + - type: Fixtures + fixtures: {} - uid: 13810 components: - type: Transform @@ -17102,6 +17198,8 @@ entities: - type: DeviceList devices: - 13811 + - type: Fixtures + fixtures: {} - uid: 13846 components: - type: MetaData @@ -17123,6 +17221,8 @@ entities: - 13822 - 13823 - 13833 + - type: Fixtures + fixtures: {} - uid: 14004 components: - type: Transform @@ -17139,6 +17239,8 @@ entities: - 4456 - 23091 - 23090 + - type: Fixtures + fixtures: {} - uid: 14019 components: - type: Transform @@ -17153,6 +17255,8 @@ entities: - 23101 - 23513 - 23514 + - type: Fixtures + fixtures: {} - uid: 14047 components: - type: MetaData @@ -17169,6 +17273,8 @@ entities: - 15143 - 15639 - 2693 + - type: Fixtures + fixtures: {} - uid: 14085 components: - type: Transform @@ -17198,6 +17304,8 @@ entities: - 21855 - 21854 - 21853 + - type: Fixtures + fixtures: {} - uid: 14210 components: - type: MetaData @@ -17216,6 +17324,8 @@ entities: - 12170 - 12169 - 14275 + - type: Fixtures + fixtures: {} - uid: 14733 components: - type: Transform @@ -17225,6 +17335,8 @@ entities: devices: - 14709 - 14671 + - type: Fixtures + fixtures: {} - uid: 14795 components: - type: Transform @@ -17243,6 +17355,8 @@ entities: - 682 - 6272 - 10963 + - type: Fixtures + fixtures: {} - uid: 14915 components: - type: Transform @@ -17261,6 +17375,8 @@ entities: - 7655 - 14931 - 14941 + - type: Fixtures + fixtures: {} - uid: 14943 components: - type: Transform @@ -17278,6 +17394,8 @@ entities: - 22381 - 5609 - 13086 + - type: Fixtures + fixtures: {} - uid: 14984 components: - type: Transform @@ -17293,6 +17411,8 @@ entities: - 15393 - 15396 - 15395 + - type: Fixtures + fixtures: {} - uid: 15139 components: - type: Transform @@ -17311,6 +17431,8 @@ entities: - 15080 - 13168 - 15137 + - type: Fixtures + fixtures: {} - uid: 15205 components: - type: Transform @@ -17321,6 +17443,8 @@ entities: devices: - 12188 - 12377 + - type: Fixtures + fixtures: {} - uid: 15287 components: - type: Transform @@ -17331,6 +17455,8 @@ entities: devices: - 15269 - 15279 + - type: Fixtures + fixtures: {} - uid: 15331 components: - type: Transform @@ -17354,6 +17480,8 @@ entities: - 14381 - 14378 - 15911 + - type: Fixtures + fixtures: {} - uid: 15421 components: - type: Transform @@ -17371,6 +17499,8 @@ entities: - 2919 - 2321 - 3985 + - type: Fixtures + fixtures: {} - uid: 15862 components: - type: Transform @@ -17390,6 +17520,8 @@ entities: - 12415 - 12421 - 15867 + - type: Fixtures + fixtures: {} - uid: 15869 components: - type: Transform @@ -17403,6 +17535,8 @@ entities: - 11181 - 11024 - 14886 + - type: Fixtures + fixtures: {} - uid: 15875 components: - type: Transform @@ -17411,6 +17545,8 @@ entities: - type: DeviceList devices: - 14900 + - type: Fixtures + fixtures: {} - uid: 15894 components: - type: Transform @@ -17427,6 +17563,8 @@ entities: - 15933 - 15934 - 15936 + - type: Fixtures + fixtures: {} - uid: 15937 components: - type: Transform @@ -17452,6 +17590,8 @@ entities: - 16139 - 23139 - 15113 + - type: Fixtures + fixtures: {} - uid: 16062 components: - type: Transform @@ -17470,6 +17610,8 @@ entities: - 14952 - 14945 - 14946 + - type: Fixtures + fixtures: {} - uid: 16096 components: - type: MetaData @@ -17482,6 +17624,8 @@ entities: - 12519 - 16097 - 12488 + - type: Fixtures + fixtures: {} - uid: 16098 components: - type: Transform @@ -17492,6 +17636,8 @@ entities: devices: - 14130 - 14144 + - type: Fixtures + fixtures: {} - uid: 17162 components: - type: Transform @@ -17504,6 +17650,8 @@ entities: - 18783 - 18784 - 18822 + - type: Fixtures + fixtures: {} - uid: 17348 components: - type: Transform @@ -17530,6 +17678,8 @@ entities: - 5390 - 18878 - 18879 + - type: Fixtures + fixtures: {} - uid: 17351 components: - type: Transform @@ -17556,6 +17706,8 @@ entities: - 17357 - 5395 - 115 + - type: Fixtures + fixtures: {} - uid: 17352 components: - type: Transform @@ -17574,6 +17726,8 @@ entities: - 17359 - 17368 - 115 + - type: Fixtures + fixtures: {} - uid: 17445 components: - type: Transform @@ -17583,6 +17737,8 @@ entities: devices: - 23203 - 5318 + - type: Fixtures + fixtures: {} - uid: 17576 components: - type: Transform @@ -17597,6 +17753,8 @@ entities: - 15165 - 15164 - 17582 + - type: Fixtures + fixtures: {} - uid: 18894 components: - type: Transform @@ -17608,6 +17766,8 @@ entities: - 18900 - 18901 - 18899 + - type: Fixtures + fixtures: {} - uid: 18902 components: - type: Transform @@ -17619,6 +17779,8 @@ entities: - 18827 - 18889 - 18826 + - type: Fixtures + fixtures: {} - uid: 20239 components: - type: MetaData @@ -17632,6 +17794,8 @@ entities: - 23375 - 23373 - 23372 + - type: Fixtures + fixtures: {} - uid: 21678 components: - type: Transform @@ -17651,6 +17815,8 @@ entities: - 21848 - 22327 - 22041 + - type: Fixtures + fixtures: {} - uid: 22071 components: - type: Transform @@ -17668,6 +17834,8 @@ entities: - 10396 - 10457 - 10397 + - type: Fixtures + fixtures: {} - uid: 22255 components: - type: Transform @@ -17684,6 +17852,8 @@ entities: - 15562 - 15559 - 22281 + - type: Fixtures + fixtures: {} - uid: 22432 components: - type: Transform @@ -17698,6 +17868,8 @@ entities: - 167 - 21817 - 8966 + - type: Fixtures + fixtures: {} - uid: 22438 components: - type: Transform @@ -17718,6 +17890,8 @@ entities: - 22410 - 22395 - 22389 + - type: Fixtures + fixtures: {} - uid: 22439 components: - type: Transform @@ -17739,6 +17913,8 @@ entities: - 22451 - 22440 - 12602 + - type: Fixtures + fixtures: {} - uid: 22510 components: - type: Transform @@ -17749,6 +17925,8 @@ entities: devices: - 2598 - 15126 + - type: Fixtures + fixtures: {} - uid: 22600 components: - type: Transform @@ -17763,6 +17941,8 @@ entities: - 22598 - 13410 - 22599 + - type: Fixtures + fixtures: {} - uid: 23067 components: - type: Transform @@ -17774,6 +17954,8 @@ entities: - 23082 - 23078 - 23083 + - type: Fixtures + fixtures: {} - uid: 23193 components: - type: Transform @@ -17786,6 +17968,8 @@ entities: - 15172 - 15171 - 23202 + - type: Fixtures + fixtures: {} - uid: 23444 components: - type: MetaData @@ -17797,6 +17981,8 @@ entities: - type: DeviceList devices: - 23477 + - type: Fixtures + fixtures: {} - uid: 23586 components: - type: MetaData @@ -17808,6 +17994,8 @@ entities: devices: - 23585 - 23581 + - type: Fixtures + fixtures: {} - uid: 23739 components: - type: MetaData @@ -17820,6 +18008,8 @@ entities: devices: - 23735 - 23734 + - type: Fixtures + fixtures: {} - uid: 24035 components: - type: MetaData @@ -17844,6 +18034,8 @@ entities: - 959 - 24826 - 24827 + - type: Fixtures + fixtures: {} - uid: 24059 components: - type: MetaData @@ -17860,6 +18052,8 @@ entities: - 24060 - 1657 - 24107 + - type: Fixtures + fixtures: {} - uid: 24130 components: - type: Transform @@ -17891,6 +18085,8 @@ entities: - 24190 - 24191 - 24217 + - type: Fixtures + fixtures: {} - uid: 24238 components: - type: MetaData @@ -17908,6 +18104,8 @@ entities: - 24234 - 2524 - 24095 + - type: Fixtures + fixtures: {} - uid: 24254 components: - type: MetaData @@ -17920,6 +18118,8 @@ entities: - 24253 - 24252 - 24251 + - type: Fixtures + fixtures: {} - uid: 24290 components: - type: MetaData @@ -17932,6 +18132,8 @@ entities: - 24287 - 24285 - 24284 + - type: Fixtures + fixtures: {} - uid: 24291 components: - type: MetaData @@ -17948,6 +18150,8 @@ entities: - 24286 - 24272 - 24274 + - type: Fixtures + fixtures: {} - uid: 24292 components: - type: MetaData @@ -17960,6 +18164,8 @@ entities: - 23335 - 24275 - 24289 + - type: Fixtures + fixtures: {} - uid: 24601 components: - type: MetaData @@ -17976,6 +18182,8 @@ entities: - 24628 - 24467 - 327 + - type: Fixtures + fixtures: {} - proto: AirAlarmFreezer entities: - uid: 22282 @@ -17987,6 +18195,8 @@ entities: devices: - 9463 - 9632 + - type: Fixtures + fixtures: {} - proto: AirCanister entities: - uid: 790 @@ -19636,35 +19846,37 @@ entities: - uid: 85 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-5.5 + pos: -15.5,0.5 parent: 2 - uid: 92 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-5.5 + pos: -17.5,0.5 parent: 2 - uid: 93 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-5.5 + pos: -16.5,0.5 parent: 2 - uid: 110 components: - type: Transform pos: 13.5,-41.5 parent: 2 + - uid: 752 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 2 - uid: 771 components: - type: Transform - pos: 31.5,-5.5 + pos: -15.5,-5.5 parent: 2 - uid: 772 components: - type: Transform - pos: 32.5,-15.5 + pos: -17.5,-5.5 parent: 2 - uid: 804 components: @@ -19780,11 +19992,6 @@ entities: - type: Transform pos: 39.5,-62.5 parent: 2 - - uid: 5018 - components: - - type: Transform - pos: -6.5,10.5 - parent: 2 - uid: 5059 components: - type: Transform @@ -19960,66 +20167,11 @@ entities: - type: Transform pos: 57.5,-57.5 parent: 2 - - uid: 17579 - components: - - type: Transform - pos: -6.5,11.5 - parent: 2 - uid: 18780 components: - type: Transform pos: 73.5,-67.5 parent: 2 - - uid: 20627 - components: - - type: Transform - pos: 30.5,-15.5 - parent: 2 - - uid: 20628 - components: - - type: Transform - pos: 31.5,-15.5 - parent: 2 - - uid: 21434 - components: - - type: Transform - pos: 32.5,-5.5 - parent: 2 - - uid: 22063 - components: - - type: Transform - pos: 30.5,-5.5 - parent: 2 - - uid: 22064 - components: - - type: Transform - pos: 14.5,8.5 - parent: 2 - - uid: 22065 - components: - - type: Transform - pos: 15.5,8.5 - parent: 2 - - uid: 22066 - components: - - type: Transform - pos: 16.5,8.5 - parent: 2 - - uid: 22067 - components: - - type: Transform - pos: 26.5,6.5 - parent: 2 - - uid: 22068 - components: - - type: Transform - pos: 26.5,7.5 - parent: 2 - - uid: 22069 - components: - - type: Transform - pos: 26.5,8.5 - parent: 2 - uid: 22526 components: - type: Transform @@ -20086,21 +20238,6 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-40.5 parent: 2 - - uid: 23854 - components: - - type: Transform - pos: -15.5,0.5 - parent: 2 - - uid: 23855 - components: - - type: Transform - pos: -16.5,0.5 - parent: 2 - - uid: 23856 - components: - - type: Transform - pos: -17.5,0.5 - parent: 2 - uid: 24468 components: - type: Transform @@ -22038,6 +22175,8 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-53.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1342 components: - type: MetaData @@ -22046,6 +22185,8 @@ entities: rot: 3.141592653589793 rad pos: 8.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1343 components: - type: MetaData @@ -22053,6 +22194,8 @@ entities: - type: Transform pos: -0.5,27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1349 components: - type: MetaData @@ -22061,6 +22204,8 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1685 components: - type: MetaData @@ -22068,11 +22213,15 @@ entities: - type: Transform pos: -0.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1802 components: - type: Transform pos: 1.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1873 components: - type: MetaData @@ -22081,6 +22230,8 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1875 components: - type: MetaData @@ -22088,6 +22239,8 @@ entities: - type: Transform pos: -50.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2118 components: - type: MetaData @@ -22096,6 +22249,8 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2152 components: - type: MetaData @@ -22103,6 +22258,8 @@ entities: - type: Transform pos: -9.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2303 components: - type: MetaData @@ -22111,6 +22268,8 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2422 components: - type: MetaData @@ -22119,6 +22278,8 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2497 components: - type: MetaData @@ -22126,12 +22287,16 @@ entities: - type: Transform pos: -13.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2500 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2641 components: - type: MetaData @@ -22139,23 +22304,31 @@ entities: - type: Transform pos: -25.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2692 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2786 components: - type: Transform pos: -57.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2801 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3661 components: - type: MetaData @@ -22163,6 +22336,8 @@ entities: - type: Transform pos: 14.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3753 components: - type: MetaData @@ -22170,12 +22345,16 @@ entities: - type: Transform pos: -8.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4839 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5086 components: - type: MetaData @@ -22184,6 +22363,8 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5105 components: - type: MetaData @@ -22192,17 +22373,23 @@ entities: rot: 3.141592653589793 rad pos: -18.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5923 components: - type: Transform pos: 15.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6107 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6237 components: - type: MetaData @@ -22211,12 +22398,16 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6405 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6589 components: - type: MetaData @@ -22224,6 +22415,8 @@ entities: - type: Transform pos: 16.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7149 components: - type: MetaData @@ -22231,6 +22424,8 @@ entities: - type: Transform pos: 17.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7213 components: - type: MetaData @@ -22238,6 +22433,8 @@ entities: - type: Transform pos: 40.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7354 components: - type: MetaData @@ -22246,11 +22443,15 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7383 components: - type: Transform pos: 44.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7499 components: - type: MetaData @@ -22259,6 +22460,8 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8638 components: - type: MetaData @@ -22267,6 +22470,8 @@ entities: rot: 3.141592653589793 rad pos: 44.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8782 components: - type: MetaData @@ -22275,6 +22480,8 @@ entities: rot: 3.141592653589793 rad pos: 44.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9734 components: - type: MetaData @@ -22283,6 +22490,8 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9744 components: - type: MetaData @@ -22290,6 +22499,8 @@ entities: - type: Transform pos: 28.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9817 components: - type: MetaData @@ -22298,6 +22509,8 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9870 components: - type: MetaData @@ -22306,6 +22519,8 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9916 components: - type: MetaData @@ -22313,6 +22528,8 @@ entities: - type: Transform pos: -20.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10247 components: - type: MetaData @@ -22320,18 +22537,24 @@ entities: - type: Transform pos: 4.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10322 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10762 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10933 components: - type: MetaData @@ -22340,6 +22563,8 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11350 components: - type: MetaData @@ -22348,6 +22573,8 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11351 components: - type: MetaData @@ -22356,6 +22583,8 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11352 components: - type: MetaData @@ -22364,6 +22593,8 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11675 components: - type: MetaData @@ -22372,12 +22603,16 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11678 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11792 components: - type: MetaData @@ -22386,6 +22621,8 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11807 components: - type: MetaData @@ -22394,18 +22631,24 @@ entities: rot: 3.141592653589793 rad pos: -10.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12258 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12341 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12348 components: - type: MetaData @@ -22413,22 +22656,30 @@ entities: - type: Transform pos: -58.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12425 components: - type: Transform pos: 36.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12478 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12479 components: - type: Transform pos: 41.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13216 components: - type: MetaData @@ -22436,28 +22687,38 @@ entities: - type: Transform pos: 22.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13248 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13355 components: - type: Transform pos: -31.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13851 components: - type: Transform pos: 25.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14587 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14778 components: - type: MetaData @@ -22465,11 +22726,15 @@ entities: - type: Transform pos: -0.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15281 components: - type: Transform pos: 30.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15514 components: - type: MetaData @@ -22477,6 +22742,8 @@ entities: - type: Transform pos: 38.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15578 components: - type: MetaData @@ -22484,6 +22751,8 @@ entities: - type: Transform pos: 19.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15872 components: - type: MetaData @@ -22492,12 +22761,16 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16324 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16346 components: - type: MetaData @@ -22505,6 +22778,8 @@ entities: - type: Transform pos: -38.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16393 components: - type: MetaData @@ -22513,6 +22788,8 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16624 components: - type: MetaData @@ -22521,6 +22798,8 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17056 components: - type: MetaData @@ -22528,89 +22807,121 @@ entities: - type: Transform pos: 27.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17108 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17119 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17540 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17674 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17872 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17966 components: - type: Transform pos: 70.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18273 components: - type: Transform pos: 77.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18631 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18943 components: - type: Transform pos: 47.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19151 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19216 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-71.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20098 components: - type: Transform pos: -32.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20101 components: - type: Transform pos: -28.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20201 components: - type: Transform pos: -36.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20288 components: - type: Transform pos: -36.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20406 components: - type: MetaData @@ -22619,6 +22930,8 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20578 components: - type: MetaData @@ -22627,6 +22940,8 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20776 components: - type: MetaData @@ -22635,52 +22950,70 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20777 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20778 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20779 components: - type: Transform pos: -31.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20780 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20781 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21006 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21911 components: - type: Transform pos: 25.5,23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22079 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22290 components: - type: MetaData @@ -22688,23 +23021,31 @@ entities: - type: Transform pos: 26.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22508 components: - type: Transform pos: 28.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22539 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23157 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23547 components: - type: MetaData @@ -22713,6 +23054,8 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23595 components: - type: MetaData @@ -22721,18 +23064,24 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24307 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24499 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: APCElectronics entities: - uid: 2246 @@ -22762,36 +23111,48 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-61.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22168 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-61.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22169 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-72.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22171 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-72.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22172 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22173 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ArtistCircuitBoard entities: - uid: 17097 @@ -28975,6 +29336,11 @@ entities: - type: Transform pos: -54.5,-35.5 parent: 2 + - uid: 22063 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 2 - uid: 22411 components: - type: Transform @@ -29830,6 +30196,11 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,24.5 parent: 2 + - uid: 20627 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 2 - uid: 22176 components: - type: Transform @@ -29880,6 +30251,8 @@ entities: - type: Transform pos: -12.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BarSignTheOuterSpess entities: - uid: 888 @@ -29887,6 +30260,8 @@ entities: - type: Transform pos: -3.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BarSignWiggleRoom entities: - uid: 7310 @@ -29894,6 +30269,8 @@ entities: - type: Transform pos: 46.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BaseComputerAiAccess entities: - uid: 10504 @@ -30912,6 +31289,8 @@ entities: - type: Transform pos: -46.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BoxLatexGloves entities: - uid: 12948 @@ -59279,11 +59658,6 @@ entities: parent: 2 - proto: Carpet entities: - - uid: 752 - components: - - type: Transform - pos: 12.5,-10.5 - parent: 2 - uid: 6740 components: - type: Transform @@ -59514,6 +59888,11 @@ entities: - type: Transform pos: 14.5,-36.5 parent: 2 + - uid: 24850 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 2 - proto: CarpetBlack entities: - uid: 8406 @@ -67177,6 +67556,8 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ClosetBombFilled entities: - uid: 4471 @@ -67879,7 +68260,7 @@ entities: - uid: 2267 components: - type: Transform - pos: 12.441172,-10.7048235 + pos: 13.617712,-10.326046 parent: 2 - type: GroupExamine group: @@ -71580,51 +71961,69 @@ entities: - type: Transform pos: -29.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6563 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6577 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9365 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9875 components: - type: Transform pos: -15.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14298 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20586 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21976 components: - type: Transform pos: 20.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22287 components: - type: Transform pos: 3.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: DeployableBarrier entities: - uid: 24815 @@ -77981,12 +78380,12 @@ entities: - uid: 3168 components: - type: Transform - pos: 13.862172,-10.998358 + pos: 12.46233,-11.2968 parent: 2 - uid: 3175 components: - type: Transform - pos: 13.116106,-9.493994 + pos: 13.107042,-10.23223 parent: 2 - proto: DrinkJuiceLimeCarton entities: @@ -79190,192 +79589,262 @@ entities: - type: Transform pos: -29.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3541 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3633 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3733 components: - type: Transform pos: 12.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4002 components: - type: Transform pos: 18.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4183 components: - type: Transform pos: -18.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5833 components: - type: Transform pos: 26.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9363 components: - type: Transform pos: 51.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10667 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10763 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13802 components: - type: Transform pos: -40.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17620 components: - type: Transform pos: -11.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17621 components: - type: Transform pos: 0.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17628 components: - type: Transform pos: 17.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17632 components: - type: Transform pos: -21.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20761 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20762 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21165 components: - type: Transform pos: -25.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21219 components: - type: Transform pos: -46.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21220 components: - type: Transform pos: -36.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21221 components: - type: Transform pos: -43.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21224 components: - type: Transform pos: -31.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22179 components: - type: Transform pos: 8.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22185 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-65.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22267 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-65.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22268 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22269 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-76.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22271 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-76.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22286 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22734 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22736 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22737 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24305 components: - type: Transform pos: -34.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24306 components: - type: Transform pos: -25.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24824 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FaxMachineBase entities: - uid: 36 @@ -79613,6 +80082,8 @@ entities: - 15210 - 15209 - 15208 + - type: Fixtures + fixtures: {} - uid: 2276 components: - type: Transform @@ -79629,6 +80100,8 @@ entities: - 14945 - 14947 - 14948 + - type: Fixtures + fixtures: {} - uid: 3315 components: - type: Transform @@ -79641,6 +80114,8 @@ entities: - 14949 - 14951 - 14952 + - type: Fixtures + fixtures: {} - uid: 3687 components: - type: Transform @@ -79653,6 +80128,8 @@ entities: - 13236 - 21847 - 11233 + - type: Fixtures + fixtures: {} - uid: 3816 components: - type: Transform @@ -79662,6 +80139,8 @@ entities: devices: - 15393 - 15394 + - type: Fixtures + fixtures: {} - uid: 3820 components: - type: Transform @@ -79683,6 +80162,8 @@ entities: - 3985 - 2321 - 2919 + - type: Fixtures + fixtures: {} - uid: 6790 components: - type: Transform @@ -79695,6 +80176,8 @@ entities: - 15625 - 15638 - 15639 + - type: Fixtures + fixtures: {} - uid: 13342 components: - type: Transform @@ -79706,6 +80189,8 @@ entities: - 15181 - 15182 - 15183 + - type: Fixtures + fixtures: {} - uid: 14371 components: - type: Transform @@ -79721,6 +80206,8 @@ entities: - 14308 - 13649 - 13651 + - type: Fixtures + fixtures: {} - uid: 15163 components: - type: Transform @@ -79737,6 +80224,8 @@ entities: - 15150 - 15164 - 15165 + - type: Fixtures + fixtures: {} - uid: 15202 components: - type: Transform @@ -79751,6 +80240,8 @@ entities: - 15192 - 15193 - 15194 + - type: Fixtures + fixtures: {} - uid: 15226 components: - type: Transform @@ -79766,6 +80257,8 @@ entities: - 15210 - 15206 - 15207 + - type: Fixtures + fixtures: {} - uid: 15227 components: - type: Transform @@ -79787,6 +80280,8 @@ entities: - 15222 - 15228 - 15229 + - type: Fixtures + fixtures: {} - uid: 15272 components: - type: Transform @@ -79801,6 +80296,8 @@ entities: - 2282 - 2642 - 1580 + - type: Fixtures + fixtures: {} - uid: 15391 components: - type: Transform @@ -79818,6 +80315,8 @@ entities: - 19006 - 19008 - 15301 + - type: Fixtures + fixtures: {} - uid: 15415 components: - type: Transform @@ -79830,6 +80329,8 @@ entities: - 2540 - 2516 - 3025 + - type: Fixtures + fixtures: {} - uid: 15424 components: - type: Transform @@ -79838,6 +80339,8 @@ entities: - type: DeviceList devices: - 15435 + - type: Fixtures + fixtures: {} - uid: 15425 components: - type: Transform @@ -79847,6 +80350,8 @@ entities: devices: - 13649 - 13651 + - type: Fixtures + fixtures: {} - uid: 15427 components: - type: Transform @@ -79857,6 +80362,8 @@ entities: - 15431 - 15429 - 15430 + - type: Fixtures + fixtures: {} - uid: 15439 components: - type: Transform @@ -79867,6 +80374,8 @@ entities: - 15437 - 15229 - 15228 + - type: Fixtures + fixtures: {} - uid: 15440 components: - type: Transform @@ -79877,6 +80386,8 @@ entities: - 15220 - 15221 - 15222 + - type: Fixtures + fixtures: {} - uid: 15621 components: - type: Transform @@ -79887,6 +80398,8 @@ entities: - 11140 - 8188 - 10579 + - type: Fixtures + fixtures: {} - uid: 15622 components: - type: Transform @@ -79907,6 +80420,8 @@ entities: - 11142 - 11143 - 11140 + - type: Fixtures + fixtures: {} - uid: 15640 components: - type: Transform @@ -79917,6 +80432,8 @@ entities: devices: - 15626 - 15625 + - type: Fixtures + fixtures: {} - uid: 15907 components: - type: Transform @@ -79937,6 +80454,8 @@ entities: - 4519 - 4559 - 2011 + - type: Fixtures + fixtures: {} - uid: 16008 components: - type: Transform @@ -79957,6 +80476,8 @@ entities: - 4519 - 4559 - 2011 + - type: Fixtures + fixtures: {} - uid: 16078 components: - type: Transform @@ -79971,6 +80492,8 @@ entities: - 23811 - 23810 - 24317 + - type: Fixtures + fixtures: {} - uid: 16314 components: - type: Transform @@ -79982,12 +80505,16 @@ entities: - 6558 - 8436 - 8446 + - type: Fixtures + fixtures: {} - uid: 16315 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-78.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16316 components: - type: Transform @@ -80002,6 +80529,8 @@ entities: - 4961 - 5024 - 4976 + - type: Fixtures + fixtures: {} - uid: 16317 components: - type: Transform @@ -80016,6 +80545,8 @@ entities: - 4961 - 5024 - 4976 + - type: Fixtures + fixtures: {} - uid: 17349 components: - type: Transform @@ -80036,6 +80567,8 @@ entities: - 15275 - 18878 - 18879 + - type: Fixtures + fixtures: {} - uid: 21082 components: - type: Transform @@ -80056,6 +80589,8 @@ entities: - 11142 - 11143 - 11140 + - type: Fixtures + fixtures: {} - uid: 21083 components: - type: Transform @@ -80067,6 +80602,8 @@ entities: - 11007 - 1537 - 1533 + - type: Fixtures + fixtures: {} - uid: 21906 components: - type: Transform @@ -80083,6 +80620,8 @@ entities: - 18412 - 21817 - 8966 + - type: Fixtures + fixtures: {} - uid: 22029 components: - type: Transform @@ -80098,6 +80637,8 @@ entities: - 17823 - 5591 - 5597 + - type: Fixtures + fixtures: {} - uid: 22075 components: - type: Transform @@ -80112,6 +80653,8 @@ entities: - 10457 - 10397 - 21856 + - type: Fixtures + fixtures: {} - uid: 22601 components: - type: Transform @@ -80126,6 +80669,8 @@ entities: - 4961 - 5024 - 4976 + - type: Fixtures + fixtures: {} - uid: 24109 components: - type: Transform @@ -80143,6 +80688,8 @@ entities: - 19008 - 19006 - 959 + - type: Fixtures + fixtures: {} - proto: FireAxeCabinetFilled entities: - uid: 1897 @@ -80151,11 +80698,15 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9848 components: - type: Transform pos: -16.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FireExtinguisher entities: - uid: 868 @@ -82635,12 +83186,12 @@ entities: - uid: 2928 components: - type: Transform - pos: 13.395158,-10.606978 + pos: 13.120093,-11.462252 parent: 2 - uid: 3150 components: - type: Transform - pos: 12.649092,-9.787528 + pos: 12.630267,-10.680459 parent: 2 - proto: FoodCartHot entities: @@ -82669,7 +83220,7 @@ entities: - uid: 3083 components: - type: Transform - pos: 12.110945,-10.631439 + pos: 12.149673,-11.2968 parent: 2 - proto: FoodCondimentPacketAstrotame entities: @@ -82709,7 +83260,7 @@ entities: - type: Transform pos: 31.391466,-35.205338 parent: 2 -- proto: FoodDonutJellySlugcat +- proto: FoodDonutJellyScurret entities: - uid: 3759 components: @@ -82735,12 +83286,12 @@ entities: - uid: 2931 components: - type: Transform - pos: 12.857012,-10.447981 + pos: 12.639501,-11.578245 parent: 2 - uid: 2933 components: - type: Transform - pos: 12.318865,-10.1666765 + pos: 12.483173,-11.015354 parent: 2 - proto: FoodMeat entities: @@ -82972,6 +83523,8 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: GameMasterCircuitBoard entities: - uid: 16757 @@ -83248,6 +83801,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 24837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 24852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' - proto: GasPipeBend entities: - uid: 1543 @@ -95037,6 +95606,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 17011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' - uid: 17195 components: - type: Transform @@ -102475,6 +103052,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B3A234FF' +- proto: GasPressureRegulator + entities: + - uid: 24853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 2 + - type: GasPressureRegulator + threshold: 95000 + - type: AtmosPipeColor + color: '#3AB334FF' - proto: GasThermoMachineFreezer entities: - uid: 1626 @@ -116141,17 +116730,23 @@ entities: rot: 3.141592653589793 rad pos: 91.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16872 components: - type: Transform pos: 91.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17157 components: - type: Transform rot: -1.5707963267948966 rad pos: 92.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomCommon entities: - uid: 19637 @@ -116160,12 +116755,16 @@ entities: rot: 1.5707963267948966 rad pos: -33.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24129 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomEngineering entities: - uid: 16265 @@ -116174,18 +116773,24 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16266 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24823 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomMedical entities: - uid: 21749 @@ -116193,6 +116798,8 @@ entities: - type: Transform pos: -30.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomScience entities: - uid: 17571 @@ -116201,6 +116808,8 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSecurity entities: - uid: 12582 @@ -116209,12 +116818,16 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12601 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSupply entities: - uid: 13201 @@ -116223,6 +116836,8 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: JanitorialTrolley entities: - uid: 8743 @@ -116465,8 +117080,22 @@ entities: - uid: 3105 components: - type: Transform - pos: 12.487499,-11.286444 + pos: 13.753196,-10.815969 parent: 2 + - type: HandheldLight + toggleActionEntity: 5544 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 5544 + - type: ActionsContainer - uid: 5765 components: - type: Transform @@ -116614,6 +117243,8 @@ entities: 24822: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 12054 components: - type: MetaData @@ -116627,6 +117258,8 @@ entities: 10652: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonAtmospherics entities: - uid: 9424 @@ -116642,6 +117275,8 @@ entities: 2010: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23155 components: - type: Transform @@ -116656,6 +117291,8 @@ entities: 15216: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonBar entities: - uid: 18917 @@ -116677,6 +117314,8 @@ entities: 16090: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonBrig entities: - uid: 19649 @@ -116721,6 +117360,8 @@ entities: 24125: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonCaptain entities: - uid: 195 @@ -116758,6 +117399,8 @@ entities: 21880: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15649 components: - type: MetaData @@ -116774,6 +117417,8 @@ entities: 15647: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23359 components: - type: MetaData @@ -116796,6 +117441,8 @@ entities: 23361: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonCargo entities: - uid: 17447 @@ -116815,6 +117462,8 @@ entities: 368: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17478 components: - type: Transform @@ -116825,6 +117474,8 @@ entities: 9057: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17479 components: - type: Transform @@ -116835,6 +117486,8 @@ entities: 8141: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonChemistry entities: - uid: 21250 @@ -116883,6 +117536,8 @@ entities: 10414: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - proto: LockableButtonChiefEngineer entities: - uid: 17055 @@ -116901,6 +117556,8 @@ entities: 17053: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonChiefMedicalOfficer entities: - uid: 21233 @@ -116920,6 +117577,8 @@ entities: 21231: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonCommand entities: - uid: 15629 @@ -116953,6 +117612,8 @@ entities: 19575: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonEngineering entities: - uid: 11423 @@ -116974,6 +117635,8 @@ entities: 4048: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23448 components: - type: Transform @@ -116988,6 +117651,8 @@ entities: 1124: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23449 components: - type: Transform @@ -116998,6 +117663,8 @@ entities: 1124: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23450 components: - type: Transform @@ -117009,6 +117676,8 @@ entities: 9084: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonHeadOfPersonnel entities: - uid: 3577 @@ -117037,6 +117706,8 @@ entities: 15657: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 6338 components: - type: MetaData @@ -117049,6 +117720,8 @@ entities: 6351: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonHeadOfSecurity entities: - uid: 20774 @@ -117080,6 +117753,8 @@ entities: 20768: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonHydroponics entities: - uid: 16045 @@ -117105,6 +117780,8 @@ entities: 16037: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonKitchen entities: - uid: 16023 @@ -117124,6 +117801,8 @@ entities: 16027: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonMedical entities: - uid: 1550 @@ -117139,6 +117818,8 @@ entities: 2287: - - Pressed - Open + - type: Fixtures + fixtures: {} - uid: 2322 components: - type: MetaData @@ -117155,6 +117836,8 @@ entities: 2509: - - Pressed - Open + - type: Fixtures + fixtures: {} - uid: 3097 components: - type: MetaData @@ -117171,6 +117854,8 @@ entities: 2244: - - Pressed - Open + - type: Fixtures + fixtures: {} - uid: 5377 components: - type: Transform @@ -117184,6 +117869,8 @@ entities: 2244: - - Pressed - Open + - type: Fixtures + fixtures: {} - uid: 5465 components: - type: Transform @@ -117198,6 +117885,8 @@ entities: 967: - - Pressed - Open + - type: Fixtures + fixtures: {} - uid: 6574 components: - type: Transform @@ -117212,6 +117901,8 @@ entities: 2509: - - Pressed - Open + - type: Fixtures + fixtures: {} - uid: 21239 components: - type: Transform @@ -117241,6 +117932,8 @@ entities: 10807: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 21240 components: - type: Transform @@ -117270,6 +117963,8 @@ entities: 21248: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 22775 components: - type: MetaData @@ -117294,6 +117989,8 @@ entities: 22770: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonQuartermaster entities: - uid: 12052 @@ -117313,6 +118010,8 @@ entities: 12076: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonResearch entities: - uid: 6273 @@ -117328,6 +118027,8 @@ entities: 6787: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15433 components: - type: Transform @@ -117339,6 +118040,8 @@ entities: 4531: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonResearchDirector entities: - uid: 17743 @@ -117372,6 +118075,8 @@ entities: 17616: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonTheatre entities: - uid: 5329 @@ -117401,6 +118106,8 @@ entities: 4890: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockerAtmosphericsFilledHardsuit entities: - uid: 1204 @@ -117800,6 +118507,8 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: LockerWardenFilled entities: - uid: 11890 @@ -119356,6 +120065,11 @@ entities: - type: Transform pos: -19.5,13.5 parent: 2 + - uid: 21434 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 2 - uid: 21597 components: - type: Transform @@ -119798,6 +120512,8 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: MoonBattlemap entities: - uid: 6009 @@ -120128,22 +120844,30 @@ entities: - type: Transform pos: -21.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4942 components: - type: Transform pos: -9.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20234 components: - type: Transform pos: 30.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22765 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: NTDefaultCircuitBoard entities: - uid: 8217 @@ -120353,6 +121077,8 @@ entities: - type: Transform pos: 20.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingSkeletonCigarette entities: - uid: 21208 @@ -120360,6 +121086,8 @@ entities: - type: Transform pos: 27.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaladinCircuitBoard entities: - uid: 8200 @@ -120926,6 +121654,8 @@ entities: - type: Transform pos: 25.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Pitcher entities: - uid: 23121 @@ -121047,7 +121777,7 @@ entities: - uid: 719 components: - type: Transform - pos: 13.541924,-10.43575 + pos: 13.534338,-11.462252 parent: 2 - proto: PlushieCarp entities: @@ -121110,7 +121840,7 @@ entities: - uid: 1797 components: - type: Transform - pos: 12.514555,-9.457302 + pos: 12.463518,-10.409437 parent: 2 - proto: PlushieMoth entities: @@ -121280,6 +122010,8 @@ entities: - type: Transform pos: 46.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandHackingGuide entities: - uid: 2554 @@ -121287,6 +122019,8 @@ entities: - type: Transform pos: -14.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandLamarr entities: - uid: 12254 @@ -121294,6 +122028,8 @@ entities: - type: Transform pos: 25.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandMoth entities: - uid: 4205 @@ -121302,6 +122038,8 @@ entities: rot: 3.141592653589793 rad pos: 48.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandNuclearDeviceInformational entities: - uid: 4823 @@ -121309,6 +122047,8 @@ entities: - type: Transform pos: -30.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandTools entities: - uid: 2667 @@ -121316,6 +122056,8 @@ entities: - type: Transform pos: -18.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandVoteWeh entities: - uid: 14234 @@ -121323,6 +122065,8 @@ entities: - type: Transform pos: 19.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandWehWatches entities: - uid: 17180 @@ -121330,21 +122074,29 @@ entities: - type: Transform pos: 63.5,-79.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17217 components: - type: Transform pos: 63.5,-78.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17631 components: - type: Transform pos: 62.5,-76.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19978 components: - type: Transform pos: 61.5,-76.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitCleanliness entities: - uid: 14271 @@ -121352,6 +122104,8 @@ entities: - type: Transform pos: 22.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitCohibaRobustoAd entities: - uid: 8557 @@ -121359,6 +122113,8 @@ entities: - type: Transform pos: 47.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitFruitBowl entities: - uid: 22076 @@ -121366,6 +122122,8 @@ entities: - type: Transform pos: 19.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitMime entities: - uid: 10446 @@ -121373,6 +122131,8 @@ entities: - type: Transform pos: 6.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitNanotrasenLogo entities: - uid: 7865 @@ -121381,6 +122141,8 @@ entities: rot: 3.141592653589793 rad pos: 18.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitNoERP entities: - uid: 8119 @@ -121388,6 +122150,8 @@ entities: - type: Transform pos: 5.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitNTTGC entities: - uid: 584 @@ -121395,12 +122159,16 @@ entities: - type: Transform pos: 22.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22347 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PottedPlantRandom entities: - uid: 1032 @@ -125758,6 +126526,11 @@ entities: rot: 3.141592653589793 rad pos: -38.5,1.5 parent: 2 + - uid: 20628 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 2 - uid: 20679 components: - type: Transform @@ -133152,196 +133925,272 @@ entities: - type: Transform pos: 48.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5001 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6902 components: - type: Transform pos: -31.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8584 components: - type: Transform pos: 48.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10062 components: - type: Transform pos: -50.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11314 components: - type: Transform pos: -21.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12117 components: - type: Transform pos: 12.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12120 components: - type: Transform pos: 54.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12121 components: - type: Transform pos: 43.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12606 components: - type: Transform pos: 20.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15423 components: - type: Transform pos: 27.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16680 components: - type: Transform pos: -13.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16685 components: - type: Transform pos: -21.5,-56.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16686 components: - type: Transform pos: -13.5,-56.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22035 components: - type: Transform pos: 34.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22036 components: - type: Transform pos: 36.5,23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22164 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-74.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22165 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22166 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22167 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22210 components: - type: Transform pos: -39.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22211 components: - type: Transform pos: -39.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22212 components: - type: Transform pos: -36.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22213 components: - type: Transform pos: -5.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22214 components: - type: Transform pos: -5.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22216 components: - type: Transform pos: 8.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22582 components: - type: Transform pos: -18.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24320 components: - type: Transform pos: -30.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24321 components: - type: Transform pos: -30.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24322 components: - type: Transform pos: -40.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24324 components: - type: Transform pos: -38.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24325 components: - type: Transform pos: -18.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24719 components: - type: Transform pos: 69.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24720 components: - type: Transform pos: 80.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24722 components: - type: Transform pos: 87.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24723 components: - type: Transform pos: 87.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24724 components: - type: Transform pos: 95.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24725 components: - type: Transform pos: 95.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SecurityTechFab entities: - uid: 10674 @@ -133807,6 +134656,8 @@ entities: - type: Transform pos: -38.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ShuttersNormal entities: - uid: 4279 @@ -134470,6 +135321,8 @@ entities: - type: Transform pos: 82.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAiUpload entities: - uid: 16874 @@ -134478,6 +135331,8 @@ entities: rot: -1.5707963267948966 rad pos: 76.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignalButton entities: - uid: 3255 @@ -134491,6 +135346,8 @@ entities: 536: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 4282 components: - type: Transform @@ -134502,6 +135359,8 @@ entities: 113: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 4325 components: - type: Transform @@ -134512,6 +135371,8 @@ entities: 3508: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 13730 components: - type: Transform @@ -134526,6 +135387,8 @@ entities: 11221: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 15842 components: - type: Transform @@ -134537,6 +135400,8 @@ entities: 432: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 16054 components: - type: Transform @@ -134550,6 +135415,8 @@ entities: 21405: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 16057 components: - type: Transform @@ -134564,6 +135431,8 @@ entities: 6216: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 16058 components: - type: Transform @@ -134577,6 +135446,8 @@ entities: 5910: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 16059 components: - type: Transform @@ -134591,6 +135462,8 @@ entities: 4873: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 16117 components: - type: MetaData @@ -134604,6 +135477,8 @@ entities: 16118: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17553 components: - type: MetaData @@ -134617,6 +135492,8 @@ entities: 17552: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17657 components: - type: MetaData @@ -134630,6 +135507,8 @@ entities: 16102: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 21408 components: - type: Transform @@ -134643,6 +135522,8 @@ entities: 21406: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 21754 components: - type: MetaData @@ -134656,6 +135537,8 @@ entities: 21752: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 21755 components: - type: MetaData @@ -134669,6 +135552,8 @@ entities: 21751: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 22621 components: - type: Transform @@ -134680,6 +135565,8 @@ entities: 12433: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: SignalButtonDirectional entities: - uid: 3082 @@ -134697,6 +135584,8 @@ entities: 3779: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 24054 components: - type: MetaData @@ -134710,6 +135599,8 @@ entities: 24050: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: SignAnomaly entities: - uid: 4573 @@ -134717,6 +135608,8 @@ entities: - type: Transform pos: 35.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAnomaly2 entities: - uid: 5759 @@ -134724,6 +135617,8 @@ entities: - type: Transform pos: 36.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignArcade entities: - uid: 5774 @@ -134731,6 +135626,8 @@ entities: - type: Transform pos: 50.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAtmos entities: - uid: 1831 @@ -134738,6 +135635,8 @@ entities: - type: Transform pos: -7.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBar entities: - uid: 20198 @@ -134746,6 +135645,8 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCans entities: - uid: 2637 @@ -134753,6 +135654,8 @@ entities: - type: Transform pos: -11.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCansScience entities: - uid: 4466 @@ -134760,6 +135663,8 @@ entities: - type: Transform pos: 30.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCargo entities: - uid: 17554 @@ -134767,6 +135672,8 @@ entities: - type: Transform pos: 7.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCargoDock entities: - uid: 5328 @@ -134774,6 +135681,8 @@ entities: - type: Transform pos: 4.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChapel entities: - uid: 6131 @@ -134781,6 +135690,8 @@ entities: - type: Transform pos: 34.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChem entities: - uid: 11968 @@ -134788,6 +135699,8 @@ entities: - type: Transform pos: -25.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCryo entities: - uid: 3830 @@ -134795,12 +135708,16 @@ entities: - type: Transform pos: 12.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10906 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCryogenicsMed entities: - uid: 15241 @@ -134808,11 +135725,15 @@ entities: - type: Transform pos: -45.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21737 components: - type: Transform pos: -46.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBar entities: - uid: 16976 @@ -134820,18 +135741,24 @@ entities: - type: Transform pos: -21.5,-30.93 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17015 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22260 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.8,-46.3 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBridge entities: - uid: 1208 @@ -134839,23 +135766,31 @@ entities: - type: Transform pos: -14.50144,-5.7094235 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8742 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15465 components: - type: Transform pos: -21.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17069 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-19.3 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalDorms entities: - uid: 16978 @@ -134863,17 +135798,23 @@ entities: - type: Transform pos: -21.5,-31.36 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17068 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-19.7 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22514 components: - type: Transform pos: 29.5,9.3 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEng entities: - uid: 1207 @@ -134881,24 +135822,32 @@ entities: - type: Transform pos: -14.503758,-5.1075974 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4277 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-29.65 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22265 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.8,-46.7 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22506 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,9.3 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEscapePod entities: - uid: 13763 @@ -134907,6 +135856,8 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEvac entities: - uid: 31 @@ -134914,35 +135865,47 @@ entities: - type: Transform pos: 29.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2106 components: - type: Transform rot: 3.141592653589793 rad pos: -14.498774,0.6482439 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16972 components: - type: Transform pos: -21.5,-30.72 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17012 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22266 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.2,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22505 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,9.3 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalFood entities: - uid: 1206 @@ -134950,17 +135913,23 @@ entities: - type: Transform pos: -14.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9489 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-46.7 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16977 components: - type: Transform pos: -21.5,-31.15 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalJanitor entities: - uid: 22504 @@ -134969,6 +135938,8 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,9.7 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalLibrary entities: - uid: 22263 @@ -134977,6 +135948,8 @@ entities: rot: 1.5707963267948966 rad pos: 7.2,-46.7 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalMed entities: - uid: 1209 @@ -134984,30 +135957,40 @@ entities: - type: Transform pos: -14.50141,-5.3055983 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17013 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-19.7 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22262 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-46.3 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22501 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22509 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSci entities: - uid: 22264 @@ -135016,17 +135999,23 @@ entities: rot: 1.5707963267948966 rad pos: 7.2,-46.3 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22503 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22511 components: - type: Transform pos: 29.5,9.7 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSec entities: - uid: 17014 @@ -135035,30 +136024,40 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,-19.3 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21928 components: - type: Transform rot: 3.141592653589793 rad pos: -21.49749,-30.06194 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22261 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.8,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22507 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,9.7 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22512 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,9.7 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSolar entities: - uid: 6884 @@ -135067,29 +136066,39 @@ entities: rot: 3.141592653589793 rad pos: -38.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7925 components: - type: Transform pos: -50.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9126 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20235 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21606 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSupply entities: - uid: 2129 @@ -135098,18 +136107,24 @@ entities: rot: 3.141592653589793 rad pos: -14.498774,0.44130993 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16975 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-29.86 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22513 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,9.3 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalWash entities: - uid: 1805 @@ -135117,6 +136132,8 @@ entities: - type: Transform pos: 15.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignElectricalMed entities: - uid: 1748 @@ -135124,63 +136141,85 @@ entities: - type: Transform pos: 14.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4292 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4293 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4307 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10067 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11388 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12892 components: - type: Transform pos: -31.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13017 components: - type: Transform pos: -54.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17066 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17067 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17738 components: - type: Transform pos: 90.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEngine entities: - uid: 3936 @@ -135188,6 +136227,8 @@ entities: - type: Transform pos: -5.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEngineering entities: - uid: 47 @@ -135195,6 +136236,8 @@ entities: - type: Transform pos: -14.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEscapePods entities: - uid: 11251 @@ -135203,12 +136246,16 @@ entities: rot: 3.141592653589793 rad pos: 60.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22094 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEVA entities: - uid: 19223 @@ -135216,6 +136263,8 @@ entities: - type: Transform pos: -5.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignFlammableMed entities: - uid: 5841 @@ -135223,6 +136272,8 @@ entities: - type: Transform pos: 30.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignGenpop entities: - uid: 12374 @@ -135230,11 +136281,15 @@ entities: - type: Transform pos: -23.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12499 components: - type: Transform pos: -29.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignGravity entities: - uid: 22623 @@ -135242,6 +136297,8 @@ entities: - type: Transform pos: 29.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignInterrogation entities: - uid: 10877 @@ -135250,6 +136307,8 @@ entities: rot: 1.5707963267948966 rad pos: -33.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignJanitor entities: - uid: 5858 @@ -135258,6 +136317,8 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignKiddiePlaque entities: - uid: 4806 @@ -135265,6 +136326,8 @@ entities: - type: Transform pos: -28.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignKitchen entities: - uid: 5276 @@ -135273,12 +136336,16 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7063 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLawyer entities: - uid: 17070 @@ -135287,6 +136354,8 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLibrary entities: - uid: 5313 @@ -135294,11 +136363,15 @@ entities: - type: Transform pos: 12.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6410 components: - type: Transform pos: 12.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMagneticsMed entities: - uid: 21934 @@ -135306,6 +136379,8 @@ entities: - type: Transform pos: 15.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMail entities: - uid: 2679 @@ -135314,6 +136389,8 @@ entities: rot: 3.141592653589793 rad pos: 17.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMaterials entities: - uid: 2270 @@ -135321,6 +136398,8 @@ entities: - type: Transform pos: 29.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMedical entities: - uid: 12234 @@ -135329,6 +136408,8 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMorgue entities: - uid: 14118 @@ -135337,6 +136418,8 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNews entities: - uid: 628 @@ -135344,6 +136427,8 @@ entities: - type: Transform pos: 12.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNosmoking entities: - uid: 2105 @@ -135351,12 +136436,16 @@ entities: - type: Transform pos: -13.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17076 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignPlaque entities: - uid: 4944 @@ -135364,6 +136453,8 @@ entities: - type: Transform pos: -28.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignPsychology entities: - uid: 18 @@ -135372,6 +136463,8 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,-53.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRadiationMed entities: - uid: 17077 @@ -135380,6 +136473,8 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRedOne entities: - uid: 16962 @@ -135388,6 +136483,8 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRedThree entities: - uid: 21447 @@ -135396,6 +136493,8 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRedTwo entities: - uid: 21446 @@ -135404,6 +136503,8 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRobo entities: - uid: 4569 @@ -135411,6 +136512,8 @@ entities: - type: Transform pos: 31.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSalvage entities: - uid: 22415 @@ -135418,11 +136521,15 @@ entities: - type: Transform pos: 26.5,23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22473 components: - type: Transform pos: 13.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignScience entities: - uid: 4323 @@ -135430,11 +136537,15 @@ entities: - type: Transform pos: 18.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16013 components: - type: Transform pos: 31.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecureMed entities: - uid: 6263 @@ -135443,6 +136554,8 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecurity entities: - uid: 12382 @@ -135450,6 +136563,8 @@ entities: - type: Transform pos: -23.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignServer entities: - uid: 5592 @@ -135457,6 +136572,8 @@ entities: - type: Transform pos: 31.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignShipDock entities: - uid: 7242 @@ -135464,6 +136581,8 @@ entities: - type: Transform pos: 43.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSpace entities: - uid: 19866 @@ -135471,6 +136590,8 @@ entities: - type: Transform pos: 52.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSurgery entities: - uid: 12991 @@ -135478,11 +136599,15 @@ entities: - type: Transform pos: -45.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21308 components: - type: Transform pos: -40.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignToolStorage entities: - uid: 4712 @@ -135491,6 +136616,8 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignVault entities: - uid: 1917 @@ -135498,6 +136625,8 @@ entities: - type: Transform pos: -31.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignVirology entities: - uid: 21325 @@ -135505,6 +136634,8 @@ entities: - type: Transform pos: -50.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Sink entities: - uid: 786 @@ -137466,6 +138597,68 @@ entities: - type: Transform pos: 25.5,2.5 parent: 2 +- proto: SpawnPointLatejoin + entities: + - uid: 24838 + components: + - type: Transform + pos: -7.5,-74.5 + parent: 2 + - uid: 24839 + components: + - type: Transform + pos: -7.5,-73.5 + parent: 2 + - uid: 24840 + components: + - type: Transform + pos: -7.5,-72.5 + parent: 2 + - uid: 24841 + components: + - type: Transform + pos: -7.5,-66.5 + parent: 2 + - uid: 24842 + components: + - type: Transform + pos: -7.5,-67.5 + parent: 2 + - uid: 24843 + components: + - type: Transform + pos: -7.5,-68.5 + parent: 2 + - uid: 24844 + components: + - type: Transform + pos: 10.5,-66.5 + parent: 2 + - uid: 24845 + components: + - type: Transform + pos: 10.5,-67.5 + parent: 2 + - uid: 24846 + components: + - type: Transform + pos: 10.5,-68.5 + parent: 2 + - uid: 24847 + components: + - type: Transform + pos: 10.5,-74.5 + parent: 2 + - uid: 24848 + components: + - type: Transform + pos: 10.5,-73.5 + parent: 2 + - uid: 24849 + components: + - type: Transform + pos: 10.5,-72.5 + parent: 2 - proto: SpawnPointLawyer entities: - uid: 7280 @@ -138195,79 +139388,109 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1684 components: - type: Transform pos: 29.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5148 components: - type: Transform pos: 13.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6500 components: - type: Transform pos: 29.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7939 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8454 components: - type: Transform pos: -18.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12941 components: - type: Transform pos: -25.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14729 components: - type: Transform pos: 13.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16667 components: - type: Transform pos: -21.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16674 components: - type: Transform pos: 30.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16676 components: - type: Transform pos: 44.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16677 components: - type: Transform pos: 46.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16841 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21872 components: - type: Transform pos: -31.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23588 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: StationMapBroken entities: - uid: 1347 @@ -138275,6 +139498,8 @@ entities: - type: Transform pos: 33.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: StatueVenusBlue entities: - uid: 10580 @@ -140045,6 +141270,8 @@ entities: rot: 3.141592653589793 rad pos: 49.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Syringe entities: - uid: 907 @@ -143952,11 +145179,15 @@ entities: - type: Transform pos: 11.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14992 components: - type: Transform pos: 1.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallReinforced entities: - uid: 12 @@ -151255,11 +152486,6 @@ entities: - type: Transform pos: 61.5,-55.5 parent: 2 - - uid: 22132 - components: - - type: Transform - pos: 12.5,-8.5 - parent: 2 - uid: 22134 components: - type: Transform @@ -151512,6 +152738,11 @@ entities: - type: Transform pos: -49.5,-2.5 parent: 2 + - uid: 5018 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 2 - uid: 5247 components: - type: Transform @@ -153712,11 +154943,6 @@ entities: - type: Transform pos: -43.5,-47.5 parent: 2 - - uid: 17011 - components: - - type: Transform - pos: 11.5,-8.5 - parent: 2 - uid: 17062 components: - type: Transform @@ -153742,6 +154968,11 @@ entities: - type: Transform pos: 49.5,18.5 parent: 2 + - uid: 17579 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 2 - uid: 17728 components: - type: Transform @@ -155429,11 +156660,6 @@ entities: - type: Transform pos: 44.5,-7.5 parent: 2 - - uid: 5544 - components: - - type: Transform - pos: 14.5,-8.5 - parent: 2 - uid: 5547 components: - type: Transform @@ -157859,6 +159085,11 @@ entities: - type: Transform pos: 45.5,-35.5 parent: 2 + - uid: 24851 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 2 - proto: WallSolidRust entities: - uid: 177 @@ -159565,6 +160796,8 @@ entities: - type: Transform pos: -4.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningN2 entities: - uid: 1964 @@ -159572,6 +160805,8 @@ entities: - type: Transform pos: -8.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningO2 entities: - uid: 1963 @@ -159579,6 +160814,8 @@ entities: - type: Transform pos: -6.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningPlasma entities: - uid: 1966 @@ -159586,6 +160823,8 @@ entities: - type: Transform pos: -0.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningWaste entities: - uid: 1709 @@ -159594,6 +160833,8 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WaterCooler entities: - uid: 617 diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index bb8b60d624..5a47956c85 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 265.0.0 + engineVersion: 266.0.0 forkId: "" forkVersion: "" - time: 08/01/2025 09:46:27 - entityCount: 25505 + time: 08/29/2025 14:48:28 + entityCount: 25523 maps: - 943 grids: @@ -319,19 +319,19 @@ entities: version: 7 -2,2: ind: -2,2 - tiles: fgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAADAF0AAAAAAQBdAAAAAAEAXQAAAAACAF0AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAMAfgAAAAAAAF0AAAAAAQBPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEATwAAAAAAAAUAAAAAAAB+AAAAAAAATwAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAACAB8AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAQB+AAAAAAAAXQAAAAADAE8AAAAAAABPAAAAAAAAfgAAAAAAAE8AAAAAAAAfAAAAAAEATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAAfAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAMAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAABAH4AAAAAAAAfAAAAAAMAHwAAAAABAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgB+AAAAAAAAHwAAAAACAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAUQAAAAAAAA== + tiles: fgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAADAF0AAAAAAQBdAAAAAAEAXQAAAAACAF0AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAMAfgAAAAAAAF0AAAAAAQBPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEATwAAAAAAAAUAAAAAAAB+AAAAAAAATwAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAACAB8AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAQB+AAAAAAAAXQAAAAADAE8AAAAAAABPAAAAAAAAfgAAAAAAAE8AAAAAAAAfAAAAAAEATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAAfAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAMAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAABAH4AAAAAAAAfAAAAAAMAHwAAAAABAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgB+AAAAAAAAHwAAAAACAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAA== version: 7 -1,3: ind: -1,3 - tiles: UQAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAA== + tiles: bAAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAGwAAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAA== version: 7 -1,2: ind: -1,2 - tiles: TwAAAAAAAF0AAAAAAQB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAIAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAAfAAAAAAMAXQAAAAADAE8AAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAHwAAAAAAAF0AAAAAAgBPAAAAAAAAXQAAAAACAH4AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAMAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAABAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAQBsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAG0AAAAAAABtAAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAABtAAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAbQAAAAAAAG0AAAAAAAAfAAAAAAAAHwAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAHwAAAAACAB8AAAAAAwBsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAG0AAAAAAABtAAAAAAAAbQAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAbQAAAAAAAG0AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAA== + tiles: TwAAAAAAAF0AAAAAAQB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAIAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAAfAAAAAAMAXQAAAAADAE8AAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAHwAAAAAAAF0AAAAAAgBPAAAAAAAAXQAAAAACAH4AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAMAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAABAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAQBsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAG0AAAAAAABtAAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAABtAAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAbQAAAAAAAG0AAAAAAAAfAAAAAAAAHwAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAHwAAAAACAB8AAAAAAwBsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAG0AAAAAAABtAAAAAAAAbQAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAbQAAAAAAAG0AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAA== version: 7 -3,2: ind: -3,2 - tiles: fgAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAA== + tiles: fgAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAA== version: 7 0,3: ind: 0,3 @@ -339,11 +339,11 @@ entities: version: 7 -3,3: ind: -3,3 - tiles: fQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAA== version: 7 -2,3: ind: -2,3 - tiles: fQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABRAAAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAA== + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAA== version: 7 0,2: ind: 0,2 @@ -888,7 +888,6 @@ entities: 1044: 3,-71 1045: 3,-64 3290: -36,31 - 3301: -26,38 3687: 47,-23 3691: -40,-4 4105: 54,7 @@ -998,12 +997,6 @@ entities: id: Blasto decals: 2403: -46.09135,-29.907255 - - node: - color: '#DE3A3A96' - id: Bot - decals: - 3292: -20,41 - 3295: -13,39 - node: angle: -6.283185307179586 rad color: '#FFFFFFFF' @@ -1178,12 +1171,15 @@ entities: id: BotGreyscale decals: 5646: 6,35 + - node: + color: '#18A2D5FF' + id: BotGreyscale + decals: + 7247: -14,41 - node: color: '#52B4E996' id: BotGreyscale decals: - 3293: -21,41 - 3294: -14,39 3671: 49,-9 3672: 48,-9 - node: @@ -1197,6 +1193,11 @@ entities: id: BotGreyscale decals: 7199: -30,-10 + - node: + color: '#951710FF' + id: BotGreyscale + decals: + 7248: -20,41 - node: color: '#FFFFFFFF' id: BotGreyscale @@ -1219,7 +1220,6 @@ entities: 1980: -43,-11 2747: 4,-37 3204: 6,-36 - 3299: -19,46 3673: 50,-11 3841: 4,-47 3897: 5,-47 @@ -1271,6 +1271,11 @@ entities: id: BotLeftGreyscale decals: 2385: 39,-6 + 7231: -11,43 + 7232: -11,42 + 7233: -11,41 + 7234: -11,40 + 7235: -11,39 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -1302,7 +1307,6 @@ entities: 2244: 5,13 2748: 4,-36 3205: 6,-37 - 3300: -15,46 - node: color: '#FF8FC9FF' id: BotRightGreyscale @@ -1351,8 +1355,6 @@ entities: color: '#FFFFFFFF' id: BoxGreyscale decals: - 3297: -24,45 - 3298: -23,46 5588: 4,36 5589: 4,35 5590: 4,34 @@ -2816,10 +2818,6 @@ entities: 2901: -18,26 3048: 23,3 3061: 38,1 - 3296: -21,43 - 3303: -17,47 - 3304: -18,48 - 3305: -16,48 3384: 1,-27 3385: 0,-27 3386: -1,-27 @@ -2884,6 +2882,11 @@ entities: 5694: 7,37 5695: 6,37 5696: 5,37 + 7236: -18,46 + 7237: -16,46 + 7239: -17,50 + 7240: -19,48 + 7241: -17,47 - node: cleanable: True color: '#FFFFFFFF' @@ -5594,7 +5597,6 @@ entities: 3175: -5,-64 3176: 5,-64 3177: 39,-47 - 3302: -17,48 - node: color: '#FFFFFFFF' id: WarnCorner @@ -5660,6 +5662,7 @@ entities: 5794: -15,2 7225: -19,-18 7226: -23,-16 + 7245: -18,49 - node: zIndex: 5 color: '#FFFFFFFF' @@ -5679,6 +5682,7 @@ entities: 5445: 2,36 7205: -31,-10 7224: -17,-18 + 7244: -16,49 - node: zIndex: 5 color: '#FFFFFFFF' @@ -5716,6 +5720,7 @@ entities: 5482: 2,41 7204: -31,-7 7222: -19,-16 + 7246: -18,49 - node: zIndex: 5 color: '#FFFFFFFF' @@ -6039,16 +6044,6 @@ entities: 1780: -2,-25 2543: 39,-35 2994: -41,23 - 3306: -15,48 - 3307: -14,48 - 3308: -13,48 - 3309: -12,48 - 3310: -11,48 - 3311: -19,48 - 3312: -20,48 - 3313: -21,48 - 3314: -22,48 - 3315: -23,48 3331: -18,42 3332: -17,42 3333: -16,42 @@ -6123,6 +6118,7 @@ entities: 6921: -35,-6 7200: -31,-9 7201: -31,-8 + 7242: -18,48 - node: color: '#FFFFFFFF' id: WarnLineW @@ -6158,18 +6154,6 @@ entities: 2995: -41,25 3039: 1,29 3040: -1,29 - 3316: -16,51 - 3317: -15,51 - 3318: -14,51 - 3319: -13,51 - 3320: -12,51 - 3321: -11,51 - 3322: -18,51 - 3323: -19,51 - 3324: -20,51 - 3325: -21,51 - 3326: -22,51 - 3327: -23,51 3335: -16,40 3336: -17,40 3337: -18,40 @@ -6210,6 +6194,7 @@ entities: 5583: 8,28 6792: -27,-23 6825: -18,-18 + 7243: -17,49 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -7135,9 +7120,9 @@ entities: -7,-7: 0: 63726 -7,-6: - 0: 63743 + 0: 47359 -7,-5: - 0: 48127 + 0: 65531 -7,-9: 0: 65160 1: 2 @@ -8448,13 +8433,11 @@ entities: 0: 255 1: 57344 -8,11: - 6: 816 - 1: 34952 + 6: 13104 + 1: 2184 -9,11: - 6: 2176 - 1: 8738 - -8,12: - 1: 34959 + 6: 34944 + 1: 546 -7,9: 0: 65039 -7,10: @@ -8462,8 +8445,8 @@ entities: -7,11: 0: 20206 -7,12: - 1: 49153 - 0: 1228 + 0: 1126 + 1: 61440 -6,9: 0: 65518 -6,10: @@ -8471,7 +8454,8 @@ entities: -6,11: 0: 4095 -6,12: - 6: 61166 + 6: 49425 + 1: 4334 -5,9: 0: 65528 -5,10: @@ -8479,8 +8463,9 @@ entities: -5,11: 0: 36863 -5,12: - 6: 30515 - 0: 12 + 1: 32785 + 0: 2254 + 6: 20480 -4,9: 0: 65528 -4,10: @@ -8488,12 +8473,14 @@ entities: -4,11: 0: 4095 -4,12: - 0: 1 - 6: 65518 + 0: 17 + 1: 29772 -4,13: - 1: 61680 + 1: 61599 + 6: 1120 -5,13: - 1: 63728 + 1: 61644 + 6: 2065 -4,14: 1: 51448 -5,14: @@ -8505,10 +8492,11 @@ entities: -4,16: 1: 3276 -3,12: - 6: 13107 - 1: 32904 + 1: 37273 + 6: 8226 -3,13: - 1: 45240 + 1: 45193 + 6: 50 -3,15: 1: 45346 0: 136 @@ -8610,17 +8598,13 @@ entities: 6: 1 1: 17476 -11,12: - 1: 17487 + 1: 17652 -10,9: 0: 65535 -10,10: 0: 65535 -10,11: - 0: 4095 - -10,12: - 1: 15 - -9,12: - 1: 15 + 0: 65535 0,16: 1: 2294 1,12: @@ -8670,7 +8654,7 @@ entities: 3,14: 1: 58978 -12,12: - 1: 15 + 1: 240 -13,12: 1: 34952 5: 48 @@ -8685,10 +8669,14 @@ entities: 1: 128 -11,14: 1: 3320 + -10,12: + 1: 240 -10,13: 1: 61455 -10,14: 1: 61439 + -9,12: + 1: 240 -9,13: 1: 61455 -9,14: @@ -8697,6 +8685,8 @@ entities: 1: 17476 -9,16: 1: 50372 + -8,12: + 1: 35056 -8,13: 1: 63631 -8,14: @@ -8716,7 +8706,8 @@ entities: -7,16: 1: 65524 -6,13: - 1: 61680 + 1: 61457 + 6: 204 -6,14: 1: 17648 -6,15: @@ -9670,8 +9661,8 @@ entities: id: docking43669 localAnchorB: -47.5,-40 localAnchorA: 0.5,0 - damping: 1560.8187 - stiffness: 14009.876 + damping: 1560.8403 + stiffness: 14010.071 - type: ImplicitRoof - proto: AcousticGuitarInstrument entities: @@ -9700,6 +9691,8 @@ entities: - 109 - 8416 - 9157 + - type: Fixtures + fixtures: {} - uid: 982 components: - type: Transform @@ -9710,11 +9703,15 @@ entities: devices: - 6308 - 1721 + - type: Fixtures + fixtures: {} - uid: 1143 components: - type: Transform pos: -12.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 1229 components: - type: Transform @@ -9726,6 +9723,8 @@ entities: - 11525 - 13248 - 21646 + - type: Fixtures + fixtures: {} - uid: 1720 components: - type: Transform @@ -9737,6 +9736,8 @@ entities: - 2508 - 258 - 238 + - type: Fixtures + fixtures: {} - uid: 4046 components: - type: Transform @@ -9748,6 +9749,8 @@ entities: - 4502 - 5518 - 12511 + - type: Fixtures + fixtures: {} - uid: 5092 components: - type: Transform @@ -9767,6 +9770,8 @@ entities: - 21169 - 21166 - 21088 + - type: Fixtures + fixtures: {} - uid: 5105 components: - type: Transform @@ -9777,6 +9782,8 @@ entities: - 5065 - 7485 - 7463 + - type: Fixtures + fixtures: {} - uid: 7065 components: - type: Transform @@ -9788,6 +9795,8 @@ entities: - 9471 - 9382 - 9674 + - type: Fixtures + fixtures: {} - uid: 7116 components: - type: Transform @@ -9802,6 +9811,8 @@ entities: - 6661 - 7343 - 6789 + - type: Fixtures + fixtures: {} - uid: 7125 components: - type: Transform @@ -9824,6 +9835,8 @@ entities: - 21029 - 21084 - 21087 + - type: Fixtures + fixtures: {} - uid: 8212 components: - type: Transform @@ -9834,6 +9847,8 @@ entities: devices: - 13667 - 6097 + - type: Fixtures + fixtures: {} - uid: 8283 components: - type: Transform @@ -9843,6 +9858,8 @@ entities: devices: - 7918 - 7650 + - type: Fixtures + fixtures: {} - uid: 8295 components: - type: Transform @@ -9853,6 +9870,8 @@ entities: devices: - 7164 - 7656 + - type: Fixtures + fixtures: {} - uid: 8296 components: - type: Transform @@ -9862,6 +9881,8 @@ entities: devices: - 7685 - 6136 + - type: Fixtures + fixtures: {} - uid: 8297 components: - type: Transform @@ -9872,6 +9893,8 @@ entities: devices: - 7741 - 6333 + - type: Fixtures + fixtures: {} - uid: 8326 components: - type: Transform @@ -9882,6 +9905,8 @@ entities: devices: - 7684 - 6098 + - type: Fixtures + fixtures: {} - uid: 8352 components: - type: Transform @@ -9891,12 +9916,16 @@ entities: devices: - 7649 - 7612 + - type: Fixtures + fixtures: {} - uid: 8413 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-1.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 8483 components: - type: Transform @@ -9907,6 +9936,8 @@ entities: devices: - 116 - 7099 + - type: Fixtures + fixtures: {} - uid: 8516 components: - type: Transform @@ -9919,11 +9950,15 @@ entities: - 9150 - 1682 - 8942 + - type: Fixtures + fixtures: {} - uid: 8669 components: - type: Transform pos: -33.5,6.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11464 components: - type: Transform @@ -9936,6 +9971,8 @@ entities: - 9428 - 9631 - 9472 + - type: Fixtures + fixtures: {} - uid: 11559 components: - type: Transform @@ -9948,6 +9985,8 @@ entities: - 5962 - 1660 - 1581 + - type: Fixtures + fixtures: {} - uid: 12512 components: - type: Transform @@ -9965,6 +10004,8 @@ entities: - 18825 - 5831 - 5439 + - type: Fixtures + fixtures: {} - uid: 12751 components: - type: Transform @@ -9976,6 +10017,8 @@ entities: - 7 - 913 - 910 + - type: Fixtures + fixtures: {} - uid: 13112 components: - type: Transform @@ -9986,6 +10029,8 @@ entities: devices: - 18653 - 18658 + - type: Fixtures + fixtures: {} - uid: 13252 components: - type: Transform @@ -9996,6 +10041,8 @@ entities: devices: - 16666 - 16667 + - type: Fixtures + fixtures: {} - uid: 13697 components: - type: Transform @@ -10006,6 +10053,8 @@ entities: devices: - 3493 - 4057 + - type: Fixtures + fixtures: {} - uid: 13971 components: - type: Transform @@ -10016,6 +10065,8 @@ entities: devices: - 13623 - 8030 + - type: Fixtures + fixtures: {} - uid: 14670 components: - type: Transform @@ -10025,6 +10076,8 @@ entities: devices: - 13444 - 21651 + - type: Fixtures + fixtures: {} - uid: 14924 components: - type: Transform @@ -10037,6 +10090,18 @@ entities: - 18260 - 18539 - 18540 + - type: Fixtures + fixtures: {} + - uid: 15138 + components: + - type: Transform + pos: -18.5,47.5 + parent: 60 + - type: DeviceList + devices: + - 15481 + - type: Fixtures + fixtures: {} - uid: 16330 components: - type: Transform @@ -10049,6 +10114,8 @@ entities: - 16171 - 16196 - 21527 + - type: Fixtures + fixtures: {} - uid: 19868 components: - type: Transform @@ -10063,6 +10130,8 @@ entities: - 7030 - 12623 - 5404 + - type: Fixtures + fixtures: {} - uid: 21270 components: - type: Transform @@ -10073,6 +10142,8 @@ entities: - 21328 - 21327 - 21985 + - type: Fixtures + fixtures: {} - uid: 21483 components: - type: Transform @@ -10087,6 +10158,8 @@ entities: - 428 - 426 - 21485 + - type: Fixtures + fixtures: {} - uid: 21488 components: - type: Transform @@ -10101,6 +10174,8 @@ entities: - 18425 - 18429 - 18430 + - type: Fixtures + fixtures: {} - uid: 21489 components: - type: Transform @@ -10113,6 +10188,8 @@ entities: - 18257 - 21491 - 18608 + - type: Fixtures + fixtures: {} - uid: 21499 components: - type: Transform @@ -10129,6 +10206,8 @@ entities: - 673 - 1455 - 1456 + - type: Fixtures + fixtures: {} - uid: 21515 components: - type: Transform @@ -10144,6 +10223,8 @@ entities: - 5739 - 5411 - 5412 + - type: Fixtures + fixtures: {} - uid: 21537 components: - type: Transform @@ -10158,6 +10239,8 @@ entities: - 21538 - 18668 - 18685 + - type: Fixtures + fixtures: {} - uid: 21540 components: - type: Transform @@ -10176,6 +10259,8 @@ entities: - 13563 - 19055 - 19054 + - type: Fixtures + fixtures: {} - uid: 21542 components: - type: Transform @@ -10191,6 +10276,8 @@ entities: - 21544 - 13075 - 13074 + - type: Fixtures + fixtures: {} - uid: 21546 components: - type: Transform @@ -10208,6 +10295,8 @@ entities: - 19851 - 19850 - 19843 + - type: Fixtures + fixtures: {} - uid: 21552 components: - type: Transform @@ -10226,6 +10315,8 @@ entities: - 13241 - 6300 - 6299 + - type: Fixtures + fixtures: {} - uid: 21557 components: - type: Transform @@ -10242,6 +10333,8 @@ entities: - 4369 - 1198 - 4546 + - type: Fixtures + fixtures: {} - uid: 21561 components: - type: Transform @@ -10258,6 +10351,8 @@ entities: - 179 - 127 - 223 + - type: Fixtures + fixtures: {} - uid: 21564 components: - type: Transform @@ -10270,6 +10365,8 @@ entities: - 5822 - 629 - 5820 + - type: Fixtures + fixtures: {} - uid: 21567 components: - type: Transform @@ -10280,6 +10377,8 @@ entities: - 2084 - 2360 - 2370 + - type: Fixtures + fixtures: {} - uid: 21570 components: - type: Transform @@ -10297,6 +10396,8 @@ entities: - 2215 - 5823 - 2205 + - type: Fixtures + fixtures: {} - uid: 21572 components: - type: Transform @@ -10313,6 +10414,8 @@ entities: - 21574 - 9046 - 12633 + - type: Fixtures + fixtures: {} - uid: 21577 components: - type: Transform @@ -10328,6 +10431,8 @@ entities: - 3027 - 2996 - 2984 + - type: Fixtures + fixtures: {} - uid: 21585 components: - type: Transform @@ -10342,6 +10447,8 @@ entities: - 9063 - 9061 - 5445 + - type: Fixtures + fixtures: {} - uid: 21587 components: - type: Transform @@ -10356,6 +10463,8 @@ entities: - 2687 - 2680 - 5466 + - type: Fixtures + fixtures: {} - uid: 21588 components: - type: Transform @@ -10367,6 +10476,8 @@ entities: - 12868 - 21590 - 1246 + - type: Fixtures + fixtures: {} - uid: 21592 components: - type: Transform @@ -10389,6 +10500,8 @@ entities: - 19840 - 19841 - 19842 + - type: Fixtures + fixtures: {} - uid: 21593 components: - type: Transform @@ -10399,6 +10512,8 @@ entities: devices: - 1385 - 1397 + - type: Fixtures + fixtures: {} - uid: 21595 components: - type: Transform @@ -10418,6 +10533,8 @@ entities: - 4944 - 8137 - 8136 + - type: Fixtures + fixtures: {} - uid: 21612 components: - type: Transform @@ -10434,6 +10551,8 @@ entities: - 1787 - 1771 - 21615 + - type: Fixtures + fixtures: {} - uid: 21616 components: - type: Transform @@ -10452,6 +10571,8 @@ entities: - 7537 - 946 - 8960 + - type: Fixtures + fixtures: {} - uid: 21619 components: - type: Transform @@ -10466,6 +10587,8 @@ entities: - 12594 - 5938 - 12571 + - type: Fixtures + fixtures: {} - uid: 21622 components: - type: Transform @@ -10485,6 +10608,8 @@ entities: - 5980 - 21625 - 9017 + - type: Fixtures + fixtures: {} - uid: 21629 components: - type: Transform @@ -10499,6 +10624,8 @@ entities: - 21632 - 9678 - 9677 + - type: Fixtures + fixtures: {} - uid: 21634 components: - type: Transform @@ -10514,6 +10641,8 @@ entities: - 1996 - 719 - 972 + - type: Fixtures + fixtures: {} - uid: 21636 components: - type: Transform @@ -10526,6 +10655,8 @@ entities: - 14502 - 14503 - 14501 + - type: Fixtures + fixtures: {} - uid: 21640 components: - type: Transform @@ -10546,6 +10677,8 @@ entities: - 6593 - 6785 - 6661 + - type: Fixtures + fixtures: {} - uid: 21647 components: - type: Transform @@ -10561,6 +10694,8 @@ entities: - 21648 - 16559 - 16560 + - type: Fixtures + fixtures: {} - uid: 21652 components: - type: Transform @@ -10573,6 +10708,8 @@ entities: - 21656 - 21654 - 16684 + - type: Fixtures + fixtures: {} - uid: 21705 components: - type: Transform @@ -10591,6 +10728,8 @@ entities: - 16642 - 16681 - 16682 + - type: Fixtures + fixtures: {} - uid: 21710 components: - type: Transform @@ -10606,6 +10745,8 @@ entities: - 16557 - 16718 - 16633 + - type: Fixtures + fixtures: {} - uid: 21746 components: - type: Transform @@ -10623,6 +10764,8 @@ entities: - 21681 - 21678 - 21674 + - type: Fixtures + fixtures: {} - uid: 21773 components: - type: Transform @@ -10640,6 +10783,8 @@ entities: - 4369 - 1198 - 4546 + - type: Fixtures + fixtures: {} - uid: 22470 components: - type: Transform @@ -10657,6 +10802,8 @@ entities: - 23045 - 22906 - 22878 + - type: Fixtures + fixtures: {} - uid: 22471 components: - type: Transform @@ -10671,6 +10818,8 @@ entities: - 23046 - 22894 - 23054 + - type: Fixtures + fixtures: {} - uid: 22472 components: - type: Transform @@ -10682,6 +10831,8 @@ entities: - 23014 - 23041 - 22882 + - type: Fixtures + fixtures: {} - uid: 22473 components: - type: Transform @@ -10692,6 +10843,8 @@ entities: - 22886 - 23047 - 22907 + - type: Fixtures + fixtures: {} - uid: 22474 components: - type: Transform @@ -10703,6 +10856,8 @@ entities: - 23051 - 22891 - 23020 + - type: Fixtures + fixtures: {} - uid: 22491 components: - type: Transform @@ -10713,6 +10868,8 @@ entities: - 22879 - 23042 - 23013 + - type: Fixtures + fixtures: {} - uid: 23768 components: - type: Transform @@ -10727,6 +10884,8 @@ entities: - 21643 - 17627 - 17632 + - type: Fixtures + fixtures: {} - uid: 23922 components: - type: Transform @@ -10737,6 +10896,8 @@ entities: devices: - 18652 - 18657 + - type: Fixtures + fixtures: {} - uid: 23924 components: - type: Transform @@ -10746,6 +10907,8 @@ entities: devices: - 16668 - 16669 + - type: Fixtures + fixtures: {} - uid: 23956 components: - type: Transform @@ -10757,6 +10920,8 @@ entities: - 23975 - 14770 - 3594 + - type: Fixtures + fixtures: {} - uid: 24360 components: - type: Transform @@ -10768,6 +10933,8 @@ entities: - 24361 - 24358 - 9016 + - type: Fixtures + fixtures: {} - uid: 24769 components: - type: Transform @@ -10782,6 +10949,8 @@ entities: - 4730 - 7476 - 7488 + - type: Fixtures + fixtures: {} - uid: 24792 components: - type: Transform @@ -10792,6 +10961,8 @@ entities: - 19529 - 18884 - 18906 + - type: Fixtures + fixtures: {} - uid: 25155 components: - type: Transform @@ -10804,6 +10975,8 @@ entities: - 21556 - 19057 - 19058 + - type: Fixtures + fixtures: {} - uid: 25157 components: - type: Transform @@ -10816,6 +10989,8 @@ entities: - 25311 - 25183 - 24834 + - type: Fixtures + fixtures: {} - uid: 25162 components: - type: Transform @@ -10829,6 +11004,8 @@ entities: - 25175 - 25176 - 25173 + - type: Fixtures + fixtures: {} - uid: 25163 components: - type: Transform @@ -10842,6 +11019,8 @@ entities: - 25165 - 25179 - 25178 + - type: Fixtures + fixtures: {} - uid: 25519 components: - type: Transform @@ -10852,6 +11031,8 @@ entities: - 25900 - 25901 - 25902 + - type: Fixtures + fixtures: {} - uid: 25520 components: - type: Transform @@ -10863,6 +11044,8 @@ entities: - 25469 - 25468 - 16588 + - type: Fixtures + fixtures: {} - uid: 25521 components: - type: Transform @@ -10879,6 +11062,8 @@ entities: - 15310 - 25524 - 21527 + - type: Fixtures + fixtures: {} - uid: 25535 components: - type: Transform @@ -10889,6 +11074,8 @@ entities: - 25532 - 25534 - 25533 + - type: Fixtures + fixtures: {} - proto: AirAlarmElectronics entities: - uid: 13488 @@ -11957,27 +12144,33 @@ entities: 5497: - - DoorStatus - DoorBolt - - uid: 15525 + - uid: 15562 + components: + - type: Transform + pos: -18.5,48.5 + parent: 60 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 16164: + - - DoorStatus + - DoorBolt + - uid: 16164 components: - - type: MetaData - name: Heat Room Airlock - type: Transform pos: -16.5,47.5 parent: 60 - - uid: 15540 - components: - - type: MetaData - name: Heat Room 2 - - type: Transform - pos: -15.5,48.5 - parent: 60 - - uid: 15572 - components: - - type: MetaData - name: Heat Room 1 - - type: Transform - pos: -17.5,48.5 - parent: 60 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 15562: + - - DoorStatus + - DoorBolt + 16839: + - - DoorStatus + - DoorBolt - uid: 16407 components: - type: Transform @@ -12074,6 +12267,18 @@ entities: 25536: - - DoorStatus - InputB + - uid: 16839 + components: + - type: Transform + pos: -16.5,50.5 + parent: 60 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 16164: + - - DoorStatus + - DoorBolt - uid: 17481 components: - type: Transform @@ -12089,6 +12294,8 @@ entities: - type: Transform pos: -25.5,50.5 parent: 60 + - type: DeviceLinkSink + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: 17481: @@ -14002,6 +14209,14 @@ entities: - type: Transform pos: -53.5,-3.5 parent: 60 + - uid: 15481 + components: + - type: Transform + pos: -20.5,51.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 15138 - uid: 16588 components: - type: Transform @@ -14516,6 +14731,8 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-33.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 322 components: - type: MetaData @@ -14524,6 +14741,8 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,-7.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 548 components: - type: MetaData @@ -14532,6 +14751,8 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,-22.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 834 components: - type: MetaData @@ -14541,6 +14762,8 @@ entities: parent: 60 - type: Battery startingCharge: 12000 + - type: Fixtures + fixtures: {} - uid: 1443 components: - type: MetaData @@ -14549,6 +14772,8 @@ entities: rot: 3.141592653589793 rad pos: -12.5,1.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 2277 components: - type: MetaData @@ -14556,6 +14781,8 @@ entities: - type: Transform pos: -9.5,30.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 2576 components: - type: MetaData @@ -14563,6 +14790,8 @@ entities: - type: Transform pos: 11.5,-29.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 2594 components: - type: MetaData @@ -14571,6 +14800,8 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,20.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 3339 components: - type: MetaData @@ -14584,6 +14815,8 @@ entities: loadingNetworkDemand: 50 currentReceiving: 50.009815 currentSupply: 50 + - type: Fixtures + fixtures: {} - uid: 3390 components: - type: MetaData @@ -14591,6 +14824,8 @@ entities: - type: Transform pos: -60.5,-16.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 3420 components: - type: MetaData @@ -14599,6 +14834,8 @@ entities: rot: 3.141592653589793 rad pos: 46.5,5.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 3775 components: - type: MetaData @@ -14606,6 +14843,8 @@ entities: - type: Transform pos: 46.5,3.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 3826 components: - type: MetaData @@ -14613,6 +14852,8 @@ entities: - type: Transform pos: -1.5,-74.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 3907 components: - type: MetaData @@ -14621,11 +14862,15 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-42.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 4009 components: - type: Transform pos: -20.5,-16.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 4086 components: - type: MetaData @@ -14634,6 +14879,8 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,-44.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 4182 components: - type: MetaData @@ -14648,6 +14895,8 @@ entities: currentReceiving: 69.9903 currentSupply: 70 supplyRampPosition: 0.00969696 + - type: Fixtures + fixtures: {} - uid: 4526 components: - type: MetaData @@ -14656,6 +14905,8 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,14.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 5093 components: - type: MetaData @@ -14663,6 +14914,8 @@ entities: - type: Transform pos: -15.5,-52.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 5503 components: - type: MetaData @@ -14671,6 +14924,8 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-33.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 5589 components: - type: MetaData @@ -14685,6 +14940,8 @@ entities: currentReceiving: 450.00043 currentSupply: 450 supplyRampPosition: -0.0004272461 + - type: Fixtures + fixtures: {} - uid: 5669 components: - type: MetaData @@ -14692,6 +14949,8 @@ entities: - type: Transform pos: -52.5,5.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 5807 components: - type: MetaData @@ -14699,11 +14958,15 @@ entities: - type: Transform pos: -47.5,-22.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 6042 components: - type: Transform pos: 36.5,-15.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 6162 components: - type: MetaData @@ -14712,6 +14975,8 @@ entities: rot: 3.141592653589793 rad pos: -41.5,-11.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 6263 components: - type: MetaData @@ -14725,6 +14990,8 @@ entities: loadingNetworkDemand: 25 currentSupply: 25 supplyRampPosition: 25 + - type: Fixtures + fixtures: {} - uid: 6975 components: - type: MetaData @@ -14732,6 +14999,8 @@ entities: - type: Transform pos: 10.5,-52.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 7124 components: - type: MetaData @@ -14739,6 +15008,8 @@ entities: - type: Transform pos: -1.5,-59.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 7128 components: - type: MetaData @@ -14746,6 +15017,8 @@ entities: - type: Transform pos: -2.5,-52.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 7230 components: - type: MetaData @@ -14754,6 +15027,8 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,33.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 7281 components: - type: MetaData @@ -14762,6 +15037,8 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,-29.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 7490 components: - type: MetaData @@ -14770,27 +15047,37 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-4.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 8110 components: - type: Transform pos: 5.5,-0.5 parent: 7536 + - type: Fixtures + fixtures: {} - uid: 8112 components: - type: Transform pos: -4.5,-1.5 parent: 7536 + - type: Fixtures + fixtures: {} - uid: 8113 components: - type: Transform pos: 9.5,-1.5 parent: 7536 + - type: Fixtures + fixtures: {} - uid: 8153 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-1.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 8236 components: - type: MetaData @@ -14799,11 +15086,15 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,37.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 8294 components: - type: Transform pos: -30.5,-10.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 9393 components: - type: MetaData @@ -14812,6 +15103,8 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,33.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 9448 components: - type: MetaData @@ -14819,6 +15112,8 @@ entities: - type: Transform pos: -44.5,15.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 9694 components: - type: MetaData @@ -14826,6 +15121,8 @@ entities: - type: Transform pos: -31.5,16.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 9999 components: - type: MetaData @@ -14833,6 +15130,8 @@ entities: - type: Transform pos: -28.5,-25.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 10840 components: - type: MetaData @@ -14840,6 +15139,8 @@ entities: - type: Transform pos: 21.5,5.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11255 components: - type: MetaData @@ -14848,6 +15149,8 @@ entities: rot: 3.141592653589793 rad pos: 33.5,-38.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11566 components: - type: MetaData @@ -14855,6 +15158,8 @@ entities: - type: Transform pos: -23.5,47.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 12002 components: - type: MetaData @@ -14862,6 +15167,8 @@ entities: - type: Transform pos: 27.5,22.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 12070 components: - type: MetaData @@ -14869,6 +15176,8 @@ entities: - type: Transform pos: 23.5,-14.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 12279 components: - type: MetaData @@ -14876,12 +15185,16 @@ entities: - type: Transform pos: 43.5,-7.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 12446 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,22.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 12467 components: - type: MetaData @@ -14889,6 +15202,8 @@ entities: - type: Transform pos: 52.5,-24.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 13493 components: - type: MetaData @@ -14896,6 +15211,8 @@ entities: - type: Transform pos: 51.5,15.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 14552 components: - type: MetaData @@ -14903,6 +15220,8 @@ entities: - type: Transform pos: -23.5,22.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 15692 components: - type: MetaData @@ -14910,6 +15229,8 @@ entities: - type: Transform pos: -18.5,31.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16701 components: - type: MetaData @@ -14917,6 +15238,8 @@ entities: - type: Transform pos: 2.5,22.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 17971 components: - type: MetaData @@ -14925,6 +15248,8 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-1.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 19332 components: - type: MetaData @@ -14932,6 +15257,8 @@ entities: - type: Transform pos: 37.5,12.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 20087 components: - type: MetaData @@ -14939,17 +15266,23 @@ entities: - type: Transform pos: 62.5,-36.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 20554 components: - type: Transform pos: -24.5,62.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21249 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,16.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21604 components: - type: MetaData @@ -14957,12 +15290,16 @@ entities: - type: Transform pos: -36.5,27.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23599 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,40.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23758 components: - type: MetaData @@ -14971,6 +15308,8 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,-11.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23770 components: - type: MetaData @@ -14979,6 +15318,8 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-11.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23788 components: - type: MetaData @@ -14986,6 +15327,8 @@ entities: - type: Transform pos: 27.5,-34.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24380 components: - type: MetaData @@ -14994,24 +15337,32 @@ entities: rot: 3.141592653589793 rad pos: -31.5,37.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24934 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,33.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24935 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,33.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24973 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,19.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: APCElectronics entities: - uid: 5032 @@ -15041,6 +15392,8 @@ entities: rot: 3.141592653589793 rad pos: -94.5,15.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 22486 components: - type: MetaData @@ -15049,6 +15402,8 @@ entities: rot: 3.141592653589793 rad pos: -120.5,14.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 22487 components: - type: MetaData @@ -15057,6 +15412,8 @@ entities: rot: 3.141592653589793 rad pos: -113.5,7.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 22488 components: - type: MetaData @@ -15064,6 +15421,8 @@ entities: - type: Transform pos: -110.5,24.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 22489 components: - type: MetaData @@ -15071,6 +15430,8 @@ entities: - type: Transform pos: -110.5,20.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 22490 components: - type: MetaData @@ -15079,6 +15440,8 @@ entities: rot: 3.141592653589793 rad pos: -104.5,14.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: AppleSeeds entities: - uid: 304 @@ -15094,24 +15457,32 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-59.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21608 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-74.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23822 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-59.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23823 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-74.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: ArtistCircuitBoard entities: - uid: 19804 @@ -15131,6 +15502,11 @@ entities: - type: Transform pos: 15.477192,-36.587162 parent: 60 + - uid: 17225 + components: + - type: Transform + pos: -26.645817,45.54774 + parent: 60 - uid: 25335 components: - type: Transform @@ -15342,15 +15718,30 @@ entities: parent: 60 - proto: AtmosFixBlockerMarker entities: - - uid: 6252 + - uid: 7095 components: - type: Transform - pos: -10.5,50.5 + pos: -30.5,46.5 parent: 60 - - uid: 15155 + - uid: 15056 components: - type: Transform - pos: -14.5,49.5 + pos: -16.5,54.5 + parent: 60 + - uid: 15071 + components: + - type: Transform + pos: -10.5,53.5 + parent: 60 + - uid: 15072 + components: + - type: Transform + pos: -13.5,54.5 + parent: 60 + - uid: 15185 + components: + - type: Transform + pos: -30.5,47.5 parent: 60 - uid: 15215 components: @@ -15417,21 +15808,11 @@ entities: - type: Transform pos: -32.5,45.5 parent: 60 - - uid: 15231 - components: - - type: Transform - pos: -32.5,46.5 - parent: 60 - uid: 15232 components: - type: Transform pos: -31.5,46.5 parent: 60 - - uid: 15233 - components: - - type: Transform - pos: -30.5,46.5 - parent: 60 - uid: 15234 components: - type: Transform @@ -15442,215 +15823,120 @@ entities: - type: Transform pos: -31.5,45.5 parent: 60 - - uid: 15278 + - uid: 15262 components: - type: Transform - pos: -15.5,50.5 + pos: -31.5,47.5 parent: 60 - - uid: 15279 + - uid: 15270 components: - type: Transform - pos: -10.5,48.5 + pos: -32.5,47.5 parent: 60 - - uid: 15383 + - uid: 15297 components: - type: Transform - pos: -21.5,50.5 + pos: -19.5,53.5 parent: 60 - - uid: 15412 - components: - - type: Transform - pos: -13.5,48.5 - parent: 60 - - uid: 15413 - components: - - type: Transform - pos: -14.5,51.5 - parent: 60 - - uid: 15414 - components: - - type: Transform - pos: -14.5,50.5 - parent: 60 - - uid: 15428 - components: - - type: Transform - pos: -12.5,51.5 - parent: 60 - - uid: 15430 - components: - - type: Transform - pos: -19.5,50.5 - parent: 60 - - uid: 15431 - components: - - type: Transform - pos: -18.5,51.5 - parent: 60 - - uid: 15434 - components: - - type: Transform - pos: -19.5,49.5 - parent: 60 - - uid: 15446 - components: - - type: Transform - pos: -13.5,49.5 - parent: 60 - - uid: 15447 - components: - - type: Transform - pos: -13.5,50.5 - parent: 60 - - uid: 15448 - components: - - type: Transform - pos: -13.5,51.5 - parent: 60 - - uid: 15481 - components: - - type: Transform - pos: -21.5,49.5 - parent: 60 - - uid: 15488 - components: - - type: Transform - pos: -12.5,49.5 - parent: 60 - - uid: 15489 - components: - - type: Transform - pos: -12.5,50.5 - parent: 60 - - uid: 15495 - components: - - type: Transform - pos: -12.5,48.5 - parent: 60 - - uid: 15510 - components: - - type: Transform - pos: -18.5,49.5 - parent: 60 - - uid: 15511 - components: - - type: Transform - pos: -18.5,48.5 - parent: 60 - - uid: 15512 - components: - - type: Transform - pos: -19.5,51.5 - parent: 60 - - uid: 15534 - components: - - type: Transform - pos: -11.5,48.5 - parent: 60 - - uid: 15535 - components: - - type: Transform - pos: -18.5,50.5 - parent: 60 - - uid: 15542 - components: - - type: Transform - pos: -20.5,50.5 - parent: 60 - - uid: 15551 - components: - - type: Transform - pos: -22.5,51.5 - parent: 60 - - uid: 15552 - components: - - type: Transform - pos: -22.5,50.5 - parent: 60 - - uid: 15562 - components: - - type: Transform - pos: -20.5,48.5 - parent: 60 - - uid: 15654 - components: - - type: Transform - pos: -15.5,51.5 - parent: 60 - - uid: 16077 - components: - - type: Transform - pos: -10.5,51.5 - parent: 60 - - uid: 16685 - components: - - type: Transform - pos: -11.5,51.5 - parent: 60 - - uid: 16914 - components: - - type: Transform - pos: -10.5,49.5 - parent: 60 - - uid: 16927 - components: - - type: Transform - pos: -11.5,50.5 - parent: 60 - - uid: 16955 - components: - - type: Transform - pos: -11.5,49.5 - parent: 60 - - uid: 16956 - components: - - type: Transform - pos: -17.5,51.5 - parent: 60 - - uid: 16957 - components: - - type: Transform - pos: -17.5,50.5 - parent: 60 - - uid: 16958 - components: - - type: Transform - pos: -19.5,48.5 - parent: 60 - - uid: 16961 + - uid: 15335 components: - type: Transform pos: -20.5,51.5 parent: 60 - - uid: 16962 - components: - - type: Transform - pos: -20.5,49.5 - parent: 60 - - uid: 16963 + - uid: 15339 components: - type: Transform pos: -21.5,51.5 parent: 60 - - uid: 16964 + - uid: 15381 components: - type: Transform - pos: -21.5,48.5 + pos: -19.5,52.5 parent: 60 - - uid: 16965 + - uid: 15382 components: - type: Transform - pos: -22.5,49.5 + pos: -19.5,51.5 parent: 60 - - uid: 16966 + - uid: 15384 components: - type: Transform - pos: -22.5,48.5 + pos: -11.5,53.5 parent: 60 - - uid: 16984 + - uid: 15391 components: - type: Transform - pos: -14.5,48.5 + pos: -23.5,49.5 + parent: 60 + - uid: 15392 + components: + - type: Transform + pos: -23.5,48.5 + parent: 60 + - uid: 15430 + components: + - type: Transform + pos: -21.5,52.5 + parent: 60 + - uid: 15431 + components: + - type: Transform + pos: -21.5,53.5 + parent: 60 + - uid: 15432 + components: + - type: Transform + pos: -23.5,50.5 + parent: 60 + - uid: 15465 + components: + - type: Transform + pos: -20.5,52.5 + parent: 60 + - uid: 15487 + components: + - type: Transform + pos: -20.5,53.5 + parent: 60 + - uid: 15563 + components: + - type: Transform + pos: -17.5,51.5 + parent: 60 + - uid: 15564 + components: + - type: Transform + pos: -14.5,53.5 + parent: 60 + - uid: 15565 + components: + - type: Transform + pos: -10.5,51.5 + parent: 60 + - uid: 15566 + components: + - type: Transform + pos: -10.5,49.5 + parent: 60 + - uid: 15571 + components: + - type: Transform + pos: -10.5,52.5 + parent: 60 + - uid: 15572 + components: + - type: Transform + pos: -13.5,53.5 + parent: 60 + - uid: 16077 + components: + - type: Transform + pos: -32.5,46.5 + parent: 60 + - uid: 16970 + components: + - type: Transform + pos: -10.5,48.5 parent: 60 - uid: 20511 components: @@ -15987,6 +16273,8 @@ entities: - type: Transform pos: 53.5,-39.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: BarSignTheOuterSpess entities: - uid: 1806 @@ -15994,6 +16282,8 @@ entities: - type: Transform pos: 12.5,-25.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: BarSpoon entities: - uid: 23918 @@ -16509,11 +16799,6 @@ entities: - type: Transform pos: -50.5,18.5 parent: 60 - - uid: 15089 - components: - - type: Transform - pos: -31.5,47.5 - parent: 60 - uid: 16372 components: - type: Transform @@ -16541,36 +16826,6 @@ entities: - type: Transform pos: -6.5,30.5 parent: 60 - - uid: 16973 - components: - - type: Transform - pos: -20.5,52.5 - parent: 60 - - uid: 16976 - components: - - type: Transform - pos: -19.5,52.5 - parent: 60 - - uid: 16977 - components: - - type: Transform - pos: -18.5,52.5 - parent: 60 - - uid: 16978 - components: - - type: Transform - pos: -14.5,52.5 - parent: 60 - - uid: 16979 - components: - - type: Transform - pos: -12.5,52.5 - parent: 60 - - uid: 16980 - components: - - type: Transform - pos: -13.5,52.5 - parent: 60 - uid: 19033 components: - type: Transform @@ -16602,6 +16857,19 @@ entities: - type: Transform pos: 55.5,-0.5 parent: 60 +- proto: BlastDoorEngineering + entities: + - uid: 15380 + components: + - type: Transform + pos: -18.5,52.5 + parent: 60 + - uid: 16952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,48.5 + parent: 60 - proto: BlastDoorOpen entities: - uid: 187 @@ -17053,6 +17321,11 @@ entities: parent: 60 - proto: BoxFlare entities: + - uid: 16132 + components: + - type: Transform + pos: -15.456153,46.586353 + parent: 60 - uid: 16379 components: - type: Transform @@ -17427,6 +17700,18 @@ entities: rot: 3.141592653589793 rad pos: 37.5,-21.5 parent: 60 + - uid: 15233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,50.5 + parent: 60 + - uid: 15271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,48.5 + parent: 60 - uid: 16308 components: - type: Transform @@ -27171,15 +27456,10 @@ entities: - type: Transform pos: -25.5,46.5 parent: 60 - - uid: 15101 - components: - - type: Transform - pos: -22.5,48.5 - parent: 60 - uid: 15103 components: - type: Transform - pos: -20.5,49.5 + pos: -16.5,45.5 parent: 60 - uid: 15109 components: @@ -27189,37 +27469,37 @@ entities: - uid: 15111 components: - type: Transform - pos: -20.5,48.5 + pos: -16.5,41.5 parent: 60 - uid: 15112 components: - type: Transform - pos: -21.5,48.5 - parent: 60 - - uid: 15116 - components: - - type: Transform - pos: -16.5,47.5 + pos: -16.5,40.5 parent: 60 - uid: 15119 components: - type: Transform - pos: -18.5,48.5 - parent: 60 - - uid: 15122 - components: - - type: Transform - pos: -19.5,48.5 + pos: -19.5,52.5 parent: 60 - uid: 15131 components: - type: Transform - pos: -16.5,48.5 + pos: -20.5,52.5 parent: 60 - - uid: 15137 + - uid: 15172 components: - type: Transform - pos: -17.5,48.5 + pos: -16.5,42.5 + parent: 60 + - uid: 15175 + components: + - type: Transform + pos: -16.5,44.5 + parent: 60 + - uid: 15177 + components: + - type: Transform + pos: -16.5,43.5 parent: 60 - uid: 15183 components: @@ -27231,41 +27511,16 @@ entities: - type: Transform pos: -25.5,-19.5 parent: 60 - - uid: 15272 - components: - - type: Transform - pos: -12.5,48.5 - parent: 60 - uid: 15274 components: - type: Transform pos: -10.5,45.5 parent: 60 - - uid: 15276 - components: - - type: Transform - pos: -20.5,51.5 - parent: 60 - - uid: 15277 - components: - - type: Transform - pos: -13.5,44.5 - parent: 60 - uid: 15280 components: - type: Transform pos: -10.5,42.5 parent: 60 - - uid: 15285 - components: - - type: Transform - pos: -13.5,40.5 - parent: 60 - - uid: 15286 - components: - - type: Transform - pos: -13.5,41.5 - parent: 60 - uid: 15289 components: - type: Transform @@ -27281,36 +27536,16 @@ entities: - type: Transform pos: -10.5,44.5 parent: 60 - - uid: 15292 - components: - - type: Transform - pos: -10.5,48.5 - parent: 60 - - uid: 15293 - components: - - type: Transform - pos: -14.5,48.5 - parent: 60 - - uid: 15294 - components: - - type: Transform - pos: -13.5,49.5 - parent: 60 - - uid: 15295 - components: - - type: Transform - pos: -13.5,48.5 - parent: 60 - - uid: 15296 - components: - - type: Transform - pos: -11.5,48.5 - parent: 60 - uid: 15328 components: - type: Transform pos: -10.5,38.5 parent: 60 + - uid: 15330 + components: + - type: Transform + pos: -21.5,44.5 + parent: 60 - uid: 15331 components: - type: Transform @@ -27329,28 +27564,23 @@ entities: - uid: 15337 components: - type: Transform - pos: -15.5,48.5 + pos: -14.5,52.5 parent: 60 - uid: 15346 components: - type: Transform - pos: -20.5,50.5 + pos: -16.5,48.5 + parent: 60 + - uid: 15347 + components: + - type: Transform + pos: -16.5,38.5 parent: 60 - uid: 15348 components: - type: Transform pos: -15.5,46.5 parent: 60 - - uid: 15351 - components: - - type: Transform - pos: -13.5,50.5 - parent: 60 - - uid: 15352 - components: - - type: Transform - pos: -13.5,51.5 - parent: 60 - uid: 15357 components: - type: Transform @@ -27366,36 +27596,71 @@ entities: - type: Transform pos: -11.5,46.5 parent: 60 - - uid: 15367 - components: - - type: Transform - pos: -13.5,42.5 - parent: 60 - - uid: 15377 - components: - - type: Transform - pos: -13.5,38.5 - parent: 60 - uid: 15379 components: - type: Transform - pos: -13.5,39.5 + pos: -16.5,47.5 parent: 60 - - uid: 15380 + - uid: 15385 components: - type: Transform - pos: -13.5,43.5 + pos: -16.5,49.5 parent: 60 - - uid: 15381 + - uid: 15387 components: - type: Transform - pos: -13.5,45.5 + pos: -17.5,52.5 + parent: 60 + - uid: 15388 + components: + - type: Transform + pos: -18.5,52.5 + parent: 60 + - uid: 15408 + components: + - type: Transform + pos: -15.5,52.5 + parent: 60 + - uid: 15414 + components: + - type: Transform + pos: -11.5,52.5 + parent: 60 + - uid: 15415 + components: + - type: Transform + pos: -12.5,52.5 + parent: 60 + - uid: 15416 + components: + - type: Transform + pos: -16.5,51.5 + parent: 60 + - uid: 15419 + components: + - type: Transform + pos: -16.5,50.5 parent: 60 - uid: 15420 components: - type: Transform pos: -25.5,48.5 parent: 60 + - uid: 15447 + components: + - type: Transform + pos: -16.5,39.5 + parent: 60 + - uid: 15450 + components: + - type: Transform + pos: -25.5,50.5 + parent: 60 + - uid: 15467 + components: + - type: Transform + pos: -16.5,52.5 + parent: 60 - uid: 15536 components: - type: Transform @@ -27406,6 +27671,11 @@ entities: - type: Transform pos: -10.5,43.5 parent: 60 + - uid: 15653 + components: + - type: Transform + pos: -13.5,52.5 + parent: 60 - uid: 15665 components: - type: Transform @@ -28101,26 +28371,6 @@ entities: - type: Transform pos: -40.5,29.5 parent: 60 - - uid: 16838 - components: - - type: Transform - pos: -38.5,47.5 - parent: 60 - - uid: 16839 - components: - - type: Transform - pos: -36.5,47.5 - parent: 60 - - uid: 16840 - components: - - type: Transform - pos: -37.5,47.5 - parent: 60 - - uid: 16841 - components: - - type: Transform - pos: -35.5,47.5 - parent: 60 - uid: 16842 components: - type: Transform @@ -28136,11 +28386,6 @@ entities: - type: Transform pos: -40.5,30.5 parent: 60 - - uid: 16845 - components: - - type: Transform - pos: -39.5,47.5 - parent: 60 - uid: 16846 components: - type: Transform @@ -28656,11 +28901,6 @@ entities: - type: Transform pos: -21.5,43.5 parent: 60 - - uid: 16952 - components: - - type: Transform - pos: -21.5,44.5 - parent: 60 - uid: 16953 components: - type: Transform @@ -28861,36 +29101,6 @@ entities: - type: Transform pos: 3.5,33.5 parent: 60 - - uid: 17224 - components: - - type: Transform - pos: -34.5,47.5 - parent: 60 - - uid: 17225 - components: - - type: Transform - pos: -33.5,47.5 - parent: 60 - - uid: 17226 - components: - - type: Transform - pos: -32.5,47.5 - parent: 60 - - uid: 17227 - components: - - type: Transform - pos: -31.5,47.5 - parent: 60 - - uid: 17228 - components: - - type: Transform - pos: -30.5,47.5 - parent: 60 - - uid: 17229 - components: - - type: Transform - pos: -29.5,47.5 - parent: 60 - uid: 17258 components: - type: Transform @@ -33886,11 +34096,6 @@ entities: - type: Transform pos: 5.5,42.5 parent: 60 - - uid: 25787 - components: - - type: Transform - pos: -10.5,53.5 - parent: 60 - uid: 25788 components: - type: Transform @@ -43587,11 +43792,6 @@ entities: - type: Transform pos: 8.5,48.5 parent: 60 - - uid: 23738 - components: - - type: Transform - pos: -10.5,53.5 - parent: 60 - uid: 23761 components: - type: Transform @@ -47701,6 +47901,11 @@ entities: - type: Transform pos: -33.5,3.5 parent: 60 + - uid: 16131 + components: + - type: Transform + pos: -12.5,47.5 + parent: 60 - uid: 16352 components: - type: Transform @@ -47866,16 +48071,51 @@ entities: - type: Transform pos: -6.5,45.5 parent: 60 + - uid: 16838 + components: + - type: Transform + pos: -11.5,47.5 + parent: 60 + - uid: 16840 + components: + - type: Transform + pos: -10.5,47.5 + parent: 60 + - uid: 16962 + components: + - type: Transform + pos: -21.5,47.5 + parent: 60 + - uid: 16965 + components: + - type: Transform + pos: -20.5,47.5 + parent: 60 + - uid: 16971 + components: + - type: Transform + pos: -13.5,46.5 + parent: 60 - uid: 16985 components: - type: Transform pos: -25.5,47.5 parent: 60 + - uid: 16989 + components: + - type: Transform + pos: -15.5,46.5 + parent: 60 - uid: 16995 components: - type: Transform pos: -33.5,4.5 parent: 60 + - uid: 16996 + components: + - type: Transform + pos: -18.5,46.5 + parent: 60 - uid: 17069 components: - type: Transform @@ -47896,6 +48136,31 @@ entities: - type: Transform pos: -5.5,45.5 parent: 60 + - uid: 17163 + components: + - type: Transform + pos: -17.5,46.5 + parent: 60 + - uid: 17226 + components: + - type: Transform + pos: -19.5,47.5 + parent: 60 + - uid: 17227 + components: + - type: Transform + pos: -19.5,46.5 + parent: 60 + - uid: 17228 + components: + - type: Transform + pos: -14.5,46.5 + parent: 60 + - uid: 17229 + components: + - type: Transform + pos: -22.5,47.5 + parent: 60 - uid: 17233 components: - type: Transform @@ -47906,6 +48171,16 @@ entities: - type: Transform pos: 5.5,37.5 parent: 60 + - uid: 17251 + components: + - type: Transform + pos: -13.5,47.5 + parent: 60 + - uid: 17449 + components: + - type: Transform + pos: -16.5,46.5 + parent: 60 - uid: 17494 components: - type: Transform @@ -50741,6 +51016,11 @@ entities: - type: Transform pos: -45.5,36.5 parent: 60 + - uid: 15551 + components: + - type: Transform + pos: -10.5,41.5 + parent: 60 - proto: CargoMailTeleporter entities: - uid: 16331 @@ -54989,6 +55269,66 @@ entities: - type: Transform pos: -3.5,38.5 parent: 60 + - uid: 15296 + components: + - type: Transform + pos: -19.5,48.5 + parent: 60 + - uid: 15298 + components: + - type: Transform + pos: -22.5,48.5 + parent: 60 + - uid: 15340 + components: + - type: Transform + pos: -11.5,48.5 + parent: 60 + - uid: 15343 + components: + - type: Transform + pos: -21.5,48.5 + parent: 60 + - uid: 15371 + components: + - type: Transform + pos: -16.5,51.5 + parent: 60 + - uid: 15395 + components: + - type: Transform + pos: -16.5,52.5 + parent: 60 + - uid: 15396 + components: + - type: Transform + pos: -17.5,52.5 + parent: 60 + - uid: 15466 + components: + - type: Transform + pos: -15.5,51.5 + parent: 60 + - uid: 15512 + components: + - type: Transform + pos: -32.5,49.5 + parent: 60 + - uid: 15524 + components: + - type: Transform + pos: -13.5,48.5 + parent: 60 + - uid: 15527 + components: + - type: Transform + pos: -14.5,51.5 + parent: 60 + - uid: 15542 + components: + - type: Transform + pos: -30.5,49.5 + parent: 60 - uid: 15745 components: - type: Transform @@ -55459,6 +55799,11 @@ entities: - type: Transform pos: -2.5,45.5 parent: 60 + - uid: 16914 + components: + - type: Transform + pos: -31.5,49.5 + parent: 60 - uid: 17102 components: - type: Transform @@ -58825,6 +59170,17 @@ entities: rot: 1.5707963267948966 rad pos: 12.52908,-13.379191 parent: 60 + - uid: 16150 + components: + - type: Transform + pos: -26.49991,46.43509 + parent: 60 + - uid: 16456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.60413,44.66303 + parent: 60 - proto: ChairOfficeDark entities: - uid: 492 @@ -59828,6 +60184,8 @@ entities: - type: Transform pos: -5.5,-25.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: ClosetBombFilled entities: - uid: 11346 @@ -61186,6 +61544,17 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4711 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - uid: 11484 components: - type: Transform @@ -61363,11 +61732,15 @@ entities: - 0 - 0 - 0 + - type: Fixtures + fixtures: {} - uid: 15583 components: - type: Transform pos: -47.5,38.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: ClosetWallFireFilledRandom entities: - uid: 1568 @@ -61376,6 +61749,8 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,-15.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: ClothingBackpackClown entities: - uid: 6698 @@ -64397,6 +64772,23 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 18641 + - 17812 + - 18647 + - 18725 + - 19185 + - 19186 + - 19187 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrateHydroponicsSeedsMedicinal entities: - uid: 2759 @@ -64529,6 +64921,22 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 18835 + - 18834 + - 18823 + - 18792 + - 18731 + - 18442 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrateScienceSecure entities: - uid: 13917 @@ -65348,38 +65756,52 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-9.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 4626 components: - type: Transform pos: 30.5,-18.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 7666 components: - type: Transform pos: 29.5,-15.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 8985 components: - type: Transform pos: 41.5,-15.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 12321 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-14.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 13967 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-8.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21264 components: - type: Transform pos: -34.5,27.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: DeployableBarrier entities: - uid: 1800 @@ -71282,209 +71704,291 @@ entities: - type: Transform pos: -34.5,10.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 176 components: - type: Transform pos: -17.5,16.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 3153 components: - type: Transform pos: 2.5,-31.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 3202 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-37.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 4878 components: - type: Transform pos: 46.5,-14.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 5202 components: - type: Transform pos: 7.5,-52.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 5203 components: - type: Transform pos: -3.5,-56.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 6360 components: - type: Transform pos: 8.5,13.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 6363 components: - type: Transform pos: -47.5,-15.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 8028 components: - type: Transform pos: 14.5,20.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 8208 components: - type: Transform pos: 9.5,-31.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 8273 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-5.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 8911 components: - type: Transform pos: -10.5,-51.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 10941 components: - type: Transform pos: -29.5,22.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 13258 components: - type: Transform pos: 46.5,16.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 13719 components: - type: Transform pos: -17.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 14158 components: - type: Transform pos: -12.5,12.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 14585 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-9.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 17230 components: - type: Transform pos: -19.5,32.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 17231 components: - type: Transform pos: -13.5,32.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 17232 components: - type: Transform pos: -31.5,35.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 17234 components: - type: Transform pos: -5.5,19.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 17235 components: - type: Transform pos: 3.5,25.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 19871 components: - type: Transform pos: 42.5,-10.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21008 components: - type: Transform pos: 42.5,15.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21715 components: - type: Transform pos: -13.5,22.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21718 components: - type: Transform pos: -50.5,-4.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21719 components: - type: Transform pos: -46.5,-9.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21720 components: - type: Transform pos: -52.5,8.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21727 components: - type: Transform pos: -5.5,11.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21728 components: - type: Transform pos: 25.5,10.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21729 components: - type: Transform pos: 39.5,4.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21730 components: - type: Transform pos: 23.5,22.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21731 components: - type: Transform pos: 14.5,0.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21732 components: - type: Transform pos: 14.5,-17.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21737 components: - type: Transform pos: -29.5,12.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21740 components: - type: Transform pos: 36.5,-32.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21768 components: - type: Transform pos: -12.5,-25.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23077 components: - type: Transform pos: -101.5,15.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23078 components: - type: Transform pos: -121.5,15.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24079 components: - type: Transform pos: -40.5,22.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: FancyTableSpawner entities: - uid: 16416 @@ -71685,6 +72189,8 @@ entities: - 1790 - 13645 - 556 + - type: Fixtures + fixtures: {} - uid: 1951 components: - type: Transform @@ -71698,6 +72204,8 @@ entities: - 556 - 13622 - 13641 + - type: Fixtures + fixtures: {} - uid: 4200 components: - type: Transform @@ -71715,6 +72223,8 @@ entities: - 13098 - 14392 - 13584 + - type: Fixtures + fixtures: {} - uid: 4511 components: - type: Transform @@ -71734,6 +72244,8 @@ entities: - 21015 - 21023 - 21022 + - type: Fixtures + fixtures: {} - uid: 4545 components: - type: Transform @@ -71749,6 +72261,8 @@ entities: - 9054 - 21513 - 16425 + - type: Fixtures + fixtures: {} - uid: 4831 components: - type: Transform @@ -71770,6 +72284,8 @@ entities: - 4885 - 5066 - 5099 + - type: Fixtures + fixtures: {} - uid: 4833 components: - type: Transform @@ -71781,6 +72297,8 @@ entities: - 5066 - 5099 - 4730 + - type: Fixtures + fixtures: {} - uid: 5110 components: - type: Transform @@ -71792,6 +72310,8 @@ entities: - 5064 - 4886 - 5049 + - type: Fixtures + fixtures: {} - uid: 6176 components: - type: Transform @@ -71803,6 +72323,8 @@ entities: - 6593 - 6785 - 6661 + - type: Fixtures + fixtures: {} - uid: 8268 components: - type: Transform @@ -71821,6 +72343,8 @@ entities: - 13614 - 13613 - 13610 + - type: Fixtures + fixtures: {} - uid: 8274 components: - type: Transform @@ -71835,6 +72359,8 @@ entities: - 13658 - 13657 - 13654 + - type: Fixtures + fixtures: {} - uid: 8332 components: - type: Transform @@ -71845,6 +72371,8 @@ entities: devices: - 13585 - 13599 + - type: Fixtures + fixtures: {} - uid: 8333 components: - type: Transform @@ -71860,6 +72388,8 @@ entities: - 8345 - 13784 - 8331 + - type: Fixtures + fixtures: {} - uid: 8334 components: - type: Transform @@ -71868,6 +72398,8 @@ entities: - type: DeviceList devices: - 13613 + - type: Fixtures + fixtures: {} - uid: 8336 components: - type: Transform @@ -71877,6 +72409,8 @@ entities: - type: DeviceList devices: - 12685 + - type: Fixtures + fixtures: {} - uid: 8889 components: - type: Transform @@ -71892,6 +72426,8 @@ entities: - 8961 - 3110 - 18825 + - type: Fixtures + fixtures: {} - uid: 9058 components: - type: Transform @@ -71907,6 +72443,8 @@ entities: - 8263 - 8291 - 8293 + - type: Fixtures + fixtures: {} - uid: 9395 components: - type: Transform @@ -71916,6 +72454,8 @@ entities: - type: DeviceList devices: - 9382 + - type: Fixtures + fixtures: {} - uid: 11347 components: - type: Transform @@ -71932,6 +72472,8 @@ entities: - 9468 - 5623 - 21615 + - type: Fixtures + fixtures: {} - uid: 11437 components: - type: Transform @@ -71941,6 +72483,8 @@ entities: - type: DeviceList devices: - 14392 + - type: Fixtures + fixtures: {} - uid: 12733 components: - type: Transform @@ -71951,6 +72495,8 @@ entities: devices: - 12571 - 12594 + - type: Fixtures + fixtures: {} - uid: 14374 components: - type: Transform @@ -71969,6 +72515,8 @@ entities: - 8293 - 8265 - 13670 + - type: Fixtures + fixtures: {} - uid: 14454 components: - type: Transform @@ -71987,6 +72535,8 @@ entities: - 13622 - 13619 - 8269 + - type: Fixtures + fixtures: {} - uid: 16334 components: - type: Transform @@ -71996,6 +72546,8 @@ entities: - type: DeviceList devices: - 16196 + - type: Fixtures + fixtures: {} - uid: 20433 components: - type: Transform @@ -72006,6 +72558,8 @@ entities: devices: - 21527 - 25524 + - type: Fixtures + fixtures: {} - uid: 21484 components: - type: Transform @@ -72018,6 +72572,8 @@ entities: - 459 - 460 - 21485 + - type: Fixtures + fixtures: {} - uid: 21487 components: - type: Transform @@ -72028,6 +72584,8 @@ entities: devices: - 18609 - 21486 + - type: Fixtures + fixtures: {} - uid: 21490 components: - type: Transform @@ -72038,6 +72596,8 @@ entities: devices: - 21491 - 18608 + - type: Fixtures + fixtures: {} - uid: 21493 components: - type: Transform @@ -72048,6 +72608,8 @@ entities: devices: - 18609 - 21494 + - type: Fixtures + fixtures: {} - uid: 21498 components: - type: Transform @@ -72065,6 +72627,8 @@ entities: - 9184 - 9237 - 6626 + - type: Fixtures + fixtures: {} - uid: 21514 components: - type: Transform @@ -72076,11 +72640,15 @@ entities: - 21513 - 4127 - 13243 + - type: Fixtures + fixtures: {} - uid: 21536 components: - type: Transform pos: 52.5,15.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21539 components: - type: Transform @@ -72095,6 +72663,8 @@ entities: - 13152 - 13151 - 21541 + - type: Fixtures + fixtures: {} - uid: 21543 components: - type: Transform @@ -72109,6 +72679,8 @@ entities: - 13152 - 13151 - 21544 + - type: Fixtures + fixtures: {} - uid: 21545 components: - type: Transform @@ -72124,6 +72696,8 @@ entities: - 19851 - 19850 - 19843 + - type: Fixtures + fixtures: {} - uid: 21553 components: - type: Transform @@ -72139,6 +72713,8 @@ entities: - 1280 - 1698 - 1858 + - type: Fixtures + fixtures: {} - uid: 21558 components: - type: Transform @@ -72154,6 +72730,8 @@ entities: - 9184 - 9237 - 6626 + - type: Fixtures + fixtures: {} - uid: 21560 components: - type: Transform @@ -72166,6 +72744,8 @@ entities: - 6561 - 6490 - 21562 + - type: Fixtures + fixtures: {} - uid: 21569 components: - type: Transform @@ -72178,6 +72758,8 @@ entities: - 2455 - 2456 - 21571 + - type: Fixtures + fixtures: {} - uid: 21573 components: - type: Transform @@ -72195,6 +72777,8 @@ entities: - 9046 - 12633 - 2507 + - type: Fixtures + fixtures: {} - uid: 21576 components: - type: Transform @@ -72204,6 +72788,8 @@ entities: - type: DeviceList devices: - 21575 + - type: Fixtures + fixtures: {} - uid: 21591 components: - type: Transform @@ -72222,6 +72808,8 @@ entities: - 19840 - 19841 - 19842 + - type: Fixtures + fixtures: {} - uid: 21594 components: - type: Transform @@ -72237,6 +72825,8 @@ entities: - 5043 - 5044 - 21596 + - type: Fixtures + fixtures: {} - uid: 21613 components: - type: Transform @@ -72260,6 +72850,8 @@ entities: - 6041 - 5836 - 13584 + - type: Fixtures + fixtures: {} - uid: 21617 components: - type: Transform @@ -72274,6 +72866,8 @@ entities: - 5623 - 9468 - 7537 + - type: Fixtures + fixtures: {} - uid: 21623 components: - type: Transform @@ -72288,6 +72882,8 @@ entities: - 9410 - 9409 - 21624 + - type: Fixtures + fixtures: {} - uid: 21630 components: - type: Transform @@ -72301,6 +72897,8 @@ entities: - 5990 - 21632 - 9422 + - type: Fixtures + fixtures: {} - uid: 21635 components: - type: Transform @@ -72315,6 +72913,8 @@ entities: - 4338 - 4337 - 4361 + - type: Fixtures + fixtures: {} - uid: 21637 components: - type: Transform @@ -72325,6 +72925,8 @@ entities: devices: - 21638 - 21639 + - type: Fixtures + fixtures: {} - uid: 21641 components: - type: Transform @@ -72348,6 +72950,8 @@ entities: - 6593 - 6785 - 6661 + - type: Fixtures + fixtures: {} - uid: 21650 components: - type: Transform @@ -72366,6 +72970,8 @@ entities: - 16560 - 21655 - 21656 + - type: Fixtures + fixtures: {} - uid: 21653 components: - type: Transform @@ -72377,6 +72983,8 @@ entities: - 21655 - 21656 - 21654 + - type: Fixtures + fixtures: {} - uid: 21679 components: - type: Transform @@ -72389,6 +72997,8 @@ entities: - 21680 - 21674 - 21678 + - type: Fixtures + fixtures: {} - uid: 21706 components: - type: Transform @@ -72399,6 +73009,8 @@ entities: - 16007 - 16008 - 21707 + - type: Fixtures + fixtures: {} - uid: 21708 components: - type: Transform @@ -72412,6 +73024,8 @@ entities: - 16557 - 16558 - 21709 + - type: Fixtures + fixtures: {} - uid: 21711 components: - type: Transform @@ -72424,6 +73038,8 @@ entities: - 16558 - 21678 - 21713 + - type: Fixtures + fixtures: {} - uid: 23384 components: - type: Transform @@ -72439,6 +73055,8 @@ entities: - 4369 - 1198 - 4546 + - type: Fixtures + fixtures: {} - uid: 23422 components: - type: Transform @@ -72451,6 +73069,8 @@ entities: - 8961 - 3110 - 7030 + - type: Fixtures + fixtures: {} - uid: 23767 components: - type: Transform @@ -72466,6 +73086,8 @@ entities: - 23765 - 23766 - 21643 + - type: Fixtures + fixtures: {} - uid: 25156 components: - type: Transform @@ -72483,6 +73105,8 @@ entities: - 25151 - 25150 - 25149 + - type: Fixtures + fixtures: {} - uid: 25158 components: - type: Transform @@ -72500,6 +73124,8 @@ entities: - 25147 - 25146 - 25311 + - type: Fixtures + fixtures: {} - uid: 25159 components: - type: Transform @@ -72517,6 +73143,8 @@ entities: - 25147 - 25146 - 25311 + - type: Fixtures + fixtures: {} - uid: 25160 components: - type: Transform @@ -72529,6 +73157,8 @@ entities: - 25152 - 25153 - 25154 + - type: Fixtures + fixtures: {} - uid: 25161 components: - type: Transform @@ -72541,6 +73171,8 @@ entities: - 25149 - 25150 - 25151 + - type: Fixtures + fixtures: {} - proto: FireAxeCabinetFilled entities: - uid: 7172 @@ -72548,11 +73180,15 @@ entities: - type: Transform pos: -25.5,33.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 18556 components: - type: Transform pos: 4.5,2.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: FireExtinguisher entities: - uid: 7720 @@ -75402,10 +76038,10 @@ entities: parent: 60 - proto: FoodCakeSuppermatterSlice entities: - - uid: 16989 + - uid: 15448 components: - type: Transform - pos: -15.64872,50.25334 + pos: -23.647741,48.35509 parent: 60 - proto: FoodCartCold entities: @@ -75751,6 +76387,8 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-2.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: GalaxythistleSeeds entities: - uid: 3414 @@ -75971,16 +76609,13 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,45.5 parent: 60 - - uid: 15338 + - uid: 15293 components: - type: Transform - pos: -18.5,48.5 - parent: 60 - - uid: 15372 - components: - - type: Transform - pos: -14.5,48.5 + pos: -20.5,52.5 parent: 60 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasPassiveGate entities: - uid: 17877 @@ -76097,21 +76732,6 @@ entities: - type: Transform pos: -45.5,42.5 parent: 60 - - uid: 15025 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,46.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF0D00FF' - - uid: 15071 - components: - - type: Transform - pos: -39.5,48.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 15102 components: - type: Transform @@ -76123,60 +76743,49 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,28.5 parent: 60 + - uid: 15305 + components: + - type: Transform + pos: -20.5,48.5 + parent: 60 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 15356 + components: + - type: Transform + pos: -39.5,49.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15366 + components: + - type: Transform + pos: -12.5,48.5 + parent: 60 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 15389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,53.5 + parent: 60 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 15437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,53.5 + parent: 60 + - type: AtmosPipeColor + color: '#3AB334FF' - uid: 18439 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-2.5 parent: 60 - - uid: 21626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,51.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 21675 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,50.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 21676 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,49.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 21682 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,49.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 21683 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,50.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 21684 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,51.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 21986 components: - type: Transform @@ -76804,6 +77413,14 @@ entities: parent: 60 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,39.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 6705 components: - type: Transform @@ -76946,6 +77563,14 @@ entities: parent: 60 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,49.5 + parent: 60 + - type: AtmosPipeColor + color: '#947507FF' - uid: 8943 components: - type: Transform @@ -77078,21 +77703,6 @@ entities: parent: 60 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13230 - components: - - type: Transform - pos: -13.5,51.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13231 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,51.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13334 components: - type: Transform @@ -77187,14 +77797,6 @@ entities: parent: 60 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14666 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,40.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 14667 components: - type: Transform @@ -77226,13 +77828,6 @@ entities: parent: 60 - type: AtmosPipeColor color: '#990000FF' - - uid: 14702 - components: - - type: Transform - pos: -17.5,44.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 14729 components: - type: Transform @@ -77247,28 +77842,20 @@ entities: parent: 60 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14842 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,44.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 14862 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,44.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 14895 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,37.5 parent: 60 + - uid: 14967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,39.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14992 components: - type: Transform @@ -77293,6 +77880,14 @@ entities: rot: 3.141592653589793 rad pos: -45.5,31.5 parent: 60 + - uid: 15005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,44.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 15007 components: - type: Transform @@ -77305,37 +77900,22 @@ entities: rot: 3.141592653589793 rad pos: -45.5,35.5 parent: 60 - - uid: 15027 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,45.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15028 - components: - - type: Transform - pos: -21.5,46.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15030 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,38.5 - parent: 60 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 15054 + - uid: 15014 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,40.5 + pos: -22.5,39.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' + - uid: 15019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,49.5 + parent: 60 + - type: AtmosPipeColor + color: '#947507FF' - uid: 15110 components: - type: Transform @@ -77344,95 +77924,65 @@ entities: parent: 60 - type: AtmosPipeColor color: '#990000FF' - - uid: 15181 + - uid: 15122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,53.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15287 + components: + - type: Transform + pos: -19.5,53.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15301 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,42.5 + pos: -12.5,44.5 parent: 60 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 15184 + - uid: 15462 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,49.5 + pos: -15.5,39.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15185 + color: '#03FCD3FF' + - uid: 15480 + components: + - type: Transform + pos: -11.5,52.5 + parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 15507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,52.5 + parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 15526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,44.5 + parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 15529 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,49.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15284 - components: - - type: Transform - pos: -20.5,51.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15360 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,51.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15373 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,51.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15390 - components: - - type: Transform - pos: -21.5,44.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15406 - components: - - type: Transform - pos: -10.5,51.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15438 - components: - - type: Transform - pos: -14.5,44.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15464 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,38.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15502 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,44.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15503 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,40.5 + pos: -11.5,39.5 parent: 60 - type: AtmosPipeColor color: '#03FCD3FF' @@ -77505,10 +78055,10 @@ entities: parent: 60 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 16969 + - uid: 16964 components: - type: Transform - pos: -11.5,45.5 + pos: -17.5,44.5 parent: 60 - type: AtmosPipeColor color: '#FF1212FF' @@ -78300,6 +78850,13 @@ entities: parent: 60 - type: AtmosPipeColor color: '#990000FF' + - uid: 12196 + components: + - type: Transform + pos: -19.5,44.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14241 components: - type: Transform @@ -78307,6 +78864,13 @@ entities: parent: 60 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14823 + components: + - type: Transform + pos: -13.5,44.5 + parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 15113 components: - type: Transform @@ -78314,13 +78878,6 @@ entities: parent: 60 - type: AtmosPipeColor color: '#990000FF' - - uid: 15531 - components: - - type: Transform - pos: -20.5,45.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 17863 components: - type: Transform @@ -78400,19 +78957,21 @@ entities: color: '#0055CCFF' - proto: GasPipeSensorTEGCold entities: - - uid: 15074 + - uid: 15439 components: - type: Transform - pos: -14.5,43.5 + rot: 3.141592653589793 rad + pos: -15.5,42.5 parent: 60 - type: AtmosPipeColor color: '#03FCD3FF' - proto: GasPipeSensorTEGHot entities: - - uid: 14858 + - uid: 15373 components: - type: Transform - pos: -18.5,43.5 + rot: 3.141592653589793 rad + pos: -17.5,40.5 parent: 60 - type: AtmosPipeColor color: '#FF1212FF' @@ -85745,14 +86304,6 @@ entities: parent: 60 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6596 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,45.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 6620 components: - type: Transform @@ -85835,10 +86386,10 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,41.5 + pos: -20.5,46.5 parent: 60 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#947507FF' - uid: 6779 components: - type: Transform @@ -86634,6 +87185,14 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,48.5 parent: 60 + - uid: 8158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,50.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 8204 components: - type: Transform @@ -87139,6 +87698,14 @@ entities: parent: 60 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,42.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 11739 components: - type: Transform @@ -87186,6 +87753,14 @@ entities: parent: 60 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,48.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 12522 components: - type: Transform @@ -87420,6 +87995,22 @@ entities: parent: 60 - type: AtmosPipeColor color: '#990000FF' + - uid: 13230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,49.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,46.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 13237 components: - type: Transform @@ -88929,6 +89520,14 @@ entities: parent: 60 - type: AtmosPipeColor color: '#990000FF' + - uid: 14666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,44.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14669 components: - type: Transform @@ -88971,21 +89570,35 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,31.5 parent: 60 + - uid: 14702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,39.5 + parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 14709 components: - type: Transform pos: -31.5,42.5 parent: 60 + - type: AtmosPipeColor + color: '#947507FF' - uid: 14710 components: - type: Transform pos: -31.5,44.5 parent: 60 + - type: AtmosPipeColor + color: '#947507FF' - uid: 14711 components: - type: Transform pos: -31.5,43.5 parent: 60 + - type: AtmosPipeColor + color: '#947507FF' - uid: 14723 components: - type: Transform @@ -89205,6 +89818,62 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,45.5 parent: 60 + - uid: 14811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,39.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,49.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,48.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,40.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,46.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,47.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,47.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14845 components: - type: Transform @@ -89217,12 +89886,35 @@ entities: rot: 1.5707963267948966 rad pos: -44.5,41.5 parent: 60 + - uid: 14850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,43.5 + parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 14853 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,41.5 parent: 60 + - uid: 14858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,39.5 + parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14862 + components: + - type: Transform + pos: -11.5,42.5 + parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 14870 components: - type: Transform @@ -89254,6 +89946,14 @@ entities: parent: 60 - type: AtmosPipeColor color: '#990000FF' + - uid: 14880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,39.5 + parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 14883 components: - type: Transform @@ -89307,19 +90007,19 @@ entities: - uid: 14902 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,46.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF0D00FF' - - uid: 14905 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,40.5 + rot: -1.5707963267948966 rad + pos: -14.5,44.5 parent: 60 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 14913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,43.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14933 components: - type: Transform @@ -89386,6 +90086,21 @@ entities: parent: 60 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14952 + components: + - type: Transform + pos: -17.5,42.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,50.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14987 components: - type: Transform @@ -89441,27 +90156,62 @@ entities: rot: 1.5707963267948966 rad pos: -44.5,31.5 parent: 60 - - uid: 15019 + - uid: 15025 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,46.5 + pos: -11.5,40.5 parent: 60 - type: AtmosPipeColor - color: '#FF0D00FF' + color: '#03FCD3FF' - uid: 15026 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,46.5 + pos: -11.5,41.5 parent: 60 - type: AtmosPipeColor - color: '#FF0D00FF' + color: '#03FCD3FF' + - uid: 15027 + components: + - type: Transform + pos: -15.5,40.5 + parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 15028 + components: + - type: Transform + pos: -11.5,43.5 + parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 15029 + components: + - type: Transform + pos: -17.5,43.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,44.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,41.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 15048 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,38.5 + pos: -20.5,39.5 parent: 60 - type: AtmosPipeColor color: '#FF1212FF' @@ -89469,43 +90219,46 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,38.5 + pos: -19.5,39.5 parent: 60 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 15053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,47.5 + parent: 60 + - type: AtmosPipeColor + color: '#947507FF' - uid: 15055 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,35.5 parent: 60 - - uid: 15056 - components: - - type: Transform - pos: -14.5,42.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 15070 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,45.5 parent: 60 - - uid: 15072 - components: - - type: Transform - pos: -14.5,41.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 15073 components: - type: Transform - pos: -15.5,42.5 + rot: 3.141592653589793 rad + pos: -13.5,47.5 parent: 60 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 15074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,41.5 + parent: 60 + - type: AtmosPipeColor + color: '#947507FF' - uid: 15075 components: - type: Transform @@ -89515,17 +90268,35 @@ entities: - uid: 15076 components: - type: Transform - pos: -18.5,41.5 + rot: 3.141592653589793 rad + pos: -22.5,42.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - uid: 15084 components: - type: Transform - pos: -17.5,42.5 + rot: 3.141592653589793 rad + pos: -13.5,46.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#03FCD3FF' + - uid: 15087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,46.5 + parent: 60 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 15089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,48.5 + parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 15090 components: - type: Transform @@ -89535,24 +90306,41 @@ entities: - uid: 15091 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,47.5 + rot: -1.5707963267948966 rad + pos: -24.5,39.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - uid: 15092 components: - type: Transform - pos: -18.5,42.5 + rot: 3.141592653589793 rad + pos: -12.5,47.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' + - uid: 15093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,47.5 + parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 15099 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,39.5 parent: 60 + - uid: 15101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,47.5 + parent: 60 + - type: AtmosPipeColor + color: '#947507FF' - uid: 15104 components: - type: Transform @@ -89695,6 +90483,28 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,34.5 parent: 60 + - uid: 15153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,48.5 + parent: 60 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 15155 + components: + - type: Transform + pos: -21.5,51.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15164 + components: + - type: Transform + pos: -19.5,51.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 15171 components: - type: Transform @@ -89703,82 +90513,96 @@ entities: parent: 60 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15172 + - uid: 15279 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,38.5 + pos: -23.5,39.5 + parent: 60 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 15281 + components: + - type: Transform + pos: -19.5,43.5 parent: 60 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15174 + - uid: 15284 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,47.5 + pos: -22.5,43.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15182 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,49.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15273 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,51.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15283 + color: '#947507FF' + - uid: 15286 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,39.5 + pos: -22.5,40.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - uid: 15288 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,44.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15298 - components: - - type: Transform - pos: -20.5,47.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15301 - components: - - type: Transform - pos: -20.5,48.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15303 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,47.5 - parent: 60 - - uid: 15340 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,49.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' + - uid: 15292 + components: + - type: Transform + pos: -20.5,50.5 + parent: 60 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 15294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,44.5 + parent: 60 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 15304 + components: + - type: Transform + pos: -11.5,44.5 + parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 15322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,52.5 + parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 15323 + components: + - type: Transform + pos: -11.5,51.5 + parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 15329 + components: + - type: Transform + pos: -20.5,51.5 + parent: 60 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 15334 + components: + - type: Transform + pos: -13.5,43.5 + parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 15350 components: - type: Transform @@ -89787,6 +90611,13 @@ entities: parent: 60 - type: AtmosPipeColor color: '#990000FF' + - uid: 15354 + components: + - type: Transform + pos: -39.5,48.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 15358 components: - type: Transform @@ -89795,217 +90626,53 @@ entities: parent: 60 - type: AtmosPipeColor color: '#990000FF' - - uid: 15365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,40.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15371 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,44.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15384 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,45.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15385 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,45.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15388 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,39.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15407 - components: - - type: Transform - pos: -18.5,47.5 - parent: 60 - - uid: 15408 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,40.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15419 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,46.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF0D00FF' - - uid: 15422 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,44.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15432 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,44.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15433 - components: - - type: Transform - pos: -12.5,48.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15437 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,38.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15439 + - uid: 15368 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,41.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15440 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,40.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15462 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,39.5 + pos: -13.5,49.5 parent: 60 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 15463 components: - type: Transform - pos: -18.5,39.5 + rot: 3.141592653589793 rad + pos: -13.5,50.5 + parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 15482 + components: + - type: Transform + pos: -11.5,50.5 + parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 15489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,53.5 + parent: 60 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 15495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,53.5 parent: 60 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15465 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,45.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15466 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,45.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15467 + - uid: 15498 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,43.5 + pos: -22.5,46.5 parent: 60 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15480 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,39.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15500 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,44.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15501 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,44.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15504 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,41.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15505 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,42.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15507 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,40.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15508 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,40.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15509 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,40.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#947507FF' - uid: 15513 components: - type: Transform @@ -90038,70 +90705,6 @@ entities: parent: 60 - type: AtmosPipeColor color: '#947507FF' - - uid: 15532 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,38.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15533 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,38.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15537 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,38.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15544 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,38.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15554 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,39.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15564 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,44.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15565 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,43.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15566 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,42.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 15588 components: - type: Transform @@ -90401,6 +91004,14 @@ entities: parent: 60 - type: AtmosPipeColor color: '#990000FF' + - uid: 15654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,48.5 + parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 15655 components: - type: Transform @@ -90992,19 +91603,11 @@ entities: parent: 60 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 16968 + - uid: 16956 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,51.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 16970 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,39.5 + rot: 3.141592653589793 rad + pos: -11.5,46.5 parent: 60 - type: AtmosPipeColor color: '#03FCD3FF' @@ -92778,38 +93381,6 @@ entities: parent: 60 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,47.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 21375 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,48.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 21412 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,47.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 21414 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,48.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 21439 components: - type: Transform @@ -97406,14 +97977,6 @@ entities: parent: 60 - type: AtmosPipeColor color: '#990000FF' - - uid: 12196 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,40.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 12302 components: - type: Transform @@ -97785,29 +98348,6 @@ entities: parent: 60 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14880 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,40.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15014 - components: - - type: Transform - pos: -23.5,46.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF0D00FF' - - uid: 15094 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,39.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 15095 components: - type: Transform @@ -97815,14 +98355,6 @@ entities: parent: 60 - type: AtmosPipeColor color: '#990000FF' - - uid: 15138 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,50.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 15145 components: - type: Transform @@ -97831,133 +98363,6 @@ entities: parent: 60 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15164 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,40.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15173 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,39.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15262 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,49.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15282 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,50.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15297 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,49.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15304 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,45.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15339 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,45.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15343 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,44.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15344 - components: - - type: Transform - pos: -24.5,39.5 - parent: 60 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 15347 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,50.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15355 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,50.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15356 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,39.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15386 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,42.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15387 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,38.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15389 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,39.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15573 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,45.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 15595 components: - type: Transform @@ -98173,14 +98578,6 @@ entities: parent: 60 - type: AtmosPipeColor color: '#990000FF' - - uid: 16971 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,38.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 17509 components: - type: Transform @@ -98394,38 +98791,6 @@ entities: parent: 60 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21416 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,49.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 21480 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,50.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 21549 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,49.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 21550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,50.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 21665 components: - type: Transform @@ -98736,14 +99101,6 @@ entities: rot: -1.5707963267948966 rad pos: 51.5,-23.5 parent: 60 - - uid: 5315 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,39.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 7860 components: - type: Transform @@ -98812,31 +99169,18 @@ entities: parent: 60 - type: AtmosPipeColor color: '#990000FF' - - uid: 15005 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,39.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15353 + - uid: 15376 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.5,46.5 - parent: 60 - - uid: 15359 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,46.5 - parent: 60 - - uid: 15368 - components: - - type: Transform pos: -19.5,41.5 parent: 60 + - uid: 15377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,41.5 + parent: 60 - uid: 15397 components: - type: Transform @@ -98849,11 +99193,6 @@ entities: rot: 3.141592653589793 rad pos: -35.5,40.5 parent: 60 - - uid: 15571 - components: - - type: Transform - pos: -20.5,41.5 - parent: 60 - uid: 21442 components: - type: Transform @@ -99042,14 +99381,6 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,41.5 parent: 60 - - uid: 15053 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,38.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 15107 components: - type: MetaData @@ -99075,25 +99406,27 @@ entities: parent: 60 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15281 + - uid: 15433 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,39.5 - parent: 60 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15287 - components: - - type: Transform - pos: -19.5,40.5 + rot: 3.141592653589793 rad + pos: -19.5,42.5 parent: 60 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15354 + - uid: 15449 components: - type: Transform - pos: -20.5,40.5 + rot: 3.141592653589793 rad + pos: -22.5,45.5 + parent: 60 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 15900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,42.5 parent: 60 - type: AtmosPipeColor color: '#03FCD3FF' @@ -99197,6 +99530,18 @@ entities: rot: -1.5707963267948966 rad pos: -58.5,36.5 parent: 60 +- proto: GasPressureRegulator + entities: + - uid: 15438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,53.5 + parent: 60 + - type: GasPressureRegulator + threshold: 95000 + - type: AtmosPipeColor + color: '#3AB334FF' - proto: GasThermoMachineFreezer entities: - uid: 2379 @@ -99222,21 +99567,21 @@ entities: - type: Transform pos: -17.5,30.5 parent: 60 + - uid: 15182 + components: + - type: Transform + pos: -36.5,44.5 + parent: 60 + - uid: 15231 + components: + - type: Transform + pos: -36.5,43.5 + parent: 60 - uid: 15375 components: - type: Transform pos: -34.5,41.5 parent: 60 - - uid: 15376 - components: - - type: Transform - pos: -37.5,46.5 - parent: 60 - - uid: 15441 - components: - - type: Transform - pos: -38.5,46.5 - parent: 60 - uid: 18004 components: - type: Transform @@ -99249,16 +99594,16 @@ entities: - type: Transform pos: -18.5,30.5 parent: 60 - - uid: 15362 - components: - - type: Transform - pos: -36.5,46.5 - parent: 60 - uid: 15374 components: - type: Transform pos: -35.5,41.5 parent: 60 + - uid: 16841 + components: + - type: Transform + pos: -36.5,47.5 + parent: 60 - proto: GasValve entities: - uid: 1460 @@ -99273,24 +99618,6 @@ entities: open: False - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 7095 - components: - - type: Transform - pos: -20.5,46.5 - parent: 60 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8921 - components: - - type: Transform - pos: -12.5,46.5 - parent: 60 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 14703 components: - type: Transform @@ -99312,36 +99639,6 @@ entities: open: False - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14837 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,38.5 - parent: 60 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#947507FF' - - uid: 15029 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,46.5 - parent: 60 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15093 - components: - - type: MetaData - name: waste valve - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,46.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 15150 components: - type: MetaData @@ -99355,45 +99652,28 @@ entities: open: False - type: AtmosPipeColor color: '#990000FF' - - uid: 15345 + - uid: 15367 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,39.5 + pos: -20.5,45.5 parent: 60 - type: GasValve open: False - type: AtmosPipeColor color: '#947507FF' - - uid: 15496 + - uid: 15464 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,46.5 + pos: -12.5,45.5 parent: 60 - type: GasValve open: False - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15498 + color: '#947507FF' + - uid: 16968 components: - type: Transform - pos: -20.5,43.5 - parent: 60 - - uid: 15499 - components: - - type: Transform - pos: -23.5,45.5 - parent: 60 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15530 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,46.5 + pos: -39.5,47.5 parent: 60 - type: GasValve open: False @@ -101919,6 +102199,8 @@ entities: - type: Transform pos: -31.5,45.5 parent: 60 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13503 components: - type: Transform @@ -102523,18 +102805,33 @@ entities: color: '#990000FF' - proto: GasVolumePump entities: - - uid: 14850 + - uid: 15094 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,43.5 + pos: -11.5,45.5 + parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 15116 + components: + - type: Transform + pos: -21.5,45.5 parent: 60 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15153 + - uid: 15137 components: - type: Transform - pos: -15.5,43.5 + rot: 3.141592653589793 rad + pos: -19.5,45.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16955 + components: + - type: Transform + pos: -13.5,45.5 parent: 60 - type: AtmosPipeColor color: '#03FCD3FF' @@ -106221,21 +106518,11 @@ entities: - type: Transform pos: -40.5,46.5 parent: 60 - - uid: 14811 - components: - - type: Transform - pos: -37.5,47.5 - parent: 60 - uid: 14814 components: - type: Transform pos: -35.5,44.5 parent: 60 - - uid: 14840 - components: - - type: Transform - pos: -39.5,47.5 - parent: 60 - uid: 14841 components: - type: Transform @@ -106261,6 +106548,12 @@ entities: - type: Transform pos: -27.5,46.5 parent: 60 + - uid: 14863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,47.5 + parent: 60 - uid: 14864 components: - type: Transform @@ -106371,11 +106664,6 @@ entities: - type: Transform pos: -32.5,29.5 parent: 60 - - uid: 14952 - components: - - type: Transform - pos: -36.5,47.5 - parent: 60 - uid: 14955 components: - type: Transform @@ -106439,7 +106727,8 @@ entities: - uid: 15023 components: - type: Transform - pos: -38.5,47.5 + rot: -1.5707963267948966 rad + pos: -10.5,47.5 parent: 60 - uid: 15024 components: @@ -106491,11 +106780,27 @@ entities: - type: Transform pos: 0.5,63.5 parent: 60 + - uid: 15173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,51.5 + parent: 60 + - uid: 15181 + components: + - type: Transform + pos: -36.5,48.5 + parent: 60 - uid: 15263 components: - type: Transform pos: -56.5,16.5 parent: 60 + - uid: 15283 + components: + - type: Transform + pos: -39.5,48.5 + parent: 60 - uid: 15312 components: - type: Transform @@ -106511,30 +106816,83 @@ entities: - type: Transform pos: 11.5,51.5 parent: 60 - - uid: 15392 + - uid: 15353 components: - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,47.5 + parent: 60 + - uid: 15359 + components: + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,47.5 parent: 60 + - uid: 15365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,52.5 + parent: 60 + - uid: 15369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,50.5 + parent: 60 - uid: 15393 components: - type: Transform - pos: -11.5,47.5 + rot: 1.5707963267948966 rad + pos: -19.5,54.5 parent: 60 - - uid: 15482 + - uid: 15394 components: - type: Transform - pos: -14.5,47.5 + rot: 1.5707963267948966 rad + pos: -22.5,53.5 parent: 60 - - uid: 15483 + - uid: 15407 components: - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,50.5 + parent: 60 + - uid: 15426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,53.5 + parent: 60 + - uid: 15428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,54.5 + parent: 60 + - uid: 15434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,51.5 + parent: 60 + - uid: 15485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,54.5 + parent: 60 + - uid: 15486 + components: + - type: Transform + rot: 1.5707963267948966 rad pos: -12.5,47.5 parent: 60 - - uid: 15484 + - uid: 15488 components: - type: Transform - pos: -10.5,47.5 + rot: 1.5707963267948966 rad + pos: -21.5,50.5 parent: 60 - uid: 15492 components: @@ -106561,30 +106919,20 @@ entities: - type: Transform pos: 11.5,41.5 parent: 60 - - uid: 15524 + - uid: 15532 components: - type: Transform - pos: -18.5,47.5 + pos: -14.5,48.5 parent: 60 - - uid: 15526 + - uid: 15533 components: - type: Transform - pos: -22.5,47.5 + pos: -14.5,49.5 parent: 60 - - uid: 15527 + - uid: 15544 components: - type: Transform - pos: -21.5,47.5 - parent: 60 - - uid: 15528 - components: - - type: Transform - pos: -20.5,47.5 - parent: 60 - - uid: 15529 - components: - - type: Transform - pos: -19.5,47.5 + pos: -35.5,47.5 parent: 60 - uid: 15545 components: @@ -106656,6 +107004,12 @@ entities: - type: Transform pos: 1.5,26.5 parent: 60 + - uid: 16002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,47.5 + parent: 60 - uid: 16006 components: - type: Transform @@ -106681,11 +107035,6 @@ entities: - type: Transform pos: 11.5,57.5 parent: 60 - - uid: 16044 - components: - - type: Transform - pos: -10.5,53.5 - parent: 60 - uid: 16045 components: - type: Transform @@ -106736,6 +107085,12 @@ entities: - type: Transform pos: 3.5,44.5 parent: 60 + - uid: 16145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,47.5 + parent: 60 - uid: 16173 components: - type: Transform @@ -106896,6 +107251,43 @@ entities: - type: Transform pos: 0.5,22.5 parent: 60 + - uid: 16958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,55.5 + parent: 60 + - uid: 16972 + components: + - type: Transform + pos: -40.5,48.5 + parent: 60 + - uid: 16973 + components: + - type: Transform + pos: -38.5,48.5 + parent: 60 + - uid: 16976 + components: + - type: Transform + pos: -37.5,48.5 + parent: 60 + - uid: 16977 + components: + - type: Transform + pos: -29.5,47.5 + parent: 60 + - uid: 16978 + components: + - type: Transform + pos: -33.5,47.5 + parent: 60 + - uid: 16981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,47.5 + parent: 60 - uid: 17034 components: - type: Transform @@ -111111,10 +111503,23 @@ entities: rot: 1.5707963267948966 rad pos: -66.5,-27.5 parent: 60 - - uid: 17163 + - uid: 15277 components: - type: Transform - pos: -18.5,55.5 + rot: 1.5707963267948966 rad + pos: -13.5,54.5 + parent: 60 + - uid: 15386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,54.5 + parent: 60 + - uid: 15573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,54.5 parent: 60 - uid: 17173 components: @@ -111606,29 +112011,34 @@ entities: parent: 60 - proto: HeatExchanger entities: - - uid: 4241 + - uid: 14905 components: - type: Transform - pos: -28.5,43.5 + pos: -21.5,52.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15285 + components: + - type: Transform + pos: -19.5,52.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15483 + components: + - type: Transform + pos: -13.5,51.5 parent: 60 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 15302 + - uid: 15505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,50.5 + pos: -11.5,49.5 parent: 60 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 16983 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,50.5 - parent: 60 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#03FCD3FF' - proto: Hemostat entities: - uid: 9538 @@ -111669,6 +112079,11 @@ entities: - type: Transform pos: -63.459564,41.460617 parent: 60 + - uid: 16096 + components: + - type: Transform + pos: -26.50867,41.609226 + parent: 60 - uid: 21437 components: - type: Transform @@ -112396,24 +112811,32 @@ entities: rot: -1.5707963267948966 rad pos: -110.5,25.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 8431 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-6.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 13568 components: - type: Transform rot: 3.141592653589793 rad pos: -111.5,24.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24324 components: - type: Transform rot: 1.5707963267948966 rad pos: -112.5,25.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: IntercomCommand entities: - uid: 7449 @@ -112421,18 +112844,24 @@ entities: - type: Transform pos: 35.5,-11.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 15201 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,18.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23837 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,7.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: IntercomCommon entities: - uid: 4793 @@ -112441,40 +112870,54 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-48.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 8564 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,16.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23831 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,22.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23832 components: - type: Transform pos: 19.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23840 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-22.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23842 components: - type: Transform pos: -9.5,-52.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23843 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-36.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: IntercomEngineering entities: - uid: 9473 @@ -112482,17 +112925,23 @@ entities: - type: Transform pos: 2.5,12.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 14440 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,16.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23847 components: - type: Transform pos: -19.5,26.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: IntercomMedical entities: - uid: 4037 @@ -112500,18 +112949,24 @@ entities: - type: Transform pos: 35.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 4072 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-33.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 9066 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-11.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: IntercomScience entities: - uid: 7565 @@ -112520,40 +112975,54 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,-3.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 9450 components: - type: Transform pos: -39.5,-2.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 15844 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,16.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 19169 components: - type: Transform pos: -56.5,0.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 19494 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,10.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 19521 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,15.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 19878 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,9.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: IntercomSecurity entities: - uid: 13118 @@ -112562,6 +113031,8 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-27.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: IntercomService entities: - uid: 2754 @@ -112570,23 +113041,31 @@ entities: rot: 3.141592653589793 rad pos: 33.5,-34.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 5086 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-35.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 9067 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-33.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23844 components: - type: Transform pos: -10.5,-25.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: IntercomSupply entities: - uid: 23833 @@ -112595,12 +113074,16 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,6.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23834 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,11.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: JanitorialTrolley entities: - uid: 1196 @@ -113023,6 +113506,34 @@ entities: 16020: - - Pressed - Toggle + - type: Fixtures + fixtures: {} + - uid: 15406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,50.5 + parent: 60 + - type: DeviceLinkSource + linkedPorts: + 15380: + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} + - uid: 15537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,48.5 + parent: 60 + - type: DeviceLinkSource + linkedPorts: + 16952: + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonMedical entities: - uid: 859 @@ -113041,6 +113552,8 @@ entities: 94: - - Pressed - Open + - type: Fixtures + fixtures: {} - uid: 25271 components: - type: Transform @@ -113064,6 +113577,8 @@ entities: 24372: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonSecurity entities: - uid: 25410 @@ -113080,6 +113595,8 @@ entities: 6207: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockerAtmosphericsFilledHardsuit entities: - uid: 15401 @@ -113355,6 +113872,19 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2619 + - 19882 + - 21020 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerFreezerVaultFilled entities: - uid: 2252 @@ -113387,6 +113917,18 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5207 + - 4641 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerHeadOfSecurityFilled entities: - uid: 985 @@ -113530,6 +114072,17 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17673 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerSalvageSpecialistFilledHardsuit entities: - uid: 215 @@ -113621,6 +114174,21 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9114 + - 9115 + - 9116 + - 9117 + - 9118 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerWallMedicalFilled entities: - uid: 8969 @@ -113628,6 +114196,8 @@ entities: - type: Transform pos: 29.5,-18.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: LockerWardenFilled entities: - uid: 8281 @@ -114437,27 +115007,37 @@ entities: - type: Transform pos: -6.5,-15.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 5019 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-11.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 9155 components: - type: Transform pos: -6.5,-18.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21757 components: - type: Transform pos: 21.5,13.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23385 components: - type: Transform pos: -37.5,20.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: MonkeyCubeWrapped entities: - uid: 8237 @@ -114929,6 +115509,11 @@ entities: - type: Transform pos: -8.5,33.5 parent: 60 + - uid: 16984 + components: + - type: Transform + pos: -10.5,42.5 + parent: 60 - uid: 23550 components: - type: Transform @@ -114949,6 +115534,13 @@ entities: - type: Transform pos: -57.5,17.5 parent: 60 +- proto: NitrogenTankFilled + entities: + - uid: 15552 + components: + - type: Transform + pos: -17.412893,49.52716 + parent: 60 - proto: NitrousOxideCanister entities: - uid: 15180 @@ -114975,6 +115567,8 @@ entities: - type: Transform pos: 22.5,-29.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: NTDefaultCircuitBoard entities: - uid: 24819 @@ -115146,16 +115740,21 @@ entities: - type: Transform pos: -8.5,32.5 parent: 60 + - uid: 16983 + components: + - type: Transform + pos: -10.5,43.5 + parent: 60 + - uid: 17471 + components: + - type: Transform + pos: -26.5,49.5 + parent: 60 - uid: 17903 components: - type: Transform pos: 7.5,-48.5 parent: 60 - - uid: 17915 - components: - - type: Transform - pos: -24.5,49.5 - parent: 60 - uid: 18493 components: - type: Transform @@ -115181,6 +115780,13 @@ entities: - type: Transform pos: -57.5,16.5 parent: 60 +- proto: OxygenTankFilled + entities: + - uid: 16447 + components: + - type: Transform + pos: -17.68386,49.57928 + parent: 60 - proto: PaintingAmogusTriptych entities: - uid: 23383 @@ -115188,6 +115794,8 @@ entities: - type: Transform pos: 5.5,-8.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PaintingCafeTerraceAtNight entities: - uid: 18107 @@ -115195,18 +115803,24 @@ entities: - type: Transform pos: 7.5,-30.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PaintingHelloWorld entities: - - uid: 21403 + - uid: 17672 components: - type: Transform - pos: -113.5,20.5 + pos: -114.5,20.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21750 components: - type: Transform pos: -42.5,6.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PaintingMonkey entities: - uid: 8017 @@ -115214,11 +115828,15 @@ entities: - type: Transform pos: 58.5,-43.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 8238 components: - type: Transform pos: 10.5,-29.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PaintingNightHawks entities: - uid: 18848 @@ -115226,6 +115844,8 @@ entities: - type: Transform pos: 15.5,-29.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PaintingOlympia entities: - uid: 21751 @@ -115233,6 +115853,8 @@ entities: - type: Transform pos: 56.5,-43.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PaintingPersistenceOfMemory entities: - uid: 14162 @@ -115240,6 +115862,8 @@ entities: - type: Transform pos: -5.5,17.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PaintingPrayerHands entities: - uid: 21749 @@ -115247,6 +115871,8 @@ entities: - type: Transform pos: -19.5,19.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PaintingSadClown entities: - uid: 19730 @@ -115254,6 +115880,8 @@ entities: - type: Transform pos: 25.5,-14.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PaintingSaturn entities: - uid: 21752 @@ -115261,6 +115889,8 @@ entities: - type: Transform pos: -1.5,-5.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PaintingTheGreatWave entities: - uid: 18847 @@ -115268,6 +115898,8 @@ entities: - type: Transform pos: -3.5,-8.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PaintingTheKiss entities: - uid: 18849 @@ -115275,6 +115907,8 @@ entities: - type: Transform pos: -9.5,23.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PaintingTheScream entities: - uid: 18850 @@ -115282,6 +115916,8 @@ entities: - type: Transform pos: 32.5,-11.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PaintingTheSonOfMan entities: - uid: 18851 @@ -115289,6 +115925,8 @@ entities: - type: Transform pos: -40.5,6.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PaladinCircuitBoard entities: - uid: 24822 @@ -115719,6 +116357,11 @@ entities: - type: Transform pos: -30.398247,32.48968 parent: 60 + - uid: 15352 + components: + - type: Transform + pos: -10.447563,51.515217 + parent: 60 - uid: 16993 components: - type: Transform @@ -116347,11 +116990,15 @@ entities: - type: Transform pos: -15.5,-47.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23661 components: - type: Transform pos: -60.5,36.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandAmbrosiaVulgaris entities: - uid: 18451 @@ -116359,6 +117006,8 @@ entities: - type: Transform pos: 7.5,-6.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandAtmosiaDeclarationIndependence entities: - uid: 15188 @@ -116366,11 +117015,15 @@ entities: - type: Transform pos: -29.5,33.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23457 components: - type: Transform pos: -60.5,42.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandBorgFancy entities: - uid: 8147 @@ -116378,6 +117031,8 @@ entities: - type: Transform pos: -115.5,12.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandBorgFancyv2 entities: - uid: 7107 @@ -116385,6 +117040,8 @@ entities: - type: Transform pos: -107.5,12.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandC20r entities: - uid: 9128 @@ -116392,6 +117049,8 @@ entities: - type: Transform pos: 3.5,-2.5 parent: 7536 + - type: Fixtures + fixtures: {} - proto: PosterContrabandClown entities: - uid: 6681 @@ -116399,6 +117058,8 @@ entities: - type: Transform pos: 22.5,-14.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandCybersun600 entities: - uid: 24373 @@ -116406,6 +117067,8 @@ entities: - type: Transform pos: 10.5,-3.5 parent: 7536 + - type: Fixtures + fixtures: {} - proto: PosterContrabandDonk entities: - uid: 4520 @@ -116413,11 +117076,15 @@ entities: - type: Transform pos: 24.5,-39.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 18473 components: - type: Transform pos: -46.5,-28.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandEAT entities: - uid: 3586 @@ -116425,11 +117092,15 @@ entities: - type: Transform pos: 24.5,-29.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 3977 components: - type: Transform pos: -8.5,-39.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandEnlistGorlex entities: - uid: 21045 @@ -116437,6 +117108,8 @@ entities: - type: Transform pos: 10.5,-1.5 parent: 7536 + - type: Fixtures + fixtures: {} - proto: PosterContrabandFreeDrone entities: - uid: 7204 @@ -116444,6 +117117,8 @@ entities: - type: Transform pos: 6.5,-43.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandFreeSyndicateEncryptionKey entities: - uid: 7039 @@ -116451,11 +117126,15 @@ entities: - type: Transform pos: -34.5,-35.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 9126 components: - type: Transform pos: 1.5,-2.5 parent: 7536 + - type: Fixtures + fixtures: {} - proto: PosterContrabandGreyTide entities: - uid: 623 @@ -116463,6 +117142,8 @@ entities: - type: Transform pos: -1.5,-35.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandHackingGuide entities: - uid: 3438 @@ -116470,6 +117151,8 @@ entities: - type: Transform pos: 11.5,16.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandHaveaPuff entities: - uid: 296 @@ -116477,6 +117160,8 @@ entities: - type: Transform pos: 36.5,-35.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandHighEffectEngineering entities: - uid: 11060 @@ -116484,16 +117169,22 @@ entities: - type: Transform pos: 13.5,-47.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16188 components: - type: Transform pos: -5.5,37.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21092 components: - type: Transform pos: 0.5,16.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandInterdyne entities: - uid: 17253 @@ -116501,6 +117192,8 @@ entities: - type: Transform pos: 41.5,-33.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandKosmicheskayaStantsiya entities: - uid: 7465 @@ -116508,6 +117201,8 @@ entities: - type: Transform pos: -42.5,-33.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandLamarr entities: - uid: 7691 @@ -116515,6 +117210,8 @@ entities: - type: Transform pos: -41.5,9.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandMissingGloves entities: - uid: 401 @@ -116522,11 +117219,15 @@ entities: - type: Transform pos: 9.5,-18.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 6381 components: - type: Transform pos: 12.5,16.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandMissingSpacepen entities: - uid: 4804 @@ -116534,6 +117235,8 @@ entities: - type: Transform pos: -6.5,-47.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandMoth entities: - uid: 21031 @@ -116541,6 +117244,8 @@ entities: - type: Transform pos: -6.5,-3.5 parent: 7536 + - type: Fixtures + fixtures: {} - proto: PosterContrabandNuclearDeviceInformational entities: - uid: 18449 @@ -116548,6 +117253,8 @@ entities: - type: Transform pos: 5.5,-4.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandPower entities: - uid: 16320 @@ -116555,6 +117262,8 @@ entities: - type: Transform pos: 3.5,36.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandPunchShit entities: - uid: 3413 @@ -116562,11 +117271,15 @@ entities: - type: Transform pos: -60.5,-11.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 18106 components: - type: Transform pos: 18.5,-3.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandPwrGame entities: - uid: 4015 @@ -116574,11 +117287,15 @@ entities: - type: Transform pos: -18.5,-30.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 13586 components: - type: Transform pos: -52.5,10.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandRIPBadger entities: - uid: 799 @@ -116586,6 +117303,8 @@ entities: - type: Transform pos: -5.5,12.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandShamblersJuice entities: - uid: 8411 @@ -116593,11 +117312,15 @@ entities: - type: Transform pos: -10.5,-52.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 12979 components: - type: Transform pos: 25.5,-10.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandSmoke entities: - uid: 19156 @@ -116605,11 +117328,15 @@ entities: - type: Transform pos: 35.5,-38.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24674 components: - type: Transform pos: 12.5,-14.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandSpaceCola entities: - uid: 16098 @@ -116617,6 +117344,8 @@ entities: - type: Transform pos: 2.5,16.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandSpaceUp entities: - uid: 24121 @@ -116624,6 +117353,8 @@ entities: - type: Transform pos: 21.5,-10.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandSyndicatePistol entities: - uid: 3591 @@ -116631,11 +117362,15 @@ entities: - type: Transform pos: 13.5,-42.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 9127 components: - type: Transform pos: -2.5,-1.5 parent: 7536 + - type: Fixtures + fixtures: {} - proto: PosterContrabandSyndicateRecruitment entities: - uid: 9125 @@ -116643,6 +117378,8 @@ entities: - type: Transform pos: 6.5,-3.5 parent: 7536 + - type: Fixtures + fixtures: {} - proto: PosterContrabandTheBigGasTruth entities: - uid: 6206 @@ -116651,6 +117388,8 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,4.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandTools entities: - uid: 6314 @@ -116658,6 +117397,8 @@ entities: - type: Transform pos: 8.5,12.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandUnreadableAnnouncement entities: - uid: 5663 @@ -116665,6 +117406,8 @@ entities: - type: Transform pos: 35.5,-9.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandVoteWeh entities: - uid: 9082 @@ -116672,6 +117415,8 @@ entities: - type: Transform pos: 56.5,-9.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterContrabandWehWatches entities: - uid: 154 @@ -116679,11 +117424,15 @@ entities: - type: Transform pos: 54.5,-7.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 12443 components: - type: Transform pos: -9.5,25.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegit12Gauge entities: - uid: 2172 @@ -116691,12 +117440,16 @@ entities: - type: Transform pos: 8.5,-35.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 6702 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,2.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegit50thAnniversaryVintageReprint entities: - uid: 9565 @@ -116704,11 +117457,15 @@ entities: - type: Transform pos: -43.5,-2.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 13042 components: - type: Transform pos: -62.5,11.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitAnatomyPoster entities: - uid: 12 @@ -116717,16 +117474,22 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,-8.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 4556 components: - type: Transform pos: 37.5,-12.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 12781 components: - type: Transform pos: 37.5,-15.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitBlessThisSpess entities: - uid: 6714 @@ -116734,11 +117497,15 @@ entities: - type: Transform pos: -8.5,-11.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 18208 components: - type: Transform pos: -5.5,-2.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitBuild entities: - uid: 8123 @@ -116746,6 +117513,8 @@ entities: - type: Transform pos: 11.5,21.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitCarpMount entities: - uid: 13787 @@ -116753,6 +117522,8 @@ entities: - type: Transform pos: 46.5,11.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitCleanliness entities: - uid: 621 @@ -116760,11 +117531,15 @@ entities: - type: Transform pos: 46.5,-26.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23921 components: - type: Transform pos: -6.5,-25.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitCohibaRobustoAd entities: - uid: 1242 @@ -116772,16 +117547,22 @@ entities: - type: Transform pos: -7.5,-43.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 13581 components: - type: Transform pos: 12.5,-36.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 17383 components: - type: Transform pos: -66.5,23.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitDickGumshue entities: - uid: 3648 @@ -116789,11 +117570,15 @@ entities: - type: Transform pos: 18.5,-47.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21396 components: - type: Transform pos: -26.5,-25.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitFoamForceAd entities: - uid: 3980 @@ -116801,6 +117586,8 @@ entities: - type: Transform pos: -13.5,-36.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitFruitBowl entities: - uid: 8019 @@ -116808,6 +117595,8 @@ entities: - type: Transform pos: 52.5,-46.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitGetYourLEGS entities: - uid: 3979 @@ -116815,6 +117604,8 @@ entities: - type: Transform pos: -4.5,-39.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitHelpOthers entities: - uid: 5442 @@ -116822,27 +117613,37 @@ entities: - type: Transform pos: 51.5,-9.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 8184 components: - type: Transform pos: 5.5,-52.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 8327 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,1.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16097 components: - type: Transform pos: 3.5,22.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16535 components: - type: Transform pos: -33.5,20.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitHighClassMartini entities: - uid: 7794 @@ -116850,16 +117651,22 @@ entities: - type: Transform pos: -48.5,-28.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 13580 components: - type: Transform pos: 12.5,-34.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 17384 components: - type: Transform pos: -63.5,26.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitIan entities: - uid: 13579 @@ -116867,6 +117674,8 @@ entities: - type: Transform pos: 9.5,-32.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitJustAWeekAway entities: - uid: 3093 @@ -116874,16 +117683,22 @@ entities: - type: Transform pos: -4.5,-43.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 7195 components: - type: Transform pos: 2.5,-7.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 12365 components: - type: Transform pos: 46.5,-13.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitLoveIan entities: - uid: 1373 @@ -116891,6 +117706,8 @@ entities: - type: Transform pos: 9.5,-27.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitMime entities: - uid: 19885 @@ -116898,6 +117715,8 @@ entities: - type: Transform pos: 26.5,-14.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitNanomichiAd entities: - uid: 6631 @@ -116905,11 +117724,15 @@ entities: - type: Transform pos: 14.5,18.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 13827 components: - type: Transform pos: 2.5,-32.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitNanotrasenLogo entities: - uid: 911 @@ -116917,31 +117740,43 @@ entities: - type: Transform pos: -11.5,-25.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 1803 components: - type: Transform pos: -2.5,-44.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 13578 components: - type: Transform pos: -44.5,6.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 13826 components: - type: Transform pos: 8.5,-26.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 17201 components: - type: Transform pos: 35.5,19.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 18553 components: - type: Transform pos: -4.5,-1.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 18554 components: - type: MetaData @@ -116950,31 +117785,43 @@ entities: - type: Transform pos: -1.5,-9.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 18555 components: - type: Transform pos: 2.5,-9.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24980 components: - type: Transform pos: 52.5,22.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 25195 components: - type: Transform pos: 52.5,26.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 25196 components: - type: Transform pos: 32.5,26.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 25309 components: - type: Transform pos: 42.5,22.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitNoERP entities: - uid: 8736 @@ -116982,11 +117829,15 @@ entities: - type: Transform pos: 32.5,-8.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21002 components: - type: Transform pos: 21.5,11.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitNTTGC entities: - uid: 14157 @@ -116994,6 +117845,8 @@ entities: - type: Transform pos: -12.5,14.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitPDAAd entities: - uid: 6776 @@ -117001,6 +117854,8 @@ entities: - type: Transform pos: 2.5,-28.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitPeriodicTable entities: - uid: 7447 @@ -117008,11 +117863,15 @@ entities: - type: Transform pos: 36.5,-11.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 17002 components: - type: Transform pos: 36.5,-26.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitRenault entities: - uid: 17249 @@ -117020,6 +117879,8 @@ entities: - type: Transform pos: -6.5,-7.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitReportCrimes entities: - uid: 1642 @@ -117027,27 +117888,37 @@ entities: - type: Transform pos: -26.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 1668 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,2.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 4697 components: - type: Transform pos: -2.5,-43.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16151 components: - type: Transform pos: -4.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 17200 components: - type: Transform pos: 37.5,19.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyEyeProtection entities: - uid: 14043 @@ -117055,16 +117926,22 @@ entities: - type: Transform pos: -1.5,15.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21184 components: - type: Transform pos: -60.5,2.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24169 components: - type: Transform pos: -41.5,-2.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyInternals entities: - uid: 6633 @@ -117072,16 +117949,22 @@ entities: - type: Transform pos: -1.5,13.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 9567 components: - type: Transform pos: -50.5,0.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24168 components: - type: Transform pos: -42.5,-2.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothDelam entities: - uid: 17245 @@ -117089,6 +117972,8 @@ entities: - type: Transform pos: -8.5,30.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothEpi entities: - uid: 17003 @@ -117096,6 +117981,8 @@ entities: - type: Transform pos: 36.5,-27.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothHardhat entities: - uid: 17005 @@ -117103,6 +117990,8 @@ entities: - type: Transform pos: 9.5,16.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothMeth entities: - uid: 17004 @@ -117110,6 +117999,8 @@ entities: - type: Transform pos: 37.5,-33.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothPiping entities: - uid: 2536 @@ -117118,11 +118009,15 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,15.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 17244 components: - type: Transform pos: -14.5,31.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitScience entities: - uid: 9456 @@ -117130,21 +118025,29 @@ entities: - type: Transform pos: -46.5,18.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 9564 components: - type: Transform pos: -50.5,-7.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16552 components: - type: Transform pos: -40.5,-3.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21183 components: - type: Transform pos: -60.5,3.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitSecWatch entities: - uid: 12193 @@ -117153,6 +118056,8 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,-17.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitSpaceCops entities: - uid: 1458 @@ -117160,6 +118065,8 @@ entities: - type: Transform pos: 14.5,-18.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitTheOwl entities: - uid: 7897 @@ -117167,6 +118074,8 @@ entities: - type: Transform pos: 45.5,-43.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitThereIsNoGasGiant entities: - uid: 6174 @@ -117175,6 +118084,8 @@ entities: rot: 3.141592653589793 rad pos: -19.5,2.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitTyrone entities: - uid: 13715 @@ -117183,6 +118094,8 @@ entities: rot: 3.141592653589793 rad pos: -24.5,6.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitUeNo entities: - uid: 25310 @@ -117190,6 +118103,8 @@ entities: - type: Transform pos: 46.5,22.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitVacation entities: - uid: 2617 @@ -117197,26 +118112,36 @@ entities: - type: Transform pos: -13.5,19.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 17252 components: - type: Transform pos: -2.5,-48.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 18639 components: - type: Transform pos: 31.5,-34.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24338 components: - type: Transform pos: 49.5,-15.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 25315 components: - type: Transform pos: 48.5,22.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterLegitWorkForAFuture entities: - uid: 923 @@ -117224,6 +118149,8 @@ entities: - type: Transform pos: -1.5,-26.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PosterMapBagel entities: - uid: 959 @@ -117231,46 +118158,64 @@ entities: - type: Transform pos: -4.5,-52.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 4675 components: - type: Transform pos: -1.5,-29.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 7491 components: - type: Transform pos: -1.5,-2.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 9006 components: - type: Transform pos: 8.5,-52.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 9010 components: - type: Transform pos: 10.5,16.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11337 components: - type: Transform pos: 4.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16443 components: - type: Transform pos: 36.5,19.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21787 components: - type: Transform pos: 6.5,11.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 25314 components: - type: Transform pos: 38.5,22.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: PottedPlant0 entities: - uid: 23086 @@ -117311,10 +118256,10 @@ entities: - type: Transform pos: -40.522816,2.2133622 parent: 60 - - uid: 23084 + - uid: 17951 components: - type: Transform - pos: -113.5,19.5 + pos: -114.5,19.5 parent: 60 - uid: 23085 components: @@ -117393,6 +118338,12 @@ entities: - type: Transform pos: -1.5,-75.5 parent: 60 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 4540 - proto: PottedPlant4 entities: - uid: 15519 @@ -117826,6 +118777,11 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,62.5 parent: 60 + - uid: 15303 + components: + - type: Transform + pos: -15.5,49.5 + parent: 60 - uid: 16015 components: - type: Transform @@ -119255,20 +120211,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 15270 - components: - - type: Transform - pos: -30.5,46.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15271 - components: - - type: Transform - pos: -32.5,46.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 15349 components: - type: Transform @@ -119292,6 +120234,11 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,41.5 parent: 60 + - uid: 15531 + components: + - type: Transform + pos: -12.5,53.5 + parent: 60 - uid: 15574 components: - type: Transform @@ -120129,6 +121076,12 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 + - uid: 15584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,51.5 + parent: 60 - uid: 20978 components: - type: Transform @@ -120522,33 +121475,18 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,18.5 parent: 60 - - uid: 15361 + - uid: 15344 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,48.5 + pos: -19.5,49.5 parent: 60 - - uid: 15366 - components: - - type: Transform - pos: -15.5,51.5 - parent: 60 - - uid: 15369 + - uid: 15484 components: - type: Transform + rot: 3.141592653589793 rad pos: -17.5,51.5 parent: 60 - - uid: 15382 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,48.5 - parent: 60 - - uid: 15427 - components: - - type: Transform - pos: -16.5,48.5 - parent: 60 - uid: 15708 components: - type: Transform @@ -120570,6 +121508,12 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 + - uid: 17469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,48.5 + parent: 60 - uid: 17470 components: - type: Transform @@ -120592,14 +121536,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 17916 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,48.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 18629 components: - type: Transform @@ -121081,6 +122017,11 @@ entities: - type: Transform pos: 14.5,-43.5 parent: 60 + - uid: 4241 + components: + - type: Transform + pos: -26.5,42.5 + parent: 60 - uid: 4302 components: - type: Transform @@ -121272,17 +122213,48 @@ entities: - type: Transform pos: -27.5,32.5 parent: 60 + - uid: 15338 + components: + - type: Transform + pos: -10.5,53.5 + parent: 60 + - uid: 15372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,49.5 + parent: 60 + - uid: 15413 + components: + - type: Transform + pos: -10.5,51.5 + parent: 60 - uid: 15695 components: - type: Transform pos: 5.5,13.5 parent: 60 + - uid: 16095 + components: + - type: Transform + pos: -17.5,46.5 + parent: 60 - uid: 16246 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,31.5 parent: 60 + - uid: 16433 + components: + - type: Transform + pos: -26.5,41.5 + parent: 60 + - uid: 16450 + components: + - type: Transform + pos: -15.5,46.5 + parent: 60 - uid: 17155 components: - type: Transform @@ -122200,6 +123172,13 @@ entities: - type: Transform pos: -3.5,-57.5 parent: 60 +- proto: RandomSmokables + entities: + - uid: 17224 + components: + - type: Transform + pos: -26.301895,45.714523 + parent: 60 - proto: RandomSnacks entities: - uid: 14222 @@ -122640,11 +123619,6 @@ entities: - type: Transform pos: -53.5,51.5 parent: 60 - - uid: 7237 - components: - - type: Transform - pos: -21.5,47.5 - parent: 60 - uid: 7333 components: - type: Transform @@ -122740,11 +123714,6 @@ entities: - type: Transform pos: -56.5,4.5 parent: 60 - - uid: 11727 - components: - - type: Transform - pos: -11.5,47.5 - parent: 60 - uid: 12602 components: - type: Transform @@ -122825,45 +123794,81 @@ entities: - type: Transform pos: -29.5,45.5 parent: 60 - - uid: 15175 + - uid: 15174 components: - type: Transform - pos: -18.5,47.5 + rot: 1.5707963267948966 rad + pos: -19.5,50.5 parent: 60 - - uid: 15177 + - uid: 15273 components: - type: Transform - pos: -14.5,47.5 + pos: -29.5,47.5 parent: 60 - - uid: 15305 + - uid: 15276 components: - type: Transform - pos: -10.5,47.5 + pos: -33.5,47.5 parent: 60 - - uid: 15391 + - uid: 15336 components: - type: Transform - pos: -22.5,47.5 + rot: 1.5707963267948966 rad + pos: -20.5,50.5 parent: 60 - - uid: 15395 + - uid: 15390 components: - type: Transform - pos: -13.5,47.5 + rot: 1.5707963267948966 rad + pos: -20.5,54.5 parent: 60 - - uid: 15563 + - uid: 15422 components: - type: Transform - pos: -20.5,47.5 + rot: 1.5707963267948966 rad + pos: -21.5,50.5 parent: 60 - - uid: 16972 + - uid: 15427 components: - type: Transform - pos: -12.5,47.5 + rot: 1.5707963267948966 rad + pos: -22.5,51.5 parent: 60 - - uid: 16982 + - uid: 15451 components: - type: Transform - pos: -19.5,47.5 + rot: 1.5707963267948966 rad + pos: -21.5,54.5 + parent: 60 + - uid: 15499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,52.5 + parent: 60 + - uid: 15500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,53.5 + parent: 60 + - uid: 16957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,51.5 + parent: 60 + - uid: 16961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,53.5 + parent: 60 + - uid: 16966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,54.5 parent: 60 - uid: 23455 components: @@ -125650,11 +126655,6 @@ entities: - type: Transform pos: -35.5,44.5 parent: 60 - - uid: 14835 - components: - - type: Transform - pos: -38.5,47.5 - parent: 60 - uid: 14836 components: - type: Transform @@ -125685,11 +126685,6 @@ entities: - type: Transform pos: -40.5,47.5 parent: 60 - - uid: 14863 - components: - - type: Transform - pos: -36.5,47.5 - parent: 60 - uid: 14865 components: - type: Transform @@ -125755,11 +126750,6 @@ entities: - type: Transform pos: -35.5,45.5 parent: 60 - - uid: 14962 - components: - - type: Transform - pos: -37.5,47.5 - parent: 60 - uid: 14966 components: - type: Transform @@ -125810,11 +126800,6 @@ entities: - type: Transform pos: -35.5,43.5 parent: 60 - - uid: 15039 - components: - - type: Transform - pos: -39.5,47.5 - parent: 60 - uid: 15044 components: - type: Transform @@ -125855,6 +126840,42 @@ entities: - type: Transform pos: 31.5,43.5 parent: 60 + - uid: 15299 + components: + - type: Transform + pos: -14.5,48.5 + parent: 60 + - uid: 15300 + components: + - type: Transform + pos: -14.5,49.5 + parent: 60 + - uid: 15341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,47.5 + parent: 60 + - uid: 15342 + components: + - type: Transform + pos: -20.5,47.5 + parent: 60 + - uid: 15360 + components: + - type: Transform + pos: -12.5,47.5 + parent: 60 + - uid: 15361 + components: + - type: Transform + pos: -38.5,48.5 + parent: 60 + - uid: 15362 + components: + - type: Transform + pos: -13.5,47.5 + parent: 60 - uid: 15402 components: - type: Transform @@ -125881,6 +126902,42 @@ entities: - type: Transform pos: -15.5,31.5 parent: 60 + - uid: 15508 + components: + - type: Transform + pos: -11.5,47.5 + parent: 60 + - uid: 15510 + components: + - type: Transform + pos: -40.5,48.5 + parent: 60 + - uid: 15511 + components: + - type: Transform + pos: -39.5,48.5 + parent: 60 + - uid: 15528 + components: + - type: Transform + pos: -21.5,47.5 + parent: 60 + - uid: 15534 + components: + - type: Transform + pos: -19.5,47.5 + parent: 60 + - uid: 15535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,47.5 + parent: 60 + - uid: 15540 + components: + - type: Transform + pos: -36.5,48.5 + parent: 60 - uid: 15553 components: - type: Transform @@ -126077,6 +127134,16 @@ entities: - type: Transform pos: 57.5,43.5 parent: 60 + - uid: 16845 + components: + - type: Transform + pos: -37.5,48.5 + parent: 60 + - uid: 16927 + components: + - type: Transform + pos: -35.5,47.5 + parent: 60 - uid: 16992 components: - type: Transform @@ -127115,156 +128182,218 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-14.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 15599 components: - type: Transform pos: -39.5,8.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23841 components: - type: Transform pos: 32.5,28.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23845 components: - type: Transform pos: 36.5,46.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23846 components: - type: Transform pos: 32.5,38.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23848 components: - type: Transform pos: 52.5,38.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23849 components: - type: Transform pos: 56.5,46.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23850 components: - type: Transform pos: 56.5,28.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23853 components: - type: Transform pos: -1.5,-10.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23854 components: - type: Transform pos: -8.5,-6.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23855 components: - type: Transform pos: 4.5,-8.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23857 components: - type: Transform pos: 42.5,-15.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23858 components: - type: Transform pos: -5.5,21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23859 components: - type: Transform pos: -22.5,22.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23860 components: - type: Transform pos: -32.5,6.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23862 components: - type: Transform pos: 2.5,-30.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23863 components: - type: Transform pos: 42.5,12.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24432 components: - type: Transform pos: 2.5,-4.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24436 components: - type: Transform pos: -39.5,-11.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24437 components: - type: Transform pos: -11.5,10.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24438 components: - type: Transform pos: 13.5,10.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24439 components: - type: Transform pos: 21.5,22.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24440 components: - type: Transform pos: 46.5,19.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24441 components: - type: Transform pos: 52.5,19.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24442 components: - type: Transform pos: 30.5,10.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24443 components: - type: Transform pos: 18.5,-0.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24444 components: - type: Transform pos: 29.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24445 components: - type: Transform pos: 10.5,-25.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24446 components: - type: Transform pos: 2.5,-39.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24447 components: - type: Transform pos: 4.5,-52.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24448 components: - type: Transform pos: 18.5,-39.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: Screwdriver entities: - uid: 9372 @@ -127535,6 +128664,11 @@ entities: - type: Transform pos: 50.57873,-36.45204 parent: 60 + - uid: 6252 + components: + - type: Transform + pos: -26.488434,42.52092 + parent: 60 - uid: 6590 components: - type: Transform @@ -128184,26 +129318,36 @@ entities: - type: Transform pos: -101.5,16.5 parent: 60 - - uid: 19800 + - type: Fixtures + fixtures: {} + - uid: 17473 components: - type: Transform - pos: -112.5,20.5 + pos: -113.5,20.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 19808 components: - type: Transform pos: -107.5,16.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21237 components: - type: Transform pos: -72.5,19.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23379 components: - type: Transform pos: -60.5,16.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignAiUpload entities: - uid: 21130 @@ -128211,11 +129355,15 @@ entities: - type: Transform pos: -110.5,6.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23380 components: - type: Transform pos: -112.5,14.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignalButton entities: - uid: 2399 @@ -128228,6 +129376,8 @@ entities: 9158: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 2770 components: - type: Transform @@ -128242,6 +129392,8 @@ entities: 2408: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 3803 components: - type: MetaData @@ -128255,6 +129407,8 @@ entities: 7729: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 5346 components: - type: Transform @@ -128284,6 +129438,8 @@ entities: 5345: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 7746 components: - type: MetaData @@ -128296,6 +129452,8 @@ entities: 7728: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 13644 components: - type: MetaData @@ -128312,6 +129470,8 @@ entities: - - Pressed - Open - type: Label + - type: Fixtures + fixtures: {} - uid: 14364 components: - type: MetaData @@ -128327,16 +129487,8 @@ entities: 25: - - Pressed - Open - - uid: 14913 - components: - - type: Transform - pos: -32.5,47.5 - parent: 60 - - type: DeviceLinkSource - linkedPorts: - 15089: - - - Pressed - - Toggle + - type: Fixtures + fixtures: {} - uid: 14914 components: - type: Transform @@ -128344,45 +129496,11 @@ entities: parent: 60 - type: DeviceLinkSource linkedPorts: - 15089: - - - Pressed - - Toggle - - uid: 15424 - components: - - type: MetaData - name: Heat Room 2 to Space - - type: Transform - pos: -15.5,47.5 - parent: 60 - - type: DeviceLinkSource - linkedPorts: - 16978: - - - Pressed - - Toggle - 16980: - - - Pressed - - Toggle - 16979: - - - Pressed - - Toggle - - uid: 15426 - components: - - type: MetaData - name: Heat Room 1 to Space - - type: Transform - pos: -17.5,47.5 - parent: 60 - - type: DeviceLinkSource - linkedPorts: - 16977: - - - Pressed - - Toggle - 16976: - - - Pressed - - Toggle - 16973: + 16952: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: SignalButtonDirectional entities: - uid: 1240 @@ -128405,6 +129523,8 @@ entities: 1631: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 1603 components: - type: Transform @@ -128421,6 +129541,8 @@ entities: 4355: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 2287 components: - type: Transform @@ -128455,6 +129577,8 @@ entities: 4045: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 2511 components: - type: MetaData @@ -128468,6 +129592,8 @@ entities: 14521: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 2625 components: - type: MetaData @@ -128505,6 +129631,8 @@ entities: 3845: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 2882 components: - type: Transform @@ -128522,6 +129650,8 @@ entities: 21334: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 9571 components: - type: Transform @@ -128532,6 +129662,8 @@ entities: 13639: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 11257 components: - type: Transform @@ -128569,6 +129701,8 @@ entities: 4679: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 11678 components: - type: Transform @@ -128583,6 +129717,8 @@ entities: 19158: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 13575 components: - type: Transform @@ -128615,6 +129751,8 @@ entities: 17379: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 13899 components: - type: MetaData @@ -128628,6 +129766,8 @@ entities: 14444: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 14549 components: - type: Transform @@ -128645,6 +129785,8 @@ entities: 5149: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 14550 components: - type: Transform @@ -128665,6 +129807,8 @@ entities: 21068: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 14551 components: - type: Transform @@ -128679,6 +129823,8 @@ entities: 14547: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 14622 components: - type: MetaData @@ -128691,6 +129837,8 @@ entities: 13901: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 14910 components: - type: Transform @@ -128708,11 +129856,15 @@ entities: 2506: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 16158 components: - type: Transform pos: 1.5,34.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16396 components: - type: Transform @@ -128730,6 +129882,8 @@ entities: 327: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 20425 components: - type: MetaData @@ -128743,6 +129897,8 @@ entities: 17459: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 20979 components: - type: MetaData @@ -128755,6 +129911,8 @@ entities: 17460: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 21386 components: - type: MetaData @@ -128768,6 +129926,8 @@ entities: 21175: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 21611 components: - type: MetaData @@ -128781,6 +129941,8 @@ entities: 17448: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 24334 components: - type: MetaData @@ -128794,6 +129956,8 @@ entities: 24333: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 24347 components: - type: MetaData @@ -128807,6 +129971,8 @@ entities: 11167: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 24365 components: - type: MetaData @@ -128820,6 +129986,8 @@ entities: 24337: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 24787 components: - type: Transform @@ -128831,6 +129999,8 @@ entities: 24784: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 24788 components: - type: Transform @@ -128842,6 +130012,8 @@ entities: 24784: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 24789 components: - type: Transform @@ -128853,6 +130025,8 @@ entities: 24785: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 24790 components: - type: Transform @@ -128864,6 +130038,8 @@ entities: 24785: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: SignalSwitch entities: - uid: 14073 @@ -128878,6 +130054,8 @@ entities: - On - - Off - Off + - type: Fixtures + fixtures: {} - proto: SignalSwitchDirectional entities: - uid: 7563 @@ -128891,6 +130069,8 @@ entities: 186: - - Status - Toggle + - type: Fixtures + fixtures: {} - uid: 8127 components: - type: MetaData @@ -128906,6 +130086,8 @@ entities: - On - - Off - Off + - type: Fixtures + fixtures: {} - uid: 8433 components: - type: MetaData @@ -128991,6 +130173,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 9309 components: - type: Transform @@ -129001,6 +130185,8 @@ entities: 186: - - Status - Toggle + - type: Fixtures + fixtures: {} - uid: 9397 components: - type: MetaData @@ -129025,6 +130211,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 9549 components: - type: MetaData @@ -129064,6 +130252,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 9550 components: - type: MetaData @@ -129103,6 +130293,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 16398 components: - type: MetaData @@ -129122,6 +130314,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 16399 components: - type: MetaData @@ -129157,6 +130351,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 16402 components: - type: MetaData @@ -129177,6 +130373,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 17957 components: - type: MetaData @@ -129207,6 +130405,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 18802 components: - type: MetaData @@ -129288,6 +130488,8 @@ entities: - Reverse - - Off - Forward + - type: Fixtures + fixtures: {} - uid: 18859 components: - type: MetaData @@ -129303,6 +130505,8 @@ entities: - On - - Off - Off + - type: Fixtures + fixtures: {} - uid: 19837 components: - type: MetaData @@ -129329,6 +130533,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 21187 components: - type: Transform @@ -129362,6 +130568,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 25781 components: - type: Transform @@ -129389,6 +130597,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 25782 components: - type: Transform @@ -129417,6 +130627,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 25785 components: - type: MetaData @@ -129437,6 +130649,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - proto: SignAnomaly entities: - uid: 9496 @@ -129444,11 +130658,15 @@ entities: - type: Transform pos: -43.5,14.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24702 components: - type: Transform pos: -56.5,10.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignAnomaly2 entities: - uid: 9371 @@ -129456,6 +130674,8 @@ entities: - type: Transform pos: -54.5,1.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignArmory entities: - uid: 8227 @@ -129464,12 +130684,16 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,-5.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 8240 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-10.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignAtmos entities: - uid: 13963 @@ -129477,26 +130701,36 @@ entities: - type: Transform pos: -18.5,26.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 14718 components: - type: Transform pos: -13.5,30.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23634 components: - type: Transform pos: -56.5,35.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24214 components: - type: Transform pos: -27.5,38.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24215 components: - type: Transform pos: -23.5,29.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignBar entities: - uid: 2573 @@ -129504,6 +130738,8 @@ entities: - type: Transform pos: 14.5,-25.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignBio entities: - uid: 3170 @@ -129511,6 +130747,8 @@ entities: - type: Transform pos: 49.5,-31.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignBiohazardMed entities: - uid: 2595 @@ -129518,6 +130756,8 @@ entities: - type: Transform pos: 46.5,-31.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignBridge entities: - uid: 454 @@ -129525,17 +130765,23 @@ entities: - type: Transform pos: -1.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 708 components: - type: Transform pos: 2.5,-1.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 19026 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-8.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignCans entities: - uid: 13825 @@ -129544,6 +130790,8 @@ entities: rot: 3.141592653589793 rad pos: -28.5,37.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignCargo entities: - uid: 12732 @@ -129551,11 +130799,15 @@ entities: - type: Transform pos: 42.5,11.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 19042 components: - type: Transform pos: 47.5,19.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignCargoDock entities: - uid: 23915 @@ -129564,6 +130816,8 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,6.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignChapel entities: - uid: 14507 @@ -129571,16 +130825,22 @@ entities: - type: Transform pos: -27.5,22.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 14508 components: - type: Transform pos: -23.5,10.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 14619 components: - type: Transform pos: -17.5,18.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignChem entities: - uid: 2661 @@ -129588,16 +130848,22 @@ entities: - type: Transform pos: 37.5,-25.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 2809 components: - type: Transform pos: 42.5,-29.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 8932 components: - type: Transform pos: 42.5,-25.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignCryo entities: - uid: 23955 @@ -129605,6 +130871,8 @@ entities: - type: Transform pos: 14.5,-11.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignCryogenicsMed entities: - uid: 4111 @@ -129612,21 +130880,29 @@ entities: - type: Transform pos: 46.5,-19.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 7283 components: - type: Transform pos: -49.5,6.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 15580 components: - type: Transform pos: -27.5,42.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 15600 components: - type: Transform pos: -19.5,33.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignDangerMed entities: - uid: 8026 @@ -129634,11 +130910,15 @@ entities: - type: Transform pos: 68.5,-25.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 9656 components: - type: Transform pos: -54.5,18.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignDetective entities: - uid: 8681 @@ -129647,6 +130927,8 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-25.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignDirectionalAtmos entities: - uid: 2633 @@ -129655,12 +130937,16 @@ entities: rot: 3.141592653589793 rad pos: -17.5,22.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 6129 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,10.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBar entities: - uid: 19453 @@ -129669,6 +130955,8 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBridge entities: - uid: 2632 @@ -129677,41 +130965,55 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-8.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 4362 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 5144 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-52.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 5177 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-43.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 5860 components: - type: Transform pos: 14.5,-0.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 14591 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 18964 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignDirectionalChapel entities: - uid: 228 @@ -129720,30 +131022,40 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,22.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11436 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 13772 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,6.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 13773 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,6.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 14519 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,8.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignDirectionalChemistry entities: - uid: 19435 @@ -129751,6 +131063,8 @@ entities: - type: Transform pos: 42.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignDirectionalCryo entities: - uid: 12348 @@ -129759,6 +131073,8 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignDirectionalDorms entities: - uid: 9596 @@ -129767,30 +131083,40 @@ entities: rot: 3.141592653589793 rad pos: -17.5,10.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 13771 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,6.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 13774 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,6.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 17567 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,22.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21188 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,18.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEng entities: - uid: 724 @@ -129799,53 +131125,71 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 2654 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 5602 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,8.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 6996 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-0.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 7674 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,12.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11428 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,6.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 13770 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,6.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 19508 components: - type: Transform pos: 18.5,26.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23873 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,10.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEvac entities: - uid: 6510 @@ -129854,48 +131198,64 @@ entities: rot: 3.141592653589793 rad pos: 14.5,-0.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11414 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,6.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11429 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,8.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11430 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11449 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,16.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 13154 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,12.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 13155 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,26.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 14618 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignDirectionalFood entities: - uid: 19443 @@ -129904,6 +131264,8 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignDirectionalGravity entities: - uid: 17999 @@ -129912,11 +131274,15 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,8.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23875 components: - type: Transform pos: -13.5,10.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignDirectionalHop entities: - uid: 14589 @@ -129925,17 +131291,23 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 19444 components: - type: Transform pos: 5.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21744 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-52.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignDirectionalHydro entities: - uid: 2653 @@ -129944,6 +131316,8 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignDirectionalIcu entities: - uid: 17157 @@ -129952,6 +131326,8 @@ entities: rot: 3.141592653589793 rad pos: 31.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignDirectionalJanitor entities: - uid: 6762 @@ -129959,12 +131335,16 @@ entities: - type: Transform pos: -3.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21745 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-25.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignDirectionalLibrary entities: - uid: 19448 @@ -129973,6 +131353,8 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignDirectionalMed entities: - uid: 2651 @@ -129981,29 +131363,39 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 2652 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11334 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,8.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11335 components: - type: Transform pos: 14.5,-0.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11433 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSalvage entities: - uid: 13144 @@ -130012,11 +131404,15 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,10.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 13253 components: - type: Transform pos: 35.5,10.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSci entities: - uid: 709 @@ -130025,18 +131421,24 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 5600 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,8.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 13777 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,6.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSec entities: - uid: 710 @@ -130045,41 +131447,55 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 5178 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-43.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 6997 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 8250 components: - type: Transform pos: -35.5,6.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 9015 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,6.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11422 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,8.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11434 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSolar entities: - uid: 1254 @@ -130088,46 +131504,62 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,-17.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 3789 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-40.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11439 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-22.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11442 components: - type: Transform pos: 24.5,-42.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11443 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-49.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11444 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-49.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11445 components: - type: Transform pos: 40.5,-42.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23721 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,47.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSupply entities: - uid: 712 @@ -130136,59 +131568,79 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 723 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 5601 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,8.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 5643 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-0.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 8952 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,6.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11441 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,10.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11450 components: - type: Transform pos: 14.5,16.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 19509 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,26.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 19519 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,10.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23874 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,10.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignDirectionalWash entities: - uid: 11446 @@ -130197,12 +131649,16 @@ entities: rot: 3.141592653589793 rad pos: 14.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11448 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,16.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignDisposalSpace entities: - uid: 2104 @@ -130211,21 +131667,29 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-4.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 6143 components: - type: Transform pos: -9.5,-39.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 6144 components: - type: Transform pos: -1.5,-40.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 7286 components: - type: Transform pos: -15.5,-38.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignElectricalMed entities: - uid: 161 @@ -130233,131 +131697,183 @@ entities: - type: Transform pos: 38.5,-35.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 345 components: - type: Transform pos: 51.5,-4.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 660 components: - type: Transform pos: 10.5,-19.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 6613 components: - type: Transform pos: -62.5,-17.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11494 components: - type: Transform pos: -5.5,-48.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11495 components: - type: Transform pos: 11.5,-48.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 13915 components: - type: Transform pos: -58.5,10.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16067 components: - type: Transform pos: 3.5,23.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16180 components: - type: Transform pos: 11.5,38.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16183 components: - type: Transform pos: 11.5,54.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16257 components: - type: Transform pos: 6.5,63.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16258 components: - type: Transform pos: 11.5,62.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16260 components: - type: Transform pos: -10.5,58.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16261 components: - type: Transform pos: 11.5,46.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16263 components: - type: Transform pos: -5.5,63.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 18612 components: - type: Transform pos: 3.5,-1.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 19143 components: - type: Transform pos: 18.5,19.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 20075 components: - type: Transform pos: 32.5,-0.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 20424 components: - type: Transform pos: 60.5,-37.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 20728 components: - type: Transform pos: -26.5,58.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21432 components: - type: Transform pos: -6.5,-39.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21465 components: - type: Transform pos: -12.5,-31.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23097 components: - type: Transform pos: -111.5,32.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23100 components: - type: Transform pos: -117.5,20.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23888 components: - type: Transform pos: -11.5,26.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24250 components: - type: Transform pos: 32.5,-51.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignEngine entities: - uid: 9122 @@ -130365,11 +131881,15 @@ entities: - type: Transform pos: -6.5,-1.5 parent: 7536 + - type: Fixtures + fixtures: {} - uid: 15601 components: - type: Transform pos: -18.5,36.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignEngineering entities: - uid: 11345 @@ -130377,16 +131897,22 @@ entities: - type: Transform pos: -1.5,12.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16099 components: - type: Transform pos: -1.5,22.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23610 components: - type: Transform pos: -60.5,53.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignEscapePods entities: - uid: 5258 @@ -130394,30 +131920,40 @@ entities: - type: Transform pos: 23.5,-47.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 10944 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-47.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11807 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,26.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24539 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,18.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24551 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-12.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignEVA entities: - uid: 1452 @@ -130425,16 +131961,22 @@ entities: - type: Transform pos: 14.5,-15.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 3745 components: - type: Transform pos: 2.5,-38.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 14368 components: - type: Transform pos: -25.5,-1.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignExamroom entities: - uid: 4284 @@ -130442,6 +131984,8 @@ entities: - type: Transform pos: 32.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignFire entities: - uid: 10251 @@ -130449,16 +131993,22 @@ entities: - type: Transform pos: -48.5,18.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 15306 components: - type: Transform pos: -23.5,33.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 15585 components: - type: Transform pos: -9.5,33.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignFlammableMed entities: - uid: 17241 @@ -130466,11 +132016,15 @@ entities: - type: Transform pos: -13.5,33.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21182 components: - type: Transform pos: -60.5,5.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignGenpop entities: - uid: 2131 @@ -130479,6 +132033,8 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-13.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignGravity entities: - uid: 1219 @@ -130487,12 +132043,16 @@ entities: rot: 3.141592653589793 rad pos: -14.5,6.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11369 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,4.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignHead entities: - uid: 1244 @@ -130500,6 +132060,8 @@ entities: - type: Transform pos: 2.5,-25.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignHydro1 entities: - uid: 3840 @@ -130507,6 +132069,8 @@ entities: - type: Transform pos: 28.5,-25.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignInterrogation entities: - uid: 112 @@ -130515,6 +132079,8 @@ entities: rot: 3.141592653589793 rad pos: -33.5,-15.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignJanitor entities: - uid: 9091 @@ -130522,6 +132088,8 @@ entities: - type: Transform pos: -8.5,-25.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignKiddiePlaque entities: - uid: 23096 @@ -130529,6 +132097,8 @@ entities: - type: Transform pos: -109.5,20.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignKitchen entities: - uid: 23382 @@ -130537,6 +132107,8 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-25.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignLawyer entities: - uid: 18024 @@ -130544,11 +132116,15 @@ entities: - type: Transform pos: -47.5,-19.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24097 components: - type: Transform pos: -39.5,-18.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignLibrary entities: - uid: 14057 @@ -130556,11 +132132,15 @@ entities: - type: Transform pos: -13.5,18.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 14058 components: - type: Transform pos: -7.5,10.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignMaterials entities: - uid: 7203 @@ -130568,12 +132148,16 @@ entities: - type: Transform pos: 3.5,-46.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23969 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,17.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignMedical entities: - uid: 6836 @@ -130581,6 +132165,8 @@ entities: - type: Transform pos: 36.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignMorgue entities: - uid: 265 @@ -130588,11 +132174,15 @@ entities: - type: Transform pos: 42.5,-8.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24242 components: - type: Transform pos: 35.5,-5.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignNews entities: - uid: 2909 @@ -130600,6 +132190,8 @@ entities: - type: Transform pos: 38.5,15.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignNosmoking entities: - uid: 2577 @@ -130607,21 +132199,29 @@ entities: - type: Transform pos: 27.5,-29.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 6567 components: - type: Transform pos: 8.5,15.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 15170 components: - type: Transform pos: -27.5,37.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23396 components: - type: Transform pos: -60.5,39.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignPlaque entities: - uid: 2894 @@ -130629,11 +132229,15 @@ entities: - type: Transform pos: 4.5,-4.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16161 components: - type: Transform pos: -43.5,10.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignRadiationMed entities: - uid: 15579 @@ -130641,101 +132245,141 @@ entities: - type: Transform pos: -27.5,41.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16025 components: - type: Transform pos: -2.5,42.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16176 components: - type: Transform pos: 10.5,63.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16177 components: - type: Transform pos: -10.5,54.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16178 components: - type: Transform pos: 11.5,50.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16179 components: - type: Transform pos: 11.5,42.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16182 components: - type: Transform pos: -6.5,41.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16192 components: - type: Transform pos: 7.5,41.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16262 components: - type: Transform pos: 11.5,34.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16264 components: - type: Transform pos: 11.5,58.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16265 components: - type: Transform pos: 2.5,63.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16266 components: - type: Transform pos: -9.5,63.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16405 components: - type: Transform pos: 3.5,42.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16406 components: - type: Transform pos: 2.5,30.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16414 components: - type: Transform pos: -1.5,30.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16420 components: - type: Transform pos: -1.5,34.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16455 components: - type: Transform pos: 2.5,34.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 17060 components: - type: Transform pos: -1.5,63.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 19746 components: - type: Transform pos: -13.5,2.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21089 components: - type: Transform pos: -56.5,5.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignRedFive entities: - uid: 7667 @@ -130743,6 +132387,8 @@ entities: - type: Transform pos: -56.5,25.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignRedFour entities: - uid: 13856 @@ -130751,6 +132397,8 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,21.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignRedSix entities: - uid: 7111 @@ -130758,6 +132406,8 @@ entities: - type: Transform pos: -56.5,21.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignRedThree entities: - uid: 7514 @@ -130765,6 +132415,8 @@ entities: - type: Transform pos: -44.5,25.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignRedTwo entities: - uid: 8156 @@ -130772,6 +132424,8 @@ entities: - type: Transform pos: -34.5,22.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignRestroom entities: - uid: 23970 @@ -130780,6 +132434,8 @@ entities: rot: 3.141592653589793 rad pos: 18.5,11.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignRND entities: - uid: 7085 @@ -130787,11 +132443,15 @@ entities: - type: Transform pos: -39.5,-8.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 9377 components: - type: Transform pos: -46.5,-2.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignRobo entities: - uid: 7138 @@ -130799,6 +132459,8 @@ entities: - type: Transform pos: -35.5,10.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignSalvage entities: - uid: 13759 @@ -130807,6 +132469,8 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,3.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignScience entities: - uid: 9467 @@ -130814,6 +132478,8 @@ entities: - type: Transform pos: -40.5,0.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignSecureMed entities: - uid: 9466 @@ -130821,61 +132487,85 @@ entities: - type: Transform pos: -40.5,-1.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 14664 components: - type: Transform pos: -31.5,32.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 14665 components: - type: Transform pos: -13.5,31.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 15550 components: - type: Transform pos: -19.5,31.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16365 components: - type: Transform pos: -13.5,36.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 17236 components: - type: Transform pos: -19.5,36.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 17292 components: - type: Transform pos: -58.5,0.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 19889 components: - type: Transform pos: 25.5,6.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 19890 components: - type: Transform pos: 21.5,6.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21271 components: - type: Transform pos: -72.5,15.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23609 components: - type: Transform pos: -61.5,53.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23827 components: - type: Transform pos: 24.5,16.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignSecureMedRed entities: - uid: 8174 @@ -130883,6 +132573,8 @@ entities: - type: Transform pos: -2.5,-47.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignSecureSmall entities: - uid: 8025 @@ -130890,16 +132582,22 @@ entities: - type: Transform pos: 43.5,-47.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23641 components: - type: Transform pos: -61.5,32.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23642 components: - type: Transform pos: -55.5,32.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignSecureSmallRed entities: - uid: 9124 @@ -130907,6 +132605,8 @@ entities: - type: Transform pos: -2.5,-2.5 parent: 7536 + - type: Fixtures + fixtures: {} - proto: SignSecurity entities: - uid: 707 @@ -130915,11 +132615,15 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,1.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 1758 components: - type: Transform pos: -25.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignServer entities: - uid: 23872 @@ -130928,6 +132632,8 @@ entities: rot: 3.141592653589793 rad pos: -49.5,10.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignShipDock entities: - uid: 7700 @@ -130935,23 +132641,31 @@ entities: - type: Transform pos: 42.5,19.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11131 components: - type: Transform pos: 18.5,22.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24932 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,26.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 24933 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,26.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignSmoking entities: - uid: 5791 @@ -130959,16 +132673,22 @@ entities: - type: Transform pos: -4.5,22.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23098 components: - type: Transform pos: -110.5,32.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23099 components: - type: Transform pos: -121.5,16.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignSomethingOld entities: - uid: 9176 @@ -130977,6 +132697,8 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-2.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignSpace entities: - uid: 1451 @@ -130984,93 +132706,129 @@ entities: - type: Transform pos: 11.5,-15.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 3275 components: - type: Transform pos: 30.5,-49.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 4005 components: - type: Transform pos: -17.5,-35.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 4634 components: - type: Transform pos: -3.5,-72.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 4635 components: - type: Transform pos: 4.5,-72.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 7534 components: - type: Transform pos: -52.5,-30.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 7535 components: - type: Transform pos: -46.5,-35.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16247 components: - type: Transform pos: 10.5,40.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 16259 components: - type: Transform pos: -9.5,40.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 18803 components: - type: Transform pos: 57.5,13.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21272 components: - type: Transform pos: -71.5,21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21474 components: - type: Transform pos: 32.5,-56.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21475 components: - type: Transform pos: 64.5,-37.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21476 components: - type: Transform pos: -24.5,47.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 21477 components: - type: Transform pos: -66.5,-17.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 22430 components: - type: Transform pos: -94.5,19.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 25401 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-62.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 25402 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-62.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignSurgery entities: - uid: 2137 @@ -131078,6 +132836,8 @@ entities: - type: Transform pos: 42.5,-14.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignTelecomms entities: - uid: 5407 @@ -131085,6 +132845,8 @@ entities: - type: Transform pos: 22.5,6.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignTheater entities: - uid: 5209 @@ -131093,6 +132855,8 @@ entities: rot: 3.141592653589793 rad pos: 18.5,-20.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignToolStorage entities: - uid: 6315 @@ -131100,6 +132864,8 @@ entities: - type: Transform pos: 14.5,10.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignVault entities: - uid: 24268 @@ -131108,6 +132874,8 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-5.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SignVirology entities: - uid: 2969 @@ -131115,6 +132883,8 @@ entities: - type: Transform pos: 46.5,-30.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SingularityGenerator entities: - uid: 16249 @@ -134300,6 +136070,13 @@ entities: - type: Transform pos: -6.7018414,-28.567108 parent: 60 +- proto: SprayPainter + entities: + - uid: 5315 + components: + - type: Transform + pos: -17.550941,46.54466 + parent: 60 - proto: StairDark entities: - uid: 2908 @@ -134415,68 +136192,94 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,-18.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 1910 components: - type: Transform pos: -29.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 2097 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-7.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 7693 components: - type: Transform pos: 12.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 8948 components: - type: Transform pos: -11.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11365 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,6.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 18700 components: - type: Transform pos: 11.5,10.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 18701 components: - type: Transform pos: 27.5,10.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23716 components: - type: Transform pos: -39.5,26.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23729 components: - type: Transform pos: 2.5,-33.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23730 components: - type: Transform pos: -5.5,-52.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23731 components: - type: Transform pos: 28.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 25313 components: - type: Transform pos: 47.5,26.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: SteelBench entities: - uid: 669 @@ -134828,15 +136631,15 @@ entities: - type: Transform pos: -45.5,44.5 parent: 60 - - uid: 15415 + - uid: 15554 components: - type: Transform - pos: -12.5,39.5 + pos: -10.5,39.5 parent: 60 - - uid: 15416 + - uid: 16685 components: - type: Transform - pos: -13.5,39.5 + pos: -10.5,40.5 parent: 60 - uid: 23633 components: @@ -135220,6 +137023,16 @@ entities: - SurveillanceCameraCommand nameSet: True id: Tech Vault Boards + - uid: 17952 + components: + - type: Transform + pos: -84.5,16.5 + parent: 60 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI Sat Bridge - uid: 21051 components: - type: Transform @@ -135555,71 +137368,150 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Telecomms Entrance - - uid: 12295 + - uid: 15278 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,35.5 + pos: -15.5,53.5 parent: 60 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Anchor Room - - uid: 15449 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,49.5 - parent: 60 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Heat Room 2 - - uid: 15450 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,49.5 - parent: 60 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Heat Room 1 - - uid: 15451 + id: Burn Chamber + - uid: 15440 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,42.5 parent: 60 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG Cooling Loop - - uid: 15653 + id: TEG West + - uid: 15496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,42.5 + parent: 60 + - type: SurveillanceCamera + id: TEG East + - uid: 17959 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,46.5 + pos: 2.5,21.5 parent: 60 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: TEG Hot Loop - - uid: 16002 + id: Engi Breakroom + - uid: 17960 components: - type: Transform - pos: -15.5,37.5 + rot: -1.5707963267948966 rad + pos: 4.5,25.5 parent: 60 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: TEG + id: Engi AME + - uid: 17962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,36.5 + parent: 60 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engi Storage + - uid: 17964 + components: + - type: Transform + pos: -5.5,27.5 + parent: 60 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engi Storage Hallway + - uid: 17965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,42.5 + parent: 60 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos North + - uid: 17966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,35.5 + parent: 60 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engi Anchor + - uid: 17967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,41.5 + parent: 60 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engi PA + - uid: 17982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,40.5 + parent: 60 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engi PA East + - uid: 17987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,54.5 + parent: 60 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engi Containment West + - uid: 17993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,54.5 + parent: 60 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engi Containment East + - uid: 17998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,31.5 + parent: 60 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engi Containment Storage - uid: 18880 components: - type: Transform @@ -135631,17 +137523,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Telecomms - - uid: 21070 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,42.5 - parent: 60 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos North - uid: 21071 components: - type: Transform @@ -135824,27 +137705,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Solars South East Airlock - - uid: 24752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,49.5 - parent: 60 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering North Airlock - - uid: 24753 - components: - - type: Transform - pos: -24.5,51.5 - parent: 60 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering North Airlock Door - uid: 24754 components: - type: Transform @@ -136992,6 +138852,70 @@ entities: - SurveillanceCameraSecurity nameSet: True id: EVA storage + - uid: 17953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 60 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Genpop Entrance + - uid: 17954 + components: + - type: Transform + pos: -17.5,-20.5 + parent: 60 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Genpop + - uid: 17955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-8.5 + parent: 60 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Genpop Kitchen + - uid: 17958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-15.5 + parent: 60 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Genpop Game Room + - uid: 18000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-11.5 + parent: 60 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Genpop Outside + - uid: 18008 + components: + - type: Transform + pos: -21.5,-24.5 + parent: 60 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Detective Outside - uid: 21180 components: - type: Transform @@ -137993,6 +139917,12 @@ entities: - type: Transform pos: 37.5,15.5 parent: 60 + - uid: 16963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,45.5 + parent: 60 - uid: 17020 components: - type: Transform @@ -139645,41 +141575,161 @@ entities: - type: Transform pos: 24.5,0.5 parent: 60 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 17633 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - uid: 18890 components: - type: Transform pos: 22.5,0.5 parent: 60 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 18891 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - uid: 18893 components: - type: Transform pos: 25.5,-0.5 parent: 60 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 18907 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - uid: 18909 components: - type: Transform pos: 24.5,2.5 parent: 60 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 19008 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - uid: 19009 components: - type: Transform pos: 25.5,2.5 parent: 60 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 19039 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - uid: 19040 components: - type: Transform pos: 22.5,2.5 parent: 60 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 19041 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - uid: 19091 components: - type: Transform pos: 21.5,2.5 parent: 60 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 19092 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - uid: 19096 components: - type: Transform pos: 21.5,-0.5 parent: 60 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 19097 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - uid: 19168 components: - type: Transform @@ -141165,22 +143215,30 @@ entities: - type: Transform pos: -110.5,27.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 3090 components: - type: Transform pos: -112.5,27.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 5081 components: - type: Transform pos: -25.5,-28.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 7582 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,19.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: WallmountTelevision entities: - uid: 3210 @@ -141189,36 +143247,50 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,-5.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 8148 components: - type: Transform pos: -31.5,27.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 9569 components: - type: Transform pos: -12.5,-49.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 11885 components: - type: Transform pos: 33.5,10.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 12905 components: - type: Transform pos: 26.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 13723 components: - type: Transform pos: -19.5,-21.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 19679 components: - type: Transform pos: 9.5,10.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: WallPlastitanium entities: - uid: 7538 @@ -145882,6 +147954,11 @@ entities: - type: Transform pos: 13.5,-51.5 parent: 60 + - uid: 7237 + components: + - type: Transform + pos: -29.5,48.5 + parent: 60 - uid: 7254 components: - type: Transform @@ -146187,11 +148264,6 @@ entities: - type: Transform pos: -4.5,-52.5 parent: 60 - - uid: 8158 - components: - - type: Transform - pos: -15.5,49.5 - parent: 60 - uid: 8167 components: - type: Transform @@ -147863,16 +149935,6 @@ entities: - type: Transform pos: -40.5,29.5 parent: 60 - - uid: 14823 - components: - - type: Transform - pos: -30.5,47.5 - parent: 60 - - uid: 14825 - components: - - type: Transform - pos: -29.5,47.5 - parent: 60 - uid: 14828 components: - type: Transform @@ -147888,11 +149950,6 @@ entities: - type: Transform pos: -47.5,45.5 parent: 60 - - uid: 14839 - components: - - type: Transform - pos: -35.5,47.5 - parent: 60 - uid: 14847 components: - type: Transform @@ -147973,11 +150030,6 @@ entities: - type: Transform pos: -42.5,35.5 parent: 60 - - uid: 14967 - components: - - type: Transform - pos: -32.5,47.5 - parent: 60 - uid: 14972 components: - type: Transform @@ -148033,6 +150085,11 @@ entities: - type: Transform pos: -23.5,47.5 parent: 60 + - uid: 15054 + components: + - type: Transform + pos: -30.5,48.5 + parent: 60 - uid: 15057 components: - type: Transform @@ -148143,11 +150200,6 @@ entities: - type: Transform pos: -47.5,31.5 parent: 60 - - uid: 15087 - components: - - type: Transform - pos: -33.5,47.5 - parent: 60 - uid: 15088 components: - type: Transform @@ -148178,6 +150230,11 @@ entities: - type: Transform pos: -28.5,37.5 parent: 60 + - uid: 15184 + components: + - type: Transform + pos: -35.5,48.5 + parent: 60 - uid: 15186 components: - type: Transform @@ -148188,15 +150245,25 @@ entities: - type: Transform pos: -27.5,41.5 parent: 60 - - uid: 15299 + - uid: 15272 components: - type: Transform - pos: -23.5,48.5 + pos: -32.5,48.5 parent: 60 - - uid: 15300 + - uid: 15282 components: - type: Transform - pos: -23.5,49.5 + pos: -14.5,54.5 + parent: 60 + - uid: 15295 + components: + - type: Transform + pos: -14.5,50.5 + parent: 60 + - uid: 15302 + components: + - type: Transform + pos: -17.5,50.5 parent: 60 - uid: 15307 components: @@ -148238,16 +150305,6 @@ entities: - type: Transform pos: -9.5,33.5 parent: 60 - - uid: 15322 - components: - - type: Transform - pos: -23.5,50.5 - parent: 60 - - uid: 15323 - components: - - type: Transform - pos: -23.5,51.5 - parent: 60 - uid: 15324 components: - type: Transform @@ -148268,50 +150325,30 @@ entities: - type: Transform pos: -9.5,51.5 parent: 60 - - uid: 15329 + - uid: 15345 components: - type: Transform - pos: -10.5,52.5 + pos: -11.5,54.5 parent: 60 - - uid: 15330 + - uid: 15351 components: - type: Transform - pos: -11.5,52.5 + pos: -12.5,54.5 parent: 60 - - uid: 15334 + - uid: 15355 components: - type: Transform - pos: -15.5,52.5 + pos: -15.5,50.5 parent: 60 - - uid: 15335 + - uid: 15383 components: - type: Transform - pos: -16.5,52.5 + pos: -18.5,50.5 parent: 60 - - uid: 15336 + - uid: 15412 components: - type: Transform - pos: -17.5,52.5 - parent: 60 - - uid: 15341 - components: - - type: Transform - pos: -21.5,52.5 - parent: 60 - - uid: 15342 - components: - - type: Transform - pos: -22.5,52.5 - parent: 60 - - uid: 15394 - components: - - type: Transform - pos: -16.5,49.5 - parent: 60 - - uid: 15396 - components: - - type: Transform - pos: -16.5,50.5 + pos: -15.5,54.5 parent: 60 - uid: 15417 components: @@ -148323,25 +150360,60 @@ entities: - type: Transform pos: -26.5,47.5 parent: 60 + - uid: 15424 + components: + - type: Transform + pos: -18.5,49.5 + parent: 60 + - uid: 15441 + components: + - type: Transform + pos: -27.5,50.5 + parent: 60 - uid: 15444 components: - type: Transform pos: -52.5,29.5 parent: 60 - - uid: 15485 + - uid: 15446 components: - type: Transform - pos: -17.5,47.5 + pos: -10.5,50.5 parent: 60 - - uid: 15486 + - uid: 15501 + components: + - type: Transform + pos: -18.5,47.5 + parent: 60 + - uid: 15502 components: - type: Transform pos: -15.5,47.5 parent: 60 - - uid: 15487 + - uid: 15503 components: - type: Transform - pos: -17.5,49.5 + pos: -27.5,49.5 + parent: 60 + - uid: 15504 + components: + - type: Transform + pos: -27.5,48.5 + parent: 60 + - uid: 15509 + components: + - type: Transform + pos: -22.5,50.5 + parent: 60 + - uid: 15525 + components: + - type: Transform + pos: -14.5,47.5 + parent: 60 + - uid: 15530 + components: + - type: Transform + pos: -17.5,47.5 parent: 60 - uid: 15538 components: @@ -148368,11 +150440,6 @@ entities: - type: Transform pos: -9.5,34.5 parent: 60 - - uid: 15584 - components: - - type: Transform - pos: -16.5,51.5 - parent: 60 - uid: 15716 components: - type: Transform @@ -148443,6 +150510,11 @@ entities: - type: Transform pos: 9.5,30.5 parent: 60 + - uid: 16044 + components: + - type: Transform + pos: -33.5,48.5 + parent: 60 - uid: 16121 components: - type: Transform @@ -148863,10 +150935,23 @@ entities: - type: Transform pos: -1.5,30.5 parent: 60 - - uid: 16981 + - uid: 16979 components: - type: Transform - pos: -23.5,52.5 + rot: 1.5707963267948966 rad + pos: -24.5,48.5 + parent: 60 + - uid: 16980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,49.5 + parent: 60 + - uid: 16982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,54.5 parent: 60 - uid: 17059 components: @@ -149048,6 +151133,12 @@ entities: - type: Transform pos: -54.5,18.5 parent: 60 + - uid: 17466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,54.5 + parent: 60 - uid: 17475 components: - type: Transform @@ -149218,16 +151309,6 @@ entities: - type: Transform pos: -24.5,50.5 parent: 60 - - uid: 17907 - components: - - type: Transform - pos: -26.5,48.5 - parent: 60 - - uid: 17908 - components: - - type: Transform - pos: -26.5,49.5 - parent: 60 - uid: 17909 components: - type: Transform @@ -156314,11 +158395,15 @@ entities: - type: Transform pos: -15.5,-1.5 parent: 7536 + - type: Fixtures + fixtures: {} - uid: 23565 components: - type: Transform pos: -61.5,42.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: WarningCO2 entities: - uid: 15238 @@ -156326,6 +158411,8 @@ entities: - type: Transform pos: -46.5,36.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: WarningN2 entities: - uid: 15239 @@ -156333,6 +158420,8 @@ entities: - type: Transform pos: -46.5,32.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: WarningN2O entities: - uid: 15240 @@ -156340,6 +158429,8 @@ entities: - type: Transform pos: -46.5,44.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: WarningO2 entities: - uid: 15237 @@ -156347,6 +158438,8 @@ entities: - type: Transform pos: -46.5,34.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: WarningPlasma entities: - uid: 15242 @@ -156354,6 +158447,8 @@ entities: - type: Transform pos: -46.5,40.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: WarningTritium entities: - uid: 15243 @@ -156361,6 +158456,8 @@ entities: - type: Transform pos: -46.5,42.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: WarningWaste entities: - uid: 15236 @@ -156368,11 +158465,15 @@ entities: - type: Transform pos: -46.5,38.5 parent: 60 + - type: Fixtures + fixtures: {} - uid: 23564 components: - type: Transform pos: -55.5,39.5 parent: 60 + - type: Fixtures + fixtures: {} - proto: WaterCooler entities: - uid: 1382 @@ -156535,6 +158636,53 @@ entities: parent: 60 - type: Physics canCollide: False +- proto: WeaponEnergyTurretAI + entities: + - uid: 17908 + components: + - type: Transform + pos: -107.5,21.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 17907 + - uid: 17915 + components: + - type: Transform + pos: -107.5,30.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 17907 + - uid: 17916 + components: + - type: Transform + pos: -115.5,30.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 17907 + - uid: 17950 + components: + - type: Transform + pos: -115.5,21.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 17907 +- proto: WeaponEnergyTurretAIControlPanel + entities: + - uid: 17907 + components: + - type: Transform + pos: -112.5,20.5 + parent: 60 + - type: DeviceList + devices: + - 17950 + - 17916 + - 17915 + - 17908 - proto: WeaponEnergyTurretSecurity entities: - uid: 1506 @@ -156704,6 +158852,11 @@ entities: - type: Transform pos: -7.5,31.5 parent: 60 + - uid: 16969 + components: + - type: Transform + pos: -14.5,46.5 + parent: 60 - uid: 19720 components: - type: Transform diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index af18ccf8c7..0f6680d9ba 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -1,16 +1,17 @@ meta: format: 7 category: Map - engineVersion: 264.0.0 + engineVersion: 266.0.0 forkId: "" forkVersion: "" - time: 07/22/2025 15:47:55 - entityCount: 28659 + time: 08/29/2025 04:43:38 + entityCount: 28794 maps: - 780 grids: - 8364 - 11906 +- 28794 orphans: [] nullspace: [] tilemap: @@ -94,119 +95,119 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: WQAAAAACAHkAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAQAdAAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAAAHQAAAAABAHkAAAAAAAB5AAAAAAAAEQAAAAAAAB0AAAAAAAB5AAAAAAAAEQAAAAAAAFkAAAAAAgB5AAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAEAIQAAAAACAB0AAAAAAgAdAAAAAAEAHQAAAAAAAB0AAAAAAgB5AAAAAAAAEQAAAAAAABEAAAAAAAAdAAAAAAAAeQAAAAAAABEAAAAAAABZAAAAAAMAeQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAACAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAgAdAAAAAAMAeQAAAAAAAHkAAAAAAAARAAAAAAAAHQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAAAHQAAAAACAHkAAAAAAAB5AAAAAAAAEQAAAAAAAB0AAAAAAwARAAAAAAAAEQAAAAAAAFkAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAIAHQAAAAACAB0AAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAEAHQAAAAADAB0AAAAAAwBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAEAWQAAAAACAHkAAAAAAABZAAAAAAMAeQAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAAAAB0AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAQBZAAAAAAIAeQAAAAAAAFkAAAAAAgB5AAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAMAHQAAAAABAB0AAAAAAgAdAAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAIAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAAAdAAAAAAMAHQAAAAADAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAgAdAAAAAAEAHQAAAAABAB0AAAAAAABZAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAMAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAwBZAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAACAA== + tiles: WQAAAAACAHkAAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAQAdAAAAAAIAHQAAAAACAB0AAAAAAQAdAAAAAAMAHQAAAAABAHkAAAAAAAB5AAAAAAAAEQAAAAAAAB0AAAAAAgB5AAAAAAAAEQAAAAAAAFkAAAAAAwB5AAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAEAIQAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAADAB0AAAAAAgB5AAAAAAAAEQAAAAAAABEAAAAAAAAdAAAAAAAAeQAAAAAAABEAAAAAAABZAAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAwAdAAAAAAIAHQAAAAAAAB0AAAAAAwAdAAAAAAAAeQAAAAAAAHkAAAAAAAARAAAAAAAAHQAAAAACAHkAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAgAdAAAAAAMAHQAAAAACAB0AAAAAAQAdAAAAAAIAHQAAAAABAHkAAAAAAAB5AAAAAAAAEQAAAAAAAB0AAAAAAQARAAAAAAAAEQAAAAAAAFkAAAAAAQB5AAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAABAB0AAAAAAgBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAAAAHkAAAAAAABZAAAAAAEAeQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAQAdAAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAgAdAAAAAAIAHQAAAAABAB0AAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAQBZAAAAAAMAeQAAAAAAAFkAAAAAAQB5AAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAIAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAMAHQAAAAABAFkAAAAAAwB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAQAdAAAAAAEAHQAAAAACAB0AAAAAAgBZAAAAAAMAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAwBZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAEAWQAAAAAAAA== version: 7 0,0: ind: 0,0 - tiles: WQAAAAACAFkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgBZAAAAAAMAWQAAAAABAHkAAAAAAAB5AAAAAAAALAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAACAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAIAWQAAAAADAFkAAAAAAQB5AAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAMAeQAAAAAAAFAAAAAAAABQAAAAAAAAeQAAAAAAABAAAAAAAAB5AAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAAAAHkAAAAAAABQAAAAAAAAUAAAAAAAAHkAAAAAAAAQAAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAwB5AAAAAAAAUAAAAAAAAFAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAADAHYAAAAAAAB2AAAAAAMAdgAAAAADAFkAAAAAAgBZAAAAAAEAeQAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAAB2AAAAAAEAdgAAAAABAHkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAgB5AAAAAAAAeQAAAAAAACwAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAQB2AAAAAAIAdgAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAgB5AAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAwB2AAAAAAMAdgAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAABAHYAAAAAAwB2AAAAAAMAdgAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAAB2AAAAAAIAdgAAAAACAHkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAgBZAAAAAAEAWQAAAAABAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHYAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAFkAAAAAAABZAAAAAAEAeQAAAAAAAHYAAAAAAwB2AAAAAAEAdgAAAAAAAHkAAAAAAAAUAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAACAHkAAAAAAAB2AAAAAAEAdgAAAAABAHYAAAAAAAB5AAAAAAAAFAAAAAAAAA== + tiles: WQAAAAACAFkAAAAAAQBZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgBZAAAAAAIAWQAAAAADAHkAAAAAAAB5AAAAAAAALAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAACAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAIAWQAAAAABAFkAAAAAAgB5AAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAMAeQAAAAAAAFAAAAAAAABQAAAAAAAAeQAAAAAAABAAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAAAAHkAAAAAAABQAAAAAAAAUAAAAAAAAHkAAAAAAAAQAAAAAAAAeQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAAB5AAAAAAAAUAAAAAAAAFAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAQB2AAAAAAEAdgAAAAABAFkAAAAAAABZAAAAAAMAeQAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAgB2AAAAAAAAdgAAAAABAHkAAAAAAABZAAAAAAAAWQAAAAABAHkAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAgB5AAAAAAAAeQAAAAAAACwAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAIAdgAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAAB5AAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAQB2AAAAAAAAdgAAAAABAHkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAwB2AAAAAAAAdgAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAgBZAAAAAAEAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAAB2AAAAAAMAdgAAAAACAHkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHYAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAFkAAAAAAQBZAAAAAAMAeQAAAAAAAHYAAAAAAgB2AAAAAAEAdgAAAAACAHkAAAAAAAAUAAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAAAAHkAAAAAAAB2AAAAAAIAdgAAAAADAHYAAAAAAAB5AAAAAAAAFAAAAAAAAA== version: 7 0,-1: ind: 0,-1 - tiles: eQAAAAAAAB0AAAAAAgARAAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAMAdgAAAAADAHYAAAAAAwB2AAAAAAEAdgAAAAAAAHYAAAAAAAB2AAAAAAIAHQAAAAABAHkAAAAAAABZAAAAAAMAWQAAAAACAHkAAAAAAAAdAAAAAAAAEQAAAAAAABEAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAIAdgAAAAAAAHYAAAAAAgB2AAAAAAMAdgAAAAADAB0AAAAAAwB5AAAAAAAAWQAAAAABAFkAAAAAAgB5AAAAAAAAHQAAAAADABEAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAwB2AAAAAAIAdgAAAAADAHYAAAAAAwB2AAAAAAIAdgAAAAABAHYAAAAAAgAdAAAAAAEAeQAAAAAAAFkAAAAAAwBZAAAAAAIAEQAAAAAAAB0AAAAAAwARAAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAIAdgAAAAADAHYAAAAAAQB2AAAAAAEAdgAAAAACAHYAAAAAAAB2AAAAAAAAHQAAAAABAHkAAAAAAABZAAAAAAIAWQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAIAHQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAABAB0AAAAAAQB5AAAAAAAAWQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAQB5AAAAAAAAWQAAAAABAHkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAABAHkAAAAAAABZAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAgBZAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAACAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAABAB0AAAAAAwAdAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAwAdAAAAAAIAHQAAAAACAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAIAWQAAAAAAAA== + tiles: eQAAAAAAAB0AAAAAAwARAAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAEAdgAAAAACAHYAAAAAAwB2AAAAAAEAdgAAAAAAAHYAAAAAAwB2AAAAAAMAHQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAACAHkAAAAAAAAdAAAAAAEAEQAAAAAAABEAAAAAAAB5AAAAAAAAdgAAAAACAHYAAAAAAQB2AAAAAAAAdgAAAAACAHYAAAAAAAB2AAAAAAIAdgAAAAABAB0AAAAAAwB5AAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAHQAAAAABABEAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAwB2AAAAAAAAdgAAAAACAHYAAAAAAQB2AAAAAAIAdgAAAAAAAHYAAAAAAgAdAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAMAEQAAAAAAAB0AAAAAAQARAAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAAAdgAAAAADAHYAAAAAAwB2AAAAAAIAdgAAAAABAHYAAAAAAAB2AAAAAAAAHQAAAAACAHkAAAAAAABZAAAAAAMAWQAAAAACAB0AAAAAAQAdAAAAAAIAHQAAAAACAHkAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAwB5AAAAAAAAWQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAACAB0AAAAAAQB5AAAAAAAAWQAAAAADAHkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAADAB0AAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAEAWQAAAAAAAFkAAAAAAQAdAAAAAAEAHQAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAABAB0AAAAAAwAdAAAAAAEAHQAAAAAAAHkAAAAAAABZAAAAAAMAeQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAwBZAAAAAAEAHQAAAAABAB0AAAAAAwAdAAAAAAIAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAACAB0AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAADAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAMAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAABAA== version: 7 -1,0: ind: -1,0 - tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAEAWQAAAAABAHkAAAAAAAAdAAAAAAIAHQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAABAB0AAAAAAgAdAAAAAAEAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAADAFkAAAAAAgB5AAAAAAAAHQAAAAADAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAHQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAFkAAAAAAwBZAAAAAAMAeQAAAAAAAB0AAAAAAQB5AAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAMAeQAAAAAAAB0AAAAAAgB5AAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAHQAAAAADAHkAAAAAAABZAAAAAAMAWQAAAAADAHkAAAAAAAAdAAAAAAAAHQAAAAABAFkAAAAAAwBZAAAAAAEAWQAAAAAAAB0AAAAAAwAdAAAAAAIAeQAAAAAAAFkAAAAAAwBZAAAAAAMAeQAAAAAAAB0AAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAHkAAAAAAAAdAAAAAAMAeQAAAAAAAFkAAAAAAABZAAAAAAEAeQAAAAAAAB0AAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAEAWQAAAAACAB0AAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAADAHkAAAAAAABZAAAAAAEAWQAAAAADAHkAAAAAAAAdAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAAAdAAAAAAMAeQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAgB5AAAAAAAAWQAAAAADAFkAAAAAAwB5AAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAEAHQAAAAAAAB0AAAAAAwB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAABAHkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAIAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABZAAAAAAEAWQAAAAACAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAQB5AAAAAAAAeQAAAAAAAFkAAAAAAQB5AAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAEAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAIAHQAAAAABAB0AAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAAAdAAAAAAMAHQAAAAABAB0AAAAAAgAdAAAAAAMAHQAAAAAAAB0AAAAAAABZAAAAAAMAWQAAAAACAA== + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAEAWQAAAAAAAHkAAAAAAAAdAAAAAAIAHQAAAAACAFkAAAAAAQBZAAAAAAMAWQAAAAADAB0AAAAAAQAdAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAACAFkAAAAAAgB5AAAAAAAAHQAAAAADAHkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAgB5AAAAAAAAHQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAAAeQAAAAAAAB0AAAAAAwB5AAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAEAeQAAAAAAAB0AAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAwB5AAAAAAAAHQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAADAHkAAAAAAAAdAAAAAAEAHQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAAAAB0AAAAAAgAdAAAAAAEAeQAAAAAAAFkAAAAAAgBZAAAAAAEAeQAAAAAAAB0AAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAFkAAAAAAQBZAAAAAAAAeQAAAAAAAB0AAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAABAB0AAAAAAwB5AAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAAdAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAgAdAAAAAAMAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAwB5AAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAIAeQAAAAAAAFkAAAAAAQBZAAAAAAIAeQAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAADAB0AAAAAAgB5AAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAAAWQAAAAADAHkAAAAAAABZAAAAAAMAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAMAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABZAAAAAAAAWQAAAAADAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAQB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAACAB0AAAAAAQAdAAAAAAIAeQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAABAB0AAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAIAHQAAAAACAB0AAAAAAwBZAAAAAAEAWQAAAAABAA== version: 7 1,-1: ind: 1,-1 - tiles: WQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAACAGwAAAAAAABsAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAB5AAAAAAAAHQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAeQAAAAAAAHYAAAAAAwB2AAAAAAMAdgAAAAABAHYAAAAAAgB2AAAAAAEAdgAAAAACAHYAAAAAAgB2AAAAAAMAdgAAAAABAHYAAAAAAAB2AAAAAAIAdgAAAAADAHYAAAAAAAB2AAAAAAMAWQAAAAABAHkAAAAAAAB2AAAAAAEAdgAAAAADAHYAAAAAAgB2AAAAAAEAdgAAAAADAHYAAAAAAQB2AAAAAAIAdgAAAAABAHYAAAAAAwB2AAAAAAEAdgAAAAACAHYAAAAAAgB2AAAAAAEAdgAAAAACAFkAAAAAAwB5AAAAAAAAdgAAAAADAHYAAAAAAQB2AAAAAAIAdgAAAAAAAHYAAAAAAgB2AAAAAAEAdgAAAAACAHYAAAAAAAB2AAAAAAEAdgAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAHkAAAAAAABZAAAAAAEAeQAAAAAAAHYAAAAAAgB2AAAAAAIAdgAAAAABAHYAAAAAAgB2AAAAAAMAdgAAAAACAHYAAAAAAwB2AAAAAAIAdgAAAAADAHYAAAAAAgB5AAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAIAWQAAAAACAHkAAAAAAAB2AAAAAAAAdgAAAAADAHYAAAAAAAB2AAAAAAIAdgAAAAACAAUAAAAAAwAFAAAAAAEAdgAAAAABAHYAAAAAAAB2AAAAAAIAeQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAADAFkAAAAAAwB5AAAAAAAAdgAAAAACAHYAAAAAAwB2AAAAAAAAdgAAAAAAAHYAAAAAAAAFAAAAAAEABQAAAAACAHYAAAAAAgB2AAAAAAMAdgAAAAADAHkAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAABZAAAAAAIAeQAAAAAAAHYAAAAAAQB2AAAAAAEAdgAAAAAAAHYAAAAAAAB2AAAAAAIAdgAAAAABAHYAAAAAAgB2AAAAAAIAdgAAAAABAHYAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAIAWQAAAAABAHkAAAAAAAB2AAAAAAEAdgAAAAABAHYAAAAAAAB2AAAAAAIAdgAAAAAAAHYAAAAAAQB2AAAAAAEAdgAAAAAAAHYAAAAAAwB5AAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAABAFkAAAAAAAB5AAAAAAAAdgAAAAACAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHYAAAAAAwB2AAAAAAAAdgAAAAABAHkAAAAAAAB5AAAAAAAAdgAAAAAAAHkAAAAAAABZAAAAAAMAeQAAAAAAAHYAAAAAAwA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB2AAAAAAIAdgAAAAADAHYAAAAAAwB5AAAAAAAAdgAAAAACAHYAAAAAAwB2AAAAAAEAWQAAAAADAHkAAAAAAAB2AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAEAeQAAAAAAAHYAAAAAAQB2AAAAAAIAdgAAAAABAA== + tiles: WQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAABAGwAAAAAAgBsAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAB5AAAAAAAAHQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAeQAAAAAAAHYAAAAAAwB2AAAAAAMAdgAAAAABAHYAAAAAAgB2AAAAAAIAdgAAAAACAHYAAAAAAgB2AAAAAAAAdgAAAAACAHYAAAAAAwB2AAAAAAIAdgAAAAADAHYAAAAAAQB2AAAAAAMAWQAAAAACAHkAAAAAAAB2AAAAAAAAdgAAAAABAHYAAAAAAQB2AAAAAAAAdgAAAAADAHYAAAAAAQB2AAAAAAIAdgAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAgB2AAAAAAIAdgAAAAADAFkAAAAAAwB5AAAAAAAAdgAAAAADAHYAAAAAAwB2AAAAAAMAdgAAAAACAHYAAAAAAQB2AAAAAAMAdgAAAAAAAHYAAAAAAQB2AAAAAAEAdgAAAAABAHkAAAAAAAB5AAAAAAAAHQAAAAABAHkAAAAAAABZAAAAAAMAeQAAAAAAAHYAAAAAAQB2AAAAAAIAdgAAAAADAHYAAAAAAAB2AAAAAAIAdgAAAAABAHYAAAAAAQB2AAAAAAIAdgAAAAACAHYAAAAAAwB5AAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAEAWQAAAAADAHkAAAAAAAB2AAAAAAEAdgAAAAAAAHYAAAAAAQB2AAAAAAEAdgAAAAADAAUAAAAAAQAFAAAAAAIAdgAAAAABAHYAAAAAAAB2AAAAAAIAeQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAACAFkAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAEAdgAAAAABAHYAAAAAAAAFAAAAAAMABQAAAAABAHYAAAAAAwB2AAAAAAMAdgAAAAADAHkAAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAQBZAAAAAAAAeQAAAAAAAHYAAAAAAQB2AAAAAAMAdgAAAAACAHYAAAAAAgB2AAAAAAEAdgAAAAADAHYAAAAAAgB2AAAAAAEAdgAAAAADAHYAAAAAAgB5AAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAMAWQAAAAAAAHkAAAAAAAB2AAAAAAAAdgAAAAACAHYAAAAAAwB2AAAAAAMAdgAAAAABAHYAAAAAAQB2AAAAAAAAdgAAAAABAHYAAAAAAwB5AAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAACAFkAAAAAAgB5AAAAAAAAdgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHYAAAAAAwB2AAAAAAMAdgAAAAADAHkAAAAAAAB5AAAAAAAAdgAAAAADAHkAAAAAAABZAAAAAAIAeQAAAAAAAHYAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB2AAAAAAIAdgAAAAABAHYAAAAAAwB5AAAAAAAAdgAAAAADAHYAAAAAAwB2AAAAAAAAWQAAAAACAHkAAAAAAAB2AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAdgAAAAACAHYAAAAAAwB2AAAAAAIAeQAAAAAAAHYAAAAAAwB2AAAAAAMAdgAAAAAAAA== version: 7 -2,-1: ind: -2,-1 - tiles: WQAAAAABAFkAAAAAAABZAAAAAAIAeQAAAAAAAGkAAAAAAAAdAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAADAHkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAADAHkAAAAAAAB5AAAAAAAAaQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAQB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAAAHQAAAAADAB0AAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAIAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAADAB0AAAAAAwAdAAAAAAIAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAADAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAA+AAAAAAAAPgAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAAAAFkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAPgAAAAAAAD4AAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAgB5AAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAD4AAAAAAAA+AAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAMAeQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAIAeQAAAAAAAFkAAAAAAQBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAgB5AAAAAAAAWQAAAAABAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAEAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAACAA== + tiles: WQAAAAACAFkAAAAAAQBZAAAAAAAAeQAAAAAAAGkAAAAAAAAdAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAACAHkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAAAAHkAAAAAAAB5AAAAAAAAaQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAQB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAMAHQAAAAACAB0AAAAAAwB5AAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAgBZAAAAAAEAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAMAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAABAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAA+AAAAAAAAPgAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAACAFkAAAAAAwBZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAgB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAPgAAAAAAAD4AAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAQB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAD4AAAAAAAA+AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAEAeQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAMAeQAAAAAAAFkAAAAAAgBZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAACAHkAAAAAAABZAAAAAAIAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAIAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAAAAA== version: 7 -2,-2: ind: -2,-2 - tiles: WQAAAAADAFkAAAAAAQB5AAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAAAAFkAAAAAAwB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAABAHkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAACAHkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAACAHYAAAAAAQB2AAAAAAEAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAEAeQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAACAFkAAAAAAwB5AAAAAAAAWQAAAAABAFkAAAAAAgB2AAAAAAMAdgAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAQBZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAIAeQAAAAAAAFkAAAAAAgBZAAAAAAEAdgAAAAABAHYAAAAAAwB5AAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAQB5AAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAABAHkAAAAAAABZAAAAAAAAWQAAAAAAAHYAAAAAAwB2AAAAAAEAeQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAACAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAABAHkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAgB5AAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAABAHkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAEAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAQB5AAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAAAAFkAAAAAAgB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAABAHkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAgBZAAAAAAMAWQAAAAABAHkAAAAAAAB5AAAAAAAAaQAAAAAAAB0AAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAIAeQAAAAAAAGkAAAAAAAAdAAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAADAA== + tiles: WQAAAAACAFkAAAAAAgB5AAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAgB5AAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAMAWQAAAAABAHkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAMAWQAAAAACAHkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAEAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAACAHYAAAAAAAB2AAAAAAMAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAMAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAgB2AAAAAAAAdgAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAEAeQAAAAAAAFkAAAAAAwBZAAAAAAAAdgAAAAAAAHYAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAABAHkAAAAAAABZAAAAAAAAWQAAAAACAHYAAAAAAgB2AAAAAAEAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAAAWQAAAAACAHkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAEAeQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAACAFkAAAAAAwB5AAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAIAWQAAAAABAHkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAADAHkAAAAAAAB5AAAAAAAAaQAAAAAAAB0AAAAAAQBZAAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAABZAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAIAeQAAAAAAAGkAAAAAAAAdAAAAAAEAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAAAWQAAAAACAHkAAAAAAABZAAAAAAEAWQAAAAABAA== version: 7 1,-2: ind: 1,-2 - tiles: WQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAgB5AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAgB5AAAAAAAAbAAAAAADAGwAAAAAAABsAAAAAAIAbAAAAAAAAHkAAAAAAABsAAAAAAMAbAAAAAADAGwAAAAAAgBZAAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAAAAB0AAAAAAgAdAAAAAAIAeQAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAgBsAAAAAAEAbAAAAAACAGwAAAAAAgBsAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAMAbAAAAAACAGwAAAAAAwBsAAAAAAMAbAAAAAABAGwAAAAAAQBsAAAAAAIAbAAAAAADAFkAAAAAAQBsAAAAAAEAbAAAAAADAGwAAAAAAQBsAAAAAAEAbAAAAAADAGwAAAAAAAB5AAAAAAAAbAAAAAAAAGwAAAAAAQBsAAAAAAMAbAAAAAAAAHkAAAAAAABsAAAAAAMAbAAAAAAAAGwAAAAAAgBZAAAAAAAAeQAAAAAAAGwAAAAAAwBsAAAAAAMAbAAAAAACAGwAAAAAAABsAAAAAAEAeQAAAAAAAHkAAAAAAABsAAAAAAIAbAAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAABsAAAAAAMAbAAAAAABAGwAAAAAAQBsAAAAAAMAbAAAAAADAGwAAAAAAQBsAAAAAAAAbAAAAAAAAGwAAAAAAwBsAAAAAAAAbAAAAAADAGwAAAAAAwBsAAAAAAEAbAAAAAADAFkAAAAAAAB5AAAAAAAAbAAAAAACAGwAAAAAAQBsAAAAAAEAbAAAAAABAGwAAAAAAQBsAAAAAAIAbAAAAAACAGwAAAAAAgBsAAAAAAMAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAADAGwAAAAAAQBZAAAAAAEAeQAAAAAAAHkAAAAAAABsAAAAAAEAeQAAAAAAAGwAAAAAAQB5AAAAAAAAeQAAAAAAAGwAAAAAAQBsAAAAAAAAbAAAAAABAGwAAAAAAABsAAAAAAMAbAAAAAACAGwAAAAAAwBsAAAAAAEAWQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAACAHkAAAAAAABsAAAAAAIAbAAAAAADAGwAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAIAeQAAAAAAAFkAAAAAAQB5AAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAAB5AAAAAAAAeQAAAAAAAGwAAAAAAgBsAAAAAAIAeQAAAAAAAGwAAAAAAwBsAAAAAAIAbAAAAAADAGwAAAAAAgBZAAAAAAIAeQAAAAAAAFkAAAAAAABZAAAAAAEAbAAAAAABAB0AAAAAAQAdAAAAAAAAeQAAAAAAAGwAAAAAAwBsAAAAAAAAbAAAAAADAGwAAAAAAgBsAAAAAAMAbAAAAAABAGwAAAAAAQBsAAAAAAMAWQAAAAADAHkAAAAAAABsAAAAAAMAbAAAAAABAGwAAAAAAAAdAAAAAAEAHQAAAAAAAGwAAAAAAwBsAAAAAAEAbAAAAAADAGwAAAAAAgBsAAAAAAMAbAAAAAADAGwAAAAAAgBsAAAAAAMAbAAAAAABAFkAAAAAAAB5AAAAAAAAHQAAAAACAB0AAAAAAQBsAAAAAAAAHQAAAAABAB0AAAAAAQB5AAAAAAAAbAAAAAACAGwAAAAAAgBsAAAAAAEAbAAAAAABAGwAAAAAAABsAAAAAAIAbAAAAAACAGwAAAAAAQBZAAAAAAEAeQAAAAAAAB0AAAAAAQAdAAAAAAMAbAAAAAABAB0AAAAAAQAdAAAAAAIAbAAAAAACAGwAAAAAAgBsAAAAAAEAbAAAAAAAAGwAAAAAAwBsAAAAAAEAbAAAAAACAGwAAAAAAQBsAAAAAAAAWQAAAAADAHkAAAAAAAAdAAAAAAAAHQAAAAACAGwAAAAAAwAdAAAAAAEAHQAAAAACAHkAAAAAAABsAAAAAAEAbAAAAAACAGwAAAAAAgBsAAAAAAIAbAAAAAACAGwAAAAAAwBsAAAAAAIAbAAAAAABAA== + tiles: WQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAIAHQAAAAAAAB0AAAAAAAB5AAAAAAAAbAAAAAADAGwAAAAAAQBsAAAAAAAAbAAAAAAAAHkAAAAAAABsAAAAAAEAbAAAAAACAGwAAAAAAgBZAAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAEAeQAAAAAAAGwAAAAAAABsAAAAAAIAbAAAAAAAAGwAAAAAAgBsAAAAAAMAbAAAAAADAGwAAAAAAwBsAAAAAAEAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAAAbAAAAAABAGwAAAAAAwBsAAAAAAEAbAAAAAABAGwAAAAAAQBsAAAAAAAAbAAAAAACAFkAAAAAAQBsAAAAAAIAbAAAAAABAGwAAAAAAABsAAAAAAEAbAAAAAACAGwAAAAAAwB5AAAAAAAAbAAAAAADAGwAAAAAAQBsAAAAAAAAbAAAAAABAHkAAAAAAABsAAAAAAMAbAAAAAAAAGwAAAAAAQBZAAAAAAMAeQAAAAAAAGwAAAAAAgBsAAAAAAMAbAAAAAACAGwAAAAAAgBsAAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAEAbAAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAABsAAAAAAIAbAAAAAABAGwAAAAAAgBsAAAAAAMAbAAAAAACAGwAAAAAAQBsAAAAAAMAbAAAAAACAGwAAAAAAABsAAAAAAMAbAAAAAACAGwAAAAAAQBsAAAAAAEAbAAAAAADAFkAAAAAAgB5AAAAAAAAbAAAAAADAGwAAAAAAQBsAAAAAAIAbAAAAAAAAGwAAAAAAgBsAAAAAAMAbAAAAAADAGwAAAAAAwBsAAAAAAMAbAAAAAABAGwAAAAAAwBsAAAAAAMAbAAAAAADAGwAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAABsAAAAAAMAeQAAAAAAAGwAAAAAAgB5AAAAAAAAeQAAAAAAAGwAAAAAAgBsAAAAAAIAbAAAAAABAGwAAAAAAwBsAAAAAAMAbAAAAAABAGwAAAAAAQBsAAAAAAMAWQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAAAAHkAAAAAAABsAAAAAAIAbAAAAAACAGwAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAEAWQAAAAADAFkAAAAAAQB5AAAAAAAAeQAAAAAAAGwAAAAAAwBsAAAAAAAAeQAAAAAAAGwAAAAAAgBsAAAAAAIAbAAAAAACAGwAAAAAAABZAAAAAAMAeQAAAAAAAFkAAAAAAwBZAAAAAAIAbAAAAAACAB0AAAAAAAAdAAAAAAIAeQAAAAAAAGwAAAAAAQBsAAAAAAAAbAAAAAADAGwAAAAAAwBsAAAAAAEAbAAAAAABAGwAAAAAAABsAAAAAAMAWQAAAAABAHkAAAAAAABsAAAAAAEAbAAAAAABAGwAAAAAAAAdAAAAAAMAHQAAAAAAAGwAAAAAAABsAAAAAAMAbAAAAAAAAGwAAAAAAQBsAAAAAAAAbAAAAAABAGwAAAAAAQBsAAAAAAMAbAAAAAAAAFkAAAAAAQB5AAAAAAAAHQAAAAAAAB0AAAAAAQBsAAAAAAMAHQAAAAAAAB0AAAAAAwB5AAAAAAAAbAAAAAACAGwAAAAAAwBsAAAAAAEAbAAAAAABAGwAAAAAAABsAAAAAAMAbAAAAAACAGwAAAAAAQBZAAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAAAbAAAAAACAB0AAAAAAwAdAAAAAAEAbAAAAAADAGwAAAAAAQBsAAAAAAAAbAAAAAAAAGwAAAAAAgBsAAAAAAIAbAAAAAABAGwAAAAAAABsAAAAAAAAWQAAAAABAHkAAAAAAAAdAAAAAAEAHQAAAAADAGwAAAAAAAAdAAAAAAIAHQAAAAABAHkAAAAAAABsAAAAAAAAbAAAAAACAGwAAAAAAwBsAAAAAAIAbAAAAAADAGwAAAAAAwBsAAAAAAMAbAAAAAAAAA== version: 7 0,-2: ind: 0,-2 - tiles: WQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAADAB0AAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAABAHYAAAAAAwAdAAAAAAAAHQAAAAABAB0AAAAAAgB5AAAAAAAAWQAAAAACAFkAAAAAAgAdAAAAAAIAeQAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB2AAAAAAEAdgAAAAABAHYAAAAAAQB2AAAAAAEAdgAAAAADAHYAAAAAAAB2AAAAAAEAeQAAAAAAAFkAAAAAAgBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAQB2AAAAAAEAdgAAAAADAHYAAAAAAAB2AAAAAAMAdgAAAAABAB0AAAAAAQBZAAAAAAIAWQAAAAADAB0AAAAAAAAdAAAAAAIAHQAAAAABAHkAAAAAAAB4AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAACAHYAAAAAAQAdAAAAAAMAHQAAAAABAB0AAAAAAQB5AAAAAAAAWQAAAAABAFkAAAAAAgARAAAAAAAAEQAAAAAAAB0AAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAIAeQAAAAAAAFkAAAAAAABZAAAAAAAAHQAAAAABABEAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAwB2AAAAAAEAeQAAAAAAACwAAAAAAAB5AAAAAAAAHQAAAAACAHkAAAAAAABZAAAAAAMAWQAAAAAAAB0AAAAAAAARAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHYAAAAAAQB2AAAAAAEAdgAAAAABAHkAAAAAAAAsAAAAAAAAeQAAAAAAAB0AAAAAAgB5AAAAAAAAWQAAAAABAFkAAAAAAgAdAAAAAAIAEQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB2AAAAAAIAdgAAAAAAAHYAAAAAAgAsAAAAAAAALAAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAFkAAAAAAwBZAAAAAAAAEQAAAAAAABEAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAACAHkAAAAAAABZAAAAAAMAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAIAdgAAAAADAHYAAAAAAwB2AAAAAAIAdgAAAAAAAB0AAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAwB2AAAAAAEAdgAAAAADAHYAAAAAAAB2AAAAAAEAdgAAAAADAHYAAAAAAQAdAAAAAAIAeQAAAAAAAFkAAAAAAgBZAAAAAAAAHQAAAAACAB0AAAAAAwARAAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAEAdgAAAAADAHYAAAAAAQB2AAAAAAEAdgAAAAAAAHYAAAAAAwB2AAAAAAMAHQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAADAA== + tiles: WQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAgBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAAAAB0AAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAEAHQAAAAABAHYAAAAAAQAdAAAAAAMAHQAAAAABAB0AAAAAAQB5AAAAAAAAWQAAAAACAFkAAAAAAAAdAAAAAAEAeQAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB2AAAAAAAAdgAAAAADAHYAAAAAAwB2AAAAAAEAdgAAAAADAHYAAAAAAQB2AAAAAAMAeQAAAAAAAFkAAAAAAABZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAdgAAAAADAHYAAAAAAgB2AAAAAAAAdgAAAAABAHYAAAAAAAB2AAAAAAIAdgAAAAAAAB0AAAAAAABZAAAAAAEAWQAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAABAHkAAAAAAAB4AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAAAAHYAAAAAAgAdAAAAAAEAHQAAAAADAB0AAAAAAQB5AAAAAAAAWQAAAAABAFkAAAAAAQARAAAAAAAAEQAAAAAAAB0AAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAFkAAAAAAgBZAAAAAAIAHQAAAAACABEAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAMAeQAAAAAAACwAAAAAAAB5AAAAAAAAHQAAAAABAHkAAAAAAABZAAAAAAEAWQAAAAADAB0AAAAAAAARAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHYAAAAAAQB2AAAAAAEAdgAAAAADAHkAAAAAAAAsAAAAAAAAeQAAAAAAAB0AAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAwAdAAAAAAAAEQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB2AAAAAAMAdgAAAAACAHYAAAAAAgAsAAAAAAAALAAAAAAAAHkAAAAAAAAdAAAAAAEAeQAAAAAAAFkAAAAAAQBZAAAAAAIAEQAAAAAAABEAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAHkAAAAAAABZAAAAAAMAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAQB2AAAAAAEAdgAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAADAB0AAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAAB2AAAAAAIAdgAAAAAAAHYAAAAAAgB2AAAAAAMAdgAAAAABAHYAAAAAAgAdAAAAAAMAeQAAAAAAAFkAAAAAAABZAAAAAAEAHQAAAAAAAB0AAAAAAwARAAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAIAdgAAAAADAHYAAAAAAAB2AAAAAAIAdgAAAAADAHYAAAAAAgB2AAAAAAAAHQAAAAACAHkAAAAAAABZAAAAAAIAWQAAAAAAAA== version: 7 -1,-2: ind: -1,-2 - tiles: WQAAAAACAFkAAAAAAwBZAAAAAAEAWQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAACAFkAAAAAAwBZAAAAAAEAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAMAWQAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAFkAAAAAAwBZAAAAAAAAWQAAAAADAHkAAAAAAAAdAAAAAAMAdgAAAAACAHYAAAAAAAB2AAAAAAMAHQAAAAABAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAgBZAAAAAAMABgAAAAAAAFkAAAAAAAB5AAAAAAAAHQAAAAAAAHYAAAAAAQB2AAAAAAEAdgAAAAACAB0AAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAMAWQAAAAADAAYAAAAAAABZAAAAAAIAeQAAAAAAAB0AAAAAAgB2AAAAAAAAdgAAAAABAHYAAAAAAAAdAAAAAAEAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAFkAAAAAAAAGAAAAAAAAWQAAAAACAHkAAAAAAAAdAAAAAAEAdgAAAAADAHYAAAAAAwB2AAAAAAMAHQAAAAACAHkAAAAAAAB4AAAAAAAAeQAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAAAAB0AAAAAAABZAAAAAAMABgAAAAAAAFkAAAAAAwB5AAAAAAAAHQAAAAABAHYAAAAAAQB2AAAAAAEAdgAAAAACAB0AAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAIAEQAAAAAAABEAAAAAAAAdAAAAAAEAWQAAAAACAFkAAAAAAgBZAAAAAAEAWQAAAAADAB0AAAAAAwB2AAAAAAIAdgAAAAADAHYAAAAAAgAdAAAAAAIAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAABEAAAAAAAAdAAAAAAEAHQAAAAAAAFkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAAdAAAAAAIAdgAAAAAAAHYAAAAAAgB2AAAAAAIAHQAAAAADAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAARAAAAAAAAHQAAAAAAAB0AAAAAAwBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAEQAAAAAAAB0AAAAAAwARAAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAABAHkAAAAAAAB4AAAAAAAAeQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgBZAAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAAAeQAAAAAAAHkAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAWQAAAAABAHkAAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAwAdAAAAAAIAHQAAAAADAB0AAAAAAgAdAAAAAAMAHQAAAAADAHkAAAAAAAB5AAAAAAAAEQAAAAAAAB0AAAAAAwAdAAAAAAAAEQAAAAAAAA== + tiles: WQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAEAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAADAHkAAAAAAAAdAAAAAAAAdgAAAAABAHYAAAAAAwB2AAAAAAAAHQAAAAADAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAgBZAAAAAAAABgAAAAAAAFkAAAAAAAB5AAAAAAAAHQAAAAACAHYAAAAAAAB2AAAAAAAAdgAAAAAAAB0AAAAAAwB5AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAEAWQAAAAABAAYAAAAAAABZAAAAAAIAeQAAAAAAAB0AAAAAAQB2AAAAAAIAdgAAAAABAHYAAAAAAwAdAAAAAAIAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAFkAAAAAAgAGAAAAAAAAWQAAAAADAHkAAAAAAAAdAAAAAAEAdgAAAAADAHYAAAAAAwB2AAAAAAIAHQAAAAABAHkAAAAAAAB4AAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAgBZAAAAAAIABgAAAAAAAFkAAAAAAAB5AAAAAAAAHQAAAAAAAHYAAAAAAAB2AAAAAAIAdgAAAAACAB0AAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAAAEQAAAAAAABEAAAAAAAAdAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAB0AAAAAAQB2AAAAAAAAdgAAAAADAHYAAAAAAwAdAAAAAAAAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAABEAAAAAAAAdAAAAAAAAHQAAAAAAAFkAAAAAAgB5AAAAAAAAWQAAAAADAHkAAAAAAAAdAAAAAAIAdgAAAAACAHYAAAAAAQB2AAAAAAIAHQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAARAAAAAAAAHQAAAAAAAB0AAAAAAgBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAEQAAAAAAAB0AAAAAAwARAAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAABAHkAAAAAAAB4AAAAAAAAeQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAwBZAAAAAAIAeQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAQAdAAAAAAIAHQAAAAACAB0AAAAAAAAdAAAAAAIAeQAAAAAAAHkAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAWQAAAAACAHkAAAAAAAAdAAAAAAIAHQAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAACAB0AAAAAAwAdAAAAAAIAHQAAAAAAAHkAAAAAAAB5AAAAAAAAEQAAAAAAAB0AAAAAAgAdAAAAAAAAEQAAAAAAAA== version: 7 -2,0: ind: -2,0 - tiles: HQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAB0AAAAAAgB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAACQAAAAACAAkAAAAAAgAJAAAAAAMACQAAAAADAAkAAAAAAgAJAAAAAAEAeQAAAAAAAGgAAAAAAAAdAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAgBZAAAAAAMAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAABEAAAAAAAARAAAAAAAAWQAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAARAAAAAAAAEQAAAAAAAFkAAAAAAQB5AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAEQAAAAAAABEAAAAAAABZAAAAAAAAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAEAAAAAAAABAAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAEAAAAAAAABAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABAAAAAAAAAeQAAAAAAAEAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAA== + tiles: HQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAB0AAAAAAgB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAACQAAAAACAAkAAAAAAQAJAAAAAAIACQAAAAACAAkAAAAAAwAJAAAAAAEAeQAAAAAAAGgAAAAAAAAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAwBZAAAAAAIAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAABEAAAAAAAARAAAAAAAAWQAAAAABAHkAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAARAAAAAAAAEQAAAAAAAFkAAAAAAQB5AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAEQAAAAAAABEAAAAAAABZAAAAAAIAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAEAAAAAAAABAAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAEAAAAAAAABAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABAAAAAAAAAeQAAAAAAAEAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAA== version: 7 -2,-3: ind: -2,-3 - tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAwB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAQBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAACAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAEAWQAAAAADAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAABZAAAAAAMAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAEAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAACAFkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAEAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== version: 7 -1,-3: ind: -1,-3 - tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAABZAAAAAAEAWQAAAAABAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAEAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAABZAAAAAAMAWQAAAAADAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAACAHkAAAAAAABZAAAAAAIAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAACAB0AAAAAAwAdAAAAAAEAHQAAAAABAB0AAAAAAwAdAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAMAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAIAHQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAwAdAAAAAAMAHQAAAAADAHkAAAAAAABZAAAAAAAAWQAAAAACAAAAAAAAAAB5AAAAAAAAHQAAAAACAB0AAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAACAB0AAAAAAgAdAAAAAAAAHQAAAAABAB0AAAAAAwB5AAAAAAAAWQAAAAABAFkAAAAAAwAAAAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAACAB0AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAgAdAAAAAAIAHQAAAAAAAFkAAAAAAgBZAAAAAAMAAAAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAADAHkAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAwAdAAAAAAIAHQAAAAADAHkAAAAAAABZAAAAAAMAWQAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAACAB0AAAAAAgB5AAAAAAAAWQAAAAAAAFkAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAQAdAAAAAAIAHQAAAAABAB0AAAAAAgAdAAAAAAIAeQAAAAAAAFkAAAAAAABZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAACAA== + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAABZAAAAAAEAWQAAAAACAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAHkAAAAAAABZAAAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAIAeQAAAAAAAFkAAAAAAQBZAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAMAWQAAAAADAHkAAAAAAABZAAAAAAMAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAQAdAAAAAAIAHQAAAAADAB0AAAAAAQAdAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAEAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAQAdAAAAAAMAHQAAAAABAHkAAAAAAABZAAAAAAIAWQAAAAABAAAAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAwB5AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAEAHQAAAAADAB0AAAAAAQAdAAAAAAMAHQAAAAADAB0AAAAAAgB5AAAAAAAAWQAAAAABAFkAAAAAAwAAAAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAAAAB0AAAAAAgAdAAAAAAEAHQAAAAABAB0AAAAAAgAdAAAAAAEAHQAAAAAAAFkAAAAAAgBZAAAAAAEAAAAAAAAAAHkAAAAAAAAdAAAAAAAAHQAAAAACAHkAAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAgAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAACAHkAAAAAAABZAAAAAAAAWQAAAAACAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAgAdAAAAAAEAHQAAAAAAAB0AAAAAAwB5AAAAAAAAWQAAAAABAFkAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAMAeQAAAAAAAFkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAACAA== version: 7 0,-3: ind: 0,-3 - tiles: WQAAAAACAFkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAgBoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAEAeQAAAAAAAFkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAACAHkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAQB5AAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAMAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAQB5AAAAAAAAWQAAAAADAFkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAMAeQAAAAAAAFkAAAAAAwBZAAAAAAIAeQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAACAHkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAADAHkAAAAAAAB3AAAAAAIAdgAAAAACAHYAAAAAAgB2AAAAAAMAdwAAAAABAHkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAwBZAAAAAAIAWQAAAAABAFkAAAAAAwB5AAAAAAAAdwAAAAAAAHYAAAAAAwB2AAAAAAAAdgAAAAAAAHcAAAAAAABpAAAAAAAAeQAAAAAAAFkAAAAAAQB5AAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAB0AAAAAAwAdAAAAAAMAeQAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAAAAHkAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAAdAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAACAHkAAAAAAAAdAAAAAAAAHQAAAAAAAA== + tiles: WQAAAAADAFkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAIAWQAAAAAAAFkAAAAAAQBoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAEAeQAAAAAAAFkAAAAAAwB5AAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAAAAHkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAMAeQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAQB5AAAAAAAAWQAAAAAAAFkAAAAAAwB5AAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAIAeQAAAAAAAFkAAAAAAwBZAAAAAAIAeQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAABAHkAAAAAAABZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAeQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAABAHkAAAAAAAB3AAAAAAIAdgAAAAACAHYAAAAAAAB2AAAAAAMAdwAAAAADAHkAAAAAAAB5AAAAAAAAWQAAAAACAHkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAgBZAAAAAAEAWQAAAAABAFkAAAAAAgB5AAAAAAAAdwAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAABAHcAAAAAAABpAAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAwBZAAAAAAIAeQAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAB0AAAAAAAAdAAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAeQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAADAHkAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAAdAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAABAA== version: 7 1,-3: ind: 1,-3 - tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGwAAAAAAgBsAAAAAAIAbAAAAAABAGwAAAAAAQBsAAAAAAMAeQAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAHkAAAAAAABsAAAAAAEAbAAAAAAAAGwAAAAAAwBsAAAAAAMAeQAAAAAAAHkAAAAAAABsAAAAAAEAbAAAAAACAGwAAAAAAABsAAAAAAMAbAAAAAABAFkAAAAAAQAsAAAAAAAALAAAAAAAACwAAAAAAAB5AAAAAAAAbAAAAAADAGwAAAAAAQBsAAAAAAAAbAAAAAAAAHkAAAAAAABpAAAAAAAAbAAAAAAAAGwAAAAAAwBsAAAAAAAAbAAAAAACAGwAAAAAAgB5AAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAeQAAAAAAAGwAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAwBpAAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAIAbAAAAAACAB0AAAAAAgAdAAAAAAAAeQAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAGwAAAAAAQBsAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAMAHQAAAAACAHkAAAAAAAAdAAAAAAMAHQAAAAACAGwAAAAAAQAdAAAAAAEAHQAAAAAAAHkAAAAAAABSAAAAAAEALAAAAAAAACwAAAAAAAB5AAAAAAAAbAAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAACAA== + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGwAAAAAAABsAAAAAAEAbAAAAAADAGwAAAAAAABsAAAAAAMAeQAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAHkAAAAAAABsAAAAAAIAbAAAAAACAGwAAAAAAABsAAAAAAMAeQAAAAAAAHkAAAAAAABsAAAAAAAAbAAAAAACAGwAAAAAAABsAAAAAAAAbAAAAAABAFkAAAAAAgAsAAAAAAAALAAAAAAAACwAAAAAAAB5AAAAAAAAbAAAAAADAGwAAAAAAgBsAAAAAAAAbAAAAAADAHkAAAAAAABpAAAAAAAAbAAAAAAAAGwAAAAAAQBsAAAAAAIAbAAAAAAAAGwAAAAAAgB5AAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAeQAAAAAAAGwAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAwBpAAAAAAAAeQAAAAAAAB0AAAAAAQAdAAAAAAMAbAAAAAABAB0AAAAAAgAdAAAAAAIAeQAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAGwAAAAAAgBsAAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAMAHQAAAAADAHkAAAAAAAAdAAAAAAMAHQAAAAABAGwAAAAAAgAdAAAAAAEAHQAAAAACAHkAAAAAAABSAAAAAAMALAAAAAAAACwAAAAAAAB5AAAAAAAAbAAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAAAAA== version: 7 1,0: ind: 1,0 - tiles: eQAAAAAAAHkAAAAAAAAOAAAAAAMAeQAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAMAeQAAAAAAAHYAAAAAAQB2AAAAAAMAdgAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAHkAAAAAAAB5AAAAAAAAGQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAOAAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAMAdgAAAAAAAHYAAAAAAgAQAAAAAAAAeQAAAAAAABAAAAAAAAB5AAAAAAAAGQAAAAAAABkAAAAAAAAZAAAAAAAAeQAAAAAAAA4AAAAAAAAOAAAAAAIADgAAAAABAA4AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAEAAAAAAAAHkAAAAAAAAQAAAAAAAAeQAAAAAAABkAAAAAAAAZAAAAAAAAGQAAAAAAAHkAAAAAAAAOAAAAAAMADgAAAAACAA4AAAAAAQAOAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAAB5AAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAB5AAAAAAAAQQAAAAAAAEEAAAAAAABBAAAAAAAAWQAAAAABAA4AAAAAAAAOAAAAAAIADgAAAAADAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAeQAAAAAAAEEAAAAAAABBAAAAAAAAQQAAAAAAAHkAAAAAAAAOAAAAAAMADgAAAAADAA4AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAMAeQAAAAAAAHkAAAAAAAABAAAAAAQAAQAAAAACAAEAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAwB5AAAAAAAAAQAAAAAEAAEAAAAAAgABAAAAAAMAWQAAAAACAFkAAAAAAwB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAAAeQAAAAAAAAEAAAAAAQABAAAAAAUAAQAAAAAEAFkAAAAAAgBZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAMAHQAAAAABAB0AAAAAAQAdAAAAAAEAHQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAwABAAAAAAEAAQAAAAAAAAEAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAADAB0AAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAQB5AAAAAAAAAQAAAAAFAAEAAAAAAAABAAAAAAQAWQAAAAABAFkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAgAdAAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAMAWQAAAAACAFkAAAAAAwBZAAAAAAMAeQAAAAAAAAEAAAAABQABAAAAAAMAAQAAAAABABQAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAIAHQAAAAABAB0AAAAAAQAdAAAAAAAAHQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAgABAAAAAAQAAQAAAAAFAAEAAAAABQAUAAAAAAAAFAAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAwB5AAAAAAAAAQAAAAABAAEAAAAABAABAAAAAAMAFAAAAAAAABQAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAABAFkAAAAAAwBZAAAAAAEAeQAAAAAAAAEAAAAABQABAAAAAAIAAQAAAAABAA== + tiles: eQAAAAAAAHkAAAAAAAAOAAAAAAEAeQAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAMAeQAAAAAAAHYAAAAAAAB2AAAAAAIAdgAAAAABAFAAAAAAAABQAAAAAAAAUAAAAAAAAHkAAAAAAAB5AAAAAAAAGQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAOAAAAAAIAeQAAAAAAAHkAAAAAAAB2AAAAAAEAdgAAAAACAHYAAAAAAwAQAAAAAAAAeQAAAAAAABAAAAAAAAB5AAAAAAAAGQAAAAAAABkAAAAAAAAZAAAAAAAAeQAAAAAAAA4AAAAAAQAOAAAAAAEADgAAAAABAA4AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAEAAAAAAAAHkAAAAAAAAQAAAAAAAAeQAAAAAAABkAAAAAAAAZAAAAAAAAGQAAAAAAAHkAAAAAAAAOAAAAAAIADgAAAAABAA4AAAAAAgAOAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAgB5AAAAAAAADgAAAAADAA4AAAAAAAAOAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAB5AAAAAAAAQQAAAAAAAEEAAAAAAABBAAAAAAAAWQAAAAACAA4AAAAAAwAOAAAAAAEADgAAAAACAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAeQAAAAAAAEEAAAAAAABBAAAAAAAAQQAAAAAAAHkAAAAAAAAOAAAAAAMADgAAAAACAA4AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAIAeQAAAAAAAHkAAAAAAAABAAAAAAQAAQAAAAAEAAEAAAAABAB5AAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAAB5AAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAQAWQAAAAACAFkAAAAAAQB5AAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAwBZAAAAAAAAeQAAAAAAAAEAAAAAAgABAAAAAAQAAQAAAAAFAFkAAAAAAgBZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAMAHQAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAADAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAgABAAAAAAIAAQAAAAAEAAEAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAABAB0AAAAAAQAdAAAAAAEAHQAAAAADAB0AAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAwB5AAAAAAAAAQAAAAAFAAEAAAAAAAABAAAAAAIAWQAAAAAAAFkAAAAAAgB5AAAAAAAAWQAAAAAAAFkAAAAAAwAdAAAAAAMAHQAAAAACAB0AAAAAAAAdAAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAAAeQAAAAAAAAEAAAAAAwABAAAAAAMAAQAAAAAEABQAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAMAHQAAAAADAB0AAAAAAQAdAAAAAAAAHQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAQABAAAAAAIAAQAAAAAEAAEAAAAABAAUAAAAAAAAFAAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAgB5AAAAAAAAAQAAAAAFAAEAAAAABAABAAAAAAAAFAAAAAAAABQAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAEAeQAAAAAAAAEAAAAAAwABAAAAAAQAAQAAAAACAA== version: 7 0,1: ind: 0,1 - tiles: WQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAQB5AAAAAAAAeAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAIAeQAAAAAAAHgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAACAHkAAAAAAAB4AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgB5AAAAAAAAdgAAAAABAHYAAAAAAAB2AAAAAAIAdgAAAAADAHkAAAAAAAB2AAAAAAAAdgAAAAACAHYAAAAAAwB2AAAAAAAAdgAAAAACAHYAAAAAAwB5AAAAAAAAaAAAAAAAAGgAAAAAAABZAAAAAAMAeQAAAAAAAHYAAAAAAQB2AAAAAAMAdgAAAAABAHYAAAAAAgB5AAAAAAAAdgAAAAADAHYAAAAAAQB2AAAAAAEAdgAAAAADAHYAAAAAAQB2AAAAAAIAeQAAAAAAAGgAAAAAAAB5AAAAAAAAWQAAAAACAHkAAAAAAAB2AAAAAAAAdgAAAAACAHYAAAAAAQB2AAAAAAMAeQAAAAAAAHYAAAAAAwB2AAAAAAMAdgAAAAABAHYAAAAAAwB2AAAAAAIAdgAAAAABAHkAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAwB2AAAAAAMAdgAAAAABAHkAAAAAAAB2AAAAAAEAdgAAAAADAHYAAAAAAgB2AAAAAAAAdgAAAAADAHYAAAAAAgBoAAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAHYAAAAAAwB2AAAAAAIAdgAAAAACAHYAAAAAAgB5AAAAAAAAdgAAAAABAHYAAAAAAwB2AAAAAAMAdgAAAAADAHYAAAAAAwB2AAAAAAEAeQAAAAAAAGgAAAAAAAB5AAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAbAAAAAAAAGwAAAAAAgBsAAAAAAMAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB2AAAAAAMAdgAAAAABAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABZAAAAAAIAeQAAAAAAAGwAAAAAAQBsAAAAAAMAbAAAAAACAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAdgAAAAADAHYAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + tiles: WQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAgB5AAAAAAAAeAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAEAeQAAAAAAAHgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAEAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAADAHkAAAAAAAB4AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgB5AAAAAAAAdgAAAAACAHYAAAAAAwB2AAAAAAAAdgAAAAADAHkAAAAAAAB2AAAAAAMAdgAAAAABAHYAAAAAAQB2AAAAAAEAdgAAAAABAHYAAAAAAgB5AAAAAAAAaAAAAAAAAGgAAAAAAABZAAAAAAIAeQAAAAAAAHYAAAAAAAB2AAAAAAMAdgAAAAACAHYAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAwB2AAAAAAIAdgAAAAABAHYAAAAAAgB2AAAAAAEAeQAAAAAAAGgAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAB2AAAAAAAAdgAAAAACAHYAAAAAAAB2AAAAAAMAeQAAAAAAAHYAAAAAAQB2AAAAAAMAdgAAAAABAHYAAAAAAQB2AAAAAAIAdgAAAAADAHkAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAdgAAAAABAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHkAAAAAAAB2AAAAAAEAdgAAAAABAHYAAAAAAgB2AAAAAAMAdgAAAAABAHYAAAAAAQBoAAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAeQAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAACAHYAAAAAAAB5AAAAAAAAdgAAAAABAHYAAAAAAQB2AAAAAAMAdgAAAAADAHYAAAAAAQB2AAAAAAIAeQAAAAAAAGgAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQB5AAAAAAAAbAAAAAACAGwAAAAAAABsAAAAAAMAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB2AAAAAAMAdgAAAAABAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABZAAAAAAMAeQAAAAAAAGwAAAAAAwBsAAAAAAIAbAAAAAACAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAdgAAAAABAHYAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAABsAAAAAAAAbAAAAAABAGwAAAAAAgBoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== version: 7 -1,1: ind: -1,1 - tiles: WQAAAAACAFkAAAAAAwBZAAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAACAHkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAACAHkAAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAMAHQAAAAABAB0AAAAAAQAdAAAAAAIAHQAAAAABAB0AAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAEAeQAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAABAHkAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQB5AAAAAAAAHQAAAAACAHkAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAMAHQAAAAADAB0AAAAAAgAdAAAAAAAAeQAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAwBZAAAAAAAAWQAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAwAdAAAAAAIAHQAAAAADAB0AAAAAAwB5AAAAAAAAWQAAAAAAAFkAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAABAB0AAAAAAQAdAAAAAAMAHQAAAAADAB0AAAAAAwAdAAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAIAHQAAAAACAHkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAwAdAAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAQBZAAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAgAdAAAAAAMAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAQAdAAAAAAIAHQAAAAABAHkAAAAAAAAdAAAAAAMAHQAAAAABAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwAdAAAAAAEAHQAAAAABAB0AAAAAAwAdAAAAAAIAHQAAAAACAHkAAAAAAAB5AAAAAAAAHQAAAAABAHkAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAIAeQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAABAB0AAAAAAQBZAAAAAAMAWQAAAAADAA== + tiles: WQAAAAADAFkAAAAAAgBZAAAAAAMAeQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAwAdAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAADAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAADAHkAAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAgAdAAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAIAHQAAAAAAAB0AAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAADAHYAAAAAAgB2AAAAAAAAdgAAAAAAAHYAAAAAAQB2AAAAAAAAdgAAAAADAHYAAAAAAwB2AAAAAAMAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAAAeQAAAAAAAHYAAAAAAwB2AAAAAAEAdgAAAAADAHYAAAAAAAB2AAAAAAMAdgAAAAACAHYAAAAAAwB2AAAAAAMAdgAAAAACAHkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAABAHkAAAAAAAB2AAAAAAMAdgAAAAACAHYAAAAAAwB2AAAAAAMAdgAAAAABAHYAAAAAAAB2AAAAAAMAdgAAAAABAHYAAAAAAQB5AAAAAAAAWQAAAAADAFkAAAAAAQB5AAAAAAAAHQAAAAACAHkAAAAAAAB5AAAAAAAAdgAAAAADAHYAAAAAAgB2AAAAAAMAdgAAAAADAHYAAAAAAwB2AAAAAAMAdgAAAAADAHYAAAAAAQB2AAAAAAIAeQAAAAAAAFkAAAAAAgBZAAAAAAMAHQAAAAACAB0AAAAAAAAdAAAAAAMAeQAAAAAAAHYAAAAAAQB2AAAAAAAAdgAAAAADAHYAAAAAAAB2AAAAAAIAdgAAAAACAHYAAAAAAwB2AAAAAAEAdgAAAAADAHkAAAAAAABZAAAAAAAAWQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAAAAB0AAAAAAQBZAAAAAAAAWQAAAAABAHYAAAAAAAB2AAAAAAMAdgAAAAACAHYAAAAAAAB2AAAAAAEAWQAAAAABAFkAAAAAAwB5AAAAAAAAWQAAAAABAFkAAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAAB2AAAAAAEAdgAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAABAFkAAAAAAwBZAAAAAAEAeQAAAAAAAFkAAAAAAgBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAACAB0AAAAAAwAdAAAAAAIAHQAAAAABAB0AAAAAAQAdAAAAAAMAHQAAAAADAB0AAAAAAAAdAAAAAAEAHQAAAAADAHkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAAAAB0AAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAwBZAAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAMAHQAAAAABAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAAAdAAAAAAIAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAABZAAAAAAEAWQAAAAACAB0AAAAAAQAdAAAAAAIAHQAAAAABAB0AAAAAAQAdAAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAAAHQAAAAACAHkAAAAAAAAdAAAAAAIAHQAAAAACAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAwAdAAAAAAMAHQAAAAABAHkAAAAAAAB5AAAAAAAAHQAAAAADAHkAAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAMAeQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAHkAAAAAAAB5AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAIAHQAAAAABAB0AAAAAAQAdAAAAAAEAHQAAAAADAB0AAAAAAgBZAAAAAAEAWQAAAAADAA== version: 7 1,1: ind: 1,1 - tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABQAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAEAAAAAAAABAAAAAAEAAQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABQAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAEAAAAAAQABAAAAAAIAAQAAAAAEAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -1,2: ind: -1,2 - tiles: WQAAAAAAAFkAAAAAAQB5AAAAAAAAWQAAAAADAFkAAAAAAQB5AAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAMAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAEAeQAAAAAAAFkAAAAAAgBZAAAAAAEAHQAAAAACAB0AAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAADAB0AAAAAAgAdAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAABAHkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAACAB0AAAAAAgAdAAAAAAIAeQAAAAAAAFkAAAAAAgB5AAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAQAdAAAAAAIAHQAAAAACAHkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAMAHQAAAAADAB0AAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAHkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAQB5AAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAMAHQAAAAACAFkAAAAAAgAdAAAAAAAAHQAAAAACAB0AAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAQB5AAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAMAeQAAAAAAAB0AAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAQBZAAAAAAIAeQAAAAAAAB0AAAAAAgB5AAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAACAHkAAAAAAAAdAAAAAAMAWQAAAAAAAB0AAAAAAQBZAAAAAAAAWQAAAAACAB0AAAAAAQAdAAAAAAIAHQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAwB5AAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAIAeQAAAAAAAB0AAAAAAQBZAAAAAAIAHQAAAAAAAFkAAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAIAHQAAAAABAB0AAAAAAAAdAAAAAAIAHQAAAAAAAHkAAAAAAAAdAAAAAAMAWQAAAAACAB0AAAAAAQBZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAAAHQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAACAHkAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAgB5AAAAAAAAHQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAB0AAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAQB5AAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAMAeQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAAAAB0AAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAIAeQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAADAA== + tiles: WQAAAAACAFkAAAAAAQB5AAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAABAB0AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAIAeQAAAAAAAFkAAAAAAQBZAAAAAAMAHQAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAwAdAAAAAAEAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAADAHkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAMAHQAAAAABAB0AAAAAAwAdAAAAAAMAeQAAAAAAAFkAAAAAAwB5AAAAAAAAWQAAAAACAFkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAABAHkAAAAAAAAdAAAAAAMAeQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAAAdAAAAAAMAHQAAAAABAHkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAMAHQAAAAAAAB0AAAAAAwB5AAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAMAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAACAHkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAwB5AAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAIAHQAAAAADAHkAAAAAAAAdAAAAAAIAHQAAAAADAHkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAMAeQAAAAAAAB0AAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAwAdAAAAAAEAHQAAAAADAB0AAAAAAwAdAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAMAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAABAHkAAAAAAAAdAAAAAAIAWQAAAAABAFkAAAAAAwBZAAAAAAMAeQAAAAAAAB0AAAAAAAAdAAAAAAMAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAFkAAAAAAgAdAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAAB5AAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAMAeQAAAAAAAHkAAAAAAABZAAAAAAEAeQAAAAAAAFkAAAAAAgAdAAAAAAIAHQAAAAABAB0AAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHkAAAAAAAAdAAAAAAEAWQAAAAADAB0AAAAAAwBZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAMAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAAAAHkAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB5AAAAAAAAHQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAgB5AAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAMAHQAAAAAAAB0AAAAAAwB5AAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAEAeQAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAAAAA== version: 7 0,2: ind: 0,2 - tiles: WQAAAAAAAHkAAAAAAABsAAAAAAMAbAAAAAAAAGwAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAbAAAAAADAGwAAAAAAwBsAAAAAAMAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAeQAAAAAAAGwAAAAAAQBsAAAAAAAAbAAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAABMAAAAABAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAEwAAAAADAHYAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAATAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAEAHQAAAAACAB0AAAAAAgB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAMAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAACAB0AAAAAAgAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAEAHQAAAAADAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAMAeQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAAAAB0AAAAAAgB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAIAHQAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAIAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAgB5AAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAIAHQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAgAdAAAAAAAAHQAAAAACAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAIAeQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAHkAAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAEAeQAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAMAWQAAAAAAAA== + tiles: WQAAAAAAAHkAAAAAAABsAAAAAAMAbAAAAAABAGwAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQB5AAAAAAAAbAAAAAACAGwAAAAAAwBsAAAAAAMAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAGwAAAAAAQBsAAAAAAIAbAAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAABMAAAAABQB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAEwAAAAADAHYAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAMAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAATAAAAAAIAWQAAAAABAFkAAAAAAwBZAAAAAAIAWQAAAAAAAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAIAHQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAIAHQAAAAADAB0AAAAAAQB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAACAB0AAAAAAQAdAAAAAAIAHQAAAAABAB0AAAAAAwAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAgAdAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAACAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAEAHQAAAAACAB0AAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAABAB0AAAAAAQAdAAAAAAIAHQAAAAADAB0AAAAAAQAdAAAAAAMAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAgB5AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAwAdAAAAAAIAHQAAAAAAAB0AAAAAAgAdAAAAAAEAHQAAAAADAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAIAeQAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAACAB0AAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAHkAAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAwAdAAAAAAMAeQAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAADAA== version: 7 1,2: ind: 1,2 - tiles: aAAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACAFkAAAAAAgB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADAFkAAAAAAgB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 2,1: ind: 2,1 - tiles: AQAAAAAEAAEAAAAAAgABAAAAAAAAAQAAAAADAAEAAAAAAQABAAAAAAIAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAA== + tiles: AQAAAAACAAEAAAAAAwABAAAAAAMAAQAAAAAEAAEAAAAAAAABAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAA== version: 7 2,0: ind: 2,0 - tiles: PgAAAAAAAD4AAAAAAAB5AAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAeQAAAAAAAAkAAAAAAwAJAAAAAAIACQAAAAABADoAAAAAAAA6AAAAAAAAOgAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAHkAAAAAAAAdAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaQAAAAAAAHkAAAAAAAB5AAAAAAAAaQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAAEAAAAABAABAAAAAAAAAQAAAAABAAEAAAAABAABAAAAAAAAAQAAAAAEAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAABAAAAAAMAAQAAAAAEAAEAAAAAAgABAAAAAAAAAQAAAAACAAEAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAQAAAAACAAEAAAAABAABAAAAAAUAAQAAAAAAAAEAAAAAAAABAAAAAAQAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAAEAAAAAAQABAAAAAAQAAQAAAAABAAEAAAAABAABAAAAAAAAAQAAAAAFAFkAAAAAAwBZAAAAAAEAWQAAAAABAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAABAAAAAAEAAQAAAAADAAEAAAAAAAABAAAAAAEAAQAAAAABAAEAAAAAAgB5AAAAAAAAWQAAAAABAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAAQAAAAACAAEAAAAABAABAAAAAAIAAQAAAAABAAEAAAAAAQABAAAAAAMAeQAAAAAAAFkAAAAAAQBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAEAAAAAAwABAAAAAAIAAQAAAAADAAEAAAAAAAABAAAAAAUAAQAAAAADAFkAAAAAAQBZAAAAAAIAWQAAAAABAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAABAAAAAAIAAQAAAAADAAEAAAAAAgABAAAAAAUAAQAAAAAEAAEAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAAQAAAAACAAEAAAAAAgABAAAAAAUAAQAAAAAFAAEAAAAAAgABAAAAAAIAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAA== + tiles: PgAAAAAAAD4AAAAAAAB5AAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAeQAAAAAAAAkAAAAAAQAJAAAAAAEACQAAAAADADoAAAAAAAA6AAAAAAAAOgAAAAAAAHkAAAAAAAAdAAAAAAIAeQAAAAAAAHkAAAAAAAAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaQAAAAAAAHkAAAAAAAB5AAAAAAAAaQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAAEAAAAAAAABAAAAAAIAAQAAAAACAAEAAAAAAAABAAAAAAIAAQAAAAACAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAABAAAAAAAAAQAAAAABAAEAAAAAAQABAAAAAAAAAQAAAAAEAAEAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAQAAAAAFAAEAAAAAAwABAAAAAAQAAQAAAAACAAEAAAAAAQABAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAAEAAAAAAAABAAAAAAQAAQAAAAABAAEAAAAABQABAAAAAAEAAQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAABAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAABAAAAAAUAAQAAAAAFAAEAAAAAAgABAAAAAAUAAQAAAAACAAEAAAAAAQB5AAAAAAAAWQAAAAADAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAAQAAAAAFAAEAAAAABAABAAAAAAMAAQAAAAAFAAEAAAAABAABAAAAAAMAeQAAAAAAAFkAAAAAAQBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAEAAAAAAwABAAAAAAAAAQAAAAADAAEAAAAABQABAAAAAAQAAQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAABAAAAAAAAAQAAAAADAAEAAAAABAABAAAAAAMAAQAAAAABAAEAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAAQAAAAAEAAEAAAAABQABAAAAAAUAAQAAAAAAAAEAAAAAAAABAAAAAAEAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAA== version: 7 -2,1: ind: -2,1 - tiles: eQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHYAAAAAAgB2AAAAAAIAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAADAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAdgAAAAADAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHkAAAAAAAAGAAAAAAAAaAAAAAAAAAYAAAAAAAAGAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAIAHQAAAAABAB0AAAAAAQB2AAAAAAIAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAB0AAAAAAwAdAAAAAAEAeQAAAAAAAB0AAAAAAgAdAAAAAAIAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB5AAAAAAAAHQAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAADAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAwB5AAAAAAAAHQAAAAAAAB0AAAAAAwB5AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAABAHYAAAAAAQB2AAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAIAeQAAAAAAAB0AAAAAAQAdAAAAAAIAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB2AAAAAAAAdgAAAAADAHYAAAAAAgB2AAAAAAIAdgAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAABAHkAAAAAAAAdAAAAAAIAHQAAAAABAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAgB2AAAAAAAAdgAAAAADAHYAAAAAAwB5AAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAMAHQAAAAACAB0AAAAAAQB5AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHYAAAAAAgB2AAAAAAEAdgAAAAACAHYAAAAAAQB2AAAAAAEAeQAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + tiles: eQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAgB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHYAAAAAAwB2AAAAAAMAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAADAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAdgAAAAADAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHkAAAAAAAAGAAAAAAAAaAAAAAAAAAYAAAAAAAAGAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAACAB0AAAAAAQB2AAAAAAMAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAB0AAAAAAwAdAAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAMAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB5AAAAAAAAHQAAAAADAHkAAAAAAAAdAAAAAAEAHQAAAAACAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgB5AAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAACAHYAAAAAAAB2AAAAAAEAeQAAAAAAAB0AAAAAAgAdAAAAAAMAeQAAAAAAAB0AAAAAAQAdAAAAAAEAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB2AAAAAAIAdgAAAAACAHYAAAAAAQB2AAAAAAIAdgAAAAABAB0AAAAAAAAdAAAAAAEAHQAAAAACAHkAAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAADAHYAAAAAAwB5AAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAIAHQAAAAACAB0AAAAAAgB5AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHYAAAAAAgB2AAAAAAAAdgAAAAACAHYAAAAAAAB2AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== version: 7 -2,2: ind: -2,2 - tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAACAHkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAADAB0AAAAAAgAdAAAAAAEAeQAAAAAAAB0AAAAAAQAdAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAAAdAAAAAAAAHQAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAwBcAAAAAAAAXAAAAAAAAFwAAAAAAgBcAAAAAAAAeQAAAAAAAB0AAAAAAgB5AAAAAAAAHQAAAAADAHkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAMAXAAAAAAAAFwAAAAAAQBcAAAAAAAAXAAAAAACAHkAAAAAAAAdAAAAAAMAeQAAAAAAAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAADAFwAAAAAAgBcAAAAAAAAXAAAAAADAFwAAAAAAQB5AAAAAAAAHQAAAAACAHkAAAAAAAAdAAAAAAAAeQAAAAAAAB0AAAAAAQAdAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAgBcAAAAAAIAXAAAAAACAFwAAAAAAABcAAAAAAMAeQAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAACAHkAAAAAAAAdAAAAAAAAHQAAAAAAAHkAAAAAAABQAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABcAAAAAAMAXAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAwB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAUAAAAAAAAHkAAAAAAABQAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAwBZAAAAAAMAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAFAAAAAAAAB5AAAAAAAAUAAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAAAdAAAAAAIAHQAAAAACAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAABgAAAAAAAAYAAAAAAAAdAAAAAAMABgAAAAAAAAYAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAAAAB0AAAAAAQAdAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAGAAAAAAAABgAAAAAAAB0AAAAAAgAGAAAAAAAABgAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAA== + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAACAHkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAACAB0AAAAAAwAdAAAAAAMAeQAAAAAAAB0AAAAAAgAdAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAQAdAAAAAAMAHQAAAAAAAHkAAAAAAAAdAAAAAAEAeQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAADAFkAAAAAAgBcAAAAAAMAXAAAAAABAFwAAAAAAABcAAAAAAEAeQAAAAAAAB0AAAAAAQB5AAAAAAAAHQAAAAACAHkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAEAXAAAAAAAAFwAAAAAAQBcAAAAAAMAXAAAAAACAHkAAAAAAAAdAAAAAAMAeQAAAAAAAB0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAABAFwAAAAAAABcAAAAAAIAXAAAAAADAFwAAAAAAwB5AAAAAAAAHQAAAAADAHkAAAAAAAAdAAAAAAIAeQAAAAAAAB0AAAAAAgAdAAAAAAEAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAQBcAAAAAAEAXAAAAAABAFwAAAAAAQBcAAAAAAIAeQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAABAHkAAAAAAAAdAAAAAAMAHQAAAAACAHkAAAAAAABQAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABcAAAAAAEAXAAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAQB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAUAAAAAAAAHkAAAAAAABQAAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAMAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAFAAAAAAAAB5AAAAAAAAUAAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAwAdAAAAAAAAHQAAAAADAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAABgAAAAAAAAYAAAAAAAAdAAAAAAIABgAAAAAAAAYAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAAAdAAAAAAIAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAGAAAAAAAABgAAAAAAAB0AAAAAAAAGAAAAAAAABgAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAA== version: 7 -1,3: ind: -1,3 - tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAAAHQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAHkAAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAgB4AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAgB5AAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAEAeAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAIAeQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAADAHgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAWQAAAAABAGgAAAAAAABZAAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBoAAAAAAAAWQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAwB5AAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAEAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAACAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAMAHQAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAgB4AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAgB5AAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAAAeAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAAAAHgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAWQAAAAACAGgAAAAAAABZAAAAAAEAeQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBoAAAAAAAAWQAAAAABAHkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAACAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -3,0: ind: -3,0 - tiles: eQAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAMAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAACAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAAAAFkAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAIAHQAAAAACAHkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAwBZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAEAeQAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAADABEAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAAARAAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAMAEQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAA== + tiles: eQAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAEAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAABAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAwB5AAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAIAHQAAAAACAHkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAEAeQAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAACABEAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAADAHkAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAAARAAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAIAEQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAA== version: 7 -3,1: ind: -3,1 - tiles: aAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAgB2AAAAAAAAeQAAAAAAAHYAAAAAAgB2AAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAACAHkAAAAAAAB2AAAAAAAAdgAAAAADAHkAAAAAAAB5AAAAAAAAdgAAAAADAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAQB2AAAAAAAAeQAAAAAAAHYAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAwB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAwB2AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAwB5AAAAAAAAdgAAAAAAAHkAAAAAAAB2AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHYAAAAAAgB5AAAAAAAAdgAAAAACAHkAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAgB5AAAAAAAAdgAAAAACAHkAAAAAAAB5AAAAAAAAdgAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAABAHYAAAAAAAB2AAAAAAMAeQAAAAAAAHYAAAAAAwB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAACAHYAAAAAAwB2AAAAAAAAdgAAAAAAAHYAAAAAAwB5AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAA== + tiles: aAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAAB2AAAAAAIAeQAAAAAAAHYAAAAAAAB2AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAADAHkAAAAAAAB2AAAAAAIAdgAAAAACAHkAAAAAAAB5AAAAAAAAdgAAAAADAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAgB2AAAAAAIAeQAAAAAAAHYAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAwB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAwB2AAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAwB5AAAAAAAAdgAAAAABAHkAAAAAAAB2AAAAAAEAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHYAAAAAAAB5AAAAAAAAdgAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAABAHYAAAAAAgB5AAAAAAAAdgAAAAADAHkAAAAAAAB5AAAAAAAAdgAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAABAHYAAAAAAgB2AAAAAAAAeQAAAAAAAHYAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAEAdgAAAAAAAHYAAAAAAQB5AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAA== version: 7 -4,1: ind: -4,1 @@ -214,15 +215,15 @@ entities: version: 7 -4,0: ind: -4,0 - tiles: WQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAwBZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABZAAAAAAMAeQAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAWQAAAAACAHkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAFkAAAAAAgB5AAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAMAeQAAAAAAAHkAAAAAAABZAAAAAAIAeQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABZAAAAAAIAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAADAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABpAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAA== + tiles: WQAAAAABAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAABZAAAAAAIAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAWQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAFkAAAAAAgB5AAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAIAeQAAAAAAAHkAAAAAAABZAAAAAAIAeQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAGgAAAAAAABZAAAAAAEAeQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABpAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAA== version: 7 -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAMAeQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAEAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAADAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAwB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAIAeQAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAgBZAAAAAAEAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAIAWQAAAAABAHkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAACAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAMAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAADAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAQB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAAAeQAAAAAAAA== version: 7 -5,1: ind: -5,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAMAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAACAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAIAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAABAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAQB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -6,0: ind: -6,0 @@ -230,23 +231,23 @@ entities: version: 7 -5,-1: ind: -5,-1 - tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAACAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAwB5AAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAEAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAADAA== + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAQBZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAwB5AAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAACAA== version: 7 -4,-1: ind: -4,-1 - tiles: WQAAAAADAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAABAAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAEAAAAAAAAFkAAAAAAwB5AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAAQAAAAAAAAWQAAAAABAHkAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAE8AAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgB5AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB5AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAHkAAAAAAABZAAAAAAIAeQAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAeQAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAEAeQAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAEAWQAAAAAAAHkAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHkAAAAAAAAdAAAAAAEAWQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAE8AAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB5AAAAAAAAHQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAEAeQAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAeQAAAAAAAB0AAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAACAHkAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHkAAAAAAAAdAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAIAWQAAAAADAA== + tiles: WQAAAAACAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAABAAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAEAAAAAAAAFkAAAAAAQB5AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAAQAAAAAAAAWQAAAAACAHkAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAE8AAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgB5AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB5AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAeQAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAMAeQAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAAAAHkAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB5AAAAAAAAWQAAAAABAHkAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHkAAAAAAAAdAAAAAAIAWQAAAAADAFkAAAAAAwB5AAAAAAAAeQAAAAAAAE8AAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgB5AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB5AAAAAAAAHQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAIAeQAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAeQAAAAAAAB0AAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAwBZAAAAAAIAWQAAAAAAAHkAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHkAAAAAAAAdAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAABAA== version: 7 -3,-1: ind: -3,-1 - tiles: eQAAAAAAAFAAAAAAAABQAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADABAAAAAAAABQAAAAAAAAUAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAUAAAAAAAAFAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAADAB0AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAEAAAAAAAAFAAAAAAAABQAAAAAAAAeQAAAAAAAD0AAAAAAAA9AAAAAAAAPQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAAAdAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAHkAAAAAAABQAAAAAAAAUAAAAAAAAHkAAAAAAAA9AAAAAAAAPQAAAAAAAD0AAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAHQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQAQAAAAAAAAUAAAAAAAAFAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAA9AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAAAAB0AAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAABQAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAwBZAAAAAAIAWQAAAAAAAFkAAAAAAwAdAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAMAHQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAACAB0AAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAgAdAAAAAAMAeQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAB0AAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAgBZAAAAAAIAHQAAAAABAHkAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAADAB0AAAAAAQAdAAAAAAIAHQAAAAACAB0AAAAAAwAdAAAAAAMAHQAAAAAAAB0AAAAAAgB5AAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAVAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAABAA== + tiles: eQAAAAAAAFAAAAAAAABQAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACABAAAAAAAABQAAAAAAAAUAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAUAAAAAAAAFAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAACAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAEAAAAAAAAFAAAAAAAABQAAAAAAAAeQAAAAAAAD0AAAAAAAA9AAAAAAAAPQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAwAdAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAHkAAAAAAABQAAAAAAAAUAAAAAAAAHkAAAAAAAA9AAAAAAAAPQAAAAAAAD0AAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAEAHQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAAQAAAAAAAAUAAAAAAAAFAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAA9AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAAAAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAABQAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAQAdAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAAAHQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAWQAAAAACAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAADAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAwAdAAAAAAIAeQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAB0AAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAEAHQAAAAACAHkAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAABAB0AAAAAAQB5AAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAHQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAVAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAIAWQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAAAAA== version: 7 3,0: ind: 3,0 - tiles: OgAAAAAAADoAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAAAdgAAAAABAHYAAAAAAgB2AAAAAAEAdgAAAAAAAHYAAAAAAgB5AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAEAPgAAAAAAADoAAAAAAAA6AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAADAHYAAAAAAQB2AAAAAAIAdgAAAAABAHYAAAAAAgB2AAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAAAeQAAAAAAAD4AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAgB2AAAAAAAAdgAAAAABAHYAAAAAAQB2AAAAAAMAdgAAAAABAHkAAAAAAAAdAAAAAAMAHQAAAAADAHkAAAAAAAA+AAAAAAAAAAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAAAdgAAAAACAHYAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAPgAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAFIAAAAAAgBSAAAAAAMAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAUgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABsAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABsAAAAAAEAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + tiles: OgAAAAAAADoAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAMAdgAAAAADAHYAAAAAAQB2AAAAAAAAdgAAAAADAHYAAAAAAAB5AAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAEAPgAAAAAAADoAAAAAAAA6AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAQB2AAAAAAAAdgAAAAAAAHYAAAAAAwB2AAAAAAAAeQAAAAAAAB0AAAAAAQAdAAAAAAAAeQAAAAAAAD4AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAgB2AAAAAAEAdgAAAAABAHYAAAAAAgB2AAAAAAAAdgAAAAACAHkAAAAAAAAdAAAAAAIAHQAAAAAAAHkAAAAAAAA+AAAAAAAAAAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAIAdgAAAAAAAHYAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAPgAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAFIAAAAAAwBSAAAAAAMAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAUgAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBsAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABsAAAAAAIAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== version: 7 2,-1: ind: 2,-1 - tiles: eQAAAAAAAGwAAAAAAgBsAAAAAAEAbAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAIAWQAAAAABAFkAAAAAAwBZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAIAWQAAAAABAHkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAwB5AAAAAAAAWQAAAAACAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAMAeQAAAAAAAHkAAAAAAABZAAAAAAEAHQAAAAABAFwAAAAAAABcAAAAAAEAXAAAAAACAFwAAAAAAABcAAAAAAMAXAAAAAADAFwAAAAAAQBcAAAAAAIAeQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAADAB0AAAAAAQAdAAAAAAAAWQAAAAADAHkAAAAAAABcAAAAAAAAXAAAAAACAFwAAAAAAgBcAAAAAAAAXAAAAAADAFwAAAAAAABcAAAAAAEAXAAAAAADAHkAAAAAAAAdAAAAAAIAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAAAAFkAAAAAAQB2AAAAAAEAXAAAAAAAAFwAAAAAAwBcAAAAAAIAXAAAAAABAFwAAAAAAABcAAAAAAMAXAAAAAACAFwAAAAAAwB5AAAAAAAAHQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAAAeQAAAAAAAFwAAAAAAQBcAAAAAAMAXAAAAAACAFwAAAAAAQBcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAWQAAAAABAB0AAAAAAwBZAAAAAAEAWQAAAAABAB0AAAAAAAAdAAAAAAAAWQAAAAABAB0AAAAAAwBcAAAAAAEAXAAAAAACAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAgBcAAAAAAMAXAAAAAACAFkAAAAAAwAdAAAAAAIAWQAAAAADAFkAAAAAAQAdAAAAAAMAHQAAAAABAFkAAAAAAwB5AAAAAAAAXAAAAAAAAFwAAAAAAQBcAAAAAAMAXAAAAAACAFwAAAAAAABcAAAAAAMAXAAAAAAAAFwAAAAAAQBZAAAAAAAAHQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAMAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAHkAAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAMAHQAAAAABAB0AAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAPgAAAAAAAD4AAAAAAAB5AAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAWQAAAAABAAkAAAAAAwAJAAAAAAAACQAAAAADADoAAAAAAAA6AAAAAAAAOgAAAAAAAA== + tiles: eQAAAAAAAGwAAAAAAgBsAAAAAAMAbAAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAABAHkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAABAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAMAeQAAAAAAAHkAAAAAAABZAAAAAAMAHQAAAAADAFwAAAAAAQBcAAAAAAMAXAAAAAAAAFwAAAAAAwBcAAAAAAMAXAAAAAAAAFwAAAAAAQBcAAAAAAEAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAABAB0AAAAAAgAdAAAAAAAAWQAAAAADAHkAAAAAAABcAAAAAAMAXAAAAAABAFwAAAAAAwBcAAAAAAAAXAAAAAADAFwAAAAAAgBcAAAAAAAAXAAAAAACAHkAAAAAAAAdAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAADAFkAAAAAAQB2AAAAAAMAXAAAAAACAFwAAAAAAwBcAAAAAAAAXAAAAAABAFwAAAAAAABcAAAAAAEAXAAAAAACAFwAAAAAAAB5AAAAAAAAHQAAAAACAFkAAAAAAQBZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAEAeQAAAAAAAFwAAAAAAQBcAAAAAAMAXAAAAAAAAFwAAAAAAQBcAAAAAAIAXAAAAAAAAFwAAAAAAABcAAAAAAAAWQAAAAACAB0AAAAAAQBZAAAAAAEAWQAAAAADAB0AAAAAAgAdAAAAAAAAWQAAAAADAB0AAAAAAABcAAAAAAIAXAAAAAADAFwAAAAAAwBcAAAAAAAAXAAAAAACAFwAAAAAAABcAAAAAAEAXAAAAAAAAFkAAAAAAgAdAAAAAAIAWQAAAAADAFkAAAAAAQAdAAAAAAIAHQAAAAACAFkAAAAAAAB5AAAAAAAAXAAAAAACAFwAAAAAAABcAAAAAAEAXAAAAAACAFwAAAAAAgBcAAAAAAMAXAAAAAADAFwAAAAAAgBZAAAAAAAAHQAAAAACAFkAAAAAAgBZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAIAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAwAdAAAAAAIAHQAAAAABAB0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAPgAAAAAAAD4AAAAAAAB5AAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAWQAAAAACAAkAAAAAAQAJAAAAAAEACQAAAAADADoAAAAAAAA6AAAAAAAAOgAAAAAAAA== version: 7 3,1: ind: 3,1 @@ -254,11 +255,11 @@ entities: version: 7 4,1: ind: 4,1 - tiles: HQAAAAADAHkAAAAAAAB5AAAAAAAAPgAAAAAAAD4AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAQB5AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAIAPgAAAAAAAHkAAAAAAAA+AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADAHkAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAHQAAAAADAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAQB5AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: HQAAAAACAHkAAAAAAAB5AAAAAAAAPgAAAAAAAD4AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAgB5AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAEAPgAAAAAAAHkAAAAAAAA+AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACAHkAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAHQAAAAADAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAwB5AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,0: ind: 4,0 - tiles: PgAAAAAAAD4AAAAAAAA+AAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAAAdAAAAAAMACAAAAAAAAAgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAwAdAAAAAAMAHQAAAAABAAgAAAAAAAAIAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAACAB0AAAAAAwAIAAAAAAAACAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAACAB0AAAAAAAAdAAAAAAIACAAAAAAAAAgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAABAB0AAAAAAgAdAAAAAAMAHQAAAAABAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABgAAAAAAAAeQAAAAAAAGAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + tiles: PgAAAAAAAD4AAAAAAAA+AAAAAAAAeQAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAADAB0AAAAAAgAdAAAAAAMACAAAAAAAAAgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAMAHQAAAAADAAgAAAAAAAAIAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAIAHQAAAAAAAB0AAAAAAgAIAAAAAAAACAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAABAB0AAAAAAgAdAAAAAAMACAAAAAAAAAgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAIAHQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAAAHQAAAAABAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAQAdAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAEAYAAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABgAAAAAAIAeQAAAAAAAGAAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABgAAAAAAEAYAAAAAACAGAAAAAAAABgAAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== version: 7 5,0: ind: 5,0 @@ -266,11 +267,11 @@ entities: version: 7 3,-1: ind: 3,-1 - tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAIAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAAB5AAAAAAAAdgAAAAABAHYAAAAAAwB2AAAAAAIAdgAAAAACAHYAAAAAAQB2AAAAAAAAdgAAAAABAHYAAAAAAAB2AAAAAAAAWQAAAAAAAFkAAAAAAQB5AAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAMAdgAAAAABAHYAAAAAAgB2AAAAAAEAdgAAAAABAHYAAAAAAQB2AAAAAAIAdgAAAAACAHYAAAAAAQB2AAAAAAIAdgAAAAADAFkAAAAAAgAdAAAAAAIAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAABAHYAAAAAAAB2AAAAAAMAdgAAAAABAHYAAAAAAgB2AAAAAAEAdgAAAAACAHYAAAAAAwB2AAAAAAEAdgAAAAABAHYAAAAAAABZAAAAAAMAHQAAAAABAHkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAABAHYAAAAAAAB2AAAAAAEAdgAAAAACAHYAAAAAAQB2AAAAAAMAdgAAAAAAAHYAAAAAAwB2AAAAAAAAWQAAAAABAB0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAAAdgAAAAADAHYAAAAAAgB2AAAAAAMAdgAAAAACAHYAAAAAAgB2AAAAAAMAdgAAAAADAHYAAAAAAQB2AAAAAAEAdgAAAAAAAFkAAAAAAAAdAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAAAAHYAAAAAAQB2AAAAAAEAdgAAAAABAHYAAAAAAAB2AAAAAAMAdgAAAAADAHYAAAAAAQB2AAAAAAIAdgAAAAADAHYAAAAAAQBZAAAAAAEAHQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAgB2AAAAAAEAdgAAAAAAAHYAAAAAAgB2AAAAAAMAdgAAAAACAHYAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAwB5AAAAAAAAWQAAAAABAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAEAdgAAAAADAHYAAAAAAwB2AAAAAAMAdgAAAAACAHYAAAAAAgB2AAAAAAMAeQAAAAAAAHYAAAAAAgB2AAAAAAMAdgAAAAABAB0AAAAAAwAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAADAHYAAAAAAQB2AAAAAAMAdgAAAAACAHYAAAAAAwB2AAAAAAIAdgAAAAADAHkAAAAAAAB2AAAAAAIAdgAAAAAAAHYAAAAAAgBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAQB2AAAAAAAAdgAAAAABAHYAAAAAAAB2AAAAAAAAdgAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAOgAAAAAAADoAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAEAdgAAAAACAHYAAAAAAgB2AAAAAAEAdgAAAAADAHYAAAAAAQB5AAAAAAAAHQAAAAACAB0AAAAAAwB5AAAAAAAAPgAAAAAAAA== + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAABAFkAAAAAAQBZAAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAIAeQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAAB5AAAAAAAAdgAAAAACAHYAAAAAAwB2AAAAAAAAdgAAAAADAHYAAAAAAwB2AAAAAAMAdgAAAAADAHYAAAAAAwB2AAAAAAMAWQAAAAACAFkAAAAAAwB5AAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAAAdgAAAAABAHYAAAAAAQB2AAAAAAMAdgAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAACAHYAAAAAAAB2AAAAAAEAdgAAAAAAAFkAAAAAAwAdAAAAAAIAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAADAHYAAAAAAwB2AAAAAAIAdgAAAAADAHYAAAAAAAB2AAAAAAIAdgAAAAACAHYAAAAAAQB2AAAAAAIAdgAAAAACAHYAAAAAAABZAAAAAAEAHQAAAAABAHkAAAAAAABZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAACAHYAAAAAAAB2AAAAAAEAdgAAAAACAHYAAAAAAwB2AAAAAAEAdgAAAAAAAHYAAAAAAQB2AAAAAAMAWQAAAAADAB0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAAAdgAAAAACAHYAAAAAAAB2AAAAAAAAdgAAAAADAHYAAAAAAwB2AAAAAAAAdgAAAAABAHYAAAAAAwB2AAAAAAEAdgAAAAAAAFkAAAAAAQAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAABAHYAAAAAAwB2AAAAAAEAdgAAAAACAHYAAAAAAAB2AAAAAAEAdgAAAAABAHYAAAAAAQB2AAAAAAEAdgAAAAACAHYAAAAAAgBZAAAAAAMAHQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAQB2AAAAAAEAdgAAAAAAAHYAAAAAAQB2AAAAAAMAdgAAAAACAHYAAAAAAwB5AAAAAAAAeQAAAAAAAHYAAAAAAAB5AAAAAAAAWQAAAAADAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAAAdgAAAAACAHYAAAAAAQB2AAAAAAIAdgAAAAADAHYAAAAAAgB2AAAAAAIAeQAAAAAAAHYAAAAAAgB2AAAAAAIAdgAAAAABAB0AAAAAAAAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAACAHYAAAAAAwB2AAAAAAMAdgAAAAABAHYAAAAAAwB2AAAAAAMAdgAAAAADAHkAAAAAAAB2AAAAAAIAdgAAAAADAHYAAAAAAgBZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAwB2AAAAAAAAdgAAAAADAHYAAAAAAAB2AAAAAAEAdgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAOgAAAAAAADoAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAIAdgAAAAADAHYAAAAAAQB2AAAAAAAAdgAAAAADAHYAAAAAAgB5AAAAAAAAHQAAAAACAB0AAAAAAgB5AAAAAAAAPgAAAAAAAA== version: 7 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== version: 7 -4,-2: ind: -4,-2 @@ -278,7 +279,7 @@ entities: version: 7 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAADAHkAAAAAAABZAAAAAAIAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAgBZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAQBZAAAAAAMAeQAAAAAAAFkAAAAAAgBZAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAIAWQAAAAABAHkAAAAAAABZAAAAAAIAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAMAWQAAAAADAFkAAAAAAwB5AAAAAAAAdgAAAAACAHYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAEAeQAAAAAAAHYAAAAAAgB2AAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAABAHkAAAAAAAB2AAAAAAMAdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAAB5AAAAAAAAdgAAAAABAHYAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAwBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAQBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAACAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAEAWQAAAAABAHkAAAAAAABZAAAAAAIAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAQBZAAAAAAMAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAADAHkAAAAAAABZAAAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAACAFkAAAAAAAB5AAAAAAAAdgAAAAACAHYAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAAAeQAAAAAAAHYAAAAAAgB2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAIAWQAAAAAAAHkAAAAAAAB2AAAAAAIAdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAgB5AAAAAAAAdgAAAAABAHYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAAAWQAAAAACAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAwBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAIAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAA== version: 7 -3,-3: ind: -3,-3 @@ -286,71 +287,71 @@ entities: version: 7 -2,-4: ind: -2,-4 - tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAEQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAwB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAABEAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAMAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAEAWQAAAAACAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAEAAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAABEAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAIAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAADAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAABEAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAARAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAEQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAQB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAABEAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAwBZAAAAAAEAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAACAEAAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAABEAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAMAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAEAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAACAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAABEAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAARAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== version: 7 -1,-4: ind: -1,-4 - tiles: eQAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAGoAAAAAAQAdAAAAAAIAHQAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAACAHkAAAAAAAB5AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAgAdAAAAAAIAHQAAAAACAB0AAAAAAgB5AAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAgBZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAHQAAAAAAAB0AAAAAAwARAAAAAAAAHQAAAAAAAB0AAAAAAwARAAAAAAAAeQAAAAAAAB0AAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAgB5AAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAABAB0AAAAAAgAdAAAAAAAAEQAAAAAAAB0AAAAAAAAdAAAAAAMAEQAAAAAAAHkAAAAAAAAdAAAAAAEAWQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAAAdAAAAAAMAHQAAAAACABEAAAAAAAAdAAAAAAIAHQAAAAACAB0AAAAAAgB5AAAAAAAAHQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAADAHkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAwBZAAAAAAMAHQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAB0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAwB5AAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAIAeQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAQAdAAAAAAIAEQAAAAAAABEAAAAAAAARAAAAAAAAHQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAwBZAAAAAAMAHQAAAAACAB0AAAAAAQARAAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAEAeQAAAAAAAB0AAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAwB5AAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAACAB0AAAAAAAAdAAAAAAEAEQAAAAAAAB0AAAAAAAAdAAAAAAMAEQAAAAAAAHkAAAAAAAAdAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAgAdAAAAAAIAHQAAAAAAABEAAAAAAAAdAAAAAAEAHQAAAAABABEAAAAAAAB5AAAAAAAAHQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAADAA== + tiles: eQAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAGoAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAwAdAAAAAAIAHQAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAADAHkAAAAAAAB5AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAACAB0AAAAAAwB5AAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAADAHkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAHQAAAAABAB0AAAAAAgARAAAAAAAAHQAAAAAAAB0AAAAAAAARAAAAAAAAeQAAAAAAAB0AAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAwB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAEAWQAAAAACAB0AAAAAAAAdAAAAAAEAEQAAAAAAAB0AAAAAAwAdAAAAAAEAEQAAAAAAAHkAAAAAAAAdAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAwAdAAAAAAAAHQAAAAACABEAAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAgB5AAAAAAAAHQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAACAHkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAMAHQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAB0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAgB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAAAdAAAAAAEAEQAAAAAAABEAAAAAAAARAAAAAAAAHQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAwBZAAAAAAAAHQAAAAAAAB0AAAAAAAARAAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAMAeQAAAAAAAB0AAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAwB5AAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAADAB0AAAAAAwAdAAAAAAMAEQAAAAAAAB0AAAAAAgAdAAAAAAAAEQAAAAAAAHkAAAAAAAAdAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAgAdAAAAAAIAHQAAAAAAABEAAAAAAAAdAAAAAAEAHQAAAAAAABEAAAAAAAB5AAAAAAAAHQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAACAA== version: 7 0,-4: ind: 0,-4 - tiles: eQAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAQB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAYgAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGIAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAgB5AAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAABAHkAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAAAYgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAFkAAAAAAAB5AAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAGIAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAAAAHkAAAAAAABZAAAAAAEAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAgB5AAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAgBoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + tiles: eQAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAYgAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGIAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAAB5AAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAACAHkAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAFkAAAAAAgB5AAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAGIAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAADAHkAAAAAAABZAAAAAAIAeQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAQBoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== version: 7 2,-3: ind: 2,-3 - tiles: eQAAAAAAAGkAAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAAAdAAAAAAEAHQAAAAADAGwAAAAAAQBsAAAAAAMAbAAAAAACAHkAAAAAAABsAAAAAAIAbAAAAAAAAGwAAAAAAwBsAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAAAHQAAAAAAAHkAAAAAAABsAAAAAAEAbAAAAAADAGwAAAAAAwB5AAAAAAAAbAAAAAADAGwAAAAAAQBsAAAAAAEAbAAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAABAB0AAAAAAgB5AAAAAAAAbAAAAAACAGwAAAAAAABsAAAAAAIAbAAAAAABAGwAAAAAAABsAAAAAAIAbAAAAAACAGwAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAeQAAAAAAAGwAAAAAAQBsAAAAAAAAbAAAAAABAHkAAAAAAABsAAAAAAIAbAAAAAAAAGwAAAAAAgBsAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAAAAHkAAAAAAABsAAAAAAIAbAAAAAACAGwAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAACAB0AAAAAAwB5AAAAAAAAbAAAAAACAGwAAAAAAgBsAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAIAeQAAAAAAAGwAAAAAAwBsAAAAAAEAbAAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAIAHQAAAAAAAHkAAAAAAABsAAAAAAIAbAAAAAAAAGwAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAADAB0AAAAAAgAdAAAAAAMAbAAAAAAAAGwAAAAAAgBsAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAIAeQAAAAAAAGwAAAAAAwBsAAAAAAMAbAAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAEAbAAAAAAAAGwAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAAAbAAAAAADAGwAAAAAAQBsAAAAAAMAbAAAAAABAGwAAAAAAgB5AAAAAAAAbAAAAAAAAGwAAAAAAgBsAAAAAAMAbAAAAAACAHkAAAAAAABcAAAAAAAAXAAAAAADAFwAAAAAAABcAAAAAAAAbAAAAAABAGwAAAAAAgBsAAAAAAEAbAAAAAABAGwAAAAAAABsAAAAAAIAeQAAAAAAAGwAAAAAAABsAAAAAAMAbAAAAAABAGwAAAAAAgBsAAAAAAEAXAAAAAABAFwAAAAAAwBcAAAAAAEAXAAAAAADAFkAAAAAAABZAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAEAbAAAAAADAHkAAAAAAABsAAAAAAMAbAAAAAABAGwAAAAAAwBsAAAAAAEAeQAAAAAAAFwAAAAAAABcAAAAAAMAXAAAAAAAAFwAAAAAAwBZAAAAAAEAWQAAAAAAAHkAAAAAAABsAAAAAAEAbAAAAAADAHkAAAAAAAB5AAAAAAAAbAAAAAACAGwAAAAAAgBsAAAAAAEAbAAAAAACAHkAAAAAAABcAAAAAAIAXAAAAAACAFwAAAAAAgBcAAAAAAMAWQAAAAABAFkAAAAAAAB5AAAAAAAAbAAAAAABAGwAAAAAAwBsAAAAAAEAbAAAAAAAAGwAAAAAAgBsAAAAAAEAbAAAAAABAGwAAAAAAwB5AAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAADAA== + tiles: eQAAAAAAAGkAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAACAGwAAAAAAABsAAAAAAEAbAAAAAADAHkAAAAAAABsAAAAAAEAbAAAAAADAGwAAAAAAABsAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAACAHkAAAAAAABsAAAAAAIAbAAAAAAAAGwAAAAAAgB5AAAAAAAAbAAAAAADAGwAAAAAAABsAAAAAAAAbAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAADAB0AAAAAAQB5AAAAAAAAbAAAAAADAGwAAAAAAQBsAAAAAAEAbAAAAAAAAGwAAAAAAABsAAAAAAIAbAAAAAABAGwAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAeQAAAAAAAGwAAAAAAQBsAAAAAAAAbAAAAAACAHkAAAAAAABsAAAAAAAAbAAAAAABAGwAAAAAAgBsAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAAAWQAAAAACAHkAAAAAAABsAAAAAAMAbAAAAAACAGwAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAwB5AAAAAAAAbAAAAAABAGwAAAAAAwBsAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAMAeQAAAAAAAGwAAAAAAABsAAAAAAMAbAAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAIAHQAAAAABAHkAAAAAAABsAAAAAAAAbAAAAAADAGwAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAwAdAAAAAAIAbAAAAAABAGwAAAAAAQBsAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAAAeQAAAAAAAGwAAAAAAQBsAAAAAAMAbAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAIAbAAAAAAAAGwAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAAAbAAAAAADAGwAAAAAAgBsAAAAAAIAbAAAAAABAGwAAAAAAAB5AAAAAAAAbAAAAAAAAGwAAAAAAwBsAAAAAAMAbAAAAAADAHkAAAAAAABcAAAAAAAAXAAAAAABAFwAAAAAAABcAAAAAAMAbAAAAAAAAGwAAAAAAQBsAAAAAAIAbAAAAAACAGwAAAAAAABsAAAAAAAAeQAAAAAAAGwAAAAAAQBsAAAAAAEAbAAAAAAAAGwAAAAAAwBsAAAAAAMAXAAAAAADAFwAAAAAAgBcAAAAAAIAXAAAAAAAAFkAAAAAAABZAAAAAAEAbAAAAAABAGwAAAAAAwBsAAAAAAAAbAAAAAABAHkAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAeQAAAAAAAFwAAAAAAABcAAAAAAIAXAAAAAAAAFwAAAAAAABZAAAAAAIAWQAAAAABAHkAAAAAAABsAAAAAAAAbAAAAAADAHkAAAAAAAB5AAAAAAAAbAAAAAABAGwAAAAAAABsAAAAAAAAbAAAAAAAAHkAAAAAAABcAAAAAAMAXAAAAAADAFwAAAAAAgBcAAAAAAIAWQAAAAABAFkAAAAAAwB5AAAAAAAAbAAAAAACAGwAAAAAAgBsAAAAAAIAbAAAAAACAGwAAAAAAgBsAAAAAAEAbAAAAAACAGwAAAAAAQB5AAAAAAAAXAAAAAADAFwAAAAAAwBcAAAAAAEAXAAAAAACAA== version: 7 2,-2: ind: 2,-2 - tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAABAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAMAbAAAAAABAGwAAAAAAwB5AAAAAAAAXAAAAAADAFwAAAAAAgBcAAAAAAMAXAAAAAACAGwAAAAAAABsAAAAAAMAeQAAAAAAAGwAAAAAAwBsAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAHkAAAAAAABsAAAAAAIAbAAAAAADAGwAAAAAAQBsAAAAAAEAbAAAAAAAAHkAAAAAAABsAAAAAAMAbAAAAAADAGwAAAAAAABsAAAAAAEAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAQB5AAAAAAAAbAAAAAADAGwAAAAAAwBsAAAAAAIAbAAAAAADAGwAAAAAAwB5AAAAAAAAbAAAAAADAGwAAAAAAABsAAAAAAIAbAAAAAABAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAEAeQAAAAAAAGwAAAAAAgBsAAAAAAAAeQAAAAAAAGwAAAAAAABsAAAAAAIAeQAAAAAAAGwAAAAAAwBsAAAAAAIAbAAAAAACAGwAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAAAAGwAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAAAbAAAAAACAHkAAAAAAABsAAAAAAIAbAAAAAADAGwAAAAAAgBsAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAgB5AAAAAAAAbAAAAAAAAGwAAAAAAwBsAAAAAAEAbAAAAAADAGwAAAAAAAB5AAAAAAAAeQAAAAAAAGwAAAAAAABsAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAEAeQAAAAAAAGwAAAAAAABsAAAAAAMAbAAAAAABAGwAAAAAAgBsAAAAAAEAbAAAAAADAGwAAAAAAQBsAAAAAAIAbAAAAAADAGwAAAAAAQBsAAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAADAHkAAAAAAABsAAAAAAEAbAAAAAACAGwAAAAAAQBsAAAAAAAAbAAAAAACAGwAAAAAAwBsAAAAAAEAbAAAAAABAGwAAAAAAwBsAAAAAAEAbAAAAAABAFkAAAAAAwBZAAAAAAIAWQAAAAABAFkAAAAAAwBpAAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAEAbAAAAAAAAGwAAAAAAQBsAAAAAAEAbAAAAAABAGwAAAAAAABsAAAAAAAAbAAAAAADAGwAAAAAAgB5AAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAMAeQAAAAAAAGwAAAAAAgB5AAAAAAAAbAAAAAADAGwAAAAAAwB5AAAAAAAAbAAAAAAAAGwAAAAAAgBsAAAAAAAAeQAAAAAAAB0AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAEAbAAAAAAAAGwAAAAAAwBsAAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAEAeQAAAAAAAHkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAABoAAAAAAAAbAAAAAACAGwAAAAAAgBsAAAAAAIAbAAAAAADAHkAAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAgAdAAAAAAMAaQAAAAAAAGkAAAAAAAAdAAAAAAAAaQAAAAAAAB0AAAAAAgBpAAAAAAAAeQAAAAAAAGwAAAAAAgBsAAAAAAEAbAAAAAABAGwAAAAAAgB5AAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAADAGkAAAAAAABpAAAAAAAAHQAAAAAAAGkAAAAAAAAdAAAAAAMAaQAAAAAAAB0AAAAAAABsAAAAAAIAbAAAAAACAGwAAAAAAwBsAAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAAAAHkAAAAAAABpAAAAAAAAaQAAAAAAAB0AAAAAAwBpAAAAAAAAHQAAAAAAAGkAAAAAAAAdAAAAAAMAbAAAAAAAAGwAAAAAAQBsAAAAAAIAbAAAAAABAHkAAAAAAAAdAAAAAAMAHQAAAAABAB0AAAAAAgB5AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAIAaQAAAAAAAB0AAAAAAQBpAAAAAAAAHQAAAAADAA== + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAABAGwAAAAAAwBsAAAAAAEAbAAAAAADAGwAAAAAAQBsAAAAAAMAbAAAAAADAGwAAAAAAwB5AAAAAAAAXAAAAAADAFwAAAAAAQBcAAAAAAAAXAAAAAABAGwAAAAAAQBsAAAAAAEAeQAAAAAAAGwAAAAAAQBsAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAABsAAAAAAEAbAAAAAADAGwAAAAAAgBsAAAAAAMAbAAAAAADAHkAAAAAAABsAAAAAAMAbAAAAAABAGwAAAAAAgBsAAAAAAMAeQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAQB5AAAAAAAAbAAAAAABAGwAAAAAAgBsAAAAAAAAbAAAAAACAGwAAAAAAQB5AAAAAAAAbAAAAAABAGwAAAAAAQBsAAAAAAEAbAAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAwBZAAAAAAIAeQAAAAAAAGwAAAAAAgBsAAAAAAEAeQAAAAAAAGwAAAAAAQBsAAAAAAMAeQAAAAAAAGwAAAAAAwBsAAAAAAEAbAAAAAACAGwAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAACAGwAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAIAbAAAAAABAHkAAAAAAABsAAAAAAEAbAAAAAACAGwAAAAAAQBsAAAAAAEAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAgB5AAAAAAAAbAAAAAAAAGwAAAAAAQBsAAAAAAMAbAAAAAAAAGwAAAAAAQB5AAAAAAAAeQAAAAAAAGwAAAAAAwBsAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAMAeQAAAAAAAGwAAAAAAQBsAAAAAAEAbAAAAAABAGwAAAAAAwBsAAAAAAIAbAAAAAAAAGwAAAAAAQBsAAAAAAEAbAAAAAACAGwAAAAAAgBsAAAAAAEAeQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAADAHkAAAAAAABsAAAAAAMAbAAAAAADAGwAAAAAAgBsAAAAAAIAbAAAAAACAGwAAAAAAQBsAAAAAAMAbAAAAAACAGwAAAAAAwBsAAAAAAAAbAAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAwBpAAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAgBsAAAAAAAAbAAAAAAAAGwAAAAAAgBsAAAAAAAAbAAAAAAAAGwAAAAAAQB5AAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAIAeQAAAAAAAGwAAAAAAwB5AAAAAAAAbAAAAAAAAGwAAAAAAQB5AAAAAAAAbAAAAAAAAGwAAAAAAwBsAAAAAAEAeQAAAAAAAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAIAbAAAAAADAGwAAAAAAwBsAAAAAAEAeQAAAAAAAHkAAAAAAAAdAAAAAAIAeQAAAAAAAHkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAABoAAAAAAAAbAAAAAAAAGwAAAAAAQBsAAAAAAEAbAAAAAABAHkAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAEAaQAAAAAAAGkAAAAAAAAdAAAAAAIAaQAAAAAAAB0AAAAAAQBpAAAAAAAAeQAAAAAAAGwAAAAAAQBsAAAAAAAAbAAAAAACAGwAAAAAAwB5AAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAAAHQAAAAAAAGkAAAAAAABpAAAAAAAAHQAAAAAAAGkAAAAAAAAdAAAAAAAAaQAAAAAAAB0AAAAAAABsAAAAAAAAbAAAAAACAGwAAAAAAABsAAAAAAEAeQAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAADAHkAAAAAAABpAAAAAAAAaQAAAAAAAB0AAAAAAQBpAAAAAAAAHQAAAAADAGkAAAAAAAAdAAAAAAMAbAAAAAADAGwAAAAAAgBsAAAAAAEAbAAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAgB5AAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAMAaQAAAAAAAB0AAAAAAABpAAAAAAAAHQAAAAABAA== version: 7 2,-4: ind: 2,-4 - tiles: aAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAMAdgAAAAADAHYAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAdgAAAAABAHYAAAAAAAB2AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAACAGwAAAAAAwBsAAAAAAMAbAAAAAAAAHkAAAAAAABsAAAAAAIAbAAAAAAAAHkAAAAAAABsAAAAAAMAbAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGwAAAAAAwBsAAAAAAIAbAAAAAADAGwAAAAAAgB5AAAAAAAAbAAAAAAAAGwAAAAAAgB5AAAAAAAAbAAAAAAAAGwAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAAAbAAAAAACAGwAAAAAAwBsAAAAAAMAeQAAAAAAAGwAAAAAAgBsAAAAAAEAeQAAAAAAAGwAAAAAAABsAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAAAAGwAAAAAAgBsAAAAAAEAbAAAAAABAHkAAAAAAABsAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGwAAAAAAABsAAAAAAMAbAAAAAADAGwAAAAAAgBsAAAAAAMAbAAAAAACAGwAAAAAAwBsAAAAAAMAbAAAAAABAGwAAAAAAAB5AAAAAAAAeQAAAAAAAGwAAAAAAgBsAAAAAAEAbAAAAAACAGwAAAAAAQBsAAAAAAIAbAAAAAABAGwAAAAAAQBsAAAAAAIAbAAAAAADAGwAAAAAAABsAAAAAAEAbAAAAAABAGwAAAAAAwBsAAAAAAEAeQAAAAAAAHkAAAAAAABsAAAAAAIAbAAAAAADAGwAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAABAGwAAAAAAABsAAAAAAAAbAAAAAAAAHkAAAAAAABsAAAAAAMAbAAAAAACAGwAAAAAAwB5AAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAAACQAAAAAAAAkAAAAAAgB5AAAAAAAAeQAAAAAAAGwAAAAAAgBsAAAAAAMAbAAAAAAAAGwAAAAAAAB5AAAAAAAAbAAAAAABAGwAAAAAAwBsAAAAAAEAeQAAAAAAAAkAAAAAAwAJAAAAAAAACQAAAAADAAkAAAAAAAAJAAAAAAIAeQAAAAAAAHkAAAAAAABsAAAAAAEAbAAAAAABAGwAAAAAAQBsAAAAAAAAeQAAAAAAAGwAAAAAAwBsAAAAAAMAbAAAAAADAHkAAAAAAAAJAAAAAAMACQAAAAADAAkAAAAAAQAJAAAAAAMACQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAQB5AAAAAAAAbAAAAAAAAGwAAAAAAQBsAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAgAdAAAAAAEAeQAAAAAAAGwAAAAAAgBsAAAAAAAAbAAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + tiles: aAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAAAdgAAAAADAHYAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAdgAAAAADAHYAAAAAAgB2AAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAADAGwAAAAAAABsAAAAAAMAbAAAAAAAAHkAAAAAAABsAAAAAAEAbAAAAAABAHkAAAAAAABsAAAAAAIAbAAAAAACAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGwAAAAAAQBsAAAAAAEAbAAAAAABAGwAAAAAAgB5AAAAAAAAbAAAAAAAAGwAAAAAAQB5AAAAAAAAbAAAAAABAGwAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAIAbAAAAAABAGwAAAAAAABsAAAAAAIAeQAAAAAAAGwAAAAAAQBsAAAAAAIAeQAAAAAAAGwAAAAAAwBsAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAACAGwAAAAAAQBsAAAAAAAAbAAAAAABAHkAAAAAAABsAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGwAAAAAAwBsAAAAAAAAbAAAAAADAGwAAAAAAgBsAAAAAAAAbAAAAAABAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAQB5AAAAAAAAeQAAAAAAAGwAAAAAAQBsAAAAAAEAbAAAAAACAGwAAAAAAQBsAAAAAAIAbAAAAAABAGwAAAAAAABsAAAAAAAAbAAAAAADAGwAAAAAAABsAAAAAAMAbAAAAAABAGwAAAAAAABsAAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAAAbAAAAAABAGwAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAABAGwAAAAAAwBsAAAAAAEAbAAAAAADAHkAAAAAAABsAAAAAAMAbAAAAAACAGwAAAAAAQB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAAACQAAAAAAAAkAAAAAAwB5AAAAAAAAeQAAAAAAAGwAAAAAAwBsAAAAAAAAbAAAAAAAAGwAAAAAAwB5AAAAAAAAbAAAAAADAGwAAAAAAQBsAAAAAAIAeQAAAAAAAAkAAAAAAwAJAAAAAAAACQAAAAADAAkAAAAAAwAJAAAAAAMAeQAAAAAAAHkAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAIAeQAAAAAAAGwAAAAAAABsAAAAAAEAbAAAAAACAHkAAAAAAAAJAAAAAAIACQAAAAAAAAkAAAAAAwAJAAAAAAAACQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAABAB0AAAAAAAB5AAAAAAAAbAAAAAAAAGwAAAAAAgBsAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAMAeQAAAAAAAGwAAAAAAQBsAAAAAAAAbAAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== version: 7 3,-2: ind: 3,-2 - tiles: eQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAABEAAAAAAAARAAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAADAHkAAAAAAABZAAAAAAAAWQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAgAdAAAAAAAAHQAAAAACAB0AAAAAAwB5AAAAAAAAWQAAAAADAFkAAAAAAQAdAAAAAAEAHQAAAAAAAB0AAAAAAwBoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAEQAAAAAAABEAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAMAeQAAAAAAAFkAAAAAAQBZAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAEAbAAAAAACAGwAAAAAAABsAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQB5AAAAAAAAeQAAAAAAAGwAAAAAAwBsAAAAAAAAbAAAAAACAFkAAAAAAQBZAAAAAAIAbAAAAAADAGwAAAAAAABsAAAAAAMAbAAAAAABAGwAAAAAAABsAAAAAAMAbAAAAAADAGwAAAAAAABsAAAAAAIAbAAAAAABAGwAAAAAAABsAAAAAAEAbAAAAAADAGwAAAAAAwB5AAAAAAAAWQAAAAADAGwAAAAAAABsAAAAAAIAbAAAAAADAGwAAAAAAwBsAAAAAAAAbAAAAAADAGwAAAAAAgBsAAAAAAEAbAAAAAABAGwAAAAAAABsAAAAAAIAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAQBpAAAAAAAAbAAAAAACAGwAAAAAAQBsAAAAAAEAbAAAAAABAGwAAAAAAgBsAAAAAAIAbAAAAAADAGwAAAAAAwBoAAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAAAaQAAAAAAAGwAAAAAAwBsAAAAAAAAbAAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAIAaAAAAAAAAHkAAAAAAAB5AAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAABsAAAAAAAAbAAAAAADAGwAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAADAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGwAAAAAAABsAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAQBoAAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAIAHQAAAAABAHkAAAAAAABsAAAAAAAAbAAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAABEAAAAAAABZAAAAAAAAEQAAAAAAAB0AAAAAAABZAAAAAAMAbAAAAAABAGwAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAAAdAAAAAAMAWQAAAAACAGwAAAAAAwBsAAAAAAMAbAAAAAABAGwAAAAAAABsAAAAAAEAbAAAAAAAAGwAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAEQAAAAAAAFkAAAAAAwARAAAAAAAAHQAAAAABAFkAAAAAAABsAAAAAAEAbAAAAAABAGwAAAAAAgBsAAAAAAIAbAAAAAAAAGwAAAAAAABsAAAAAAMAeQAAAAAAAHkAAAAAAABoAAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAAB5AAAAAAAAbAAAAAABAGwAAAAAAQBsAAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAIAeQAAAAAAAA== + tiles: eQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAABEAAAAAAAARAAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAABAHkAAAAAAABZAAAAAAEAWQAAAAACAB0AAAAAAQAdAAAAAAMAHQAAAAACAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAgAdAAAAAAAAHQAAAAACAB0AAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAgAdAAAAAAAAHQAAAAABAB0AAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAEQAAAAAAABEAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAIAeQAAAAAAAFkAAAAAAABZAAAAAAEAHQAAAAAAAB0AAAAAAQAdAAAAAAEAbAAAAAACAGwAAAAAAwBsAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAGwAAAAAAQBsAAAAAAIAbAAAAAAAAFkAAAAAAABZAAAAAAMAbAAAAAAAAGwAAAAAAQBsAAAAAAMAbAAAAAACAGwAAAAAAQBsAAAAAAEAbAAAAAADAGwAAAAAAABsAAAAAAMAbAAAAAABAGwAAAAAAQBsAAAAAAEAbAAAAAABAGwAAAAAAQB5AAAAAAAAWQAAAAACAGwAAAAAAABsAAAAAAAAbAAAAAABAGwAAAAAAABsAAAAAAIAbAAAAAADAGwAAAAAAwBsAAAAAAIAbAAAAAAAAGwAAAAAAABsAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAAAdAAAAAAIAHQAAAAACAB0AAAAAAgBpAAAAAAAAbAAAAAADAGwAAAAAAABsAAAAAAIAbAAAAAACAGwAAAAAAwBsAAAAAAIAbAAAAAADAGwAAAAAAQBoAAAAAAAAeQAAAAAAAHkAAAAAAABpAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAMAaQAAAAAAAGwAAAAAAgBsAAAAAAEAbAAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAIAaAAAAAAAAHkAAAAAAAB5AAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAABsAAAAAAMAbAAAAAAAAGwAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAABAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGwAAAAAAgBsAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAABAB0AAAAAAQAdAAAAAAMAHQAAAAADAHkAAAAAAABsAAAAAAAAbAAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAABEAAAAAAABZAAAAAAMAEQAAAAAAAB0AAAAAAABZAAAAAAMAbAAAAAABAGwAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgARAAAAAAAAEQAAAAAAABEAAAAAAAAdAAAAAAAAWQAAAAABAGwAAAAAAABsAAAAAAAAbAAAAAADAGwAAAAAAgBsAAAAAAAAbAAAAAADAGwAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAEQAAAAAAAFkAAAAAAwARAAAAAAAAHQAAAAABAFkAAAAAAgBsAAAAAAAAbAAAAAACAGwAAAAAAgBsAAAAAAEAbAAAAAADAGwAAAAAAwBsAAAAAAEAeQAAAAAAAHkAAAAAAABoAAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAMAHQAAAAACAB0AAAAAAQB5AAAAAAAAbAAAAAAAAGwAAAAAAQBsAAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAIAeQAAAAAAAA== version: 7 4,-2: ind: 4,-2 - tiles: eQAAAAAAAGwAAAAAAABsAAAAAAEAbAAAAAABAHkAAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAACAB0AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAIAbAAAAAACAGwAAAAAAAB5AAAAAAAAHQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAQAdAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAaQAAAAAAAE0AAAAAAAB5AAAAAAAAbAAAAAABAGwAAAAAAwBsAAAAAAAAeQAAAAAAAB0AAAAAAQBZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAAAHQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAGkAAAAAAABNAAAAAAAAeQAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAABAHkAAAAAAAAdAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAADAB0AAAAAAwB5AAAAAAAAeAAAAAAAAHgAAAAAAABpAAAAAAAATQAAAAAAAGwAAAAAAgBsAAAAAAAAbAAAAAAAAGwAAAAAAwB5AAAAAAAAHQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAAAAFkAAAAAAwAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAAAbAAAAAABAGwAAAAAAABsAAAAAAMAeQAAAAAAAB0AAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAEAHQAAAAACAHkAAAAAAABZAAAAAAAAWQAAAAABAHkAAAAAAABZAAAAAAAAeQAAAAAAAGwAAAAAAgBsAAAAAAAAbAAAAAACAHkAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAAAAB0AAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAADAHkAAAAAAABsAAAAAAMAbAAAAAAAAGwAAAAAAgBsAAAAAAIAbAAAAAACAGwAAAAAAABsAAAAAAMAbAAAAAAAAGwAAAAAAQBsAAAAAAEAeQAAAAAAAGwAAAAAAABsAAAAAAEAbAAAAAABAGwAAAAAAABZAAAAAAEAbAAAAAABAGwAAAAAAwBsAAAAAAIAbAAAAAADAGwAAAAAAQBsAAAAAAAAbAAAAAADAGwAAAAAAwBsAAAAAAIAbAAAAAABAGwAAAAAAgBsAAAAAAIAbAAAAAADAGwAAAAAAgBsAAAAAAMAeQAAAAAAAGwAAAAAAgBsAAAAAAAAbAAAAAACAGwAAAAAAQBsAAAAAAAAbAAAAAABAGwAAAAAAgBsAAAAAAAAbAAAAAABAGwAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAMAbAAAAAAAAGwAAAAAAgB5AAAAAAAAbAAAAAABAGwAAAAAAgBsAAAAAAEAbAAAAAABAGwAAAAAAABsAAAAAAEAbAAAAAACAGwAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAGwAAAAAAABsAAAAAAEAbAAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAAdAAAAAAEAaAAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAQBsAAAAAAMAbAAAAAABAGwAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAHQAAAAAAAGgAAAAAAAB5AAAAAAAAbAAAAAAAAGwAAAAAAgBsAAAAAAAAbAAAAAABAGwAAAAAAgBsAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAB0AAAAAAgBoAAAAAAAAeQAAAAAAAGwAAAAAAwBsAAAAAAIAbAAAAAADAGwAAAAAAABsAAAAAAEAbAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAABAGwAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + tiles: eQAAAAAAAGwAAAAAAwBsAAAAAAMAbAAAAAABAHkAAAAAAAAdAAAAAAMAHQAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAMAbAAAAAABAGwAAAAAAQB5AAAAAAAAHQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAAAdAAAAAAIAeQAAAAAAAHgAAAAAAAB4AAAAAAAAaQAAAAAAAE0AAAAAAAB5AAAAAAAAbAAAAAAAAGwAAAAAAgBsAAAAAAIAeQAAAAAAAB0AAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAwBZAAAAAAIAHQAAAAABAHkAAAAAAAB4AAAAAAAAeAAAAAAAAGkAAAAAAABNAAAAAAAAeQAAAAAAAGwAAAAAAgBsAAAAAAIAbAAAAAACAHkAAAAAAAAdAAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAABAB0AAAAAAwB5AAAAAAAAeAAAAAAAAHgAAAAAAABpAAAAAAAATQAAAAAAAGwAAAAAAgBsAAAAAAMAbAAAAAADAGwAAAAAAQB5AAAAAAAAHQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAQAdAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAIAbAAAAAADAGwAAAAAAwBsAAAAAAMAeQAAAAAAAB0AAAAAAgBZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAHQAAAAACAHkAAAAAAABZAAAAAAIAWQAAAAABAHkAAAAAAABZAAAAAAAAeQAAAAAAAGwAAAAAAABsAAAAAAIAbAAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAABAB0AAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAEAWQAAAAACAHkAAAAAAABsAAAAAAAAbAAAAAABAGwAAAAAAwBsAAAAAAIAbAAAAAADAGwAAAAAAQBsAAAAAAMAbAAAAAADAGwAAAAAAABsAAAAAAAAeQAAAAAAAGwAAAAAAwBsAAAAAAEAbAAAAAACAGwAAAAAAwBZAAAAAAEAbAAAAAABAGwAAAAAAwBsAAAAAAEAbAAAAAAAAGwAAAAAAQBsAAAAAAMAbAAAAAACAGwAAAAAAQBsAAAAAAAAbAAAAAAAAGwAAAAAAQBsAAAAAAIAbAAAAAABAGwAAAAAAwBsAAAAAAMAeQAAAAAAAGwAAAAAAgBsAAAAAAEAbAAAAAAAAGwAAAAAAwBsAAAAAAIAbAAAAAABAGwAAAAAAgBsAAAAAAIAbAAAAAADAGwAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAMAbAAAAAACAGwAAAAAAAB5AAAAAAAAbAAAAAABAGwAAAAAAgBsAAAAAAIAbAAAAAAAAGwAAAAAAABsAAAAAAEAbAAAAAACAGwAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAGwAAAAAAgBsAAAAAAMAbAAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAAdAAAAAAAAaAAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAgBsAAAAAAMAbAAAAAADAGwAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAHQAAAAADAGgAAAAAAAB5AAAAAAAAbAAAAAABAGwAAAAAAQBsAAAAAAAAbAAAAAABAGwAAAAAAQBsAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAB0AAAAAAQBoAAAAAAAAeQAAAAAAAGwAAAAAAABsAAAAAAIAbAAAAAADAGwAAAAAAQBsAAAAAAMAbAAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAADAHkAAAAAAAB5AAAAAAAAbAAAAAABAGwAAAAAAwB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== version: 7 5,-2: ind: 5,-2 - tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAEAeQAAAAAAAFkAAAAAAQB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAMAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAQBsAAAAAAMAbAAAAAACAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAABsAAAAAAEAbAAAAAACAGwAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAIAeQAAAAAAAFkAAAAAAwB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAwBsAAAAAAEAbAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAABsAAAAAAEAbAAAAAAAAGwAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,-3: ind: 4,-3 - tiles: eQAAAAAAAGwAAAAAAgBsAAAAAAMAbAAAAAADAGwAAAAAAQB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAMAaAAAAAAAAHkAAAAAAABsAAAAAAEAbAAAAAACAGwAAAAAAABsAAAAAAMAeQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAEAWQAAAAACAGgAAAAAAAB5AAAAAAAAbAAAAAACAGwAAAAAAwBsAAAAAAIAbAAAAAACAGwAAAAAAABsAAAAAAIAbAAAAAACAGwAAAAAAQBsAAAAAAAAbAAAAAABAGwAAAAAAgBsAAAAAAMAbAAAAAABAGwAAAAAAgBoAAAAAAAAeQAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAADAGwAAAAAAgB5AAAAAAAAbAAAAAAAAGwAAAAAAgBsAAAAAAMAbAAAAAADAGwAAAAAAgBsAAAAAAMAbAAAAAACAGwAAAAAAwBsAAAAAAIAaAAAAAAAAHkAAAAAAABsAAAAAAAAbAAAAAACAGwAAAAAAwBsAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAwBZAAAAAAEAWQAAAAADAGwAAAAAAABsAAAAAAAAbAAAAAAAAGgAAAAAAAB5AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAAAbAAAAAACAGwAAAAAAwB5AAAAAAAAeQAAAAAAAGwAAAAAAgBsAAAAAAIAbAAAAAABAHkAAAAAAAB4AAAAAAAAaQAAAAAAAE0AAAAAAABNAAAAAAAAeQAAAAAAAE0AAAAAAAB5AAAAAAAAbAAAAAADAGwAAAAAAgBZAAAAAAAAeQAAAAAAAGwAAAAAAQBsAAAAAAMAbAAAAAABAGwAAAAAAwB5AAAAAAAAeAAAAAAAAGkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAGwAAAAAAABsAAAAAAEAWQAAAAADAHkAAAAAAAB5AAAAAAAAbAAAAAABAGwAAAAAAwBsAAAAAAAAeQAAAAAAAHgAAAAAAABpAAAAAAAATQAAAAAAAE0AAAAAAAB5AAAAAAAATQAAAAAAAHkAAAAAAABsAAAAAAIAbAAAAAACAFkAAAAAAwB5AAAAAAAAeQAAAAAAAGwAAAAAAwBsAAAAAAAAbAAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAIAeQAAAAAAAHkAAAAAAABsAAAAAAAAbAAAAAABAGwAAAAAAQB5AAAAAAAAbAAAAAAAAGwAAAAAAQBsAAAAAAMAbAAAAAADAGwAAAAAAABsAAAAAAIAeQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAbAAAAAABAGwAAAAAAABsAAAAAAEAbAAAAAACAGwAAAAAAQBsAAAAAAMAbAAAAAACAGwAAAAAAABsAAAAAAAAbAAAAAADAHkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAIAbAAAAAACAGwAAAAAAQBsAAAAAAEAbAAAAAAAAHkAAAAAAABsAAAAAAMAbAAAAAACAGwAAAAAAgBsAAAAAAMAbAAAAAACAGwAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAEAeQAAAAAAAHkAAAAAAABsAAAAAAEAbAAAAAADAGwAAAAAAgB5AAAAAAAAbAAAAAACAGwAAAAAAQBsAAAAAAAAbAAAAAACAGwAAAAAAABsAAAAAAMAeQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAADAHkAAAAAAAB5AAAAAAAAbAAAAAACAGwAAAAAAQBsAAAAAAIAeQAAAAAAAGwAAAAAAQBsAAAAAAIAbAAAAAADAGwAAAAAAwBsAAAAAAMAbAAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAGwAAAAAAgBsAAAAAAIAbAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAMAeQAAAAAAAA== + tiles: eQAAAAAAAGwAAAAAAwBsAAAAAAEAbAAAAAADAGwAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAMAaAAAAAAAAHkAAAAAAABsAAAAAAMAbAAAAAABAGwAAAAAAgBsAAAAAAMAeQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAACAFkAAAAAAQBZAAAAAAEAWQAAAAACAGgAAAAAAAB5AAAAAAAAbAAAAAADAGwAAAAAAwBsAAAAAAAAbAAAAAABAGwAAAAAAABsAAAAAAEAbAAAAAACAGwAAAAAAABsAAAAAAIAbAAAAAACAGwAAAAAAwBsAAAAAAEAbAAAAAADAGwAAAAAAQBoAAAAAAAAeQAAAAAAAGwAAAAAAQBsAAAAAAAAbAAAAAABAGwAAAAAAgB5AAAAAAAAbAAAAAADAGwAAAAAAwBsAAAAAAMAbAAAAAADAGwAAAAAAABsAAAAAAAAbAAAAAABAGwAAAAAAwBsAAAAAAMAaAAAAAAAAHkAAAAAAABsAAAAAAEAbAAAAAABAGwAAAAAAABsAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAABAGwAAAAAAABsAAAAAAAAbAAAAAAAAGgAAAAAAAB5AAAAAAAAbAAAAAADAGwAAAAAAQBsAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAIAbAAAAAAAAGwAAAAAAgB5AAAAAAAAeQAAAAAAAGwAAAAAAQBsAAAAAAEAbAAAAAACAHkAAAAAAAB4AAAAAAAAaQAAAAAAAE0AAAAAAABNAAAAAAAAeQAAAAAAAE0AAAAAAAB5AAAAAAAAbAAAAAAAAGwAAAAAAwBZAAAAAAMAeQAAAAAAAGwAAAAAAwBsAAAAAAMAbAAAAAADAGwAAAAAAAB5AAAAAAAAeAAAAAAAAGkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAGwAAAAAAgBsAAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAbAAAAAADAGwAAAAAAABsAAAAAAMAeQAAAAAAAHgAAAAAAABpAAAAAAAATQAAAAAAAE0AAAAAAAB5AAAAAAAATQAAAAAAAHkAAAAAAABsAAAAAAMAbAAAAAACAFkAAAAAAAB5AAAAAAAAeQAAAAAAAGwAAAAAAQBsAAAAAAMAbAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAAAAGwAAAAAAwBsAAAAAAEAeQAAAAAAAHkAAAAAAABsAAAAAAAAbAAAAAADAGwAAAAAAAB5AAAAAAAAbAAAAAACAGwAAAAAAgBsAAAAAAIAbAAAAAAAAGwAAAAAAQBsAAAAAAEAeQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAAAAGwAAAAAAgBsAAAAAAAAbAAAAAACAGwAAAAAAwBsAAAAAAIAbAAAAAABAGwAAAAAAgBsAAAAAAIAbAAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAwBZAAAAAAEAbAAAAAACAGwAAAAAAgBsAAAAAAMAbAAAAAABAHkAAAAAAABsAAAAAAEAbAAAAAACAGwAAAAAAgBsAAAAAAEAbAAAAAACAGwAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAMAeQAAAAAAAHkAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAgB5AAAAAAAAbAAAAAAAAGwAAAAAAQBsAAAAAAMAbAAAAAABAGwAAAAAAABsAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAADAGwAAAAAAQBsAAAAAAMAeQAAAAAAAGwAAAAAAABsAAAAAAIAbAAAAAABAGwAAAAAAQBsAAAAAAEAbAAAAAABAHkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAGwAAAAAAgBsAAAAAAAAbAAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAIAeQAAAAAAAA== version: 7 3,-3: ind: 3,-3 - tiles: aAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAIAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAQBoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAABMAAAAABAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAACABMAAAAABAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAADAGwAAAAAAgBsAAAAAAEAbAAAAAAAAGwAAAAAAwBsAAAAAAMAbAAAAAAAAGwAAAAAAABsAAAAAAEAbAAAAAAAAGwAAAAAAgBsAAAAAAAAbAAAAAACAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGwAAAAAAgBZAAAAAAEAbAAAAAABAFkAAAAAAQBsAAAAAAIAWQAAAAADAGwAAAAAAABZAAAAAAIAbAAAAAACAFkAAAAAAgBsAAAAAAEAWQAAAAAAAGwAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAEAbAAAAAADAGwAAAAAAQBsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAEAbAAAAAAAAGwAAAAAAwBsAAAAAAAAbAAAAAACAGwAAAAAAQBsAAAAAAIAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAHkAAAAAAABZAAAAAAMAeQAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAADAB0AAAAAAQB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAQB5AAAAAAAAWQAAAAADAHkAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAgB2AAAAAAAAdgAAAAABAHYAAAAAAQB2AAAAAAMAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAMAHQAAAAACAFkAAAAAAgAdAAAAAAMAdgAAAAADAHYAAAAAAAB2AAAAAAMAdgAAAAADAHYAAAAAAwB2AAAAAAAAdgAAAAABAHkAAAAAAABsAAAAAAEAbAAAAAADAGwAAAAAAwBsAAAAAAEAbAAAAAACAHkAAAAAAABZAAAAAAEAeQAAAAAAAHYAAAAAAQB2AAAAAAIAdgAAAAACAHYAAAAAAQB2AAAAAAIAdgAAAAACAHYAAAAAAgB5AAAAAAAAbAAAAAADAGwAAAAAAgBsAAAAAAAAbAAAAAADAGwAAAAAAgB5AAAAAAAAWQAAAAADAHkAAAAAAAB2AAAAAAIAdgAAAAADAHYAAAAAAAB2AAAAAAEAdgAAAAACAHYAAAAAAQB2AAAAAAIAeQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAEAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + tiles: aAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHYAAAAAAgBoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAABMAAAAABAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB2AAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAADABMAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAbAAAAAABAGwAAAAAAgBsAAAAAAEAbAAAAAABAGwAAAAAAgBsAAAAAAAAbAAAAAADAGwAAAAAAwBsAAAAAAEAbAAAAAADAGwAAAAAAABsAAAAAAMAbAAAAAACAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGwAAAAAAABZAAAAAAIAbAAAAAAAAFkAAAAAAABsAAAAAAAAWQAAAAAAAGwAAAAAAABZAAAAAAEAbAAAAAABAFkAAAAAAQBsAAAAAAMAWQAAAAABAGwAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAABsAAAAAAIAbAAAAAAAAGwAAAAAAwBsAAAAAAEAbAAAAAACAGwAAAAAAABsAAAAAAIAbAAAAAADAGwAAAAAAgBsAAAAAAIAbAAAAAADAGwAAAAAAgBsAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAABZAAAAAAEAeQAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAQB5AAAAAAAAWQAAAAAAAHkAAAAAAAB2AAAAAAEAdgAAAAABAHYAAAAAAgB2AAAAAAEAdgAAAAACAHYAAAAAAQB2AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAIAHQAAAAABAFkAAAAAAgAdAAAAAAIAdgAAAAADAHYAAAAAAwB2AAAAAAEAdgAAAAADAHYAAAAAAgB2AAAAAAIAdgAAAAAAAHkAAAAAAABsAAAAAAAAbAAAAAADAGwAAAAAAgBsAAAAAAMAbAAAAAAAAHkAAAAAAABZAAAAAAEAeQAAAAAAAHYAAAAAAgB2AAAAAAAAdgAAAAAAAHYAAAAAAgB2AAAAAAIAdgAAAAABAHYAAAAAAgB5AAAAAAAAbAAAAAADAGwAAAAAAwBsAAAAAAIAbAAAAAACAGwAAAAAAgB5AAAAAAAAWQAAAAACAHkAAAAAAAB2AAAAAAAAdgAAAAABAHYAAAAAAwB2AAAAAAMAdgAAAAACAHYAAAAAAgB2AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== version: 7 4,-4: ind: 4,-4 - tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAA8AAAAAAAAYAAAAAAAAHkAAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAQB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAADwAAAAAAAB5AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAEAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAYAAAAAAAADwAAAAAAAA8AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAQAdAAAAAAEAHQAAAAACAB0AAAAAAQAdAAAAAAAAHQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAADAFkAAAAAAwB5AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAEAHQAAAAADAB0AAAAAAwB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAMAHQAAAAADAB0AAAAAAgAdAAAAAAMAHQAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAABAB0AAAAAAgAdAAAAAAIAeQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAIAWQAAAAACAB0AAAAAAwAdAAAAAAIAHQAAAAADAB0AAAAAAwBpAAAAAAAAaQAAAAAAAGkAAAAAAAAdAAAAAAAAHQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAIAaQAAAAAAAGkAAAAAAABpAAAAAAAAHQAAAAACAB0AAAAAAwB5AAAAAAAAeQAAAAAAAFkAAAAAAQB5AAAAAAAAeQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAeQAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAA8AAAAAAAAYAAAAAACAHkAAAAAAAAdAAAAAAIAHQAAAAAAAB0AAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAADwAAAAAAAB5AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAIAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAYAAAAAADADwAAAAAAAA8AAAAAAAAeQAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAgAdAAAAAAEAHQAAAAADAB0AAAAAAAAdAAAAAAIAHQAAAAADAHkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAgB5AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAwB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAIAHQAAAAACAB0AAAAAAgAdAAAAAAIAHQAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAMAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAABAB0AAAAAAwAdAAAAAAMAHQAAAAAAAB0AAAAAAQBpAAAAAAAAaQAAAAAAAGkAAAAAAAAdAAAAAAAAHQAAAAADAHkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAQAdAAAAAAIAHQAAAAABAB0AAAAAAAAdAAAAAAEAaQAAAAAAAGkAAAAAAABpAAAAAAAAHQAAAAACAB0AAAAAAwB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAaQAAAAAAAGkAAAAAAABpAAAAAAAAeQAAAAAAAGwAAAAAAABsAAAAAAIAbAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== version: 7 5,-3: ind: 5,-3 - tiles: aAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAACAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: aAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAIAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAADAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 5,-4: ind: 5,-4 - tiles: eQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABpAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: eQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAgB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABpAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 3,-4: ind: 3,-4 - tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABgAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAEwAAAAAGAA== + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABgAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAEwAAAAAFAA== version: 7 4,-1: ind: 4,-1 - tiles: WQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAEAHQAAAAADAB0AAAAAAgAdAAAAAAIAeQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAABAFkAAAAAAABZAAAAAAEAHQAAAAADAB0AAAAAAwAdAAAAAAMAHQAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAACAB0AAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAQBZAAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAwAdAAAAAAMAHQAAAAADAB0AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAEAWQAAAAACAHkAAAAAAAB5AAAAAAAAHQAAAAAAAFkAAAAAAQBZAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAAAWQAAAAAAAFkAAAAAAAAdAAAAAAIAeQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAwB5AAAAAAAAeQAAAAAAAB0AAAAAAABZAAAAAAEAWQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAADAFkAAAAAAwBZAAAAAAAAHQAAAAABAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAADAHkAAAAAAAAdAAAAAAMAWQAAAAABAFkAAAAAAgAdAAAAAAMAHQAAAAACAB0AAAAAAQBZAAAAAAIAWQAAAAACAB0AAAAAAQB5AAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAwB5AAAAAAAAHQAAAAADAFkAAAAAAQBZAAAAAAMAHQAAAAACAB0AAAAAAgAdAAAAAAAAWQAAAAADAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQBZAAAAAAMAWQAAAAADAB0AAAAAAwAdAAAAAAAAHQAAAAAAAFkAAAAAAgBZAAAAAAEAHQAAAAACAB0AAAAAAwB5AAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAAdAAAAAAAAWQAAAAAAAFkAAAAAAgAdAAAAAAEAHQAAAAACAB0AAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAB0AAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAMAHQAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAIAPgAAAAAAAD4AAAAAAAA+AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + tiles: WQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAwBZAAAAAAEAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAgBZAAAAAAEAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAACAFkAAAAAAwB5AAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAwAdAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAEAHQAAAAACAB0AAAAAAQAdAAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAAAHQAAAAADAB0AAAAAAgBZAAAAAAEAWQAAAAAAAFkAAAAAAwBZAAAAAAIAeQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAADAHkAAAAAAAB5AAAAAAAAHQAAAAACAFkAAAAAAgBZAAAAAAEAHQAAAAACAB0AAAAAAgAdAAAAAAIAWQAAAAAAAFkAAAAAAQAdAAAAAAEAeQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAB0AAAAAAwBZAAAAAAMAWQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAACAFkAAAAAAQBZAAAAAAAAHQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAMAWQAAAAADAHkAAAAAAAAdAAAAAAMAWQAAAAACAFkAAAAAAgAdAAAAAAAAHQAAAAACAB0AAAAAAwBZAAAAAAMAWQAAAAADAB0AAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAAB5AAAAAAAAHQAAAAADAFkAAAAAAgBZAAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAAAWQAAAAABAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgBZAAAAAAMAWQAAAAABAB0AAAAAAgAdAAAAAAAAHQAAAAABAFkAAAAAAgBZAAAAAAEAHQAAAAACAB0AAAAAAgB5AAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAAdAAAAAAEAWQAAAAADAFkAAAAAAAAdAAAAAAIAHQAAAAAAAB0AAAAAAABZAAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAQB5AAAAAAAAeQAAAAAAAB0AAAAAAwB5AAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAMAHQAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAADAHkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAEAPgAAAAAAAD4AAAAAAAA+AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== version: 7 5,-1: ind: 5,-1 - tiles: eQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAEAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAABAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAgB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: eQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAMAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAQB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAQB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,-5: ind: 4,-5 @@ -362,11 +363,11 @@ entities: version: 7 3,-5: ind: 3,-5 - tiles: eAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAABwAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAA== + tiles: eAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAABwAAAAAHAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAA== version: 7 2,-5: ind: 2,-5 - tiles: eAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAPgAAAAAAAD4AAAAAAAB5AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAPgAAAAAAAHkAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAeQAAAAAAAD4AAAAAAAB5AAAAAAAAPgAAAAAAAAAAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + tiles: eAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAPgAAAAAAAD4AAAAAAAB5AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAPgAAAAAAAHkAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAeQAAAAAAAD4AAAAAAAB5AAAAAAAAPgAAAAAAAAAAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAdgAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== version: 7 1,-5: ind: 1,-5 @@ -378,11 +379,11 @@ entities: version: 7 -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAwB5AAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAACAHkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAABAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAABAHkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAwB5AAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAQB5AAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAABAFkAAAAAAwBZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAAAaQAAAAAAAHkAAAAAAAB5AAAAAAAAagAAAAADAGoAAAAAAgBqAAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAABZAAAAAAEAWQAAAAABAHkAAAAAAAB5AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAQB5AAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAwAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAADAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAACAHkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAQBZAAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAgBZAAAAAAEAWQAAAAABAHkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAwB5AAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAgB5AAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAIAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAIAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAMAWQAAAAADAFkAAAAAAwBZAAAAAAEAaQAAAAAAAHkAAAAAAAB5AAAAAAAAagAAAAADAGoAAAAAAABqAAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAABAHkAAAAAAAB5AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAgB5AAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAHkAAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAgAdAAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAMAHQAAAAABAA== version: 7 -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAHQAAAAADAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAEAeQAAAAAAAFkAAAAAAwBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAgBZAAAAAAAAWQAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAAAHQAAAAACAB0AAAAAAwB5AAAAAAAAWQAAAAAAAFkAAAAAAwB5AAAAAAAAWQAAAAADAFkAAAAAAAAOAAAAAAEADgAAAAACAHkAAAAAAAB4AAAAAAAAeQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAMAeQAAAAAAAFkAAAAAAABZAAAAAAIAeQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAA4AAAAAAQB5AAAAAAAAeAAAAAAAAHkAAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAIAHQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAHkAAAAAAABZAAAAAAAAWQAAAAACAHkAAAAAAAAOAAAAAAIAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAQBZAAAAAAMAWQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAABAHkAAAAAAABZAAAAAAAAWQAAAAACAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAgAdAAAAAAEAWQAAAAABAFkAAAAAAwBZAAAAAAIAWQAAAAABAFkAAAAAAgB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAMAeQAAAAAAAB0AAAAAAwAdAAAAAAIAeQAAAAAAAFkAAAAAAwBZAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAADAHkAAAAAAAAdAAAAAAEAHQAAAAABAHkAAAAAAABpAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAAB5AAAAAAAAHQAAAAACAB0AAAAAAQB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAAAAB0AAAAAAgAdAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAHQAAAAABAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAwAdAAAAAAMAeQAAAAAAAFkAAAAAAQBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAABZAAAAAAIAWQAAAAADAHkAAAAAAABZAAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAgB5AAAAAAAAWQAAAAAAAFkAAAAAAQAOAAAAAAAADgAAAAADAHkAAAAAAAB4AAAAAAAAeQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAgAdAAAAAAMAeQAAAAAAAFkAAAAAAgBZAAAAAAIAeQAAAAAAAFkAAAAAAQB5AAAAAAAAeQAAAAAAAA4AAAAAAQB5AAAAAAAAeAAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAADAHkAAAAAAAB5AAAAAAAAWQAAAAABAHkAAAAAAABZAAAAAAMAWQAAAAADAHkAAAAAAAAOAAAAAAMAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAWQAAAAABAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAABAHkAAAAAAABZAAAAAAEAWQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAABAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAgAdAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAMAeQAAAAAAAB0AAAAAAAAdAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAEAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAABAHkAAAAAAAAdAAAAAAEAHQAAAAABAHkAAAAAAABpAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAAB5AAAAAAAAHQAAAAACAB0AAAAAAQB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAIAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAEAHQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== version: 7 -3,-4: ind: -3,-4 @@ -390,31 +391,31 @@ entities: version: 7 -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAOAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAA4AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAA4AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAA== version: 7 0,-5: ind: 0,-5 - tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAeQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAwB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAABAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAgBoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAADAFkAAAAAAwB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAACAHkAAAAAAABZAAAAAAIAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAMAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAADAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAgBZAAAAAAMAWQAAAAABAFkAAAAAAwBZAAAAAAIAWQAAAAABAFkAAAAAAgBZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAIAeQAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAYgAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABiAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAeQAAAAAAAA== + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAEAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAgB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAACAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAEAWQAAAAABAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAQBoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAwB5AAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAACAHkAAAAAAABZAAAAAAIAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAIAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAQBZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAEAWQAAAAADAHkAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAwBZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAEAWQAAAAACAFkAAAAAAgBZAAAAAAMAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAMAWQAAAAAAAFkAAAAAAgB5AAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAIAeQAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAYgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABiAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAeQAAAAAAAA== version: 7 0,-6: ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABNAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAE0AAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== version: 7 -1,-6: ind: -1,-6 - tiles: AAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + tiles: AAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== version: 7 1,-6: ind: 1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABNAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAATQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAA== + tiles: eAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAaAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAaAAAAAAAAGgAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAA== version: 7 2,-6: ind: 2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -2,-6: ind: -2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAwB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAHQAAAAACAHkAAAAAAAAdAAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAADAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAACAHkAAAAAAAB5AAAAAAAAeAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAQB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAHQAAAAAAAHkAAAAAAAAdAAAAAAEAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAB0AAAAAAgAdAAAAAAEAHQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAACAHkAAAAAAAB5AAAAAAAAeAAAAAAAAA== version: 7 -4,-4: ind: -4,-4 @@ -434,7 +435,7 @@ entities: version: 7 -3,2: ind: -3,2 - tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAMAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAFkAAAAAAwB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAABZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAA== + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAEAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAFkAAAAAAwB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAABZAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAA== version: 7 -2,3: ind: -2,3 @@ -442,7 +443,7 @@ entities: version: 7 0,3: ind: 0,3 - tiles: HQAAAAADAB0AAAAAAQAdAAAAAAMAHQAAAAACAB0AAAAAAAAdAAAAAAEAeQAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABZAAAAAAMAWQAAAAAAAAoAAAAAAQBZAAAAAAAAWQAAAAAAAB0AAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAwBQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAEAWQAAAAAAAAoAAAAAAgAdAAAAAAIAeQAAAAAAAHkAAAAAAAAdAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAACAFkAAAAAAQBZAAAAAAIAHQAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAwAdAAAAAAMAeQAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAACAHkAAAAAAAB5AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAEAHQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAIAHQAAAAAAAB0AAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAIAHQAAAAACAB0AAAAAAwAdAAAAAAEAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAACAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: HQAAAAACAB0AAAAAAgAdAAAAAAEAHQAAAAAAAB0AAAAAAQAdAAAAAAIAeQAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABZAAAAAAEAWQAAAAACAAoAAAAAAwBZAAAAAAEAWQAAAAACAB0AAAAAAQB5AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAAAHQAAAAACAB0AAAAAAQBQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAMAWQAAAAAAAAoAAAAAAwAdAAAAAAMAeQAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAHkAAAAAAAB5AAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAEAHQAAAAABAHkAAAAAAAAdAAAAAAIAHQAAAAACAB0AAAAAAAAdAAAAAAIAeQAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAACAHkAAAAAAAB5AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAwB5AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAACAB0AAAAAAQAdAAAAAAIAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAgAdAAAAAAEAHQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 2,2: ind: 2,2 @@ -454,7 +455,7 @@ entities: version: 7 1,3: ind: 1,3 - tiles: WQAAAAACAFkAAAAAAgB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAwBZAAAAAAIAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAABZAAAAAAAAWQAAAAACAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABAFkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: WQAAAAABAFkAAAAAAwB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAgBZAAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAABZAAAAAAMAWQAAAAACAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADAFkAAAAAAQB5AAAAAAAAeAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 5,-6: ind: 5,-6 @@ -470,7 +471,7 @@ entities: version: 7 0,-7: ind: 0,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 3,-6: ind: 3,-6 @@ -484,6 +485,10 @@ entities: ind: 2,3 tiles: eAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 + 1,-7: + ind: 1,-7 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -690,7 +695,6 @@ entities: 3639: 60,-51 3640: 59,-51 3642: 57,-51 - 6371: -1,-87 6378: 5,40 6379: 6,40 6380: 7,40 @@ -737,10 +741,6 @@ entities: color: '#52B4E996' id: BotGreyscale decals: - 6360: -2,-86 - 6361: 0,-86 - 6363: -2,-88 - 6364: 0,-88 6367: -2,-93 6368: 0,-93 6369: 0,-81 @@ -761,16 +761,14 @@ entities: color: '#DE3A3A96' id: BotGreyscale decals: - 6477: -13,42 6480: -13,45 - 6481: -15,45 - 6482: -15,44 6493: -15,41 - 7558: -13,44 7560: -10,44 7561: -9,44 7562: -9,47 7563: -10,47 + 7598: -13,43 + 7622: -14,47 - node: color: '#FFFFFFFF' id: BotGreyscale @@ -793,11 +791,6 @@ entities: 6231: -25,-75 6232: -24,-76 6233: -25,-77 - - node: - color: '#DE3A3A96' - id: BotLeft - decals: - 7559: -11,44 - node: color: '#FFFFFFFF' id: BotLeft @@ -816,8 +809,18 @@ entities: decals: 6490: -14,40 6491: -15,40 - 6500: -12,47 - 6501: -11,47 + - node: + color: '#FFFFFFFF' + id: BotLeftGreyscale + decals: + 7643: 11,-71 + 7644: 12,-71 + 7645: 13,-71 + 7646: 14,-71 + 7647: 19,-71 + 7648: 26,-79 + 7649: 26,-78 + 7650: 26,-77 - node: zIndex: 1 color: '#FFFFFFFF' @@ -837,7 +840,7 @@ entities: id: BotRightGreyscale decals: 6498: -15,47 - 6499: -14,47 + 7623: -11,47 - node: zIndex: 1 color: '#FFFFFFFF' @@ -846,6 +849,14 @@ entities: 6019: -2,-22 6226: -26,-75 6227: -24,-77 + - node: + color: '#DE3A3A96' + id: BoxGreyscale + decals: + 7618: -9,42 + 7619: -10,42 + 7620: -10,40 + 7621: -9,40 - node: color: '#FFFFFFFF' id: BoxGreyscale @@ -862,12 +873,12 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 7557: -14,41 + 7603: -14,42 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 7556: -12,41 + 7617: -12,42 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe @@ -887,8 +898,7 @@ entities: 5989: -24,-10 6466: -14,45 7549: -14,44 - 7550: -14,43 - 7551: -14,42 + 7601: -14,43 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN @@ -906,7 +916,7 @@ entities: 5959: -25,-70 5960: -24,-70 5961: -23,-70 - 7555: -13,41 + 7602: -13,42 - node: zIndex: 1 color: '#FFFFFFFF' @@ -948,7 +958,6 @@ entities: 6462: -12,45 7552: -12,44 7553: -12,43 - 7554: -12,42 - node: color: '#9FED584D' id: BrickTileSteelCornerNe @@ -2250,6 +2259,9 @@ entities: 6982: -22,31 6983: -21,31 6984: -20,31 + 7651: 25,-83 + 7652: 27,-85 + 7653: 24,-85 - node: zIndex: 1 color: '#FFFFFFFF' @@ -3046,18 +3058,12 @@ entities: 7111: -12,46 7116: -14,46 7117: -15,46 - 7118: -15,44 7119: -15,41 7120: -15,40 7121: -13,40 - 7122: -11,40 - 7123: -11,41 7125: -11,45 - 7126: -11,47 - 7127: -13,47 7128: -15,47 7129: -13,45 - 7130: -13,42 7133: -7,40 7134: -9,40 7135: -9,41 @@ -3295,6 +3301,13 @@ entities: 6259: -25,-26 6260: -27,-26 6261: -28,-24 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 7626: -11,46 + 7629: -9,46 - node: cleanable: True zIndex: 5 @@ -4068,11 +4081,7 @@ entities: 6096: 25,-77 6097: 25,-78 6098: 25,-79 - 6120: 16,-84 6121: 16,-86 - 6122: 20,-86 - 6123: 20,-85 - 6124: 25,-84 6125: 26,-85 6126: 26,-81 6127: 26,-80 @@ -4122,10 +4131,8 @@ entities: 7400: -7,48 7401: -5,46 7402: -7,44 - 7403: -11,41 7405: -11,45 7406: -13,46 - 7407: -13,42 7408: -3,37 7409: 2,37 7410: 2,41 @@ -4181,6 +4188,13 @@ entities: 7463: -16,24 7464: -14,24 7465: -15,29 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 7624: -10,45 + 7627: -14,45 - node: cleanable: True zIndex: 5 @@ -4664,15 +4678,10 @@ entities: 6108: 23,-78 6109: 22,-78 6110: 22,-77 - 6111: 23,-77 6112: 22,-76 6113: 20,-80 6114: 19,-81 6115: 20,-82 - 6116: 20,-84 - 6117: 18,-84 - 6118: 18,-85 - 6119: 18,-86 6139: 17,-47 6140: 18,-45 6141: 19,-45 @@ -4709,7 +4718,6 @@ entities: 7485: -11,52 7486: -13,50 7487: -14,50 - 7488: -14,47 7489: -15,47 7490: -6,44 7491: -6,38 @@ -4717,6 +4725,13 @@ entities: 7493: 0,26 7494: -1,18 7495: -9,17 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 7625: -10,46 + 7628: -9,45 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7290,6 +7305,7 @@ entities: decals: 1608: 19,-19 3513: 23,17 + 7599: -9,45 - node: color: '#FFFFFFFF' id: WarnCornerSW @@ -7297,8 +7313,7 @@ entities: 1615: 21,-21 3517: 25,17 6268: 68,-47 - 6441: -11,40 - 7538: -14,41 + 7608: -14,41 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNE @@ -7347,8 +7362,8 @@ entities: 2314: -73,-4 3512: -13,-63 6310: 24,-80 - 7539: -12,42 - 7547: -9,45 + 7614: -12,41 + 7640: 26,-86 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7371,6 +7386,8 @@ entities: 2313: -76,-4 3511: -11,-63 6306: 20,-72 + 7638: 26,-84 + 7639: 25,-86 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7389,6 +7406,8 @@ entities: 2317: -73,8 6311: 24,-74 7537: -12,45 + 7630: 23,-81 + 7642: 26,-84 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7410,7 +7429,7 @@ entities: 2315: -69,8 2316: -76,8 3699: -38,-10 - 6442: -11,41 + 7641: 25,-84 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7419,11 +7438,6 @@ entities: 5976: -23,-66 6069: 20,-76 6175: -19,-82 - - node: - color: '#FFFFFFFF' - id: WarnEndE - decals: - 7545: -8,45 - node: color: '#FFFFFFFF' id: WarnEndGreyscaleN @@ -7469,6 +7483,9 @@ entities: 6967: 10,51 7531: -12,44 7540: -12,43 + 7613: -12,42 + 7631: 23,-82 + 7637: 26,-85 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7753,12 +7770,13 @@ entities: 6318: 26,-74 6450: -10,40 6451: -9,40 - 6452: -8,40 - 7528: -13,41 - 7529: -12,41 7532: -11,45 7533: -10,45 - 7534: -9,45 + 7606: -13,41 + 7615: -12,41 + 7632: 24,-81 + 7633: 25,-81 + 7634: 26,-81 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7842,8 +7860,9 @@ entities: 6961: 11,50 6962: 11,51 7523: -14,44 - 7526: -14,43 - 7530: -14,42 + 7600: -14,43 + 7607: -14,42 + 7635: 25,-85 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7930,10 +7949,9 @@ entities: 6444: -12,46 6445: -11,46 6448: -9,42 - 7541: -11,42 - 7542: -10,42 - 7543: -8,42 7548: -10,46 + 7616: -10,42 + 7636: 25,-84 - node: zIndex: 1 color: '#FFFFFFFF' @@ -8556,7 +8574,7 @@ entities: 0: 61166 -6,4: 0: 14 - 1: 18192 + 1: 18176 -5,4: 0: 29610 -8,-12: @@ -8763,7 +8781,7 @@ entities: 0,7: 0: 56785 -1,7: - 0: 62927 + 0: 54735 0,8: 0: 40413 1,4: @@ -8804,11 +8822,11 @@ entities: 0: 4125 1: 52224 -4,5: - 0: 63271 + 0: 30503 -4,6: 0: 65287 -5,5: - 0: 63345 + 0: 63344 -5,6: 0: 63359 -4,7: @@ -8824,17 +8842,17 @@ entities: -3,7: 0: 51711 -3,8: - 0: 7421 + 0: 7389 -2,5: 0: 65535 -2,6: 0: 64783 -2,7: - 0: 64733 + 0: 64541 -2,8: 0: 20479 -1,8: - 0: 50687 + 0: 50653 4,8: 0: 17 1: 24580 @@ -8878,22 +8896,22 @@ entities: -5,10: 0: 34952 1: 13107 - -4,11: - 0: 61166 -5,11: 0: 34952 1: 13107 + -4,11: + 0: 61156 -3,9: 0: 4095 -3,10: - 0: 15291 + 0: 7677 -3,11: - 0: 49087 + 0: 65532 -2,9: 0: 61439 - -2,11: - 0: 65535 -2,10: + 0: 61182 + -2,11: 0: 61166 -2,12: 0: 65262 @@ -9072,7 +9090,7 @@ entities: 0: 65535 -8,6: 0: 3 - 1: 50368 + 1: 50304 -9,6: 0: 15 -8,7: @@ -9109,13 +9127,11 @@ entities: 0: 12287 -9,9: 0: 136 - 1: 771 + 1: 803 -8,10: 0: 1367 - -9,10: - 1: 61696 -8,11: - 1: 64512 + 1: 62464 -8,12: 1: 231 -9,11: @@ -9140,7 +9156,7 @@ entities: 1: 4352 0: 60416 -4,13: - 1: 40753 + 1: 40721 0: 12 -5,13: 1: 63744 @@ -10363,8 +10379,8 @@ entities: 4,-20: 0: 65535 4,-21: - 0: 65348 - 3: 1 + 0: 65280 + 1: 13 3,-20: 0: 65535 4,-19: @@ -10390,7 +10406,7 @@ entities: 0: 30576 5,-21: 0: 65280 - 3: 15 + 1: 11 6,-20: 0: 30583 6,-19: @@ -10409,7 +10425,7 @@ entities: 7,-17: 1: 29766 7,-21: - 1: 61440 + 1: 61986 7,-16: 1: 1 0: 4096 @@ -10591,7 +10607,7 @@ entities: 1: 8 3,-21: 0: 65280 - 3: 14 + 1: 15 0,-24: 3: 64512 1: 136 @@ -10624,27 +10640,20 @@ entities: 1: 36736 2,-23: 3: 13073 - 1: 52224 + 1: 52416 2,-22: 3: 4369 - 1: 36044 + 1: 34824 3,-23: - 1: 61440 - 3,-22: - 1: 15 - 3: 60928 + 1: 256 + 3: 14 3,-24: - 1: 35939 + 1: 3 + 3: 60928 3,-25: - 1: 4096 - 4,-24: - 1: 4096 - 4,-23: - 1: 64739 - 4,-22: - 1: 15 - 3: 4352 - 0: 58368 + 1: 7936 + 3,-22: + 3: 3822 -4,-24: 1: 310 -5,-24: @@ -10687,34 +10696,39 @@ entities: 1: 36744 -1,-25: 1: 36744 - 5,-23: - 1: 61459 - 5,-22: - 1: 15 - 3: 65280 + 4,-24: + 1: 105 + 3: 60928 + 4,-25: + 1: 7936 + 4,-23: + 3: 14 + 1: 61408 + 4,-22: + 1: 61166 5,-24: - 1: 62432 + 1: 8747 + 3: 4352 + 5,-22: + 1: 65294 + 3: 32 + 5,-23: + 1: 42594 + 5,-25: + 1: 59136 6,-24: - 1: 61680 + 1: 50737 6,-23: - 1: 61986 + 1: 4104 6,-22: - 1: 231 - 0: 57344 - 7,-24: - 1: 61680 + 1: 15 + 0: 62976 7,-23: - 1: 61440 + 1: 50737 7,-22: - 1: 61712 - 8,-24: - 1: 61680 - 8,-23: - 1: 4369 + 1: 63887 8,-22: 1: 63761 - 9,-24: - 1: 4368 9,-22: 1: 31190 -7,-22: @@ -10782,6 +10796,8 @@ entities: 1: 34952 -10,10: 1: 34952 + -9,10: + 1: 28928 -7,12: 1: 240 -6,12: @@ -10997,8 +11013,8 @@ entities: id: docking46345 localAnchorB: -0.5,-1 localAnchorA: -66.5,22 - damping: 42.401016 - stiffness: 380.59067 + damping: 42.401024 + stiffness: 380.59073 - type: OccluderTree - type: Shuttle dampingModifier: 0.25 @@ -11063,6 +11079,63 @@ entities: - type: SpreaderGrid - type: GridPathfinding - type: ImplicitRoof + - uid: 28794 + components: + - type: MetaData + name: grid + - type: Transform + pos: 0.50032806,0.50115013 + parent: 780 + - type: MapGrid + chunks: + -1,-6: + ind: -1,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-6: + ind: 0,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 2: -1,-87 + - node: + color: '#52B4E996' + id: BotGreyscale + decals: + 0: -2,-88 + 1: -2,-86 + 3: 0,-88 + 4: 0,-86 + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: IFF + flags: HideLabel - proto: AcousticGuitarInstrument entities: - uid: 19976 @@ -11090,6 +11163,8 @@ entities: - 24673 - 24672 - 24671 + - type: Fixtures + fixtures: {} - uid: 256 components: - type: Transform @@ -11102,6 +11177,8 @@ entities: - 22993 - 22800 - 23146 + - type: Fixtures + fixtures: {} - uid: 291 components: - type: MetaData @@ -11119,6 +11196,8 @@ entities: - 5879 - 9811 - 5548 + - type: Fixtures + fixtures: {} - uid: 835 components: - type: MetaData @@ -11141,15 +11220,8 @@ entities: - 19883 - 6489 - 6488 - - uid: 1860 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-82.5 - parent: 8364 - - type: DeviceList - devices: - - 23910 + - type: Fixtures + fixtures: {} - uid: 3087 components: - type: Transform @@ -11164,6 +11236,8 @@ entities: - 24572 - 24785 - 27963 + - type: Fixtures + fixtures: {} - uid: 3263 components: - type: MetaData @@ -11177,6 +11251,8 @@ entities: - 19113 - 19114 - 24815 + - type: Fixtures + fixtures: {} - uid: 3656 components: - type: MetaData @@ -11189,6 +11265,8 @@ entities: - 26959 - 26674 - 26999 + - type: Fixtures + fixtures: {} - uid: 4328 components: - type: MetaData @@ -11214,6 +11292,8 @@ entities: - 6459 - 5519 - 5518 + - type: Fixtures + fixtures: {} - uid: 4329 components: - type: MetaData @@ -11239,6 +11319,8 @@ entities: - 5513 - 5512 - 5511 + - type: Fixtures + fixtures: {} - uid: 5769 components: - type: MetaData @@ -11251,6 +11333,8 @@ entities: - 27019 - 5768 - 4565 + - type: Fixtures + fixtures: {} - uid: 6646 components: - type: Transform @@ -11283,6 +11367,8 @@ entities: - 13469 - 22631 - 22632 + - type: Fixtures + fixtures: {} - uid: 8150 components: - type: MetaData @@ -11300,6 +11386,8 @@ entities: - 24376 - 24377 - 26685 + - type: Fixtures + fixtures: {} - uid: 8249 components: - type: Transform @@ -11309,6 +11397,23 @@ entities: devices: - 22748 - 22747 + - type: Fixtures + fixtures: {} + - uid: 8404 + components: + - type: MetaData + name: Red Armory Air Alarm + - type: Transform + pos: -12.5,48.5 + parent: 8364 + - type: DeviceList + devices: + - 28696 + - 9106 + - 28633 + - 8577 + - type: Fixtures + fixtures: {} - uid: 10705 components: - type: Transform @@ -11326,6 +11431,8 @@ entities: - 22635 - 24099 - 24098 + - type: Fixtures + fixtures: {} - uid: 14152 components: - type: Transform @@ -11335,6 +11442,8 @@ entities: devices: - 24052 - 24051 + - type: Fixtures + fixtures: {} - uid: 14649 components: - type: Transform @@ -11353,6 +11462,8 @@ entities: - 22624 - 24032 - 24031 + - type: Fixtures + fixtures: {} - uid: 16456 components: - type: Transform @@ -11374,6 +11485,8 @@ entities: - 25307 - 25304 - 25305 + - type: Fixtures + fixtures: {} - uid: 17159 components: - type: Transform @@ -11397,6 +11510,8 @@ entities: - 17043 - 17156 - 16626 + - type: Fixtures + fixtures: {} - uid: 17778 components: - type: Transform @@ -11411,6 +11526,8 @@ entities: - 23000 - 16880 - 16882 + - type: Fixtures + fixtures: {} - uid: 18773 components: - type: MetaData @@ -11429,6 +11546,8 @@ entities: - 23774 - 781 - 14501 + - type: Fixtures + fixtures: {} - uid: 19344 components: - type: Transform @@ -11444,6 +11563,8 @@ entities: - 14226 - 16155 - 15139 + - type: Fixtures + fixtures: {} - uid: 19773 components: - type: Transform @@ -11454,6 +11575,8 @@ entities: devices: - 25325 - 25324 + - type: Fixtures + fixtures: {} - uid: 20630 components: - type: Transform @@ -11463,11 +11586,15 @@ entities: - type: DeviceList devices: - 20633 + - type: Fixtures + fixtures: {} - uid: 20897 components: - type: Transform pos: 63.5,-11.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22563 components: - type: Transform @@ -11494,6 +11621,8 @@ entities: - 16943 - 1672 - 16832 + - type: Fixtures + fixtures: {} - uid: 22566 components: - type: Transform @@ -11505,6 +11634,8 @@ entities: - 17717 - 17630 - 17520 + - type: Fixtures + fixtures: {} - uid: 22568 components: - type: Transform @@ -11524,6 +11655,8 @@ entities: - 22571 - 22951 - 22950 + - type: Fixtures + fixtures: {} - uid: 22588 components: - type: Transform @@ -11534,6 +11667,8 @@ entities: - 17208 - 25092 - 747 + - type: Fixtures + fixtures: {} - uid: 22589 components: - type: Transform @@ -11556,6 +11691,8 @@ entities: - 1652 - 16943 - 1672 + - type: Fixtures + fixtures: {} - uid: 22594 components: - type: Transform @@ -11580,6 +11717,8 @@ entities: - 24085 - 24063 - 24062 + - type: Fixtures + fixtures: {} - uid: 22596 components: - type: Transform @@ -11592,6 +11731,8 @@ entities: - 5754 - 24073 - 24072 + - type: Fixtures + fixtures: {} - uid: 22599 components: - type: Transform @@ -11602,6 +11743,8 @@ entities: - 22598 - 24240 - 24239 + - type: Fixtures + fixtures: {} - uid: 22603 components: - type: MetaData @@ -11623,6 +11766,8 @@ entities: - 24179 - 24178 - 24180 + - type: Fixtures + fixtures: {} - uid: 22612 components: - type: Transform @@ -11634,6 +11779,8 @@ entities: - 22613 - 23856 - 20029 + - type: Fixtures + fixtures: {} - uid: 22614 components: - type: Transform @@ -11645,6 +11792,8 @@ entities: - 24219 - 24220 - 22615 + - type: Fixtures + fixtures: {} - uid: 22620 components: - type: Transform @@ -11673,6 +11822,8 @@ entities: - 24087 - 24086 - 13473 + - type: Fixtures + fixtures: {} - uid: 22625 components: - type: Transform @@ -11685,6 +11836,8 @@ entities: - 13473 - 23999 - 24013 + - type: Fixtures + fixtures: {} - uid: 22628 components: - type: Transform @@ -11708,6 +11861,8 @@ entities: - 24300 - 24244 - 24243 + - type: Fixtures + fixtures: {} - uid: 22637 components: - type: Transform @@ -11728,6 +11883,8 @@ entities: - 13388 - 24111 - 24110 + - type: Fixtures + fixtures: {} - uid: 22641 components: - type: MetaData @@ -11754,6 +11911,8 @@ entities: - 24435 - 24462 - 24471 + - type: Fixtures + fixtures: {} - uid: 22649 components: - type: Transform @@ -11765,6 +11924,8 @@ entities: - 24493 - 22648 - 24898 + - type: Fixtures + fixtures: {} - uid: 22650 components: - type: Transform @@ -11781,6 +11942,8 @@ entities: - 13394 - 24505 - 24506 + - type: Fixtures + fixtures: {} - uid: 22655 components: - type: Transform @@ -11799,6 +11962,8 @@ entities: - 24638 - 27936 - 27941 + - type: Fixtures + fixtures: {} - uid: 22659 components: - type: Transform @@ -11833,6 +11998,8 @@ entities: - 23087 - 14208 - 14093 + - type: Fixtures + fixtures: {} - uid: 22661 components: - type: Transform @@ -11848,6 +12015,8 @@ entities: - 19972 - 24610 - 24644 + - type: Fixtures + fixtures: {} - uid: 22665 components: - type: Transform @@ -11869,6 +12038,8 @@ entities: - 24582 - 27962 - 24783 + - type: Fixtures + fixtures: {} - uid: 22670 components: - type: MetaData @@ -11886,6 +12057,8 @@ entities: - 5879 - 5547 - 8002 + - type: Fixtures + fixtures: {} - uid: 22673 components: - type: Transform @@ -11896,6 +12069,8 @@ entities: - 22674 - 24747 - 24746 + - type: Fixtures + fixtures: {} - uid: 22676 components: - type: MetaData @@ -11915,6 +12090,8 @@ entities: - 7993 - 24752 - 24745 + - type: Fixtures + fixtures: {} - uid: 22682 components: - type: Transform @@ -11931,6 +12108,8 @@ entities: - 24816 - 24776 - 24777 + - type: Fixtures + fixtures: {} - uid: 22684 components: - type: Transform @@ -11949,6 +12128,8 @@ entities: - 24880 - 24830 - 24831 + - type: Fixtures + fixtures: {} - uid: 22693 components: - type: Transform @@ -11969,6 +12150,8 @@ entities: - 24918 - 26039 - 26038 + - type: Fixtures + fixtures: {} - uid: 22694 components: - type: Transform @@ -11989,6 +12172,8 @@ entities: - 23122 - 26036 - 26037 + - type: Fixtures + fixtures: {} - uid: 22699 components: - type: MetaData @@ -12012,6 +12197,8 @@ entities: - 5730 - 5463 - 7176 + - type: Fixtures + fixtures: {} - uid: 22701 components: - type: Transform @@ -12025,6 +12212,8 @@ entities: - 5748 - 5735 - 5740 + - type: Fixtures + fixtures: {} - uid: 22703 components: - type: Transform @@ -12049,6 +12238,8 @@ entities: - 26691 - 22731 - 8142 + - type: Fixtures + fixtures: {} - uid: 22706 components: - type: MetaData @@ -12066,6 +12257,8 @@ entities: - 27880 - 27703 - 26973 + - type: Fixtures + fixtures: {} - uid: 22715 components: - type: MetaData @@ -12086,6 +12279,8 @@ entities: - 20289 - 23885 - 27202 + - type: Fixtures + fixtures: {} - uid: 22718 components: - type: MetaData @@ -12098,6 +12293,8 @@ entities: - 25070 - 25071 - 22719 + - type: Fixtures + fixtures: {} - uid: 22721 components: - type: Transform @@ -12109,6 +12306,8 @@ entities: - 22720 - 27311 - 25506 + - type: Fixtures + fixtures: {} - uid: 22723 components: - type: MetaData @@ -12120,6 +12319,8 @@ entities: - type: DeviceList devices: - 22722 + - type: Fixtures + fixtures: {} - uid: 22734 components: - type: Transform @@ -12133,6 +12334,8 @@ entities: - 25132 - 25134 - 25135 + - type: Fixtures + fixtures: {} - uid: 22816 components: - type: Transform @@ -12148,6 +12351,8 @@ entities: - 19168 - 17122 - 17123 + - type: Fixtures + fixtures: {} - uid: 22954 components: - type: Transform @@ -12164,6 +12369,8 @@ entities: - 4403 - 4404 - 4460 + - type: Fixtures + fixtures: {} - uid: 22956 components: - type: Transform @@ -12175,6 +12382,8 @@ entities: - 23302 - 23303 - 22957 + - type: Fixtures + fixtures: {} - uid: 22959 components: - type: Transform @@ -12187,6 +12396,8 @@ entities: - 14192 - 24056 - 24057 + - type: Fixtures + fixtures: {} - uid: 22964 components: - type: Transform @@ -12197,6 +12408,8 @@ entities: - 24010 - 24011 - 24012 + - type: Fixtures + fixtures: {} - uid: 23133 components: - type: MetaData @@ -12214,6 +12427,8 @@ entities: - 27405 - 27404 - 27403 + - type: Fixtures + fixtures: {} - uid: 23262 components: - type: Transform @@ -12230,6 +12445,8 @@ entities: - 23117 - 25408 - 25409 + - type: Fixtures + fixtures: {} - uid: 23263 components: - type: Transform @@ -12241,6 +12458,8 @@ entities: - 205 - 23264 - 204 + - type: Fixtures + fixtures: {} - uid: 23267 components: - type: Transform @@ -12257,6 +12476,8 @@ entities: - 7043 - 25397 - 25396 + - type: Fixtures + fixtures: {} - uid: 23268 components: - type: Transform @@ -12267,6 +12488,8 @@ entities: - 25377 - 23269 - 25376 + - type: Fixtures + fixtures: {} - uid: 23280 components: - type: Transform @@ -12280,6 +12503,8 @@ entities: - 24333 - 23462 - 24337 + - type: Fixtures + fixtures: {} - uid: 23898 components: - type: MetaData @@ -12306,6 +12531,8 @@ entities: - 26146 - 25422 - 25421 + - type: Fixtures + fixtures: {} - uid: 23899 components: - type: MetaData @@ -12318,6 +12545,8 @@ entities: devices: - 25164 - 25166 + - type: Fixtures + fixtures: {} - uid: 24632 components: - type: Transform @@ -12327,6 +12556,8 @@ entities: devices: - 24634 - 24635 + - type: Fixtures + fixtures: {} - uid: 24812 components: - type: Transform @@ -12337,6 +12568,8 @@ entities: devices: - 24896 - 24790 + - type: Fixtures + fixtures: {} - uid: 25225 components: - type: Transform @@ -12351,6 +12584,8 @@ entities: - 27210 - 26034 - 27167 + - type: Fixtures + fixtures: {} - uid: 25825 components: - type: Transform @@ -12371,6 +12606,8 @@ entities: - 16625 - 19169 - 22690 + - type: Fixtures + fixtures: {} - uid: 25833 components: - type: Transform @@ -12383,6 +12620,8 @@ entities: - 21815 - 25289 - 25290 + - type: Fixtures + fixtures: {} - uid: 25834 components: - type: Transform @@ -12395,6 +12634,8 @@ entities: - 21812 - 25276 - 20132 + - type: Fixtures + fixtures: {} - uid: 25837 components: - type: Transform @@ -12406,6 +12647,8 @@ entities: - 25838 - 25336 - 25337 + - type: Fixtures + fixtures: {} - uid: 25915 components: - type: MetaData @@ -12419,6 +12662,8 @@ entities: - 25914 - 24599 - 24603 + - type: Fixtures + fixtures: {} - uid: 26160 components: - type: MetaData @@ -12445,6 +12690,8 @@ entities: - 26204 - 26207 - 26208 + - type: Fixtures + fixtures: {} - uid: 26206 components: - type: MetaData @@ -12462,10 +12709,11 @@ entities: - 9126 - 9127 - 9125 - - 26306 - 26248 - 26256 - 26257 + - type: Fixtures + fixtures: {} - uid: 26234 components: - type: MetaData @@ -12497,24 +12745,8 @@ entities: - 26233 - 26232 - 26235 - - uid: 26323 - components: - - type: MetaData - name: Armory Air Alarm - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,39.5 - parent: 8364 - - type: DeviceList - devices: - - 28634 - - 26322 - - 28631 - - 28643 - - 28632 - - 28633 - - 28642 - - 28644 + - type: Fixtures + fixtures: {} - uid: 26340 components: - type: MetaData @@ -12534,6 +12766,8 @@ entities: - 9126 - 9127 - 9125 + - type: Fixtures + fixtures: {} - uid: 26355 components: - type: MetaData @@ -12549,6 +12783,8 @@ entities: - 26351 - 26342 - 26356 + - type: Fixtures + fixtures: {} - uid: 26430 components: - type: MetaData @@ -12571,6 +12807,8 @@ entities: - 26356 - 26409 - 26395 + - type: Fixtures + fixtures: {} - uid: 26442 components: - type: MetaData @@ -12586,6 +12824,8 @@ entities: - 26425 - 26440 - 26429 + - type: Fixtures + fixtures: {} - uid: 26469 components: - type: MetaData @@ -12601,6 +12841,8 @@ entities: - 9168 - 9167 - 9166 + - type: Fixtures + fixtures: {} - uid: 26479 components: - type: MetaData @@ -12616,6 +12858,8 @@ entities: - 26476 - 26496 - 26500 + - type: Fixtures + fixtures: {} - uid: 26480 components: - type: MetaData @@ -12629,6 +12873,8 @@ entities: - 26446 - 26450 - 26448 + - type: Fixtures + fixtures: {} - uid: 26491 components: - type: MetaData @@ -12642,6 +12888,8 @@ entities: - 26487 - 26489 - 26267 + - type: Fixtures + fixtures: {} - uid: 26703 components: - type: MetaData @@ -12655,6 +12903,8 @@ entities: - 26694 - 26702 - 23906 + - type: Fixtures + fixtures: {} - uid: 26704 components: - type: MetaData @@ -12667,6 +12917,8 @@ entities: - 26698 - 26693 - 662 + - type: Fixtures + fixtures: {} - uid: 26707 components: - type: Transform @@ -12681,6 +12933,8 @@ entities: - 16627 - 5278 - 5277 + - type: Fixtures + fixtures: {} - uid: 26908 components: - type: MetaData @@ -12694,15 +12948,10 @@ entities: - 26701 - 25231 - 14502 - - uid: 26989 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-82.5 - parent: 8364 - - type: DeviceList - devices: - - 23147 + - 4251 + - 4248 + - type: Fixtures + fixtures: {} - uid: 27150 components: - type: MetaData @@ -12718,6 +12967,22 @@ entities: - 27879 - 27878 - 27875 + - type: Fixtures + fixtures: {} + - uid: 27428 + components: + - type: MetaData + name: Burn Chambers Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-82.5 + parent: 8364 + - type: DeviceList + devices: + - 27147 + - 27155 + - type: Fixtures + fixtures: {} - uid: 27881 components: - type: Transform @@ -12730,6 +12995,8 @@ entities: - 5235 - 5236 - 151 + - type: Fixtures + fixtures: {} - uid: 27934 components: - type: MetaData @@ -12746,6 +13013,8 @@ entities: - 27736 - 27779 - 27761 + - type: Fixtures + fixtures: {} - uid: 27964 components: - type: Transform @@ -12761,6 +13030,8 @@ entities: - 27944 - 27947 - 27945 + - type: Fixtures + fixtures: {} - uid: 27965 components: - type: Transform @@ -12781,6 +13052,8 @@ entities: - 5548 - 21773 - 21774 + - type: Fixtures + fixtures: {} - uid: 28095 components: - type: MetaData @@ -12796,6 +13069,8 @@ entities: - 28091 - 28093 - 28079 + - type: Fixtures + fixtures: {} - uid: 28154 components: - type: MetaData @@ -12809,6 +13084,8 @@ entities: - 4557 - 28193 - 28194 + - type: Fixtures + fixtures: {} - uid: 28227 components: - type: Transform @@ -12828,6 +13105,8 @@ entities: - 28231 - 28223 - 28233 + - type: Fixtures + fixtures: {} - uid: 28335 components: - type: MetaData @@ -12859,6 +13138,8 @@ entities: - 28453 - 28452 - 28245 + - type: Fixtures + fixtures: {} - uid: 28483 components: - type: MetaData @@ -12879,6 +13160,42 @@ entities: - 28480 - 28444 - 28506 + - type: Fixtures + fixtures: {} + - uid: 28739 + components: + - type: MetaData + name: Blue Armory Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,39.5 + parent: 8364 + - type: DeviceList + devices: + - 28731 + - 28501 + - 9106 + - 28696 + - 28634 + - 28728 + - type: Fixtures + fixtures: {} + - uid: 28776 + components: + - type: MetaData + name: TEG Room Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-76.5 + parent: 8364 + - type: DeviceList + devices: + - 4251 + - 4248 + - 4547 + - 4546 + - type: Fixtures + fixtures: {} - proto: AirAlarmFreezer entities: - uid: 26712 @@ -12892,6 +13209,8 @@ entities: - 26855 - 25261 - 28411 + - type: Fixtures + fixtures: {} - proto: AirCanister entities: - uid: 444 @@ -13172,12 +13491,6 @@ entities: parent: 8364 - proto: AirlockArmoryGlassLocked entities: - - uid: 8662 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,40.5 - parent: 8364 - uid: 8676 components: - type: MetaData @@ -13186,12 +13499,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,35.5 parent: 8364 - - uid: 8699 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,42.5 - parent: 8364 - uid: 8932 components: - type: MetaData @@ -13283,6 +13590,16 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,34.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8943: + - - DoorStatus + - Close + 8920: + - - DoorStatus + - Close - uid: 7765 components: - type: MetaData @@ -13314,6 +13631,16 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,34.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8920: + - - DoorStatus + - Close + 8943: + - - DoorStatus + - Close - uid: 8920 components: - type: MetaData @@ -13322,6 +13649,16 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,30.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8907: + - - DoorStatus + - Close + 7759: + - - DoorStatus + - Close - uid: 8943 components: - type: MetaData @@ -13330,6 +13667,16 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,30.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 7759: + - - DoorStatus + - Close + 8907: + - - DoorStatus + - Close - proto: AirlockBrigLocked entities: - uid: 55 @@ -14019,38 +14366,6 @@ entities: parent: 8364 - proto: AirlockExternalGlassEngineeringLocked entities: - - uid: 2905 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-82.5 - parent: 8364 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 3601: - - - DoorStatus - - DoorBolt - 4365: - - - DoorStatus - - DoorBolt - - uid: 3601 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-84.5 - parent: 8364 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 4365: - - - DoorStatus - - DoorBolt - 2905: - - - DoorStatus - - DoorBolt - uid: 3707 components: - type: Transform @@ -14067,46 +14382,43 @@ entities: 3858: - - DoorStatus - Close + - uid: 4356 + components: + - type: Transform + pos: 24.5,-84.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 4365: + - - DoorStatus + - DoorBolt - uid: 4365 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-84.5 - parent: 8364 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 3601: - - - DoorStatus - - DoorBolt - 2905: - - - DoorStatus - - DoorBolt - - uid: 11754 - components: - - type: Transform - rot: 1.5707963267948966 rad pos: 25.5,-82.5 parent: 8364 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 14105: + 4356: - - DoorStatus - DoorBolt - - uid: 14105 + 4382: + - - DoorStatus + - DoorBolt + - uid: 4382 components: - type: Transform - rot: 1.5707963267948966 rad pos: 27.5,-84.5 parent: 8364 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 11754: + 4365: - - DoorStatus - DoorBolt - uid: 14448 @@ -14595,6 +14907,11 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,32.5 parent: 8364 + - uid: 862 + components: + - type: Transform + pos: -22.5,29.5 + parent: 8364 - uid: 1312 components: - type: MetaData @@ -14640,9 +14957,6 @@ entities: - type: Transform pos: 24.5,16.5 parent: 8364 - - type: Door - secondsUntilStateChange: -139282.55 - state: Opening - type: DeviceLinkSource lastSignals: DoorStatus: True @@ -14719,11 +15033,6 @@ entities: - type: Transform pos: -19.5,31.5 parent: 8364 - - uid: 8669 - components: - - type: Transform - pos: -22.5,29.5 - parent: 8364 - uid: 8877 components: - type: Transform @@ -16068,6 +16377,20 @@ entities: - type: Transform pos: -60.5,2.5 parent: 8364 + - uid: 13819 + components: + - type: MetaData + name: glass airlock (Blue Armory) + - type: Transform + pos: -7.5,41.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28735: + - - DoorStatus + - Close - uid: 14151 components: - type: Transform @@ -16080,6 +16403,20 @@ entities: - type: Transform pos: -23.5,-30.5 parent: 8364 + - uid: 28735 + components: + - type: MetaData + name: glass airlock (Blue Armory) + - type: Transform + pos: -10.5,41.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13819: + - - DoorStatus + - Close - proto: AirlockSecurityLawyerGlassLocked entities: - uid: 542 @@ -16352,6 +16689,15 @@ entities: - type: DeviceNetwork deviceLists: - 22699 + - uid: 9106 + components: + - type: Transform + pos: -12.5,41.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28739 + - 8404 - uid: 9450 components: - type: Transform @@ -16706,14 +17052,6 @@ entities: - type: DeviceNetwork deviceLists: - 23133 - - uid: 23147 - components: - - type: Transform - pos: 22.5,-84.5 - parent: 8364 - - type: DeviceNetwork - deviceLists: - - 26989 - uid: 23251 components: - type: Transform @@ -16791,14 +17129,6 @@ entities: - type: DeviceNetwork deviceLists: - 23898 - - uid: 23910 - components: - - type: Transform - pos: 14.5,-84.5 - parent: 8364 - - type: DeviceNetwork - deviceLists: - - 1860 - uid: 23935 components: - type: Transform @@ -16922,14 +17252,6 @@ entities: - 26206 - 28498 - 28500 - - uid: 26322 - components: - - type: Transform - pos: -10.5,45.5 - parent: 8364 - - type: DeviceNetwork - deviceLists: - - 26323 - uid: 26341 components: - type: Transform @@ -17064,6 +17386,22 @@ entities: - type: DeviceNetwork deviceLists: - 5769 + - uid: 27147 + components: + - type: Transform + pos: 14.5,-85.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27428 + - uid: 27155 + components: + - type: Transform + pos: 14.5,-91.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27428 - uid: 27167 components: - type: Transform @@ -17312,14 +17650,21 @@ entities: - type: DeviceNetwork deviceLists: - 28500 + - 28739 - uid: 28644 components: - type: Transform pos: -11.5,41.5 parent: 8364 + - uid: 28696 + components: + - type: Transform + pos: -11.5,46.5 + parent: 8364 - type: DeviceNetwork deviceLists: - - 26323 + - 8404 + - 28739 - proto: AirSensorFreezer entities: - uid: 28411 @@ -17395,6 +17740,8 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-34.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 1494 components: - type: MetaData @@ -17403,6 +17750,8 @@ entities: rot: 1.5707963267948966 rad pos: -64.5,14.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 1591 components: - type: MetaData @@ -17413,6 +17762,8 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 85 supplyRampPosition: 53.91901 + - type: Fixtures + fixtures: {} - uid: 2016 components: - type: MetaData @@ -17420,6 +17771,8 @@ entities: - type: Transform pos: 46.5,-64.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 3604 components: - type: MetaData @@ -17427,6 +17780,8 @@ entities: - type: Transform pos: -22.5,-72.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 3714 components: - type: MetaData @@ -17434,6 +17789,8 @@ entities: - type: Transform pos: -7.5,-60.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 3844 components: - type: MetaData @@ -17441,6 +17798,8 @@ entities: - type: Transform pos: -13.5,-67.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 3863 components: - type: MetaData @@ -17448,6 +17807,8 @@ entities: - type: Transform pos: -16.5,-71.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 4593 components: - type: MetaData @@ -17456,6 +17817,8 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-60.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 5759 components: - type: MetaData @@ -17464,6 +17827,8 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-14.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 6139 components: - type: MetaData @@ -17472,6 +17837,8 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-9.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 6244 components: - type: MetaData @@ -17480,6 +17847,8 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-15.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 6250 components: - type: MetaData @@ -17488,6 +17857,8 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-21.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 6395 components: - type: MetaData @@ -17499,6 +17870,8 @@ entities: loadingNetworkDemand: 10 currentReceiving: 10.019571 currentSupply: 10 + - type: Fixtures + fixtures: {} - uid: 6430 components: - type: MetaData @@ -17509,6 +17882,8 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 10 supplyRampPosition: 1.347667 + - type: Fixtures + fixtures: {} - uid: 6493 components: - type: MetaData @@ -17517,12 +17892,16 @@ entities: rot: 3.141592653589793 rad pos: 15.5,8.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 6520 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,13.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 6921 components: - type: MetaData @@ -17531,6 +17910,8 @@ entities: rot: 3.141592653589793 rad pos: 13.5,4.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 7053 components: - type: MetaData @@ -17541,6 +17922,8 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 55 supplyRampPosition: 2.6408517 + - type: Fixtures + fixtures: {} - uid: 7253 components: - type: MetaData @@ -17548,6 +17931,8 @@ entities: - type: Transform pos: 37.5,-3.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 7254 components: - type: MetaData @@ -17558,6 +17943,8 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 20 supplyRampPosition: 0.010999783 + - type: Fixtures + fixtures: {} - uid: 7255 components: - type: MetaData @@ -17568,18 +17955,24 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 10 supplyRampPosition: 2.735612 + - type: Fixtures + fixtures: {} - uid: 7322 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,18.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 8265 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-30.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 8634 components: - type: MetaData @@ -17588,22 +17981,30 @@ entities: rot: 3.141592653589793 rad pos: -9.5,13.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 9309 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,25.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 9359 components: - type: Transform pos: 8.5,28.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 9861 components: - type: Transform pos: 8.5,36.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 10065 components: - type: MetaData @@ -17612,6 +18013,8 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,24.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 10544 components: - type: MetaData @@ -17620,6 +18023,8 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,1.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 10545 components: - type: MetaData @@ -17628,6 +18033,8 @@ entities: rot: -1.5707963267948966 rad pos: 60.5,-3.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 10657 components: - type: MetaData @@ -17638,6 +18045,8 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 65 supplyRampPosition: 17.574497 + - type: Fixtures + fixtures: {} - uid: 10800 components: - type: MetaData @@ -17648,6 +18057,8 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 45 supplyRampPosition: 2.4463015 + - type: Fixtures + fixtures: {} - uid: 11332 components: - type: MetaData @@ -17656,6 +18067,8 @@ entities: rot: 1.5707963267948966 rad pos: 74.5,-10.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 11367 components: - type: MetaData @@ -17666,6 +18079,8 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 5 supplyRampPosition: 2.4463015 + - type: Fixtures + fixtures: {} - uid: 11372 components: - type: MetaData @@ -17674,12 +18089,16 @@ entities: rot: 3.141592653589793 rad pos: -6.5,5.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 11709 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-18.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 11999 components: - type: MetaData @@ -17687,6 +18106,8 @@ entities: - type: Transform pos: -32.5,38.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 12020 components: - type: MetaData @@ -17695,12 +18116,16 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,22.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 12052 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,20.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 12096 components: - type: MetaData @@ -17711,6 +18136,8 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 15 supplyRampPosition: 1.142588 + - type: Fixtures + fixtures: {} - uid: 12275 components: - type: MetaData @@ -17721,6 +18148,8 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 30 supplyRampPosition: 18.132214 + - type: Fixtures + fixtures: {} - uid: 12333 components: - type: MetaData @@ -17731,6 +18160,8 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 25 supplyRampPosition: 9.296312 + - type: Fixtures + fixtures: {} - uid: 12494 components: - type: MetaData @@ -17741,6 +18172,8 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 145 supplyRampPosition: 32.478764 + - type: Fixtures + fixtures: {} - uid: 13416 components: - type: MetaData @@ -17749,6 +18182,8 @@ entities: rot: 1.5707963267948966 rad pos: -60.5,-17.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 13514 components: - type: MetaData @@ -17759,6 +18194,8 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 10 supplyRampPosition: 6.0937796 + - type: Fixtures + fixtures: {} - uid: 13658 components: - type: MetaData @@ -17766,18 +18203,24 @@ entities: - type: Transform pos: -11.5,48.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 13866 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-9.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 14073 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-9.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 14145 components: - type: MetaData @@ -17786,6 +18229,8 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-22.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 14432 components: - type: MetaData @@ -17794,6 +18239,8 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-63.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 14643 components: - type: MetaData @@ -17804,6 +18251,8 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 65 supplyRampPosition: 2.4463015 + - type: Fixtures + fixtures: {} - uid: 14644 components: - type: MetaData @@ -17814,6 +18263,8 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 25 supplyRampPosition: 9.488577 + - type: Fixtures + fixtures: {} - uid: 15732 components: - type: MetaData @@ -17822,6 +18273,8 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,-28.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 15812 components: - type: MetaData @@ -17830,6 +18283,8 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-35.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 15906 components: - type: MetaData @@ -17838,6 +18293,8 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,-25.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 16461 components: - type: MetaData @@ -17848,6 +18305,8 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 10 supplyRampPosition: 1.347667 + - type: Fixtures + fixtures: {} - uid: 17070 components: - type: MetaData @@ -17856,6 +18315,8 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,-47.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 17185 components: - type: MetaData @@ -17864,6 +18325,8 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,-33.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 17390 components: - type: MetaData @@ -17874,6 +18337,8 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 5 supplyRampPosition: 2.4463015 + - type: Fixtures + fixtures: {} - uid: 17681 components: - type: MetaData @@ -17882,6 +18347,8 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,-28.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 17896 components: - type: MetaData @@ -17893,6 +18360,8 @@ entities: loadingNetworkDemand: 55 currentReceiving: 55.01975 currentSupply: 55 + - type: Fixtures + fixtures: {} - uid: 17905 components: - type: MetaData @@ -17901,6 +18370,8 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,-54.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 18183 components: - type: MetaData @@ -17909,6 +18380,8 @@ entities: rot: 3.141592653589793 rad pos: -51.5,-9.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 18413 components: - type: MetaData @@ -17921,6 +18394,8 @@ entities: currentReceiving: 19.980549 currentSupply: 20 supplyRampPosition: 0.019451141 + - type: Fixtures + fixtures: {} - uid: 19164 components: - type: MetaData @@ -17928,6 +18403,8 @@ entities: - type: Transform pos: -3.5,-60.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 19832 components: - type: MetaData @@ -17936,6 +18413,8 @@ entities: rot: 3.141592653589793 rad pos: 71.5,-53.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 19833 components: - type: MetaData @@ -17944,6 +18423,8 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,-20.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 19834 components: - type: MetaData @@ -17952,6 +18433,8 @@ entities: rot: 3.141592653589793 rad pos: 78.5,-26.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 19835 components: - type: MetaData @@ -17960,6 +18443,8 @@ entities: rot: 1.5707963267948966 rad pos: 58.5,-30.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 19837 components: - type: MetaData @@ -17968,6 +18453,8 @@ entities: rot: 3.141592653589793 rad pos: 69.5,-38.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 19838 components: - type: MetaData @@ -17976,6 +18463,8 @@ entities: rot: 3.141592653589793 rad pos: 55.5,-32.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 19854 components: - type: MetaData @@ -17984,6 +18473,8 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-22.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 20218 components: - type: MetaData @@ -17995,6 +18486,8 @@ entities: loadingNetworkDemand: 10 currentReceiving: 10.019571 currentSupply: 10 + - type: Fixtures + fixtures: {} - uid: 21491 components: - type: MetaData @@ -18003,6 +18496,8 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-36.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22200 components: - type: MetaData @@ -18011,6 +18506,8 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,50.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22201 components: - type: MetaData @@ -18019,6 +18516,8 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,52.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22917 components: - type: MetaData @@ -18026,6 +18525,8 @@ entities: - type: Transform pos: 12.5,-69.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 23229 components: - type: MetaData @@ -18033,6 +18534,8 @@ entities: - type: Transform pos: 8.5,-50.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 24433 components: - type: MetaData @@ -18040,6 +18543,8 @@ entities: - type: Transform pos: 10.5,46.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 25196 components: - type: MetaData @@ -18048,6 +18553,8 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-9.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 25455 components: - type: MetaData @@ -18056,6 +18563,8 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,32.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 25477 components: - type: MetaData @@ -18063,6 +18572,8 @@ entities: - type: Transform pos: 0.5,39.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 25563 components: - type: MetaData @@ -18071,6 +18582,8 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,22.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 25597 components: - type: MetaData @@ -18079,6 +18592,8 @@ entities: rot: 3.141592653589793 rad pos: -6.5,30.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 25601 components: - type: MetaData @@ -18087,12 +18602,16 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,52.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 26717 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-69.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27052 components: - type: MetaData @@ -18100,6 +18619,8 @@ entities: - type: Transform pos: -18.5,-80.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27503 components: - type: MetaData @@ -18108,6 +18629,8 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-76.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27830 components: - type: MetaData @@ -18116,6 +18639,8 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-15.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 28155 components: - type: MetaData @@ -18124,6 +18649,8 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,-22.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: APCElectronics entities: - uid: 14440 @@ -18141,6 +18668,8 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,-17.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 2044 components: - type: MetaData @@ -18148,24 +18677,32 @@ entities: - type: Transform pos: 59.5,-38.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 6692 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,4.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 9976 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,10.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 11393 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,5.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 11764 components: - type: MetaData @@ -18174,12 +18711,16 @@ entities: rot: 1.5707963267948966 rad pos: 45.5,19.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 17892 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-19.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 17903 components: - type: MetaData @@ -18188,6 +18729,8 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,-36.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 19390 components: - type: MetaData @@ -18196,6 +18739,8 @@ entities: rot: 3.141592653589793 rad pos: 84.5,-46.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 20160 components: - type: MetaData @@ -18204,6 +18749,8 @@ entities: rot: -1.5707963267948966 rad pos: 83.5,-64.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 20211 components: - type: MetaData @@ -18212,6 +18759,8 @@ entities: rot: 1.5707963267948966 rad pos: 68.5,-25.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 20586 components: - type: MetaData @@ -18220,6 +18769,8 @@ entities: rot: 1.5707963267948966 rad pos: 58.5,-35.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22555 components: - type: MetaData @@ -18228,6 +18779,8 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-41.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: APCSuperCapacity entities: - uid: 3119 @@ -18238,6 +18791,8 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-46.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: ArtistCircuitBoard entities: - uid: 27915 @@ -18544,15 +19099,10 @@ entities: - type: Transform pos: -10.5,-90.5 parent: 8364 - - uid: 862 - components: - - type: Transform - pos: 9.5,-88.5 - parent: 8364 - uid: 865 components: - type: Transform - pos: 9.5,-89.5 + pos: 9.5,-88.5 parent: 8364 - uid: 876 components: @@ -18574,21 +19124,6 @@ entities: - type: Transform pos: -54.5,34.5 parent: 8364 - - uid: 4262 - components: - - type: Transform - pos: 15.5,-84.5 - parent: 8364 - - uid: 4264 - components: - - type: Transform - pos: 13.5,-83.5 - parent: 8364 - - uid: 4265 - components: - - type: Transform - pos: 13.5,-85.5 - parent: 8364 - uid: 4280 components: - type: Transform @@ -18924,41 +19459,6 @@ entities: - type: Transform pos: 0.5,-80.5 parent: 8364 - - uid: 4423 - components: - - type: Transform - pos: 14.5,-83.5 - parent: 8364 - - uid: 4424 - components: - - type: Transform - pos: 13.5,-84.5 - parent: 8364 - - uid: 4427 - components: - - type: Transform - pos: 15.5,-85.5 - parent: 8364 - - uid: 4428 - components: - - type: Transform - pos: 16.5,-83.5 - parent: 8364 - - uid: 4430 - components: - - type: Transform - pos: 14.5,-85.5 - parent: 8364 - - uid: 4431 - components: - - type: Transform - pos: 15.5,-83.5 - parent: 8364 - - uid: 4432 - components: - - type: Transform - pos: 14.5,-84.5 - parent: 8364 - uid: 4442 components: - type: Transform @@ -19024,36 +19524,6 @@ entities: - type: Transform pos: -6.5,-80.5 parent: 8364 - - uid: 4466 - components: - - type: Transform - pos: 21.5,-83.5 - parent: 8364 - - uid: 4467 - components: - - type: Transform - pos: 21.5,-84.5 - parent: 8364 - - uid: 4468 - components: - - type: Transform - pos: 21.5,-85.5 - parent: 8364 - - uid: 4469 - components: - - type: Transform - pos: 22.5,-83.5 - parent: 8364 - - uid: 4470 - components: - - type: Transform - pos: 22.5,-84.5 - parent: 8364 - - uid: 4471 - components: - - type: Transform - pos: 22.5,-85.5 - parent: 8364 - uid: 4472 components: - type: Transform @@ -19134,16 +19604,6 @@ entities: - type: Transform pos: 75.5,-83.5 parent: 8364 - - uid: 4626 - components: - - type: Transform - pos: 16.5,-84.5 - parent: 8364 - - uid: 4627 - components: - - type: Transform - pos: 16.5,-85.5 - parent: 8364 - uid: 4628 components: - type: Transform @@ -19324,26 +19784,6 @@ entities: - type: Transform pos: -2.5,-80.5 parent: 8364 - - uid: 5197 - components: - - type: Transform - pos: 23.5,-83.5 - parent: 8364 - - uid: 5198 - components: - - type: Transform - pos: 23.5,-84.5 - parent: 8364 - - uid: 5200 - components: - - type: Transform - pos: 23.5,-85.5 - parent: 8364 - - uid: 5201 - components: - - type: Transform - pos: 20.5,-85.5 - parent: 8364 - uid: 5273 components: - type: Transform @@ -19384,6 +19824,11 @@ entities: - type: Transform pos: -50.5,-59.5 parent: 8364 + - uid: 8669 + components: + - type: Transform + pos: 9.5,-90.5 + parent: 8364 - uid: 9355 components: - type: Transform @@ -19494,11 +19939,6 @@ entities: - type: Transform pos: 85.5,-77.5 parent: 8364 - - uid: 14506 - components: - - type: Transform - pos: 15.5,-49.5 - parent: 8364 - uid: 14641 components: - type: Transform @@ -19644,16 +20084,6 @@ entities: - type: Transform pos: -9.5,-81.5 parent: 8364 - - uid: 22547 - components: - - type: Transform - pos: 20.5,-83.5 - parent: 8364 - - uid: 22548 - components: - - type: Transform - pos: 20.5,-84.5 - parent: 8364 - uid: 22551 components: - type: Transform @@ -19734,11 +20164,6 @@ entities: - type: Transform pos: 84.5,-81.5 parent: 8364 - - uid: 23166 - components: - - type: Transform - pos: 15.5,-53.5 - parent: 8364 - uid: 23167 components: - type: Transform @@ -19768,7 +20193,7 @@ entities: components: - type: Transform pos: -1.5,-87.5 - parent: 8364 + parent: 28794 - uid: 23922 components: - type: Transform @@ -19964,6 +20389,11 @@ entities: - type: Transform pos: 3.5,-93.5 parent: 8364 + - uid: 25250 + components: + - type: Transform + pos: 21.5,-86.5 + parent: 8364 - uid: 25347 components: - type: Transform @@ -19998,7 +20428,7 @@ entities: components: - type: Transform pos: -0.5,-86.5 - parent: 8364 + parent: 28794 - uid: 25678 components: - type: Transform @@ -20783,17 +21213,17 @@ entities: components: - type: Transform pos: -1.5,-85.5 - parent: 8364 + parent: 28794 - uid: 28375 components: - type: Transform pos: 0.5,-85.5 - parent: 8364 + parent: 28794 - uid: 28376 components: - type: Transform pos: 0.5,-87.5 - parent: 8364 + parent: 28794 - uid: 28378 components: - type: Transform @@ -20864,6 +21294,151 @@ entities: - type: Transform pos: -25.5,-40.5 parent: 8364 + - uid: 28746 + components: + - type: Transform + pos: 13.5,-91.5 + parent: 8364 + - uid: 28747 + components: + - type: Transform + pos: 13.5,-92.5 + parent: 8364 + - uid: 28748 + components: + - type: Transform + pos: 13.5,-93.5 + parent: 8364 + - uid: 28750 + components: + - type: Transform + pos: 14.5,-91.5 + parent: 8364 + - uid: 28751 + components: + - type: Transform + pos: 14.5,-92.5 + parent: 8364 + - uid: 28752 + components: + - type: Transform + pos: 14.5,-93.5 + parent: 8364 + - uid: 28753 + components: + - type: Transform + pos: 15.5,-91.5 + parent: 8364 + - uid: 28754 + components: + - type: Transform + pos: 15.5,-92.5 + parent: 8364 + - uid: 28755 + components: + - type: Transform + pos: 15.5,-93.5 + parent: 8364 + - uid: 28756 + components: + - type: Transform + pos: 17.5,-91.5 + parent: 8364 + - uid: 28757 + components: + - type: Transform + pos: 17.5,-92.5 + parent: 8364 + - uid: 28758 + components: + - type: Transform + pos: 17.5,-93.5 + parent: 8364 + - uid: 28759 + components: + - type: Transform + pos: 18.5,-91.5 + parent: 8364 + - uid: 28760 + components: + - type: Transform + pos: 18.5,-92.5 + parent: 8364 + - uid: 28761 + components: + - type: Transform + pos: 18.5,-93.5 + parent: 8364 + - uid: 28762 + components: + - type: Transform + pos: 19.5,-91.5 + parent: 8364 + - uid: 28763 + components: + - type: Transform + pos: 19.5,-92.5 + parent: 8364 + - uid: 28764 + components: + - type: Transform + pos: 19.5,-93.5 + parent: 8364 + - uid: 28765 + components: + - type: Transform + pos: 15.5,-87.5 + parent: 8364 + - uid: 28766 + components: + - type: Transform + pos: 15.5,-86.5 + parent: 8364 + - uid: 28767 + components: + - type: Transform + pos: 15.5,-85.5 + parent: 8364 + - uid: 28768 + components: + - type: Transform + pos: 14.5,-87.5 + parent: 8364 + - uid: 28769 + components: + - type: Transform + pos: 14.5,-86.5 + parent: 8364 + - uid: 28770 + components: + - type: Transform + pos: 14.5,-85.5 + parent: 8364 + - uid: 28771 + components: + - type: Transform + pos: 13.5,-87.5 + parent: 8364 + - uid: 28772 + components: + - type: Transform + pos: 13.5,-86.5 + parent: 8364 + - uid: 28773 + components: + - type: Transform + pos: 13.5,-85.5 + parent: 8364 + - uid: 28782 + components: + - type: Transform + pos: 20.5,-93.5 + parent: 8364 + - uid: 28783 + components: + - type: Transform + pos: 20.5,-92.5 + parent: 8364 - proto: AtmosFixFreezerMarker entities: - uid: 2846 @@ -21357,6 +21932,8 @@ entities: - type: Transform pos: 26.5,-11.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: BarSignOfficerBeersky entities: - uid: 7136 @@ -21364,6 +21941,8 @@ entities: - type: Transform pos: -34.5,17.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: BaseComputer entities: - uid: 5355 @@ -21833,12 +22412,6 @@ entities: - type: Transform pos: 27.5,-41.5 parent: 8364 - - uid: 3542 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-86.5 - parent: 8364 - uid: 3568 components: - type: MetaData @@ -21846,12 +22419,6 @@ entities: - type: Transform pos: -42.5,-49.5 parent: 8364 - - uid: 3605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-86.5 - parent: 8364 - uid: 3750 components: - type: Transform @@ -21862,12 +22429,6 @@ entities: - type: Transform pos: -6.5,-76.5 parent: 8364 - - uid: 4205 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-86.5 - parent: 8364 - uid: 4458 components: - type: Transform @@ -21917,28 +22478,11 @@ entities: - type: Transform pos: -5.5,-76.5 parent: 8364 - - uid: 13622 - components: - - type: Transform - pos: -7.5,45.5 - parent: 8364 - - uid: 13849 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-86.5 - parent: 8364 - uid: 13910 components: - type: Transform pos: -61.5,-21.5 parent: 8364 - - uid: 15544 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-86.5 - parent: 8364 - uid: 18326 components: - type: Transform @@ -22000,12 +22544,6 @@ entities: - type: Transform pos: 15.5,-49.5 parent: 8364 - - uid: 25091 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-86.5 - parent: 8364 - uid: 26666 components: - type: Transform @@ -22038,6 +22576,20 @@ entities: rot: 3.141592653589793 rad pos: 78.5,-30.5 parent: 8364 +- proto: BlastDoorEngineering + entities: + - uid: 27194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-86.5 + parent: 8364 + - uid: 28361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-92.5 + parent: 8364 - proto: BlastDoorOpen entities: - uid: 5898 @@ -22386,6 +22938,20 @@ entities: - type: Transform pos: -19.55601,-15.847038 parent: 8364 +- proto: BoxFlare + entities: + - uid: 28744 + components: + - type: Transform + pos: 26.486534,-85.33619 + parent: 8364 +- proto: BoxFlashbang + entities: + - uid: 28749 + components: + - type: Transform + pos: -14.479834,46.5225 + parent: 8364 - proto: BoxFolderBase entities: - uid: 8625 @@ -22494,6 +23060,11 @@ entities: parent: 8364 - proto: BoxFolderYellow entities: + - uid: 5745 + components: + - type: Transform + pos: -11.496632,-21.394827 + parent: 8364 - uid: 10197 components: - type: Transform @@ -22540,7 +23111,12 @@ entities: - uid: 8397 components: - type: Transform - pos: -0.118038416,43.70481 + pos: 0.014337063,43.815163 + parent: 8364 + - uid: 28727 + components: + - type: Transform + pos: -14.356977,45.6773 parent: 8364 - proto: BoxingBell entities: @@ -22550,6 +23126,8 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,14.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: BoxLatexGloves entities: - uid: 26740 @@ -22562,6 +23140,22 @@ entities: - type: Transform pos: 24.498875,-36.223793 parent: 8364 +- proto: BoxLethalshot + entities: + - uid: 26309 + components: + - type: Transform + parent: 26317 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26310 + components: + - type: Transform + parent: 26317 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: BoxLightbulb entities: - uid: 1999 @@ -22610,7 +23204,7 @@ entities: - uid: 5078 components: - type: Transform - pos: -3.8724453,34.55979 + pos: -14.497602,45.39605 parent: 8364 - proto: BoxMagazinePistolPractice entities: @@ -22652,6 +23246,18 @@ entities: - type: Transform pos: 7.3923097,47.786827 parent: 8364 +- proto: BoxShotgunSlug + entities: + - uid: 7852 + components: + - type: Transform + pos: -7.2934785,34.60984 + parent: 8364 + - uid: 9144 + components: + - type: Transform + pos: -7.289858,34.610893 + parent: 8364 - proto: BoxSterileMask entities: - uid: 5467 @@ -22664,6 +23270,13 @@ entities: - type: Transform pos: 24.405125,-36.239418 parent: 8364 +- proto: BoxStinger + entities: + - uid: 28700 + components: + - type: Transform + pos: -14.6620245,46.74173 + parent: 8364 - proto: BoxSyringe entities: - uid: 19263 @@ -22678,6 +23291,11 @@ entities: - type: Transform pos: 11.476913,44.679543 parent: 8364 + - uid: 26323 + components: + - type: Transform + pos: -14.229834,46.74125 + parent: 8364 - proto: BoxTrashbag entities: - uid: 13356 @@ -22702,7 +23320,12 @@ entities: - uid: 9112 components: - type: Transform - pos: -4.1121473,34.789116 + pos: -0.0012879372,43.455788 + parent: 8364 + - uid: 28730 + components: + - type: Transform + pos: -14.700727,45.70855 parent: 8364 - proto: BrbSign entities: @@ -22774,18 +23397,6 @@ entities: parent: 8364 - proto: ButtonFrameCaution entities: - - uid: 4248 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-86.5 - parent: 8364 - - uid: 8623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,44.5 - parent: 8364 - uid: 9041 components: - type: Transform @@ -22815,23 +23426,17 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-71.5 parent: 8364 - - uid: 27061 + - uid: 27195 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-82.5 + rot: 1.5707963267948966 rad + pos: 16.5,-88.5 parent: 8364 - - uid: 27063 + - uid: 27623 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-86.5 - parent: 8364 - - uid: 27850 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-82.5 + rot: 1.5707963267948966 rad + pos: 16.5,-90.5 parent: 8364 - uid: 28606 components: @@ -22847,6 +23452,12 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,47.5 parent: 8364 + - uid: 8419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,44.5 + parent: 8364 - proto: ButtonFrameExit entities: - uid: 3810 @@ -22956,6 +23567,11 @@ entities: - type: Transform pos: -66.5,15.5 parent: 8364 + - uid: 561 + components: + - type: Transform + pos: -8.5,-23.5 + parent: 8364 - uid: 564 components: - type: Transform @@ -23791,26 +24407,11 @@ entities: - type: Transform pos: 25.5,-51.5 parent: 8364 - - uid: 4251 - components: - - type: Transform - pos: 19.5,-81.5 - parent: 8364 - - uid: 4252 - components: - - type: Transform - pos: 20.5,-81.5 - parent: 8364 - uid: 4253 components: - type: Transform pos: 16.5,-81.5 parent: 8364 - - uid: 4254 - components: - - type: Transform - pos: 14.5,-81.5 - parent: 8364 - uid: 4255 components: - type: Transform @@ -23866,11 +24467,6 @@ entities: - type: Transform pos: 18.5,-81.5 parent: 8364 - - uid: 4382 - components: - - type: Transform - pos: 15.5,-81.5 - parent: 8364 - uid: 4383 components: - type: Transform @@ -23901,6 +24497,11 @@ entities: - type: Transform pos: 25.5,-76.5 parent: 8364 + - uid: 4394 + components: + - type: Transform + pos: 13.5,-81.5 + parent: 8364 - uid: 4408 components: - type: Transform @@ -23936,11 +24537,6 @@ entities: - type: Transform pos: 0.5,-60.5 parent: 8364 - - uid: 4623 - components: - - type: Transform - pos: 13.5,-81.5 - parent: 8364 - uid: 4940 components: - type: Transform @@ -23971,6 +24567,11 @@ entities: - type: Transform pos: -21.5,-76.5 parent: 8364 + - uid: 5072 + components: + - type: Transform + pos: -9.5,41.5 + parent: 8364 - uid: 5086 components: - type: Transform @@ -24466,6 +25067,11 @@ entities: - type: Transform pos: -0.5,23.5 parent: 8364 + - uid: 6332 + components: + - type: Transform + pos: -8.5,46.5 + parent: 8364 - uid: 6348 components: - type: Transform @@ -25121,11 +25727,21 @@ entities: - type: Transform pos: -5.5,12.5 parent: 8364 + - uid: 7292 + components: + - type: Transform + pos: -9.5,46.5 + parent: 8364 - uid: 7297 components: - type: Transform pos: -17.5,18.5 parent: 8364 + - uid: 7314 + components: + - type: Transform + pos: -10.5,46.5 + parent: 8364 - uid: 7346 components: - type: Transform @@ -25141,6 +25757,11 @@ entities: - type: Transform pos: -25.5,5.5 parent: 8364 + - uid: 7379 + components: + - type: Transform + pos: -16.5,40.5 + parent: 8364 - uid: 7510 components: - type: Transform @@ -25231,11 +25852,6 @@ entities: - type: Transform pos: -0.5,26.5 parent: 8364 - - uid: 9067 - components: - - type: Transform - pos: -14.5,45.5 - parent: 8364 - uid: 9068 components: - type: Transform @@ -28286,6 +28902,11 @@ entities: - type: Transform pos: 47.5,19.5 parent: 8364 + - uid: 11765 + components: + - type: Transform + pos: -8.5,-25.5 + parent: 8364 - uid: 11767 components: - type: Transform @@ -32461,11 +33082,6 @@ entities: - type: Transform pos: -10.5,41.5 parent: 8364 - - uid: 13735 - components: - - type: Transform - pos: -9.5,41.5 - parent: 8364 - uid: 13743 components: - type: Transform @@ -32511,26 +33127,6 @@ entities: - type: Transform pos: -8.5,41.5 parent: 8364 - - uid: 13816 - components: - - type: Transform - pos: -10.5,45.5 - parent: 8364 - - uid: 13817 - components: - - type: Transform - pos: -9.5,45.5 - parent: 8364 - - uid: 13818 - components: - - type: Transform - pos: -8.5,45.5 - parent: 8364 - - uid: 13819 - components: - - type: Transform - pos: -7.5,45.5 - parent: 8364 - uid: 13820 components: - type: Transform @@ -32546,6 +33142,16 @@ entities: - type: Transform pos: -16.5,42.5 parent: 8364 + - uid: 13847 + components: + - type: Transform + pos: 15.5,-92.5 + parent: 8364 + - uid: 13849 + components: + - type: Transform + pos: 23.5,-84.5 + parent: 8364 - uid: 13854 components: - type: Transform @@ -32996,6 +33602,11 @@ entities: - type: Transform pos: -42.5,-11.5 parent: 8364 + - uid: 14221 + components: + - type: Transform + pos: 19.5,-87.5 + parent: 8364 - uid: 14271 components: - type: Transform @@ -33231,6 +33842,11 @@ entities: - type: Transform pos: 5.5,-35.5 parent: 8364 + - uid: 14506 + components: + - type: Transform + pos: 17.5,-86.5 + parent: 8364 - uid: 14618 components: - type: Transform @@ -35211,6 +35827,11 @@ entities: - type: Transform pos: -29.5,-26.5 parent: 8364 + - uid: 15343 + components: + - type: Transform + pos: 19.5,-89.5 + parent: 8364 - uid: 15434 components: - type: Transform @@ -35231,6 +35852,11 @@ entities: - type: Transform pos: 20.5,-55.5 parent: 8364 + - uid: 15489 + components: + - type: Transform + pos: 15.5,-86.5 + parent: 8364 - uid: 15496 components: - type: Transform @@ -35271,6 +35897,11 @@ entities: - type: Transform pos: 18.5,-47.5 parent: 8364 + - uid: 15544 + components: + - type: Transform + pos: 19.5,-84.5 + parent: 8364 - uid: 15575 components: - type: Transform @@ -35516,21 +36147,56 @@ entities: - type: Transform pos: -21.5,-54.5 parent: 8364 + - uid: 15883 + components: + - type: Transform + pos: 18.5,-86.5 + parent: 8364 + - uid: 15899 + components: + - type: Transform + pos: 22.5,-84.5 + parent: 8364 - uid: 15927 components: - type: Transform pos: -21.5,-55.5 parent: 8364 + - uid: 15951 + components: + - type: Transform + pos: 17.5,-92.5 + parent: 8364 + - uid: 15958 + components: + - type: Transform + pos: 16.5,-86.5 + parent: 8364 - uid: 15960 components: - type: Transform pos: 34.5,-19.5 parent: 8364 + - uid: 15979 + components: + - type: Transform + pos: 21.5,-84.5 + parent: 8364 - uid: 15984 components: - type: Transform pos: -37.5,-8.5 parent: 8364 + - uid: 16145 + components: + - type: Transform + pos: 19.5,-88.5 + parent: 8364 + - uid: 16207 + components: + - type: Transform + pos: 14.5,-92.5 + parent: 8364 - uid: 16212 components: - type: Transform @@ -36116,6 +36782,11 @@ entities: - type: Transform pos: 4.5,-43.5 parent: 8364 + - uid: 16522 + components: + - type: Transform + pos: 18.5,-92.5 + parent: 8364 - uid: 16523 components: - type: Transform @@ -36146,6 +36817,11 @@ entities: - type: Transform pos: 6.5,-44.5 parent: 8364 + - uid: 16540 + components: + - type: Transform + pos: 19.5,-91.5 + parent: 8364 - uid: 16542 components: - type: Transform @@ -36351,6 +37027,16 @@ entities: - type: Transform pos: 25.5,-56.5 parent: 8364 + - uid: 16619 + components: + - type: Transform + pos: 20.5,-84.5 + parent: 8364 + - uid: 16632 + components: + - type: Transform + pos: 19.5,-85.5 + parent: 8364 - uid: 16636 components: - type: Transform @@ -36681,6 +37367,11 @@ entities: - type: Transform pos: 14.5,-71.5 parent: 8364 + - uid: 16735 + components: + - type: Transform + pos: 19.5,-92.5 + parent: 8364 - uid: 16738 components: - type: Transform @@ -36746,6 +37437,11 @@ entities: - type: Transform pos: 22.5,-63.5 parent: 8364 + - uid: 16777 + components: + - type: Transform + pos: 26.5,-84.5 + parent: 8364 - uid: 16798 components: - type: Transform @@ -42746,6 +43442,16 @@ entities: - type: Transform pos: -21.5,-74.5 parent: 8364 + - uid: 22547 + components: + - type: Transform + pos: 25.5,-82.5 + parent: 8364 + - uid: 22548 + components: + - type: Transform + pos: 25.5,-83.5 + parent: 8364 - uid: 22578 components: - type: Transform @@ -42781,6 +43487,11 @@ entities: - type: Transform pos: -0.5,46.5 parent: 8364 + - uid: 22744 + components: + - type: Transform + pos: 25.5,-84.5 + parent: 8364 - uid: 22818 components: - type: Transform @@ -44086,16 +44797,16 @@ entities: - type: Transform pos: 4.5,-72.5 parent: 8364 + - uid: 26849 + components: + - type: Transform + pos: 27.5,-84.5 + parent: 8364 - uid: 26977 components: - type: Transform pos: 27.5,-72.5 parent: 8364 - - uid: 26978 - components: - - type: Transform - pos: 19.5,-84.5 - parent: 8364 - uid: 27003 components: - type: Transform @@ -44141,16 +44852,6 @@ entities: - type: Transform pos: 27.5,-78.5 parent: 8364 - - uid: 27118 - components: - - type: Transform - pos: 18.5,-85.5 - parent: 8364 - - uid: 27119 - components: - - type: Transform - pos: 18.5,-86.5 - parent: 8364 - uid: 27120 components: - type: Transform @@ -44161,35 +44862,15 @@ entities: - type: Transform pos: 27.5,-80.5 parent: 8364 - - uid: 27122 - components: - - type: Transform - pos: 25.5,-82.5 - parent: 8364 - uid: 27123 components: - type: Transform - pos: 15.5,-84.5 + pos: 19.5,-90.5 parent: 8364 - uid: 27124 components: - type: Transform - pos: 17.5,-84.5 - parent: 8364 - - uid: 27125 - components: - - type: Transform - pos: 16.5,-84.5 - parent: 8364 - - uid: 27126 - components: - - type: Transform - pos: 14.5,-84.5 - parent: 8364 - - uid: 27127 - components: - - type: Transform - pos: 26.5,-84.5 + pos: 14.5,-86.5 parent: 8364 - uid: 27128 components: @@ -44219,7 +44900,7 @@ entities: - uid: 27133 components: - type: Transform - pos: 18.5,-83.5 + pos: 21.5,-82.5 parent: 8364 - uid: 27134 components: @@ -44246,15 +44927,10 @@ entities: - type: Transform pos: 18.5,-79.5 parent: 8364 - - uid: 27139 + - uid: 27142 components: - type: Transform - pos: 25.5,-83.5 - parent: 8364 - - uid: 27141 - components: - - type: Transform - pos: 25.5,-84.5 + pos: 19.5,-82.5 parent: 8364 - uid: 27151 components: @@ -44274,27 +44950,32 @@ entities: - uid: 27181 components: - type: Transform - pos: 18.5,-84.5 + pos: 28.5,-84.5 parent: 8364 - uid: 27182 components: - type: Transform - pos: 21.5,-84.5 + pos: 18.5,-82.5 parent: 8364 - uid: 27183 components: - type: Transform - pos: 18.5,-82.5 + pos: 24.5,-84.5 parent: 8364 - - uid: 27190 + - uid: 27184 components: - type: Transform - pos: 20.5,-84.5 + pos: 19.5,-86.5 parent: 8364 - - uid: 27191 + - uid: 27185 components: - type: Transform - pos: 22.5,-84.5 + pos: 16.5,-92.5 + parent: 8364 + - uid: 27187 + components: + - type: Transform + pos: 14.5,-82.5 parent: 8364 - uid: 27223 components: @@ -44366,6 +45047,11 @@ entities: - type: Transform pos: -11.5,-56.5 parent: 8364 + - uid: 27432 + components: + - type: Transform + pos: 15.5,-82.5 + parent: 8364 - uid: 27451 components: - type: Transform @@ -44501,6 +45187,16 @@ entities: - type: Transform pos: -1.5,-74.5 parent: 8364 + - uid: 27620 + components: + - type: Transform + pos: 16.5,-82.5 + parent: 8364 + - uid: 27624 + components: + - type: Transform + pos: 20.5,-82.5 + parent: 8364 - uid: 27630 components: - type: Transform @@ -44541,6 +45237,11 @@ entities: - type: Transform pos: 86.5,-2.5 parent: 8364 + - uid: 27702 + components: + - type: Transform + pos: 13.5,-82.5 + parent: 8364 - uid: 27787 components: - type: Transform @@ -44736,16 +45437,16 @@ entities: - type: Transform pos: -3.5,-20.5 parent: 8364 + - uid: 28203 + components: + - type: Transform + pos: -8.5,-24.5 + parent: 8364 - uid: 28295 components: - type: Transform pos: 47.5,-28.5 parent: 8364 - - uid: 28503 - components: - - type: Transform - pos: -15.5,45.5 - parent: 8364 - uid: 28539 components: - type: Transform @@ -44821,11 +45522,6 @@ entities: - type: Transform pos: -16.5,47.5 parent: 8364 - - uid: 28582 - components: - - type: Transform - pos: -17.5,47.5 - parent: 8364 - uid: 28601 components: - type: Transform @@ -44841,6 +45537,26 @@ entities: - type: Transform pos: -18.5,21.5 parent: 8364 + - uid: 28698 + components: + - type: Transform + pos: -14.5,46.5 + parent: 8364 + - uid: 28716 + components: + - type: Transform + pos: -7.5,45.5 + parent: 8364 + - uid: 28729 + components: + - type: Transform + pos: -7.5,46.5 + parent: 8364 + - uid: 28741 + components: + - type: Transform + pos: -15.5,46.5 + parent: 8364 - proto: CableApcStack entities: - uid: 1195 @@ -51313,11 +52029,21 @@ entities: - type: Transform pos: -11.5,-61.5 parent: 8364 + - uid: 26879 + components: + - type: Transform + pos: -4.5,-86.5 + parent: 8364 - uid: 26911 components: - type: Transform pos: 8.5,-78.5 parent: 8364 + - uid: 26913 + components: + - type: Transform + pos: 3.5,-86.5 + parent: 8364 - uid: 26916 components: - type: Transform @@ -51603,6 +52329,16 @@ entities: - type: Transform pos: -17.5,-32.5 parent: 8364 + - uid: 28387 + components: + - type: Transform + pos: 4.5,-86.5 + parent: 8364 + - uid: 28393 + components: + - type: Transform + pos: -5.5,-86.5 + parent: 8364 - uid: 28629 components: - type: Transform @@ -52962,6 +53698,11 @@ entities: - type: Transform pos: -17.5,18.5 parent: 8364 + - uid: 7348 + components: + - type: Transform + pos: -10.5,46.5 + parent: 8364 - uid: 7380 components: - type: Transform @@ -52977,6 +53718,11 @@ entities: - type: Transform pos: -14.5,16.5 parent: 8364 + - uid: 7415 + components: + - type: Transform + pos: -14.5,46.5 + parent: 8364 - uid: 7567 components: - type: Transform @@ -53047,6 +53793,11 @@ entities: - type: Transform pos: -33.5,10.5 parent: 8364 + - uid: 7787 + components: + - type: Transform + pos: -7.5,42.5 + parent: 8364 - uid: 7799 components: - type: Transform @@ -53125,7 +53876,22 @@ entities: - uid: 8406 components: - type: Transform - pos: -14.5,45.5 + pos: -8.5,46.5 + parent: 8364 + - uid: 8408 + components: + - type: Transform + pos: -14.5,44.5 + parent: 8364 + - uid: 8627 + components: + - type: Transform + pos: -7.5,46.5 + parent: 8364 + - uid: 8645 + components: + - type: Transform + pos: -9.5,46.5 parent: 8364 - uid: 8914 components: @@ -55502,11 +56268,6 @@ entities: - type: Transform pos: -15.5,45.5 parent: 8364 - - uid: 13621 - components: - - type: Transform - pos: -15.5,44.5 - parent: 8364 - uid: 13629 components: - type: Transform @@ -61397,6 +62158,31 @@ entities: - type: Transform pos: -19.5,19.5 parent: 8364 + - uid: 28687 + components: + - type: Transform + pos: -15.5,43.5 + parent: 8364 + - uid: 28695 + components: + - type: Transform + pos: -10.5,42.5 + parent: 8364 + - uid: 28734 + components: + - type: Transform + pos: -7.5,40.5 + parent: 8364 + - uid: 28736 + components: + - type: Transform + pos: -7.5,45.5 + parent: 8364 + - uid: 28738 + components: + - type: Transform + pos: -10.5,40.5 + parent: 8364 - proto: CableMVStack entities: - uid: 1697 @@ -62271,37 +63057,31 @@ entities: - uid: 28620 components: - type: Transform - rot: 3.141592653589793 rad pos: -11.5,18.5 parent: 8364 - uid: 28621 components: - type: Transform - rot: 3.141592653589793 rad pos: -11.5,19.5 parent: 8364 - uid: 28622 components: - type: Transform - rot: 3.141592653589793 rad pos: -11.5,20.5 parent: 8364 - uid: 28623 components: - type: Transform - rot: 3.141592653589793 rad pos: -10.5,18.5 parent: 8364 - uid: 28624 components: - type: Transform - rot: 3.141592653589793 rad pos: -10.5,19.5 parent: 8364 - uid: 28625 components: - type: Transform - rot: 3.141592653589793 rad pos: -10.5,20.5 parent: 8364 - proto: CarpetBlack @@ -63302,37 +64082,31 @@ entities: - uid: 28505 components: - type: Transform - rot: 3.141592653589793 rad pos: -3.5,19.5 parent: 8364 - uid: 28607 components: - type: Transform - rot: 3.141592653589793 rad pos: -3.5,18.5 parent: 8364 - uid: 28616 components: - type: Transform - rot: 3.141592653589793 rad pos: -3.5,20.5 parent: 8364 - uid: 28617 components: - type: Transform - rot: 3.141592653589793 rad pos: -4.5,18.5 parent: 8364 - uid: 28618 components: - type: Transform - rot: 3.141592653589793 rad pos: -4.5,19.5 parent: 8364 - uid: 28619 components: - type: Transform - rot: 3.141592653589793 rad pos: -4.5,20.5 parent: 8364 - proto: CarpetOrange @@ -63588,6 +64362,11 @@ entities: parent: 8364 - proto: CarpetSBlue entities: + - uid: 300 + components: + - type: Transform + pos: -9.5,-23.5 + parent: 8364 - uid: 941 components: - type: Transform @@ -63623,11 +64402,6 @@ entities: - type: Transform pos: -11.5,-13.5 parent: 8364 - - uid: 5563 - components: - - type: Transform - pos: -9.5,-23.5 - parent: 8364 - uid: 5564 components: - type: Transform @@ -63643,11 +64417,6 @@ entities: - type: Transform pos: -9.5,-24.5 parent: 8364 - - uid: 5568 - components: - - type: Transform - pos: -10.5,-22.5 - parent: 8364 - uid: 5569 components: - type: Transform @@ -63668,6 +64437,11 @@ entities: - type: Transform pos: -9.5,-16.5 parent: 8364 + - uid: 6389 + components: + - type: Transform + pos: -10.5,-22.5 + parent: 8364 - uid: 8198 components: - type: Transform @@ -63753,17 +64527,89 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,-79.5 parent: 8364 + - uid: 3605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-84.5 + parent: 8364 - uid: 3606 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-88.5 + rot: 1.5707963267948966 rad + pos: 23.5,-84.5 + parent: 8364 + - uid: 4005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-84.5 + parent: 8364 + - uid: 4139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-84.5 + parent: 8364 + - uid: 4205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-87.5 + parent: 8364 + - uid: 4234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-86.5 + parent: 8364 + - uid: 4235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-86.5 + parent: 8364 + - uid: 4236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-88.5 + parent: 8364 + - uid: 4239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-85.5 + parent: 8364 + - uid: 4240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-86.5 + parent: 8364 + - uid: 4241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-89.5 parent: 8364 - uid: 4244 components: - type: Transform pos: 49.5,-18.5 parent: 8364 + - uid: 4247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-90.5 + parent: 8364 + - uid: 4249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-84.5 + parent: 8364 - uid: 4476 components: - type: Transform @@ -63785,11 +64631,11 @@ entities: - type: Transform pos: 49.5,-22.5 parent: 8364 - - uid: 5861 + - uid: 5201 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-88.5 + rot: 1.5707963267948966 rad + pos: 31.5,-84.5 parent: 8364 - uid: 5864 components: @@ -64514,12 +65360,6 @@ entities: - type: Transform pos: 32.5,-45.5 parent: 8364 - - uid: 12262 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-88.5 - parent: 8364 - uid: 12328 components: - type: Transform @@ -64560,12 +65400,6 @@ entities: - type: Transform pos: 32.5,-53.5 parent: 8364 - - uid: 12458 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-88.5 - parent: 8364 - uid: 12561 components: - type: Transform @@ -66335,18 +67169,6 @@ entities: - type: Transform pos: -47.5,13.5 parent: 8364 - - uid: 16145 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-88.5 - parent: 8364 - - uid: 16207 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-88.5 - parent: 8364 - uid: 16307 components: - type: Transform @@ -66476,12 +67298,6 @@ entities: - type: Transform pos: 0.5,-76.5 parent: 8364 - - uid: 16553 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-88.5 - parent: 8364 - uid: 16554 components: - type: Transform @@ -66494,12 +67310,6 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-84.5 parent: 8364 - - uid: 16619 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-87.5 - parent: 8364 - uid: 16621 components: - type: Transform @@ -67327,12 +68137,6 @@ entities: - type: Transform pos: -10.5,-74.5 parent: 8364 - - uid: 22744 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-88.5 - parent: 8364 - uid: 22922 components: - type: Transform @@ -67357,30 +68161,6 @@ entities: rot: 1.5707963267948966 rad pos: 43.5,-79.5 parent: 8364 - - uid: 23006 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-88.5 - parent: 8364 - - uid: 23008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-88.5 - parent: 8364 - - uid: 23150 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-88.5 - parent: 8364 - - uid: 23153 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-86.5 - parent: 8364 - uid: 23179 components: - type: Transform @@ -67393,6 +68173,18 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-83.5 parent: 8364 + - uid: 26095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-84.5 + parent: 8364 + - uid: 26579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-82.5 + parent: 8364 - uid: 26607 components: - type: Transform @@ -67442,11 +68234,17 @@ entities: - type: Transform pos: -56.5,-61.5 parent: 8364 - - uid: 26995 + - uid: 26802 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-88.5 + pos: 29.5,-83.5 + parent: 8364 + - uid: 26978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-81.5 parent: 8364 - uid: 27060 components: @@ -67454,71 +68252,17 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-84.5 parent: 8364 - - uid: 27428 + - uid: 27063 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-88.5 + rot: 1.5707963267948966 rad + pos: 29.5,-84.5 parent: 8364 - - uid: 27431 + - uid: 27621 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-88.5 - parent: 8364 - - uid: 27432 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-88.5 - parent: 8364 - - uid: 27472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-88.5 - parent: 8364 - - uid: 27473 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-88.5 - parent: 8364 - - uid: 27474 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-88.5 - parent: 8364 - - uid: 27475 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-88.5 - parent: 8364 - - uid: 27476 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-88.5 - parent: 8364 - - uid: 27488 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-88.5 - parent: 8364 - - uid: 27490 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-88.5 - parent: 8364 - - uid: 27541 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-88.5 + rot: 1.5707963267948966 rad + pos: 28.5,-84.5 parent: 8364 - uid: 27638 components: @@ -68499,6 +69243,18 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,12.5 parent: 8364 + - uid: 23154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.414019,-80.41989 + parent: 8364 + - uid: 27472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.47655,-81.30592 + parent: 8364 - proto: ChairGreyscale entities: - uid: 20673 @@ -68807,6 +69563,12 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-43.5 parent: 8364 + - uid: 20698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.441114,-24.41229 + parent: 8364 - uid: 21275 components: - type: Transform @@ -69547,6 +70309,8 @@ entities: - type: Transform pos: 7.5,-32.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: ClosetBombFilled entities: - uid: 2611 @@ -72929,20 +73693,25 @@ entities: parent: 8364 - proto: ClothingHeadHelmetRiot entities: - - uid: 7853 + - uid: 9139 components: - type: Transform - pos: -12.25313,40.561676 + pos: -14.256912,43.71807 parent: 8364 - - uid: 8404 + - uid: 9141 components: - type: Transform - pos: -12.25313,40.71804 + pos: -14.256912,43.6139 parent: 8364 - - uid: 8550 + - uid: 9142 components: - type: Transform - pos: -12.25313,40.42617 + pos: -14.256912,43.377792 + parent: 8364 + - uid: 9143 + components: + - type: Transform + pos: -14.256912,43.502792 parent: 8364 - proto: ClothingHeadsetEngineering entities: @@ -73202,6 +73971,11 @@ entities: parent: 8364 - proto: ClothingOuterArmorBulletproof entities: + - uid: 174 + components: + - type: Transform + pos: -14.700324,42.37941 + parent: 8364 - uid: 7850 components: - type: Transform @@ -73210,7 +73984,7 @@ entities: - uid: 8543 components: - type: Transform - pos: -14.691839,42.479675 + pos: -14.700324,42.50441 parent: 8364 - uid: 8546 components: @@ -73229,6 +74003,11 @@ entities: - type: Transform pos: -14.411459,42.631638 parent: 8364 + - uid: 7843 + components: + - type: Transform + pos: -14.403449,42.332535 + parent: 8364 - uid: 7849 components: - type: Transform @@ -73236,20 +74015,25 @@ entities: parent: 8364 - proto: ClothingOuterArmorRiot entities: - - uid: 7846 + - uid: 9145 components: - type: Transform - pos: -12.607471,40.645073 + pos: -14.65969,43.634735 parent: 8364 - - uid: 7852 + - uid: 9146 components: - type: Transform - pos: -12.607471,40.467865 + pos: -14.65969,43.55835 parent: 8364 - - uid: 8544 + - uid: 9147 components: - type: Transform - pos: -12.607471,40.572105 + pos: -14.65969,43.475014 + parent: 8364 + - uid: 28714 + components: + - type: Transform + pos: -14.65969,43.384735 parent: 8364 - proto: ClothingOuterCardborg entities: @@ -73308,33 +74092,49 @@ entities: - type: Transform pos: 66.509186,-76.72045 parent: 8364 -- proto: ClothingOuterHardsuitSecurity +- proto: ClothingOuterHardsuitEVAPrisoner entities: - - uid: 231 + - uid: 28692 components: - type: Transform - parent: 174 + parent: 26319 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 28694 + components: + - type: Transform + parent: 26320 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitSecurity + entities: - uid: 7350 components: - type: Transform - parent: 7349 + parent: 271 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 7416 + - uid: 19947 components: - type: Transform - parent: 7415 + parent: 19941 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 8559 + - uid: 26318 components: - type: Transform - parent: 8558 + parent: 26315 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28719 + components: + - type: Transform + parent: 28717 - type: Physics canCollide: False - type: InsideEntityStorage @@ -73775,12 +74575,6 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,-15.5 parent: 8364 - - uid: 5869 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-26.5 - parent: 8364 - uid: 5873 components: - type: Transform @@ -73962,6 +74756,12 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-57.5 parent: 8364 + - uid: 17678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-24.5 + parent: 8364 - uid: 18634 components: - type: Transform @@ -74204,6 +75004,12 @@ entities: parent: 8364 - proto: ComputerCrewMonitoring entities: + - uid: 5340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-25.5 + parent: 8364 - uid: 5525 components: - type: Transform @@ -74300,10 +75106,11 @@ entities: parent: 8364 - proto: ComputerFundingAllocation entities: - - uid: 20698 + - uid: 5563 components: - type: Transform - pos: -11.5,-21.5 + rot: -1.5707963267948966 rad + pos: -9.5,-26.5 parent: 8364 - proto: ComputerId entities: @@ -74313,7 +75120,7 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-17.5 parent: 8364 - - uid: 5635 + - uid: 5608 components: - type: Transform rot: 3.141592653589793 rad @@ -74545,12 +75352,6 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,44.5 parent: 8364 - - uid: 9260 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-26.5 - parent: 8364 - uid: 19297 components: - type: Transform @@ -75083,6 +75884,11 @@ entities: parent: 8364 - proto: CrateContrabandStorageSecure entities: + - uid: 7846 + components: + - type: Transform + pos: -12.5,47.5 + parent: 8364 - uid: 8988 components: - type: Transform @@ -75749,10 +76555,10 @@ entities: parent: 8364 - proto: CrateSecurityTrackingMindshieldImplants entities: - - uid: 26318 + - uid: 28637 components: - type: Transform - pos: -14.5,44.5 + pos: -12.5,40.5 parent: 8364 - proto: CrateServiceJanitorialSupplies entities: @@ -76112,6 +76918,23 @@ entities: - type: Transform pos: 55.5,18.5 parent: 8364 +- proto: DecalSpawnerBurns + entities: + - uid: 4252 + components: + - type: Transform + pos: 14.5,-86.5 + parent: 8364 + - uid: 4379 + components: + - type: Transform + pos: 14.5,-92.5 + parent: 8364 + - uid: 27762 + components: + - type: Transform + pos: 18.5,-92.5 + parent: 8364 - proto: DefaultStationBeaconAICore entities: - uid: 563 @@ -76142,10 +76965,10 @@ entities: parent: 8364 - proto: DefaultStationBeaconArmory entities: - - uid: 4931 + - uid: 28732 components: - type: Transform - pos: -12.5,44.5 + pos: -11.5,45.5 parent: 8364 - proto: DefaultStationBeaconArrivals entities: @@ -76459,6 +77282,13 @@ entities: - type: Transform pos: -6.5,-36.5 parent: 8364 +- proto: DefaultStationBeaconTEG + entities: + - uid: 25245 + components: + - type: Transform + pos: 18.5,-75.5 + parent: 8364 - proto: DefaultStationBeaconTelecoms entities: - uid: 27259 @@ -76494,28 +77324,38 @@ entities: - type: Transform pos: 27.5,-22.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 26584 components: - type: Transform pos: 32.5,-26.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 26586 components: - type: Transform pos: -42.5,6.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 28292 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-37.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 28547 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,33.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: DeployableBarrier entities: - uid: 9884 @@ -77244,11 +78084,11 @@ entities: rot: 1.5707963267948966 rad pos: 66.5,-53.5 parent: 8364 - - uid: 21068 + - uid: 21062 components: - type: Transform rot: -1.5707963267948966 rad - pos: 77.5,-43.5 + pos: 77.5,-45.5 parent: 8364 - uid: 21069 components: @@ -77492,6 +78332,23 @@ entities: rot: 3.141592653589793 rad pos: 3.5,31.5 parent: 8364 + - uid: 28667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-45.5 + parent: 8364 + - uid: 28676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-36.5 + parent: 8364 + - uid: 28683 + components: + - type: Transform + pos: 73.5,-36.5 + parent: 8364 - proto: DisposalJunction entities: - uid: 4660 @@ -77741,6 +78598,12 @@ entities: rot: 3.141592653589793 rad pos: 3.5,38.5 parent: 8364 + - uid: 28664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-45.5 + parent: 8364 - proto: DisposalPipe entities: - uid: 1157 @@ -78327,12 +79190,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-20.5 parent: 8364 - - uid: 6209 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-21.5 - parent: 8364 - uid: 6210 components: - type: Transform @@ -78702,6 +79559,12 @@ entities: rot: 3.141592653589793 rad pos: -0.5,3.5 parent: 8364 + - uid: 8904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-43.5 + parent: 8364 - uid: 9105 components: - type: Transform @@ -80260,6 +81123,11 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,-30.5 parent: 8364 + - uid: 16587 + components: + - type: Transform + pos: 77.5,-37.5 + parent: 8364 - uid: 16716 components: - type: Transform @@ -82300,7 +83168,8 @@ entities: - uid: 21055 components: - type: Transform - pos: 77.5,-37.5 + rot: 1.5707963267948966 rad + pos: 68.5,-45.5 parent: 8364 - uid: 21056 components: @@ -82330,38 +83199,44 @@ entities: - uid: 21061 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-43.5 - parent: 8364 - - uid: 21062 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-43.5 + rot: 1.5707963267948966 rad + pos: 69.5,-45.5 parent: 8364 - uid: 21063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-43.5 + rot: 3.141592653589793 rad + pos: 77.5,-44.5 parent: 8364 - uid: 21064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-43.5 + rot: 1.5707963267948966 rad + pos: 76.5,-45.5 parent: 8364 - uid: 21065 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-43.5 + rot: 1.5707963267948966 rad + pos: 75.5,-45.5 parent: 8364 - uid: 21066 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-43.5 + rot: 1.5707963267948966 rad + pos: 74.5,-45.5 + parent: 8364 + - uid: 21067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-45.5 + parent: 8364 + - uid: 21068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-45.5 parent: 8364 - uid: 21074 components: @@ -83939,6 +84814,18 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-65.5 parent: 8364 + - uid: 25167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-45.5 + parent: 8364 + - uid: 25181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-45.5 + parent: 8364 - uid: 25755 components: - type: Transform @@ -84447,6 +85334,95 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,-45.5 parent: 8364 + - uid: 28665 + components: + - type: Transform + pos: 70.5,-44.5 + parent: 8364 + - uid: 28668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-44.5 + parent: 8364 + - uid: 28669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-43.5 + parent: 8364 + - uid: 28670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-42.5 + parent: 8364 + - uid: 28671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-41.5 + parent: 8364 + - uid: 28672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-40.5 + parent: 8364 + - uid: 28673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-39.5 + parent: 8364 + - uid: 28674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-38.5 + parent: 8364 + - uid: 28675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-37.5 + parent: 8364 + - uid: 28677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-36.5 + parent: 8364 + - uid: 28678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-36.5 + parent: 8364 + - uid: 28679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-36.5 + parent: 8364 + - uid: 28680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-36.5 + parent: 8364 + - uid: 28681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-36.5 + parent: 8364 + - uid: 28682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-36.5 + parent: 8364 - proto: DisposalRouter entities: - uid: 22062 @@ -84521,6 +85497,12 @@ entities: rot: 3.141592653589793 rad pos: 22.5,-36.5 parent: 8364 + - uid: 5568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-21.5 + parent: 8364 - uid: 5891 components: - type: Transform @@ -84545,12 +85527,6 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-11.5 parent: 8364 - - uid: 6207 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-21.5 - parent: 8364 - uid: 6649 components: - type: Transform @@ -84758,12 +85734,6 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,-53.5 parent: 8364 - - uid: 21067 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-43.5 - parent: 8364 - uid: 21107 components: - type: Transform @@ -84850,6 +85820,17 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-71.5 parent: 8364 + - uid: 28666 + components: + - type: Transform + pos: 70.5,-43.5 + parent: 8364 + - uid: 28684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-37.5 + parent: 8364 - proto: DisposalUnit entities: - uid: 1432 @@ -84877,16 +85858,16 @@ entities: - type: Transform pos: -24.5,-13.5 parent: 8364 + - uid: 5868 + components: + - type: Transform + pos: -9.5,-21.5 + parent: 8364 - uid: 5908 components: - type: Transform pos: -6.5,-11.5 parent: 8364 - - uid: 5909 - components: - - type: Transform - pos: -10.5,-21.5 - parent: 8364 - uid: 5910 components: - type: Transform @@ -85407,6 +86388,11 @@ entities: parent: 8364 - proto: EmergencyLight entities: + - uid: 8535 + components: + - type: Transform + pos: -12.5,43.5 + parent: 8364 - uid: 17694 components: - type: Transform @@ -86391,6 +87377,12 @@ entities: parent: 8364 - type: Battery startingCharge: 30000 + - uid: 28724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,45.5 + parent: 8364 - proto: EmergencyOxygenTank entities: - uid: 12451 @@ -86568,17 +87560,23 @@ entities: - type: Transform pos: -19.5,45.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 9857 components: - type: Transform pos: -19.5,42.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 9858 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,49.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: ExtendedEmergencyOxygenTankFilled entities: - uid: 17647 @@ -86613,21 +87611,29 @@ entities: - type: Transform pos: 10.5,-50.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 5225 components: - type: Transform pos: 64.5,-21.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 5226 components: - type: Transform pos: 59.5,-25.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 5230 components: - type: Transform pos: 69.5,-47.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 5285 components: - type: Transform @@ -86643,11 +87649,15 @@ entities: showEnts: False occludes: True ent: null + - type: Fixtures + fixtures: {} - uid: 5446 components: - type: Transform pos: -6.5,-32.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 5652 components: - type: Transform @@ -86663,6 +87673,8 @@ entities: showEnts: False occludes: True ent: null + - type: Fixtures + fixtures: {} - uid: 5653 components: - type: Transform @@ -86678,41 +87690,50 @@ entities: showEnts: False occludes: True ent: null + - type: Fixtures + fixtures: {} - uid: 6264 components: - type: Transform pos: 13.5,-28.5 parent: 8364 - - uid: 6332 - components: - - type: Transform - pos: -7.5,39.5 - parent: 8364 + - type: Fixtures + fixtures: {} - uid: 6333 components: - type: Transform pos: 1.5,28.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 6603 components: - type: Transform pos: -2.5,17.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 6604 components: - type: Transform pos: -12.5,17.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 7036 components: - type: Transform pos: 1.5,49.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 7187 components: - type: Transform pos: 9.5,39.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 7261 components: - type: Transform @@ -86728,202 +87749,282 @@ entities: showEnts: False occludes: True ent: null + - type: Fixtures + fixtures: {} - uid: 10045 components: - type: Transform pos: -14.5,31.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 10046 components: - type: Transform pos: -7.5,49.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 10744 components: - type: Transform pos: 46.5,-1.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 17555 components: - type: Transform pos: 10.5,-57.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22016 components: - type: Transform pos: -2.5,-46.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22019 components: - type: Transform pos: 4.5,18.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22021 components: - type: Transform pos: 38.5,-52.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22022 components: - type: Transform pos: 48.5,-56.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22226 components: - type: Transform pos: -14.5,-28.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22228 components: - type: Transform pos: -15.5,0.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22229 components: - type: Transform pos: 10.5,0.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22230 components: - type: Transform pos: 1.5,-28.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22231 components: - type: Transform pos: -6.5,-23.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22233 components: - type: Transform pos: 4.5,-17.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22234 components: - type: Transform pos: -24.5,0.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22235 components: - type: Transform pos: -47.5,0.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22236 components: - type: Transform pos: -47.5,4.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22238 components: - type: Transform pos: -55.5,2.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22239 components: - type: Transform pos: -65.5,-12.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22241 components: - type: Transform pos: -65.5,7.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22242 components: - type: Transform pos: -52.5,-14.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22243 components: - type: Transform pos: -28.5,-9.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22244 components: - type: Transform pos: -23.5,8.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22245 components: - type: Transform pos: -51.5,16.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22247 components: - type: Transform pos: 1.5,9.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22252 components: - type: Transform pos: 14.5,13.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22253 components: - type: Transform pos: 27.5,16.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22254 components: - type: Transform pos: 44.5,4.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22255 components: - type: Transform pos: 59.5,14.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22256 components: - type: Transform pos: 62.5,2.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22258 components: - type: Transform pos: 60.5,-4.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22259 components: - type: Transform pos: 77.5,-0.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22260 components: - type: Transform pos: 79.5,-8.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22261 components: - type: Transform pos: 35.5,-3.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22263 components: - type: Transform pos: 32.5,-8.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22827 components: - type: Transform pos: 2.5,-46.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 25316 components: - type: Transform pos: -35.5,-9.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27577 components: - type: Transform pos: 8.5,-33.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 28214 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-16.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: FaxMachineBase entities: - uid: 1866 @@ -86947,6 +88048,11 @@ entities: parent: 8364 - type: FaxMachine name: Conference Room + - uid: 5869 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 8364 - uid: 8859 components: - type: Transform @@ -87059,21 +88165,6 @@ entities: parent: 8364 - proto: filingCabinet entities: - - uid: 5523 - components: - - type: Transform - pos: -13.5,-11.5 - parent: 8364 - - uid: 5608 - components: - - type: Transform - pos: -5.5,-9.5 - parent: 8364 - - uid: 5877 - components: - - type: Transform - pos: 12.5,-12.5 - parent: 8364 - uid: 15378 components: - type: Transform @@ -87086,11 +88177,6 @@ entities: - type: Transform pos: 69.5,-49.5 parent: 8364 - - uid: 5340 - components: - - type: Transform - pos: -9.5,-21.5 - parent: 8364 - uid: 7274 components: - type: Transform @@ -87123,6 +88209,11 @@ entities: - type: Transform pos: 40.5,-18.5 parent: 8364 + - uid: 5523 + components: + - type: Transform + pos: -9.5,-23.5 + parent: 8364 - uid: 8767 components: - type: Transform @@ -87150,6 +88241,21 @@ entities: - type: Transform pos: -7.5,-65.5 parent: 8364 + - uid: 5635 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 8364 + - uid: 5645 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 8364 + - uid: 5646 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 8364 - uid: 7293 components: - type: Transform @@ -87191,6 +88297,8 @@ entities: - 16975 - 16976 - 23000 + - type: Fixtures + fixtures: {} - uid: 1447 components: - type: Transform @@ -87207,6 +88315,8 @@ entities: - 15393 - 15392 - 22624 + - type: Fixtures + fixtures: {} - uid: 1478 components: - type: Transform @@ -87217,6 +88327,8 @@ entities: - 5511 - 5512 - 5513 + - type: Fixtures + fixtures: {} - uid: 1907 components: - type: Transform @@ -87235,6 +88347,8 @@ entities: - 5278 - 16627 - 5264 + - type: Fixtures + fixtures: {} - uid: 3213 components: - type: Transform @@ -87248,12 +88362,16 @@ entities: - 14149 - 22663 - 19972 + - type: Fixtures + fixtures: {} - uid: 7797 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,18.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 10714 components: - type: Transform @@ -87269,6 +88387,8 @@ entities: - 8080 - 8110 - 22635 + - type: Fixtures + fixtures: {} - uid: 16454 components: - type: Transform @@ -87286,6 +88406,8 @@ entities: - 14342 - 21815 - 21816 + - type: Fixtures + fixtures: {} - uid: 17069 components: - type: Transform @@ -87299,6 +88421,8 @@ entities: - 17087 - 26635 - 16853 + - type: Fixtures + fixtures: {} - uid: 17071 components: - type: Transform @@ -87321,6 +88445,8 @@ entities: - 16943 - 1652 - 22561 + - type: Fixtures + fixtures: {} - uid: 19166 components: - type: Transform @@ -87333,6 +88459,8 @@ entities: - 16977 - 23151 - 19168 + - type: Fixtures + fixtures: {} - uid: 21479 components: - type: Transform @@ -87348,6 +88476,8 @@ entities: - 8080 - 8110 - 22635 + - type: Fixtures + fixtures: {} - uid: 21545 components: - type: Transform @@ -87364,6 +88494,8 @@ entities: - 21539 - 21540 - 22704 + - type: Fixtures + fixtures: {} - uid: 21794 components: - type: Transform @@ -87379,6 +88511,8 @@ entities: - 21540 - 21542 - 21541 + - type: Fixtures + fixtures: {} - uid: 22560 components: - type: Transform @@ -87401,6 +88535,8 @@ entities: - 16943 - 1652 - 22561 + - type: Fixtures + fixtures: {} - uid: 22569 components: - type: Transform @@ -87418,6 +88554,8 @@ entities: - 18754 - 18753 - 18752 + - type: Fixtures + fixtures: {} - uid: 22590 components: - type: Transform @@ -87434,6 +88572,8 @@ entities: - 1652 - 16943 - 1672 + - type: Fixtures + fixtures: {} - uid: 22592 components: - type: Transform @@ -87452,6 +88592,8 @@ entities: - 6910 - 14556 - 14153 + - type: Fixtures + fixtures: {} - uid: 22595 components: - type: Transform @@ -87462,6 +88604,8 @@ entities: devices: - 22597 - 5754 + - type: Fixtures + fixtures: {} - uid: 22604 components: - type: Transform @@ -87477,6 +88621,8 @@ entities: - 14129 - 14601 - 14630 + - type: Fixtures + fixtures: {} - uid: 22605 components: - type: Transform @@ -87492,6 +88638,8 @@ entities: - 14129 - 14601 - 14630 + - type: Fixtures + fixtures: {} - uid: 22616 components: - type: Transform @@ -87515,6 +88663,8 @@ entities: - 6760 - 6910 - 13473 + - type: Fixtures + fixtures: {} - uid: 22619 components: - type: Transform @@ -87537,6 +88687,8 @@ entities: - 6760 - 6910 - 13473 + - type: Fixtures + fixtures: {} - uid: 22627 components: - type: Transform @@ -87547,6 +88699,8 @@ entities: devices: - 22626 - 13473 + - type: Fixtures + fixtures: {} - uid: 22629 components: - type: Transform @@ -87566,6 +88720,8 @@ entities: - 6683 - 6682 - 6685 + - type: Fixtures + fixtures: {} - uid: 22638 components: - type: Transform @@ -87584,6 +88740,8 @@ entities: - 13385 - 13386 - 13388 + - type: Fixtures + fixtures: {} - uid: 22643 components: - type: Transform @@ -87594,6 +88752,8 @@ entities: devices: - 22645 - 22646 + - type: Fixtures + fixtures: {} - uid: 22654 components: - type: Transform @@ -87610,6 +88770,8 @@ entities: - 9865 - 13394 - 7252 + - type: Fixtures + fixtures: {} - uid: 22656 components: - type: Transform @@ -87622,6 +88784,8 @@ entities: - 13394 - 22657 - 7252 + - type: Fixtures + fixtures: {} - uid: 22660 components: - type: Transform @@ -87647,6 +88811,8 @@ entities: - 13381 - 13383 - 13384 + - type: Fixtures + fixtures: {} - uid: 22664 components: - type: Transform @@ -87663,6 +88829,8 @@ entities: - 14094 - 11725 - 11719 + - type: Fixtures + fixtures: {} - uid: 22669 components: - type: Transform @@ -87677,6 +88845,8 @@ entities: - 18680 - 18682 - 22668 + - type: Fixtures + fixtures: {} - uid: 22671 components: - type: Transform @@ -87690,6 +88860,8 @@ entities: - 6211 - 5879 - 22672 + - type: Fixtures + fixtures: {} - uid: 22675 components: - type: Transform @@ -87705,6 +88877,8 @@ entities: - 7981 - 5546 - 7993 + - type: Fixtures + fixtures: {} - uid: 22683 components: - type: Transform @@ -87717,6 +88891,8 @@ entities: - 5546 - 7993 - 22681 + - type: Fixtures + fixtures: {} - uid: 22689 components: - type: Transform @@ -87738,6 +88914,8 @@ entities: - 26804 - 26805 - 26806 + - type: Fixtures + fixtures: {} - uid: 22692 components: - type: Transform @@ -87755,6 +88933,8 @@ entities: - 10523 - 26039 - 26038 + - type: Fixtures + fixtures: {} - uid: 22698 components: - type: Transform @@ -87769,6 +88949,8 @@ entities: - 19992 - 19991 - 19993 + - type: Fixtures + fixtures: {} - uid: 22705 components: - type: Transform @@ -87779,6 +88961,8 @@ entities: - 22707 - 13363 - 13364 + - type: Fixtures + fixtures: {} - uid: 22712 components: - type: Transform @@ -87799,6 +88983,8 @@ entities: - 13368 - 22713 - 23256 + - type: Fixtures + fixtures: {} - uid: 22716 components: - type: Transform @@ -87811,6 +88997,8 @@ entities: - 13370 - 13369 - 13362 + - type: Fixtures + fixtures: {} - uid: 22724 components: - type: Transform @@ -87824,6 +89012,8 @@ entities: - 6488 - 6489 - 19883 + - type: Fixtures + fixtures: {} - uid: 22727 components: - type: Transform @@ -87839,6 +89029,8 @@ entities: - 5511 - 5512 - 5513 + - type: Fixtures + fixtures: {} - uid: 22730 components: - type: Transform @@ -87853,6 +89045,8 @@ entities: - 6463 - 6464 - 6467 + - type: Fixtures + fixtures: {} - uid: 22962 components: - type: Transform @@ -87862,6 +89056,8 @@ entities: devices: - 22958 - 14192 + - type: Fixtures + fixtures: {} - uid: 23116 components: - type: Transform @@ -87876,6 +89072,8 @@ entities: - 5183 - 5182 - 23117 + - type: Fixtures + fixtures: {} - uid: 23266 components: - type: Transform @@ -87890,6 +89088,8 @@ entities: - 7078 - 7180 - 7043 + - type: Fixtures + fixtures: {} - uid: 23900 components: - type: Transform @@ -87906,6 +89106,8 @@ entities: - 7390 - 7146 - 23935 + - type: Fixtures + fixtures: {} - uid: 23936 components: - type: Transform @@ -87921,6 +89123,8 @@ entities: - 7390 - 7146 - 23935 + - type: Fixtures + fixtures: {} - uid: 25807 components: - type: Transform @@ -87936,6 +89140,8 @@ entities: - 7180 - 7043 - 11722 + - type: Fixtures + fixtures: {} - uid: 25832 components: - type: Transform @@ -87946,6 +89152,8 @@ entities: - 25831 - 21816 - 21815 + - type: Fixtures + fixtures: {} - uid: 25835 components: - type: Transform @@ -87956,6 +89164,8 @@ entities: - 25836 - 21814 - 21812 + - type: Fixtures + fixtures: {} - uid: 25891 components: - type: Transform @@ -87968,6 +89178,8 @@ entities: - 9811 - 5879 - 6211 + - type: Fixtures + fixtures: {} - uid: 25916 components: - type: Transform @@ -87977,6 +89189,8 @@ entities: - type: DeviceList devices: - 25914 + - type: Fixtures + fixtures: {} - uid: 25965 components: - type: Transform @@ -87991,6 +89205,8 @@ entities: - 25960 - 25961 - 25962 + - type: Fixtures + fixtures: {} - uid: 26159 components: - type: Transform @@ -88008,6 +89224,8 @@ entities: - 8689 - 8708 - 8707 + - type: Fixtures + fixtures: {} - uid: 27407 components: - type: Transform @@ -88021,6 +89239,8 @@ entities: - 27404 - 27405 - 10877 + - type: Fixtures + fixtures: {} - uid: 27487 components: - type: Transform @@ -88033,6 +89253,8 @@ entities: - 27405 - 23151 - 16977 + - type: Fixtures + fixtures: {} - uid: 28498 components: - type: Transform @@ -88055,6 +89277,8 @@ entities: - 26207 - 26248 - 26235 + - type: Fixtures + fixtures: {} - uid: 28499 components: - type: Transform @@ -88072,6 +89296,8 @@ entities: - 28355 - 28444 - 26208 + - type: Fixtures + fixtures: {} - uid: 28500 components: - type: Transform @@ -88089,6 +89315,8 @@ entities: - 25646 - 25649 - 26248 + - type: Fixtures + fixtures: {} - uid: 28502 components: - type: Transform @@ -88100,6 +89328,8 @@ entities: - 9125 - 9127 - 9126 + - type: Fixtures + fixtures: {} - proto: FireAxeCabinetFilled entities: - uid: 17598 @@ -88107,12 +89337,16 @@ entities: - type: Transform pos: 6.5,-45.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 25064 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-9.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: FireExtinguisher entities: - uid: 2019 @@ -88519,6 +89753,24 @@ entities: - type: Transform pos: 23.5,-17.5 parent: 8364 + - uid: 4248 + components: + - type: Transform + pos: 10.5,-73.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26908 + - 28776 + - uid: 4251 + components: + - type: Transform + pos: 10.5,-74.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26908 + - 28776 - uid: 5182 components: - type: Transform @@ -89296,17 +90548,11 @@ entities: - type: Transform pos: 18.5,-13.5 parent: 8364 - - type: Door - secondsUntilStateChange: -46513.54 - state: Closing - uid: 13388 components: - type: Transform pos: 18.5,-14.5 parent: 8364 - - type: Door - secondsUntilStateChange: -46549.24 - state: Closing - uid: 13389 components: - type: Transform @@ -89462,9 +90708,6 @@ entities: - type: Transform pos: -34.5,-14.5 parent: 8364 - - type: Door - secondsUntilStateChange: -133471.08 - state: Closing - uid: 15010 components: - type: Transform @@ -90115,24 +91358,14 @@ entities: - 1907 - 17159 - 23133 - - uid: 28642 + - uid: 28731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,45.5 + pos: -7.5,41.5 parent: 8364 - type: DeviceNetwork deviceLists: - - 26323 - - uid: 28643 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,46.5 - parent: 8364 - - type: DeviceNetwork - deviceLists: - - 26323 + - 28739 - proto: Fireplace entities: - uid: 8894 @@ -91233,14 +92466,12 @@ entities: parent: 8364 - proto: GasOutletInjector entities: - - uid: 11752 + - uid: 3601 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-83.5 + rot: 1.5707963267948966 rad + pos: 14.5,-92.5 parent: 8364 - - type: AtmosPipeColor - color: '#947507FF' - uid: 15511 components: - type: Transform @@ -91277,12 +92508,14 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-64.5 parent: 8364 - - uid: 23157 + - uid: 26062 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-83.5 + pos: 14.5,-86.5 parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasPassiveGate entities: - uid: 21381 @@ -91299,6 +92532,14 @@ entities: - type: Transform pos: 15.5,-52.5 parent: 8364 + - uid: 4238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-83.5 + parent: 8364 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 12676 components: - type: Transform @@ -91401,14 +92642,19 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-50.5 parent: 8364 + - uid: 27476 + components: + - type: Transform + pos: 17.5,-85.5 + parent: 8364 - uid: 28362 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-87.5 + rot: 1.5707963267948966 rad + pos: 15.5,-87.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#3AB334FF' - uid: 28367 components: - type: Transform @@ -91474,6 +92720,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 4399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-87.5 + parent: 8364 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 4401 components: - type: Transform @@ -91489,6 +92743,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-87.5 + parent: 8364 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 5202 components: - type: Transform @@ -91742,12 +93004,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 12460 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-85.5 - parent: 8364 - uid: 13066 components: - type: Transform @@ -91756,6 +93012,22 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 13622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,45.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,46.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 13850 components: - type: Transform @@ -91785,7 +93057,7 @@ entities: pos: 17.5,-73.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15502 components: - type: Transform @@ -91800,7 +93072,7 @@ entities: pos: 13.5,-73.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15898 components: - type: Transform @@ -91840,14 +93112,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 16737 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-85.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 16988 components: - type: Transform @@ -92203,6 +93467,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 23147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-79.5 + parent: 8364 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 23184 components: - type: Transform @@ -92969,13 +94241,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 26579 - components: - - type: Transform - pos: 18.5,-80.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26638 components: - type: Transform @@ -93015,12 +94280,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 26933 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-85.5 - parent: 8364 - uid: 26957 components: - type: Transform @@ -93051,6 +94310,16 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 27119 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: 18.699781,-92.493706 + parent: 8364 + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 27169 components: - type: Transform @@ -93090,6 +94359,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 27488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-87.5 + parent: 8364 + - type: AtmosPipeColor + color: '#3AB334FF' - uid: 27549 components: - type: Transform @@ -93113,14 +94390,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 27705 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-85.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 27724 components: - type: Transform @@ -93267,6 +94536,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 28689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,45.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeFourway entities: - uid: 5316 @@ -93500,13 +94777,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26301 - components: - - type: Transform - pos: -6.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26359 components: - type: Transform @@ -93621,7 +94891,7 @@ entities: pos: 17.5,-77.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - proto: GasPipeSensorWaste entities: - uid: 16914 @@ -93641,6 +94911,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,42.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 567 components: - type: Transform @@ -93698,7 +94976,7 @@ entities: pos: 13.5,-77.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1617 components: - type: Transform @@ -93715,12 +94993,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' - - uid: 1627 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-83.5 - parent: 8364 - uid: 1643 components: - type: Transform @@ -93892,14 +95164,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4139 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-83.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4147 components: - type: Transform @@ -93963,6 +95227,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 4173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-82.5 + parent: 8364 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 4174 components: - type: Transform @@ -93984,7 +95256,7 @@ entities: pos: 13.5,-78.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4232 components: - type: Transform @@ -93993,6 +95265,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 4250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-81.5 + parent: 8364 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 4273 components: - type: Transform @@ -94180,12 +95460,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4493 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-83.5 - parent: 8364 - uid: 4498 components: - type: Transform @@ -94215,7 +95489,7 @@ entities: pos: 13.5,-81.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4529 components: - type: Transform @@ -94347,7 +95621,7 @@ entities: pos: 17.5,-75.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5274 components: - type: Transform @@ -94724,13 +95998,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7843 - components: - - type: Transform - pos: -10.5,44.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8118 components: - type: Transform @@ -94827,25 +96094,33 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8540 - components: - - type: Transform - pos: -13.5,42.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8541 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,45.5 + pos: -11.5,43.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 8549 components: - type: Transform - pos: -10.5,43.5 + rot: -1.5707963267948966 rad + pos: -10.5,42.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8558 + components: + - type: Transform + pos: -11.5,44.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,40.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -94865,6 +96140,30 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,46.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,42.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,42.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8742 components: - type: Transform @@ -94873,6 +96172,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,42.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8770 components: - type: Transform @@ -94891,10 +96198,10 @@ entities: - uid: 8885 components: - type: Transform - pos: -10.5,45.5 + pos: -6.5,40.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 8986 components: - type: Transform @@ -94903,6 +96210,30 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,46.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,46.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,46.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9221 components: - type: Transform @@ -95187,6 +96518,13 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10037 + components: + - type: Transform + pos: -13.5,45.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10400 components: - type: Transform @@ -95376,6 +96714,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 13621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,42.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 13661 components: - type: Transform @@ -95391,11 +96737,19 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 13847 + - uid: 13817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,45.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13821 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,-82.5 + pos: -11.5,42.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -95570,7 +96924,7 @@ entities: pos: 13.5,-76.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14703 components: - type: Transform @@ -95578,7 +96932,7 @@ entities: pos: 15.5,-73.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14916 components: - type: Transform @@ -95586,14 +96940,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 14918 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-84.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 14919 components: - type: Transform @@ -95610,13 +96956,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' - - uid: 15343 - components: - - type: Transform - pos: 15.5,-79.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 15367 components: - type: Transform @@ -95631,14 +96970,14 @@ entities: pos: 14.5,-73.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15481 components: - type: Transform pos: 13.5,-74.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15501 components: - type: Transform @@ -95668,7 +97007,7 @@ entities: pos: 13.5,-75.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15877 components: - type: Transform @@ -95720,25 +97059,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 15899 - components: - - type: Transform - pos: 22.5,-82.5 - parent: 8364 - - uid: 15951 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-84.5 - parent: 8364 - - uid: 15979 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-83.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 16511 components: - type: Transform @@ -95755,20 +97075,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16522 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-82.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 16540 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-84.5 - parent: 8364 - uid: 16590 components: - type: Transform @@ -95816,6 +97122,21 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' + - uid: 16731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-80.5 + parent: 8364 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16737 + components: + - type: Transform + pos: 14.5,-72.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' - uid: 16741 components: - type: Transform @@ -98869,14 +100190,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23154 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-84.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23156 components: - type: Transform @@ -98908,13 +100221,35 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 23165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-81.5 + parent: 8364 + - uid: 23166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-85.5 + parent: 8364 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 23168 components: - type: Transform pos: 13.5,-79.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' + - uid: 23170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-84.5 + parent: 8364 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 23178 components: - type: Transform @@ -102917,7 +104252,13 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,-82.5 + pos: 18.5,-84.5 + parent: 8364 + - uid: 23910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-85.5 parent: 8364 - uid: 23920 components: @@ -105917,10 +107258,9 @@ entities: - uid: 24519 components: - type: Transform - pos: 17.5,-79.5 + rot: 3.141592653589793 rad + pos: 18.5,-83.5 parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 24520 components: - type: Transform @@ -108077,12 +109417,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24973 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-82.5 - parent: 8364 - uid: 25006 components: - type: Transform @@ -108450,6 +109784,12 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 25091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-92.5 + parent: 8364 - uid: 25095 components: - type: Transform @@ -108955,6 +110295,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 25221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-83.5 + parent: 8364 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 25222 components: - type: Transform @@ -108970,6 +110318,19 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 25229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-92.5 + parent: 8364 + - uid: 25230 + components: + - type: Transform + pos: 14.5,-82.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' - uid: 25247 components: - type: Transform @@ -109954,6 +111315,12 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 26029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-92.5 + parent: 8364 - uid: 26041 components: - type: Transform @@ -109970,14 +111337,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26062 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-80.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26068 components: - type: Transform @@ -110768,20 +112127,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 26284 - components: - - type: Transform - pos: -4.5,40.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26285 - components: - - type: Transform - pos: -4.5,41.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26286 components: - type: Transform @@ -110806,14 +112151,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26289 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,40.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26290 components: - type: Transform @@ -110822,14 +112159,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26291 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,42.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26292 components: - type: Transform @@ -110870,14 +112199,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 26298 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,46.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26299 components: - type: Transform @@ -110893,14 +112214,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 26302 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,46.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26303 components: - type: Transform @@ -110916,78 +112229,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26307 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26308 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26309 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26310 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26311 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26312 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,42.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26313 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,42.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26314 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,42.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26315 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,42.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26325 components: - type: Transform @@ -111904,14 +113145,7 @@ entities: pos: 16.5,-73.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' - - uid: 26802 - components: - - type: Transform - pos: 14.5,-82.5 - parent: 8364 - - type: AtmosPipeColor - color: '#947507FF' + color: '#FF1212FF' - uid: 26803 components: - type: Transform @@ -111936,6 +113170,12 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 26933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-82.5 + parent: 8364 - uid: 26958 components: - type: Transform @@ -111952,6 +113192,13 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 26990 + components: + - type: Transform + pos: 15.5,-83.5 + parent: 8364 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 26998 components: - type: Transform @@ -111990,7 +113237,56 @@ entities: pos: 15.5,-81.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' + - uid: 27026 + components: + - type: Transform + pos: 14.5,-83.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 27061 + components: + - type: Transform + pos: 14.5,-84.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 27068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-86.5 + parent: 8364 + - uid: 27080 + components: + - type: Transform + pos: 15.5,-85.5 + parent: 8364 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 27118 + components: + - type: Transform + anchored: False + pos: 18.786913,-88.420395 + parent: 8364 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 27122 + components: + - type: Transform + pos: 18.5,-90.5 + parent: 8364 + - uid: 27140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-87.5 + parent: 8364 + - type: AtmosPipeColor + color: '#3AB334FF' - uid: 27157 components: - type: Transform @@ -112334,6 +113630,28 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 27619 + components: + - type: Transform + pos: 15.5,-86.5 + parent: 8364 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 27622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-87.5 + parent: 8364 + - uid: 27625 + components: + - type: Transform + anchored: False + pos: 18.078228,-90.046524 + parent: 8364 + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 27650 components: - type: Transform @@ -112365,6 +113683,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 27705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-82.5 + parent: 8364 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 27708 components: - type: Transform @@ -112397,10 +113723,10 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 27762 + - uid: 27763 components: - type: Transform - pos: 14.5,-80.5 + pos: 14.5,-85.5 parent: 8364 - type: AtmosPipeColor color: '#947507FF' @@ -112420,6 +113746,19 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 27850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-91.5 + parent: 8364 + - uid: 27857 + components: + - type: Transform + pos: 15.5,-84.5 + parent: 8364 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 27937 components: - type: Transform @@ -112882,38 +114221,18 @@ entities: - uid: 28357 components: - type: Transform - pos: 18.5,-82.5 + rot: 3.141592653589793 rad + pos: 13.5,-86.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 28358 components: - type: Transform - pos: 18.5,-83.5 + pos: 15.5,-82.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' - - uid: 28359 - components: - - type: Transform - pos: 18.5,-84.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 28360 - components: - - type: Transform - pos: 18.5,-85.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 28361 - components: - - type: Transform - pos: 18.5,-86.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 28363 components: - type: Transform @@ -113294,6 +114613,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 28701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,42.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeTJunction entities: - uid: 834 @@ -113437,11 +114764,11 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 7348 + - uid: 7853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,42.5 + rot: 3.141592653589793 rad + pos: -9.5,45.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -113452,14 +114779,38 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 8436 + - uid: 8540 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,45.5 + pos: -6.5,45.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,42.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,42.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,46.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8733 components: - type: Transform @@ -113520,6 +114871,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 13735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,41.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 14087 components: - type: Transform @@ -113527,7 +114886,7 @@ entities: pos: 15.5,-78.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14115 components: - type: Transform @@ -113592,14 +114951,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 15883 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-80.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 15885 components: - type: Transform @@ -113608,6 +114959,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 15959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-79.5 + parent: 8364 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 16134 components: - type: Transform @@ -113640,6 +114999,13 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 16623 + components: + - type: Transform + pos: 16.5,-79.5 + parent: 8364 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 16624 components: - type: Transform @@ -115820,14 +117186,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 26029 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-80.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26092 components: - type: Transform @@ -115983,21 +117341,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26294 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,42.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26305 - components: - - type: Transform - pos: -5.5,42.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26331 components: - type: Transform @@ -116411,7 +117754,7 @@ entities: pos: 16.5,-78.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14546 components: - type: Transform @@ -116594,7 +117937,7 @@ entities: pos: 15.5,-76.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - proto: GasPressurePump entities: - uid: 3993 @@ -116750,6 +118093,20 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 23148 + components: + - type: Transform + pos: 15.5,-77.5 + parent: 8364 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23150 + components: + - type: Transform + pos: 14.5,-80.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' - uid: 23247 components: - type: MetaData @@ -116767,13 +118124,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 27140 - components: - - type: Transform - pos: 15.5,-77.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 27152 components: - type: Transform @@ -116781,6 +118131,18 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' +- proto: GasPressureRegulator + entities: + - uid: 27706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-86.5 + parent: 8364 + - type: GasPressureRegulator + threshold: 95000 + - type: AtmosPipeColor + color: '#3AB334FF' - proto: GasThermoMachineFreezer entities: - uid: 3805 @@ -116868,7 +118230,7 @@ entities: - type: GasValve open: False - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16697 components: - type: Transform @@ -116897,15 +118259,16 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 27360 + - uid: 23008 components: - type: Transform - pos: 18.5,-81.5 + rot: 3.141592653589793 rad + pos: 16.5,-80.5 parent: 8364 - type: GasValve open: False - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 28365 components: - type: Transform @@ -116993,6 +118356,9 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-73.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28776 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5463 @@ -118880,7 +120246,7 @@ entities: parent: 8364 - type: DeviceNetwork deviceLists: - - 26323 + - 8404 - type: AtmosPipeColor color: '#0055CCFF' - uid: 28634 @@ -118891,7 +120257,7 @@ entities: parent: 8364 - type: DeviceNetwork deviceLists: - - 26323 + - 28739 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasVentPumpFreezer @@ -118990,6 +120356,9 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-74.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28776 - type: AtmosPipeColor color: '#990000FF' - uid: 4557 @@ -119055,6 +120424,24 @@ entities: - 22703 - type: AtmosPipeColor color: '#990000FF' + - uid: 8562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,41.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8577 + components: + - type: Transform + pos: -9.5,46.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 8404 - uid: 9375 components: - type: Transform @@ -120388,17 +121775,6 @@ entities: - 26234 - type: AtmosPipeColor color: '#990000FF' - - uid: 26306 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,41.5 - parent: 8364 - - type: DeviceNetwork - deviceLists: - - 26206 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26333 components: - type: Transform @@ -120861,27 +122237,17 @@ entities: - 28483 - type: AtmosPipeColor color: '#990000FF' - - uid: 28631 + - uid: 28728 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,41.5 + pos: -11.5,41.5 parent: 8364 - - type: DeviceNetwork - deviceLists: - - 26323 - type: AtmosPipeColor color: '#990000FF' - - uid: 28632 - components: - - type: Transform - pos: -10.5,46.5 - parent: 8364 - type: DeviceNetwork deviceLists: - - 26323 - - type: AtmosPipeColor - color: '#990000FF' + - 28739 - proto: GasVentScrubberFreezer entities: - uid: 26855 @@ -120903,7 +122269,7 @@ entities: pos: 17.5,-74.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15875 components: - type: Transform @@ -120919,21 +122285,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 23158 - components: - - type: Transform - pos: 14.5,-72.5 - parent: 8364 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 26095 + - uid: 23153 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-78.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 26124 components: - type: Transform @@ -121084,6 +122443,11 @@ entities: - type: Transform pos: -38.5,17.5 parent: 8364 + - uid: 231 + components: + - type: Transform + pos: -7.5,40.5 + parent: 8364 - uid: 265 components: - type: Transform @@ -121409,6 +122773,11 @@ entities: - type: Transform pos: -75.5,-2.5 parent: 8364 + - uid: 646 + components: + - type: Transform + pos: 14.5,-94.5 + parent: 8364 - uid: 649 components: - type: Transform @@ -121964,6 +123333,16 @@ entities: - type: Transform pos: -21.5,-70.5 parent: 8364 + - uid: 1627 + components: + - type: Transform + pos: 12.5,-93.5 + parent: 8364 + - uid: 1644 + components: + - type: Transform + pos: 15.5,-82.5 + parent: 8364 - uid: 1646 components: - type: Transform @@ -121977,7 +123356,7 @@ entities: - uid: 1676 components: - type: Transform - pos: 13.5,-82.5 + pos: 18.5,-82.5 parent: 8364 - uid: 1679 components: @@ -122074,6 +123453,11 @@ entities: - type: Transform pos: 29.5,-15.5 parent: 8364 + - uid: 1860 + components: + - type: Transform + pos: 16.5,-82.5 + parent: 8364 - uid: 1870 components: - type: Transform @@ -122724,6 +124108,11 @@ entities: - type: Transform pos: 74.5,-7.5 parent: 8364 + - uid: 2905 + components: + - type: Transform + pos: 16.5,-91.5 + parent: 8364 - uid: 2914 components: - type: Transform @@ -123204,6 +124593,11 @@ entities: - type: Transform pos: 15.5,-44.5 parent: 8364 + - uid: 3542 + components: + - type: Transform + pos: 16.5,-87.5 + parent: 8364 - uid: 3557 components: - type: Transform @@ -123512,7 +124906,7 @@ entities: - uid: 4045 components: - type: Transform - pos: 22.5,-82.5 + pos: 15.5,-90.5 parent: 8364 - uid: 4064 components: @@ -123644,135 +125038,70 @@ entities: - type: Transform pos: 13.5,-61.5 parent: 8364 + - uid: 4107 + components: + - type: Transform + pos: 14.5,-90.5 + parent: 8364 - uid: 4111 components: - type: Transform pos: 9.5,-64.5 parent: 8364 - - uid: 4135 - components: - - type: Transform - pos: 20.5,-82.5 - parent: 8364 - - uid: 4234 + - uid: 4254 components: - type: Transform pos: 14.5,-82.5 parent: 8364 - - uid: 4235 + - uid: 4264 components: - type: Transform - pos: 36.5,-94.5 - parent: 8364 - - uid: 4236 - components: - - type: Transform - pos: 36.5,-93.5 - parent: 8364 - - uid: 4237 - components: - - type: Transform - pos: 36.5,-92.5 - parent: 8364 - - uid: 4238 - components: - - type: Transform - pos: 34.5,-92.5 - parent: 8364 - - uid: 4239 - components: - - type: Transform - pos: 33.5,-92.5 - parent: 8364 - - uid: 4240 - components: - - type: Transform - pos: 32.5,-92.5 - parent: 8364 - - uid: 4241 - components: - - type: Transform - pos: 23.5,-82.5 - parent: 8364 - - uid: 4247 - components: - - type: Transform - pos: 31.5,-92.5 - parent: 8364 - - uid: 4263 - components: - - type: Transform - pos: 25.5,-92.5 + pos: 13.5,-82.5 parent: 8364 - uid: 4266 components: - type: Transform - pos: 30.5,-92.5 + pos: 12.5,-91.5 parent: 8364 - uid: 4267 components: - type: Transform - pos: 35.5,-92.5 + pos: 13.5,-90.5 parent: 8364 - uid: 4268 components: - type: Transform - pos: 24.5,-92.5 + pos: 13.5,-84.5 parent: 8364 - uid: 4270 components: - type: Transform - pos: 29.5,-92.5 - parent: 8364 - - uid: 4356 - components: - - type: Transform - pos: 15.5,-82.5 - parent: 8364 - - uid: 4379 - components: - - type: Transform - pos: 18.5,-86.5 + pos: 16.5,-85.5 parent: 8364 - uid: 4380 components: - type: Transform pos: 27.5,-79.5 parent: 8364 - - uid: 4394 - components: - - type: Transform - pos: 28.5,-92.5 - parent: 8364 - uid: 4395 components: - type: Transform - pos: 27.5,-92.5 + pos: 14.5,-84.5 parent: 8364 - uid: 4396 components: - type: Transform - pos: 26.5,-92.5 + pos: 13.5,-88.5 parent: 8364 - uid: 4397 components: - type: Transform - pos: 23.5,-92.5 - parent: 8364 - - uid: 4398 - components: - - type: Transform - pos: 21.5,-93.5 - parent: 8364 - - uid: 4399 - components: - - type: Transform - pos: 21.5,-92.5 + pos: 12.5,-86.5 parent: 8364 - uid: 4400 components: - type: Transform - pos: 22.5,-92.5 + pos: 15.5,-88.5 parent: 8364 - uid: 4405 components: @@ -123789,16 +125118,46 @@ entities: - type: Transform pos: -25.5,-84.5 parent: 8364 - - uid: 4425 + - uid: 4423 components: - type: Transform - pos: 21.5,-92.5 + pos: 14.5,-88.5 + parent: 8364 + - uid: 4426 + components: + - type: Transform + pos: 13.5,-94.5 + parent: 8364 + - uid: 4429 + components: + - type: Transform + pos: 12.5,-87.5 + parent: 8364 + - uid: 4430 + components: + - type: Transform + pos: 16.5,-93.5 + parent: 8364 + - uid: 4431 + components: + - type: Transform + pos: 12.5,-92.5 + parent: 8364 + - uid: 4432 + components: + - type: Transform + pos: 15.5,-84.5 parent: 8364 - uid: 4456 components: - type: Transform pos: -26.5,-84.5 parent: 8364 + - uid: 4466 + components: + - type: Transform + pos: 15.5,-94.5 + parent: 8364 - uid: 4475 components: - type: Transform @@ -125034,11 +126393,6 @@ entities: - type: Transform pos: -8.5,-62.5 parent: 8364 - - uid: 5271 - components: - - type: Transform - pos: 16.5,-82.5 - parent: 8364 - uid: 5275 components: - type: Transform @@ -125874,11 +127228,6 @@ entities: - type: Transform pos: -15.5,45.5 parent: 8364 - - uid: 8419 - components: - - type: Transform - pos: -15.5,44.5 - parent: 8364 - uid: 8426 components: - type: Transform @@ -125887,7 +127236,7 @@ entities: - uid: 8427 components: - type: Transform - pos: -7.5,41.5 + pos: -10.5,40.5 parent: 8364 - uid: 8430 components: @@ -125899,6 +127248,11 @@ entities: - type: Transform pos: 2.5,39.5 parent: 8364 + - uid: 8436 + components: + - type: Transform + pos: -7.5,46.5 + parent: 8364 - uid: 8442 components: - type: Transform @@ -125949,16 +127303,6 @@ entities: - type: Transform pos: -16.5,46.5 parent: 8364 - - uid: 8626 - components: - - type: Transform - pos: -10.5,43.5 - parent: 8364 - - uid: 8627 - components: - - type: Transform - pos: -9.5,41.5 - parent: 8364 - uid: 8631 components: - type: Transform @@ -125969,11 +127313,6 @@ entities: - type: Transform pos: 6.5,55.5 parent: 8364 - - uid: 8645 - components: - - type: Transform - pos: -12.5,43.5 - parent: 8364 - uid: 8681 components: - type: Transform @@ -127004,11 +128343,6 @@ entities: - type: Transform pos: 67.5,3.5 parent: 8364 - - uid: 10854 - components: - - type: Transform - pos: 35.5,-94.5 - parent: 8364 - uid: 10867 components: - type: Transform @@ -127819,11 +129153,6 @@ entities: - type: Transform pos: 43.5,-34.5 parent: 8364 - - uid: 19941 - components: - - type: Transform - pos: -14.5,43.5 - parent: 8364 - uid: 20150 components: - type: Transform @@ -128124,6 +129453,11 @@ entities: - type: Transform pos: 10.5,-52.5 parent: 8364 + - uid: 23006 + components: + - type: Transform + pos: 12.5,-85.5 + parent: 8364 - uid: 23007 components: - type: Transform @@ -128154,6 +129488,11 @@ entities: - type: Transform pos: -18.5,-70.5 parent: 8364 + - uid: 23158 + components: + - type: Transform + pos: 20.5,-82.5 + parent: 8364 - uid: 23176 components: - type: Transform @@ -128249,20 +129588,21 @@ entities: - type: Transform pos: -5.5,-93.5 parent: 8364 - - uid: 25230 + - uid: 24973 components: - type: Transform - pos: 24.5,-94.5 + pos: 21.5,-82.5 parent: 8364 - - uid: 25245 + - uid: 25248 components: - type: Transform - pos: 23.5,-94.5 + pos: 19.5,-82.5 parent: 8364 - uid: 25249 components: - type: Transform - pos: 21.5,-94.5 + rot: 1.5707963267948966 rad + pos: 20.5,-92.5 parent: 8364 - uid: 25407 components: @@ -128344,66 +129684,21 @@ entities: - type: Transform pos: 70.5,-0.5 parent: 8364 - - uid: 26950 - components: - - type: Transform - pos: 22.5,-94.5 - parent: 8364 - uid: 26988 components: - type: Transform pos: -15.5,-83.5 parent: 8364 - - uid: 27179 - components: - - type: Transform - pos: 27.5,-94.5 - parent: 8364 - - uid: 27184 - components: - - type: Transform - pos: 25.5,-94.5 - parent: 8364 - - uid: 27185 - components: - - type: Transform - pos: 28.5,-94.5 - parent: 8364 - - uid: 27186 - components: - - type: Transform - pos: 29.5,-94.5 - parent: 8364 - - uid: 27187 - components: - - type: Transform - pos: 26.5,-94.5 - parent: 8364 - - uid: 27192 - components: - - type: Transform - pos: 30.5,-94.5 - parent: 8364 - - uid: 27193 - components: - - type: Transform - pos: 32.5,-94.5 - parent: 8364 - - uid: 27194 - components: - - type: Transform - pos: 31.5,-94.5 - parent: 8364 - - uid: 27195 - components: - - type: Transform - pos: 33.5,-94.5 - parent: 8364 - uid: 27206 components: - type: Transform pos: -21.5,-82.5 parent: 8364 + - uid: 27490 + components: + - type: Transform + pos: 29.5,-87.5 + parent: 8364 - uid: 27532 components: - type: Transform @@ -128424,10 +129719,11 @@ entities: - type: Transform pos: 86.5,-2.5 parent: 8364 - - uid: 27763 + - uid: 27618 components: - type: Transform - pos: 21.5,-82.5 + rot: 1.5707963267948966 rad + pos: 19.5,-95.5 parent: 8364 - uid: 27791 components: @@ -128454,11 +129750,6 @@ entities: - type: Transform pos: 60.5,-69.5 parent: 8364 - - uid: 27990 - components: - - type: Transform - pos: 34.5,-94.5 - parent: 8364 - uid: 28143 components: - type: Transform @@ -128579,11 +129870,26 @@ entities: - type: Transform pos: -30.5,0.5 parent: 8364 + - uid: 28631 + components: + - type: Transform + pos: -7.5,42.5 + parent: 8364 + - uid: 28632 + components: + - type: Transform + pos: -10.5,42.5 + parent: 8364 - uid: 28638 components: - type: Transform pos: -29.5,0.5 parent: 8364 + - uid: 28643 + components: + - type: Transform + pos: -15.5,43.5 + parent: 8364 - uid: 28653 components: - type: Transform @@ -128594,6 +129900,69 @@ entities: - type: Transform pos: -27.5,0.5 parent: 8364 + - uid: 28686 + components: + - type: Transform + pos: -7.5,45.5 + parent: 8364 + - uid: 28697 + components: + - type: Transform + pos: -14.5,44.5 + parent: 8364 + - uid: 28777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-95.5 + parent: 8364 + - uid: 28779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-94.5 + parent: 8364 + - uid: 28780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-93.5 + parent: 8364 + - uid: 28784 + components: + - type: Transform + pos: 22.5,-90.5 + parent: 8364 + - uid: 28785 + components: + - type: Transform + pos: 22.5,-89.5 + parent: 8364 + - uid: 28786 + components: + - type: Transform + pos: 23.5,-88.5 + parent: 8364 + - uid: 28787 + components: + - type: Transform + pos: 24.5,-88.5 + parent: 8364 + - uid: 28788 + components: + - type: Transform + pos: 27.5,-87.5 + parent: 8364 + - uid: 28789 + components: + - type: Transform + pos: 26.5,-87.5 + parent: 8364 + - uid: 28790 + components: + - type: Transform + pos: 30.5,-87.5 + parent: 8364 - proto: GrilleBroken entities: - uid: 453 @@ -128835,7 +130204,7 @@ entities: - uid: 16955 components: - type: Transform - pos: 9.5,-89.5 + pos: 9.5,-90.5 parent: 8364 - uid: 24388 components: @@ -128919,6 +130288,17 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-83.5 parent: 8364 + - uid: 28778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-86.5 + parent: 8364 + - uid: 28781 + components: + - type: Transform + pos: 20.5,-93.5 + parent: 8364 - proto: GrilleSpawner entities: - uid: 9554 @@ -129180,44 +130560,207 @@ entities: entities: - uid: 7903 components: + - type: MetaData + name: disabler safe (5) - type: Transform + anchored: True pos: -14.5,41.5 parent: 8364 + - type: Lock + locked: False + - type: Physics + bodyType: Static + - type: Label + currentLabel: 5 + - type: NameModifier + baseName: disabler safe - proto: GunSafeLaserCarbine entities: - uid: 26316 components: + - type: MetaData + name: laser safe (4) - type: Transform + anchored: True pos: -8.5,47.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: + - 26291 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Label + currentLabel: 4 + - type: NameModifier + baseName: laser safe - proto: GunSafePistolMk58 entities: - - uid: 4932 + - uid: 4933 components: + - type: MetaData + name: mk58 safe (4) - type: Transform - pos: -14.5,45.5 + anchored: True + pos: -13.5,47.5 parent: 8364 + - type: Physics + bodyType: Static + - type: Label + currentLabel: 4 + - type: NameModifier + baseName: mk58 safe - proto: GunSafeRifleLecter entities: - uid: 25688 components: + - type: MetaData + name: lecter safe (4) - type: Transform + anchored: True pos: -9.5,47.5 parent: 8364 + - type: Physics + bodyType: Static + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 26298 + - 26301 + - 26302 + - 26305 + - 26306 + - 26307 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Label + currentLabel: 4 + - type: NameModifier + baseName: lecter safe - proto: GunSafeShotgunKammerer entities: - uid: 26317 components: + - type: MetaData + name: kammerer safe (3) - type: Transform + anchored: True pos: -8.5,44.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: + - 26308 + - 26309 + - 26310 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Label + currentLabel: 3 + - type: NameModifier + baseName: kammerer safe - proto: GunSafeSubMachineGunDrozd entities: - uid: 8594 components: + - type: MetaData + name: drozd safe (3) - type: Transform + anchored: True pos: -9.5,44.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: + - 26313 + - 26312 + - 26311 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Label + currentLabel: 3 + - type: NameModifier + baseName: drozd safe - proto: GyroscopeUnanchored entities: - uid: 25012 @@ -129252,16 +130795,16 @@ entities: parent: 8364 - proto: HandLabeler entities: - - uid: 561 - components: - - type: Transform - pos: -9.5991,-25.410784 - parent: 8364 - uid: 5001 components: - type: Transform pos: 38.4924,-28.821447 parent: 8364 + - uid: 5909 + components: + - type: Transform + pos: -9.530318,-27.415377 + parent: 8364 - uid: 14338 components: - type: Transform @@ -129306,12 +130849,6 @@ entities: parent: 8364 - proto: HeatExchanger entities: - - uid: 4173 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-85.5 - parent: 8364 - uid: 24960 components: - type: Transform @@ -129320,14 +130857,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 26849 + - uid: 27067 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-85.5 + rot: 1.5707963267948966 rad + pos: 14.5,-87.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - proto: Hemostat entities: - uid: 21263 @@ -129338,33 +130875,12 @@ entities: parent: 8364 - proto: HighSecArmoryLocked entities: - - uid: 346 + - uid: 28705 components: - type: MetaData - name: Armory\ + name: high security door (Red Armory) - type: Transform - pos: -9.5,40.5 - parent: 8364 - - uid: 5072 - components: - - type: MetaData - name: Armory - - type: Transform - pos: -9.5,42.5 - parent: 8364 - - uid: 7292 - components: - - type: MetaData - name: High-Sec Armory - - type: Transform - pos: -13.5,43.5 - parent: 8364 - - uid: 7821 - components: - - type: MetaData - name: High-Sec Armory - - type: Transform - pos: -11.5,43.5 + pos: -11.5,44.5 parent: 8364 - proto: HighSecCommandLocked entities: @@ -129406,6 +130922,11 @@ entities: - type: Transform pos: 10.513089,-49.606483 parent: 8364 + - uid: 28775 + components: + - type: Transform + pos: 26.549065,-81.36468 + parent: 8364 - proto: HolopadAiCore entities: - uid: 27840 @@ -129495,7 +131016,7 @@ entities: - uid: 23250 components: - type: Transform - pos: -9.5,-23.5 + pos: -8.5,-23.5 parent: 8364 - proto: HolopadCommandHos entities: @@ -129539,6 +131060,13 @@ entities: - type: Transform pos: 16.5,-56.5 parent: 8364 +- proto: HolopadEngineeringAtmosTeg + entities: + - uid: 23159 + components: + - type: Transform + pos: 18.5,-74.5 + parent: 8364 - proto: HolopadEngineeringBreakroom entities: - uid: 28086 @@ -129721,10 +131249,10 @@ entities: parent: 8364 - proto: HolopadSecurityArmory entities: - - uid: 19947 + - uid: 28699 components: - type: Transform - pos: -12.5,45.5 + pos: -12.5,42.5 parent: 8364 - proto: HolopadSecurityArrivalsCheckpoint entities: @@ -130199,51 +131727,69 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-15.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 5526 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-14.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 7643 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-19.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 7752 components: - type: Transform pos: 3.5,-13.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 9366 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-15.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 9367 components: - type: Transform pos: -4.5,-13.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27818 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-14.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27833 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-14.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27836 components: - type: Transform pos: -0.5,-13.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: IntercomCommand entities: - uid: 8390 @@ -130252,23 +131798,31 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-9.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 9579 components: - type: Transform pos: -33.5,7.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 14972 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-27.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27444 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-64.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: IntercomCommon entities: - uid: 6933 @@ -130276,33 +131830,45 @@ entities: - type: Transform pos: 56.5,-11.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 20937 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,6.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 21174 components: - type: Transform pos: -40.5,0.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 21241 components: - type: Transform pos: 6.5,0.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 28482 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,32.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 28513 components: - type: Transform pos: -18.5,31.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: IntercomEngineering entities: - uid: 3731 @@ -130311,12 +131877,16 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-45.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 21407 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-53.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: IntercomMedical entities: - uid: 5556 @@ -130324,38 +131894,52 @@ entities: - type: Transform pos: 22.5,-23.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 5783 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-42.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 6930 components: - type: Transform pos: 28.5,-15.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 9333 components: - type: Transform pos: 38.5,-54.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 9395 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-34.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 26736 components: - type: Transform pos: 21.5,-28.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27408 components: - type: Transform pos: 33.5,-22.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: IntercomScience entities: - uid: 5551 @@ -130364,23 +131948,31 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,-16.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 6934 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-16.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 9575 components: - type: Transform pos: 58.5,-38.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 28250 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-18.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: IntercomSecurity entities: - uid: 28514 @@ -130388,12 +131980,16 @@ entities: - type: Transform pos: -3.5,29.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 28515 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,42.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: IntercomSupply entities: - uid: 6438 @@ -130401,17 +131997,23 @@ entities: - type: Transform pos: -20.5,-20.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 7628 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-22.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 8388 components: - type: Transform pos: -26.5,-28.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: JanitorialTrolley entities: - uid: 27565 @@ -130451,18 +132053,34 @@ entities: parent: 8364 - proto: JetpackSecurityFilled entities: - - uid: 8562 + - uid: 4931 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.395266,46.522804 - parent: 8364 - - uid: 8593 + parent: 271 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26284 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.634968,46.658318 - parent: 8364 + parent: 19941 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26322 + components: + - type: Transform + parent: 26315 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28718 + components: + - type: Transform + parent: 28717 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: Jukebox entities: - uid: 28320 @@ -130723,11 +132341,6 @@ entities: parent: 8364 - proto: LandMineExplosive entities: - - uid: 9698 - components: - - type: Transform - pos: -19.547722,47.450706 - parent: 8364 - uid: 9699 components: - type: Transform @@ -130791,61 +132404,6 @@ entities: - type: Transform pos: -28.5095,-5.350807 parent: 8364 -- proto: LockableButtonArmory - entities: - - uid: 8408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,44.5 - parent: 8364 - - type: DeviceLinkSource - linkedPorts: - 13622: - - - Pressed - - Toggle - - uid: 9150 - components: - - type: MetaData - name: Shutters - - type: Transform - pos: -6.5,35.5 - parent: 8364 - - type: DeviceLinkSource - linkedPorts: - 9145: - - - Pressed - - Toggle - 9147: - - - Pressed - - Toggle - 9146: - - - Pressed - - Toggle - 9139: - - - Pressed - - Toggle - 9141: - - - Pressed - - Toggle - 9142: - - - Pressed - - Toggle - 9148: - - - Pressed - - Toggle - 9143: - - - Pressed - - Toggle - 9144: - - - Pressed - - Toggle - 9164: - - - Pressed - - Toggle - 9165: - - - Pressed - - Toggle - proto: LockableButtonBrig entities: - uid: 9152 @@ -130864,6 +132422,8 @@ entities: 8526: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 28605 components: - type: MetaData @@ -130877,6 +132437,8 @@ entities: 46: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonChiefMedicalOfficer entities: - uid: 3809 @@ -130892,6 +132454,36 @@ entities: 2506: - - Pressed - Open + - type: Fixtures + fixtures: {} +- proto: LockableButtonEngineering + entities: + - uid: 27179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-90.5 + parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 28361: + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} + - uid: 27180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-88.5 + parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 27194: + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonHeadOfSecurity entities: - uid: 20156 @@ -130925,6 +132517,8 @@ entities: 19949: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockerAtmosphericsFilledHardsuit entities: - uid: 3883 @@ -131783,6 +133377,24 @@ entities: - type: Transform pos: -6.5,34.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: LockerWeldingSuppliesFilled entities: - uid: 1612 @@ -132023,11 +133635,6 @@ entities: parent: 8364 - proto: LootSpawnerSecurity entities: - - uid: 8535 - components: - - type: Transform - pos: -0.5,43.5 - parent: 8364 - uid: 10878 components: - type: Transform @@ -132177,6 +133784,22 @@ entities: - type: Transform pos: 7.4027314,48.74582 parent: 8364 +- proto: MagazinePistolSubMachineGun + entities: + - uid: 26311 + components: + - type: Transform + parent: 8594 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26313 + components: + - type: Transform + parent: 8594 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: MagazinePistolSubMachineGunTopMounted entities: - uid: 965 @@ -132189,6 +133812,36 @@ entities: - type: Transform pos: -1.3689646,53.71386 parent: 8364 +- proto: MagazineRifle + entities: + - uid: 26298 + components: + - type: Transform + parent: 25688 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26301 + components: + - type: Transform + parent: 25688 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26306 + components: + - type: Transform + parent: 25688 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26307 + components: + - type: Transform + parent: 25688 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: MailingUnit entities: - uid: 8179 @@ -132564,6 +134217,11 @@ entities: - type: Transform pos: -34.5,-63.5 parent: 8364 + - uid: 27192 + components: + - type: Transform + pos: 19.5,-93.5 + parent: 8364 - uid: 27929 components: - type: Transform @@ -132598,10 +134256,10 @@ entities: parent: 8364 - proto: MaterialCloth entities: - - uid: 5868 + - uid: 6390 components: - type: Transform - pos: -9.522169,-25.204441 + pos: -9.606551,-24.320076 parent: 8364 - proto: MaterialDiamond1 entities: @@ -132612,10 +134270,10 @@ entities: parent: 8364 - proto: MaterialDurathread entities: - - uid: 6390 + - uid: 9260 components: - type: Transform - pos: -9.303419,-25.688816 + pos: -9.231335,-24.591099 parent: 8364 - proto: MaterialWoodPlank entities: @@ -132874,62 +134532,86 @@ entities: - type: Transform pos: 19.5,5.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 6261 components: - type: Transform pos: 19.5,3.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 6262 components: - type: Transform pos: 10.5,2.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 6263 components: - type: Transform pos: 10.5,6.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 7084 components: - type: Transform pos: 11.5,-20.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 7174 components: - type: Transform pos: 32.5,1.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 8834 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,40.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 13778 components: - type: Transform pos: -51.5,2.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 14196 components: - type: Transform pos: -44.5,-13.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 15717 components: - type: Transform pos: -36.5,-53.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 16057 components: - type: Transform pos: -44.5,-15.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 16082 components: - type: Transform pos: -44.5,-11.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: ModularGrenade entities: - uid: 26858 @@ -133517,16 +135199,58 @@ entities: parent: 8364 - proto: NitrogenTankFilled entities: + - uid: 346 + components: + - type: Transform + parent: 271 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 7286 components: - type: Transform pos: -13.543497,50.592064 parent: 8364 - - uid: 27177 + - uid: 19946 components: - type: Transform - pos: 26.471306,-83.42229 + parent: 19941 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26321 + components: + - type: Transform + parent: 26315 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28360 + components: + - type: Transform + pos: 25.662886,-85.48931 parent: 8364 + - uid: 28691 + components: + - type: Transform + parent: 26319 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28693 + components: + - type: Transform + parent: 26320 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28720 + components: + - type: Transform + parent: 28717 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: NitrousOxideTankFilled entities: - uid: 21342 @@ -133541,6 +135265,8 @@ entities: - type: Transform pos: 32.5,-6.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: NTDefaultCircuitBoard entities: - uid: 27913 @@ -133754,10 +135480,10 @@ entities: - type: Transform pos: 78.58031,-56.4234 parent: 8364 - - uid: 27619 + - uid: 27744 components: - type: Transform - pos: 26.61721,-83.45356 + pos: 25.423183,-85.45804 parent: 8364 - proto: PackPaperRollingFilters entities: @@ -133773,6 +135499,8 @@ entities: - type: Transform pos: 53.5,-7.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PaintingCafeTerraceAtNight entities: - uid: 15069 @@ -133780,6 +135508,8 @@ entities: - type: Transform pos: -9.5,-20.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PaintingMonkey entities: - uid: 7067 @@ -133787,6 +135517,8 @@ entities: - type: Transform pos: 29.5,-2.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PaintingMoony entities: - uid: 15307 @@ -133794,6 +135526,8 @@ entities: - type: Transform pos: 62.5,-11.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PaintingNightHawks entities: - uid: 19882 @@ -133801,6 +135535,8 @@ entities: - type: Transform pos: 8.5,-10.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PaintingSadClown entities: - uid: 26595 @@ -133808,6 +135544,8 @@ entities: - type: Transform pos: 20.5,1.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PaintingTheGreatWave entities: - uid: 15278 @@ -133815,6 +135553,8 @@ entities: - type: Transform pos: 10.5,-19.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PaintingTheScream entities: - uid: 15309 @@ -133822,6 +135562,8 @@ entities: - type: Transform pos: 60.5,-11.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PaintingTheSonOfMan entities: - uid: 15310 @@ -133829,6 +135571,8 @@ entities: - type: Transform pos: 58.5,-11.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PaladinCircuitBoard entities: - uid: 27911 @@ -133903,31 +135647,6 @@ entities: - type: Transform pos: 6.2533393,-15.307499 parent: 8364 - - uid: 5743 - components: - - type: Transform - pos: -13.5,-21.5 - parent: 8364 - - uid: 5744 - components: - - type: Transform - pos: -13.5,-21.5 - parent: 8364 - - uid: 5745 - components: - - type: Transform - pos: -13.5,-21.5 - parent: 8364 - - uid: 5746 - components: - - type: Transform - pos: -13.5,-21.5 - parent: 8364 - - uid: 5747 - components: - - type: Transform - pos: -13.5,-21.5 - parent: 8364 - uid: 6426 components: - type: Transform @@ -134192,6 +135911,11 @@ entities: parent: 8364 - proto: PaperBin20 entities: + - uid: 5743 + components: + - type: Transform + pos: -13.5,-21.5 + parent: 8364 - uid: 8551 components: - type: Transform @@ -134279,6 +136003,11 @@ entities: parent: 8364 - proto: PartRodMetal entities: + - uid: 4237 + components: + - type: Transform + pos: 19.48934,-92.46756 + parent: 8364 - uid: 4558 components: - type: Transform @@ -134372,6 +136101,11 @@ entities: - type: Transform pos: 6.7796197,-15.189568 parent: 8364 + - uid: 5744 + components: + - type: Transform + pos: -13.786074,-21.56161 + parent: 8364 - uid: 5771 components: - type: Transform @@ -134685,12 +136419,33 @@ entities: parent: 8364 - proto: PlasmaWindoorSecureArmoryLocked entities: - - uid: 28635 + - uid: 28503 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,46.5 + rot: 3.141592653589793 rad + pos: -13.5,44.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 26285: + - - DoorStatus + - Close +- proto: PlasmaWindoorSecureSecurityLocked + entities: + - uid: 26285 + components: + - type: Transform + pos: -13.5,44.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28503: + - - DoorStatus + - Close - proto: PlasticFlapsAirtightClear entities: - uid: 3067 @@ -134774,6 +136529,11 @@ entities: parent: 8364 - proto: PortableFlasher entities: + - uid: 7349 + components: + - type: Transform + pos: -14.5,47.5 + parent: 8364 - uid: 7631 components: - type: Transform @@ -134794,10 +136554,10 @@ entities: enabled: False - type: Physics bodyType: Dynamic - - uid: 19946 + - uid: 28721 components: - type: Transform - pos: -10.5,44.5 + pos: -10.5,47.5 parent: 8364 - proto: PortableGeneratorJrPacman entities: @@ -134966,11 +136726,15 @@ entities: - type: Transform pos: 3.5,6.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 17780 components: - type: Transform pos: 8.5,-45.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterContrabandClown entities: - uid: 21985 @@ -134978,6 +136742,8 @@ entities: - type: Transform pos: 23.5,3.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterContrabandEAT entities: - uid: 9443 @@ -134985,11 +136751,15 @@ entities: - type: Transform pos: 40.5,-10.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 14927 components: - type: Transform pos: -34.5,-44.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterContrabandFreeDrone entities: - uid: 6140 @@ -134997,6 +136767,8 @@ entities: - type: Transform pos: -48.5,-5.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterContrabandGreyTide entities: - uid: 14108 @@ -135004,11 +136776,15 @@ entities: - type: Transform pos: -47.5,2.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 21616 components: - type: Transform pos: 41.5,-69.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterContrabandHackingGuide entities: - uid: 11716 @@ -135016,6 +136792,8 @@ entities: - type: Transform pos: -41.5,6.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterContrabandHighEffectEngineering entities: - uid: 27443 @@ -135023,6 +136801,8 @@ entities: - type: Transform pos: 10.5,-62.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterContrabandLamarr entities: - uid: 497 @@ -135030,6 +136810,8 @@ entities: - type: Transform pos: 75.5,-34.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterContrabandNuclearDeviceInformational entities: - uid: 21973 @@ -135037,6 +136819,8 @@ entities: - type: Transform pos: -34.5,5.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterContrabandRealExomorph entities: - uid: 27558 @@ -135044,6 +136828,8 @@ entities: - type: Transform pos: 3.5,-37.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterContrabandRouny entities: - uid: 7995 @@ -135051,6 +136837,8 @@ entities: - type: Transform pos: 6.5,-37.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterContrabandTools entities: - uid: 11717 @@ -135058,11 +136846,15 @@ entities: - type: Transform pos: -39.5,6.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27442 components: - type: Transform pos: 10.5,-65.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterContrabandUnreadableAnnouncement entities: - uid: 2584 @@ -135070,6 +136862,8 @@ entities: - type: Transform pos: 58.5,-34.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterLegitAnatomyPoster entities: - uid: 19236 @@ -135077,11 +136871,15 @@ entities: - type: Transform pos: 17.5,-33.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 26592 components: - type: Transform pos: 28.5,-27.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterLegitBuild entities: - uid: 17020 @@ -135089,6 +136887,8 @@ entities: - type: Transform pos: 2.5,-50.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterLegitCarpMount entities: - uid: 26594 @@ -135096,6 +136896,8 @@ entities: - type: Transform pos: -27.5,-28.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterLegitCleanliness entities: - uid: 5002 @@ -135103,6 +136905,8 @@ entities: - type: Transform pos: 3.5,-32.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterLegitDickGumshue entities: - uid: 21631 @@ -135110,6 +136914,8 @@ entities: - type: Transform pos: 43.5,-64.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterLegitFruitBowl entities: - uid: 9442 @@ -135117,6 +136923,8 @@ entities: - type: Transform pos: 33.5,-10.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterLegitHelpOthers entities: - uid: 484 @@ -135124,11 +136932,15 @@ entities: - type: Transform pos: 26.5,18.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27412 components: - type: Transform pos: 10.5,-37.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterLegitHereForYourSafety entities: - uid: 27411 @@ -135136,6 +136948,8 @@ entities: - type: Transform pos: 11.5,-37.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterLegitJustAWeekAway entities: - uid: 28137 @@ -135144,6 +136958,8 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-28.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterLegitLoveIan entities: - uid: 5776 @@ -135151,6 +136967,8 @@ entities: - type: Transform pos: -10.5,-28.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterLegitMime entities: - uid: 26596 @@ -135158,6 +136976,8 @@ entities: - type: Transform pos: 23.5,6.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterLegitNanotrasenLogo entities: - uid: 3196 @@ -135165,31 +136985,43 @@ entities: - type: Transform pos: 13.5,-14.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 18617 components: - type: Transform pos: -14.5,-21.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 20061 components: - type: Transform pos: 5.5,-3.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 20062 components: - type: Transform pos: -6.5,-3.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 21972 components: - type: Transform pos: -28.5,5.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 26083 components: - type: Transform pos: 5.5,-23.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterLegitPDAAd entities: - uid: 5567 @@ -135197,11 +137029,15 @@ entities: - type: Transform pos: -12.5,-26.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 21974 components: - type: Transform pos: -6.5,-25.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterLegitPeriodicTable entities: - uid: 2352 @@ -135209,6 +137045,8 @@ entities: - type: Transform pos: 17.5,-35.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyInternals entities: - uid: 489 @@ -135216,11 +137054,15 @@ entities: - type: Transform pos: 22.5,18.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 26739 components: - type: Transform pos: 37.5,-29.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothEpi entities: - uid: 27543 @@ -135228,6 +137070,8 @@ entities: - type: Transform pos: 17.5,-22.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothHardhat entities: - uid: 27540 @@ -135235,6 +137079,8 @@ entities: - type: Transform pos: 10.5,-59.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothMeth entities: - uid: 27542 @@ -135242,6 +137088,8 @@ entities: - type: Transform pos: 17.5,-18.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothPiping entities: - uid: 27539 @@ -135249,6 +137097,8 @@ entities: - type: Transform pos: 2.5,-48.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyReport entities: - uid: 4075 @@ -135256,6 +137106,8 @@ entities: - type: Transform pos: 12.5,-37.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterLegitScience entities: - uid: 26769 @@ -135263,6 +137115,8 @@ entities: - type: Transform pos: 81.5,-50.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PosterLegitWorkForAFuture entities: - uid: 2386 @@ -135270,6 +137124,8 @@ entities: - type: Transform pos: 54.5,-32.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: PottedPlant0 entities: - uid: 26870 @@ -135505,14 +137361,6 @@ entities: - type: Transform pos: -10.5,-37.5 parent: 8364 - - uid: 5645 - components: - - type: Transform - pos: -8.5,-27.5 - parent: 8364 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - uid: 5668 components: - type: Transform @@ -135643,6 +137491,11 @@ entities: - type: Transform pos: 73.5,-5.5 parent: 8364 + - uid: 28204 + components: + - type: Transform + pos: -8.5,-27.5 + parent: 8364 - proto: PottedPlantRandomPlastic entities: - uid: 7185 @@ -136082,6 +137935,12 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 + - uid: 6209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-26.5 + parent: 8364 - uid: 6223 components: - type: Transform @@ -138300,42 +140159,18 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-13.5 parent: 8364 - - uid: 27142 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-81.5 - parent: 8364 - - uid: 27147 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-85.5 - parent: 8364 - uid: 27148 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-76.5 parent: 8364 - - uid: 27153 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-81.5 - parent: 8364 - uid: 27154 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-81.5 parent: 8364 - - uid: 27155 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-85.5 - parent: 8364 - uid: 27254 components: - type: Transform @@ -138399,12 +140234,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-24.5 parent: 8364 - - uid: 28204 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-24.5 - parent: 8364 - uid: 28207 components: - type: Transform @@ -138423,6 +140252,12 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,47.5 parent: 8364 + - uid: 28745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-81.5 + parent: 8364 - proto: PoweredlightExterior entities: - uid: 18 @@ -138597,6 +140432,12 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,-76.5 parent: 8364 + - uid: 27177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-90.5 + parent: 8364 - proto: PoweredSmallLight entities: - uid: 650 @@ -139796,6 +141637,18 @@ entities: rot: 3.141592653589793 rad pos: 92.5,-30.5 parent: 8364 + - uid: 27176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-83.5 + parent: 8364 + - uid: 27360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-85.5 + parent: 8364 - uid: 27459 components: - type: Transform @@ -139813,24 +141666,18 @@ entities: - type: Transform pos: 45.5,0.5 parent: 8364 + - uid: 27541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-85.5 + parent: 8364 - uid: 27584 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-34.5 parent: 8364 - - uid: 27620 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-84.5 - parent: 8364 - - uid: 27622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-85.5 - parent: 8364 - uid: 27626 components: - type: Transform @@ -140072,6 +141919,16 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-77.5 parent: 8364 + - uid: 4262 + components: + - type: Transform + pos: 19.5,-93.5 + parent: 8364 + - uid: 4265 + components: + - type: Transform + pos: 19.5,-92.5 + parent: 8364 - uid: 4370 components: - type: Transform @@ -140087,10 +141944,10 @@ entities: - type: Transform pos: 3.5,-59.5 parent: 8364 - - uid: 4933 + - uid: 4932 components: - type: Transform - pos: -12.5,40.5 + pos: -14.5,45.5 parent: 8364 - uid: 5105 components: @@ -140582,6 +142439,11 @@ entities: - type: Transform pos: 10.5,-49.5 parent: 8364 + - uid: 23157 + components: + - type: Transform + pos: 25.5,-85.5 + parent: 8364 - uid: 24198 components: - type: Transform @@ -140593,6 +142455,11 @@ entities: - type: Transform pos: 81.5,-23.5 parent: 8364 + - uid: 26294 + components: + - type: Transform + pos: -14.5,43.5 + parent: 8364 - uid: 26576 components: - type: Transform @@ -140634,12 +142501,6 @@ entities: rot: 1.5707963267948966 rad pos: 86.5,-40.5 parent: 8364 - - uid: 27176 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-83.5 - parent: 8364 - uid: 27553 components: - type: Transform @@ -140656,6 +142517,16 @@ entities: - type: Transform pos: 12.5,-49.5 parent: 8364 + - uid: 28733 + components: + - type: Transform + pos: 26.5,-85.5 + parent: 8364 + - uid: 28774 + components: + - type: Transform + pos: 26.5,-81.5 + parent: 8364 - proto: RadiationCollector entities: - uid: 3780 @@ -140949,11 +142820,6 @@ entities: parent: 8364 - proto: RandomCableHVSpawner entities: - - uid: 26913 - components: - - type: Transform - pos: -5.5,-86.5 - parent: 8364 - uid: 26914 components: - type: Transform @@ -140969,11 +142835,6 @@ entities: - type: Transform pos: -5.5,-85.5 parent: 8364 - - uid: 28387 - components: - - type: Transform - pos: -4.5,-86.5 - parent: 8364 - uid: 28388 components: - type: Transform @@ -140984,11 +142845,6 @@ entities: - type: Transform pos: 3.5,-85.5 parent: 8364 - - uid: 28390 - components: - - type: Transform - pos: 3.5,-86.5 - parent: 8364 - uid: 28391 components: - type: Transform @@ -140999,11 +142855,6 @@ entities: - type: Transform pos: 4.5,-85.5 parent: 8364 - - uid: 28393 - components: - - type: Transform - pos: 4.5,-86.5 - parent: 8364 - uid: 28394 components: - type: Transform @@ -142073,6 +143924,11 @@ entities: - type: Transform pos: -32.5,-74.5 parent: 8364 + - uid: 16553 + components: + - type: Transform + pos: 15.5,-91.5 + parent: 8364 - uid: 20919 components: - type: Transform @@ -142143,6 +143999,11 @@ entities: - type: Transform pos: 24.5,5.5 parent: 8364 + - uid: 27186 + components: + - type: Transform + pos: 14.5,-93.5 + parent: 8364 - uid: 28237 components: - type: Transform @@ -142344,6 +144205,16 @@ entities: - type: Transform pos: 25.5,-50.5 parent: 8364 + - uid: 2389 + components: + - type: Transform + pos: 13.5,-94.5 + parent: 8364 + - uid: 2832 + components: + - type: Transform + pos: 14.5,-94.5 + parent: 8364 - uid: 3494 components: - type: Transform @@ -142364,11 +144235,56 @@ entities: - type: Transform pos: 44.5,-54.5 parent: 8364 + - uid: 4041 + components: + - type: Transform + pos: 16.5,-91.5 + parent: 8364 + - uid: 4427 + components: + - type: Transform + pos: 15.5,-90.5 + parent: 8364 + - uid: 4468 + components: + - type: Transform + pos: 13.5,-84.5 + parent: 8364 + - uid: 4469 + components: + - type: Transform + pos: 15.5,-88.5 + parent: 8364 + - uid: 4470 + components: + - type: Transform + pos: 13.5,-88.5 + parent: 8364 + - uid: 4493 + components: + - type: Transform + pos: 16.5,-85.5 + parent: 8364 + - uid: 4623 + components: + - type: Transform + pos: 16.5,-87.5 + parent: 8364 - uid: 4947 components: - type: Transform pos: -17.5,46.5 parent: 8364 + - uid: 5197 + components: + - type: Transform + pos: 14.5,-88.5 + parent: 8364 + - uid: 5200 + components: + - type: Transform + pos: 12.5,-87.5 + parent: 8364 - uid: 5799 components: - type: Transform @@ -142379,11 +144295,6 @@ entities: - type: Transform pos: -17.5,43.5 parent: 8364 - - uid: 7379 - components: - - type: Transform - pos: -9.5,41.5 - parent: 8364 - uid: 7394 components: - type: Transform @@ -142399,16 +144310,6 @@ entities: - type: Transform pos: -15.5,41.5 parent: 8364 - - uid: 7715 - components: - - type: Transform - pos: -15.5,42.5 - parent: 8364 - - uid: 7787 - components: - - type: Transform - pos: -12.5,43.5 - parent: 8364 - uid: 7833 components: - type: Transform @@ -142427,27 +144328,47 @@ entities: - uid: 8398 components: - type: Transform - pos: -7.5,41.5 - parent: 8364 - - uid: 8420 - components: - - type: Transform - pos: -15.5,44.5 - parent: 8364 - - uid: 8577 - components: - - type: Transform - pos: -14.5,43.5 + pos: -7.5,45.5 parent: 8364 - uid: 8813 components: - type: Transform pos: -17.5,41.5 parent: 8364 - - uid: 13821 + - uid: 10854 components: - type: Transform - pos: -10.5,43.5 + pos: 14.5,-90.5 + parent: 8364 + - uid: 11752 + components: + - type: Transform + pos: 12.5,-92.5 + parent: 8364 + - uid: 12258 + components: + - type: Transform + pos: 12.5,-91.5 + parent: 8364 + - uid: 12458 + components: + - type: Transform + pos: 12.5,-85.5 + parent: 8364 + - uid: 12459 + components: + - type: Transform + pos: 12.5,-86.5 + parent: 8364 + - uid: 13818 + components: + - type: Transform + pos: -15.5,43.5 + parent: 8364 + - uid: 14918 + components: + - type: Transform + pos: 15.5,-84.5 parent: 8364 - uid: 15138 components: @@ -142594,6 +144515,11 @@ entities: - type: Transform pos: 22.5,-63.5 parent: 8364 + - uid: 23149 + components: + - type: Transform + pos: 14.5,-84.5 + parent: 8364 - uid: 23181 components: - type: Transform @@ -142604,6 +144530,61 @@ entities: - type: Transform pos: 14.5,-53.5 parent: 8364 + - uid: 26289 + components: + - type: Transform + pos: -14.5,44.5 + parent: 8364 + - uid: 26314 + components: + - type: Transform + pos: -7.5,40.5 + parent: 8364 + - uid: 27126 + components: + - type: Transform + pos: 13.5,-90.5 + parent: 8364 + - uid: 27127 + components: + - type: Transform + pos: 16.5,-93.5 + parent: 8364 + - uid: 27139 + components: + - type: Transform + pos: 15.5,-94.5 + parent: 8364 + - uid: 27193 + components: + - type: Transform + pos: 12.5,-93.5 + parent: 8364 + - uid: 28688 + components: + - type: Transform + pos: -15.5,42.5 + parent: 8364 + - uid: 28737 + components: + - type: Transform + pos: -7.5,42.5 + parent: 8364 + - uid: 28740 + components: + - type: Transform + pos: -10.5,40.5 + parent: 8364 + - uid: 28742 + components: + - type: Transform + pos: -10.5,42.5 + parent: 8364 + - uid: 28743 + components: + - type: Transform + pos: -7.5,46.5 + parent: 8364 - proto: ReinforcedWindow entities: - uid: 22 @@ -142921,11 +144902,6 @@ entities: - type: Transform pos: -68.5,7.5 parent: 8364 - - uid: 646 - components: - - type: Transform - pos: 21.5,-82.5 - parent: 8364 - uid: 658 components: - type: Transform @@ -144881,11 +146857,6 @@ entities: - type: Transform pos: 86.5,-14.5 parent: 8364 - - uid: 4107 - components: - - type: Transform - pos: 14.5,-82.5 - parent: 8364 - uid: 4136 components: - type: Transform @@ -144911,11 +146882,6 @@ entities: - type: Transform pos: -21.5,-75.5 parent: 8364 - - uid: 4426 - components: - - type: Transform - pos: 20.5,-82.5 - parent: 8364 - uid: 4523 components: - type: Transform @@ -146051,11 +148017,6 @@ entities: - type: Transform pos: -10.5,5.5 parent: 8364 - - uid: 12258 - components: - - type: Transform - pos: 15.5,-82.5 - parent: 8364 - uid: 12260 components: - type: Transform @@ -146066,11 +148027,6 @@ entities: - type: Transform pos: -68.5,17.5 parent: 8364 - - uid: 12459 - components: - - type: Transform - pos: 13.5,-82.5 - parent: 8364 - uid: 12485 components: - type: Transform @@ -146246,21 +148202,6 @@ entities: - type: Transform pos: 2.5,-77.5 parent: 8364 - - uid: 16731 - components: - - type: Transform - pos: 23.5,-82.5 - parent: 8364 - - uid: 16735 - components: - - type: Transform - pos: 22.5,-82.5 - parent: 8364 - - uid: 16777 - components: - - type: Transform - pos: 16.5,-82.5 - parent: 8364 - uid: 16837 components: - type: Transform @@ -146656,11 +148597,6 @@ entities: - type: Transform pos: -18.5,-68.5 parent: 8364 - - uid: 23159 - components: - - type: Transform - pos: 18.5,-86.5 - parent: 8364 - uid: 23172 components: - type: Transform @@ -146716,6 +148652,11 @@ entities: - type: Transform pos: -21.5,-73.5 parent: 8364 + - uid: 25260 + components: + - type: Transform + pos: 16.5,-82.5 + parent: 8364 - uid: 25866 components: - type: Transform @@ -146781,6 +148722,16 @@ entities: - type: Transform pos: -8.5,-64.5 parent: 8364 + - uid: 26950 + components: + - type: Transform + pos: 18.5,-82.5 + parent: 8364 + - uid: 26995 + components: + - type: Transform + pos: 19.5,-82.5 + parent: 8364 - uid: 26997 components: - type: Transform @@ -146791,6 +148742,26 @@ entities: - type: Transform pos: 27.5,-79.5 parent: 8364 + - uid: 27473 + components: + - type: Transform + pos: 14.5,-82.5 + parent: 8364 + - uid: 27474 + components: + - type: Transform + pos: 15.5,-82.5 + parent: 8364 + - uid: 27851 + components: + - type: Transform + pos: 20.5,-82.5 + parent: 8364 + - uid: 27853 + components: + - type: Transform + pos: 21.5,-82.5 + parent: 8364 - uid: 27858 components: - type: Transform @@ -146811,6 +148782,11 @@ entities: - type: Transform pos: -13.5,2.5 parent: 8364 + - uid: 28359 + components: + - type: Transform + pos: 13.5,-82.5 + parent: 8364 - uid: 28655 components: - type: Transform @@ -146963,6 +148939,11 @@ entities: parent: 8364 - proto: RubberStampApproved entities: + - uid: 5746 + components: + - type: Transform + pos: -11.069336,-21.207197 + parent: 8364 - uid: 10198 components: - type: Transform @@ -146970,6 +148951,11 @@ entities: parent: 8364 - proto: RubberStampDenied entities: + - uid: 5747 + components: + - type: Transform + pos: -11.058914,-21.499067 + parent: 8364 - uid: 14190 components: - type: Transform @@ -147016,150 +149002,208 @@ entities: - type: Transform pos: -3.5,-19.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 11645 components: - type: Transform pos: 2.5,-19.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 24976 components: - type: Transform pos: 6.5,46.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27738 components: - type: Transform pos: -7.5,0.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27739 components: - type: Transform pos: 11.5,0.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27740 components: - type: Transform pos: 18.5,-11.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27741 components: - type: Transform pos: 55.5,-11.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27742 components: - type: Transform pos: 73.5,-11.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27743 components: - type: Transform pos: 75.5,-15.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27745 components: - type: Transform pos: 13.5,-12.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27775 components: - type: Transform pos: -36.5,0.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27776 components: - type: Transform pos: -52.5,0.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27777 components: - type: Transform pos: -64.5,-16.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27778 components: - type: Transform pos: -69.5,11.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27780 components: - type: Transform pos: 5.5,18.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27781 components: - type: Transform pos: 19.5,8.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27782 components: - type: Transform pos: 8.5,-32.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27783 components: - type: Transform pos: -4.5,-52.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27784 components: - type: Transform pos: -2.5,-40.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27785 components: - type: Transform pos: -16.5,-32.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27786 components: - type: Transform pos: -14.5,-11.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 28189 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-3.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 28190 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-3.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 28191 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-25.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 28192 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-25.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 28532 components: - type: Transform pos: 1.5,32.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 28533 components: - type: Transform pos: -8.5,39.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 28534 components: - type: Transform pos: -4.5,54.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 28535 components: - type: Transform pos: 1.5,39.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: ScreenTimer entities: - uid: 5454 @@ -147167,6 +149211,8 @@ entities: - type: Transform pos: -8.5,22.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: Screwdriver entities: - uid: 15395 @@ -147187,10 +149233,10 @@ entities: parent: 8364 - proto: SecurityTechFab entities: - - uid: 8749 + - uid: 28690 components: - type: Transform - pos: -12.5,42.5 + pos: -13.5,44.5 parent: 8364 - type: TechnologyDatabase supportedDisciplines: @@ -147543,7 +149589,7 @@ entities: - uid: 28639 components: - type: Transform - pos: -12.519961,42.618675 + pos: -13.474435,44.52028 parent: 8364 - proto: SheetUranium entities: @@ -147580,11 +149626,34 @@ entities: - type: Transform pos: -31.5,-17.5 parent: 8364 + - uid: 9150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,33.5 + parent: 8364 + - uid: 9164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,32.5 + parent: 8364 + - uid: 9165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,31.5 + parent: 8364 - uid: 9243 components: - type: Transform pos: -30.5,-17.5 parent: 8364 + - uid: 9698 + components: + - type: Transform + pos: -4.5,29.5 + parent: 8364 - uid: 11334 components: - type: Transform @@ -147605,6 +149674,58 @@ entities: - type: Transform pos: 54.5,-15.5 parent: 8364 + - uid: 28642 + components: + - type: Transform + pos: -5.5,29.5 + parent: 8364 + - uid: 28706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,33.5 + parent: 8364 + - uid: 28707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,32.5 + parent: 8364 + - uid: 28708 + components: + - type: Transform + pos: -7.5,30.5 + parent: 8364 + - uid: 28709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,35.5 + parent: 8364 + - uid: 28710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,35.5 + parent: 8364 + - uid: 28711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,35.5 + parent: 8364 + - uid: 28712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,46.5 + parent: 8364 + - uid: 28713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,45.5 + parent: 8364 - proto: ShuttersNormalOpen entities: - uid: 1454 @@ -147689,69 +149810,6 @@ entities: - type: Transform pos: 6.5,-23.5 parent: 8364 - - uid: 9139 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,33.5 - parent: 8364 - - uid: 9141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,32.5 - parent: 8364 - - uid: 9142 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,31.5 - parent: 8364 - - uid: 9143 - components: - - type: Transform - pos: -4.5,29.5 - parent: 8364 - - uid: 9144 - components: - - type: Transform - pos: -5.5,29.5 - parent: 8364 - - uid: 9145 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,33.5 - parent: 8364 - - uid: 9146 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,32.5 - parent: 8364 - - uid: 9147 - components: - - type: Transform - pos: -7.5,30.5 - parent: 8364 - - uid: 9148 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,35.5 - parent: 8364 - - uid: 9164 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,35.5 - parent: 8364 - - uid: 9165 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,35.5 - parent: 8364 - uid: 9923 components: - type: Transform @@ -148096,6 +150154,8 @@ entities: - type: Transform pos: 0.5,-18.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignAiUpload entities: - uid: 26942 @@ -148103,30 +150163,15 @@ entities: - type: Transform pos: -1.5,-28.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignalButton entities: - - uid: 1644 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-86.5 - parent: 8364 - - type: DeviceLinkSource - linkedPorts: - 4205: - - - Pressed - - Toggle - 3542: - - - Pressed - - Toggle - 25091: - - - Pressed - - Toggle - uid: 1910 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.19841719,-64.49025 + pos: 0.5,-64.5 parent: 8364 - type: DeviceLinkSource linkedPorts: @@ -148154,6 +150199,8 @@ entities: 5223: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 2638 components: - type: Transform @@ -148164,6 +150211,8 @@ entities: 13910: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 3753 components: - type: Transform @@ -148174,6 +150223,8 @@ entities: 3750: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 3754 components: - type: Transform @@ -148184,6 +150235,8 @@ entities: 22831: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 3807 components: - type: Transform @@ -148194,40 +150247,8 @@ entities: 3535: - - Pressed - Toggle - - uid: 4249 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-82.5 - parent: 8364 - - type: DeviceLinkSource - linkedPorts: - 25091: - - - Pressed - - Toggle - 3542: - - - Pressed - - Toggle - 4205: - - - Pressed - - Toggle - - uid: 4250 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-82.5 - parent: 8364 - - type: DeviceLinkSource - linkedPorts: - 13849: - - - Pressed - - Toggle - 3605: - - - Pressed - - Toggle - 15544: - - - Pressed - - Toggle + - type: Fixtures + fixtures: {} - uid: 5222 components: - type: Transform @@ -148244,6 +150265,8 @@ entities: 22014: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 5243 components: - type: Transform @@ -148260,6 +150283,8 @@ entities: 19090: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 5322 components: - type: Transform @@ -148270,6 +150295,8 @@ entities: 9923: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 5478 components: - type: Transform @@ -148301,6 +150328,8 @@ entities: 20848: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 9868 components: - type: Transform @@ -148320,6 +150349,8 @@ entities: 10457: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 11625 components: - type: Transform @@ -148336,6 +150367,8 @@ entities: 5911: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 11628 components: - type: Transform @@ -148352,6 +150385,8 @@ entities: 6099: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 11984 components: - type: Transform @@ -148366,6 +150401,8 @@ entities: 9243: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 16830 components: - type: MetaData @@ -148379,6 +150416,8 @@ entities: 5373: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17685 components: - type: Transform @@ -148408,6 +150447,8 @@ entities: 15428: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17791 components: - type: Transform @@ -148421,6 +150462,8 @@ entities: 18326: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 19172 components: - type: Transform @@ -148434,6 +150477,8 @@ entities: 9243: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 19856 components: - type: Transform @@ -148450,6 +150495,8 @@ entities: 20180: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 20896 components: - type: Transform @@ -148466,6 +150513,8 @@ entities: 5590: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 22220 components: - type: MetaData @@ -148485,6 +150534,8 @@ entities: 10835: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 25517 components: - type: Transform @@ -148502,6 +150553,8 @@ entities: 20851: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 26795 components: - type: Transform @@ -148536,6 +150589,8 @@ entities: 26793: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 26932 components: - type: MetaData @@ -148558,6 +150613,8 @@ entities: 3868: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 26934 components: - type: MetaData @@ -148574,6 +150631,8 @@ entities: 26667: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 26935 components: - type: MetaData @@ -148593,6 +150652,8 @@ entities: 4704: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 26936 components: - type: MetaData @@ -148609,6 +150670,8 @@ entities: 26669: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 26937 components: - type: MetaData @@ -148631,23 +150694,8 @@ entities: 3789: - - Pressed - Toggle - - uid: 27744 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-86.5 - parent: 8364 - - type: DeviceLinkSource - linkedPorts: - 15544: - - - Pressed - - Toggle - 3605: - - - Pressed - - Toggle - 13849: - - - Pressed - - Toggle + - type: Fixtures + fixtures: {} - uid: 28254 components: - type: MetaData @@ -148667,6 +150715,8 @@ entities: 28253: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: SignalButtonDirectional entities: - uid: 10732 @@ -148687,6 +150737,8 @@ entities: 27221: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 27608 components: - type: Transform @@ -148697,6 +150749,8 @@ entities: 11334: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 27659 components: - type: Transform @@ -148708,6 +150762,8 @@ entities: 6417: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 27660 components: - type: Transform @@ -148719,6 +150775,8 @@ entities: 6416: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 27661 components: - type: Transform @@ -148730,6 +150788,8 @@ entities: 6415: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 27662 components: - type: Transform @@ -148741,6 +150801,8 @@ entities: 6414: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 27663 components: - type: Transform @@ -148752,6 +150814,8 @@ entities: 6413: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 27664 components: - type: Transform @@ -148763,6 +150827,8 @@ entities: 6412: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - proto: SignalSwitch entities: - uid: 8804 @@ -148823,13 +150889,115 @@ entities: - Reverse - - Off - Off + - type: Fixtures + fixtures: {} - uid: 13247 components: - type: MetaData name: lights switch - type: Transform - pos: 10.8,3.5 + pos: 10.5,3.5 parent: 8364 + - type: Fixtures + fixtures: {} +- proto: SignalSwitchDirectional + entities: + - uid: 9148 + components: + - type: MetaData + name: signal switch (Shutters) + - type: Transform + pos: -6.5,35.5 + parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 28709: + - - On + - Open + - - Off + - Close + 9150: + - - On + - Open + - - Off + - Close + 9165: + - - On + - Open + - - Off + - Close + 9698: + - - On + - Open + - - Off + - Close + 28642: + - - On + - Open + - - Off + - Close + 28711: + - - On + - Open + - - Off + - Close + 28710: + - - Off + - Close + - - On + - Open + 28706: + - - Off + - Close + - - On + - Open + 28707: + - - On + - Open + - - Off + - Close + 28708: + - - On + - Open + - - Off + - Close + 9164: + - - On + - Open + - - Off + - Close + - type: Fixtures + fixtures: {} + - type: Label + currentLabel: Shutters + - type: NameModifier + baseName: signal switch + - uid: 28635 + components: + - type: MetaData + name: signal switch (Shutters) + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,44.5 + parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 28713: + - - On + - Open + - - Off + - Close + 28712: + - - On + - Open + - - Off + - Close + - type: Fixtures + fixtures: {} + - type: Label + currentLabel: Shutters + - type: NameModifier + baseName: signal switch - proto: SignAnomaly entities: - uid: 25994 @@ -148837,6 +151005,8 @@ entities: - type: Transform pos: 75.5,-22.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignAnomaly2 entities: - uid: 21387 @@ -148844,6 +151014,8 @@ entities: - type: Transform pos: 68.5,-48.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignArmory entities: - uid: 8557 @@ -148851,6 +151023,8 @@ entities: - type: Transform pos: -7.5,43.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignAtmos entities: - uid: 22926 @@ -148858,6 +151032,8 @@ entities: - type: Transform pos: 8.5,-49.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignBar entities: - uid: 7392 @@ -148865,6 +151041,8 @@ entities: - type: Transform pos: 21.5,-11.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignBiohazardMed entities: - uid: 18700 @@ -148872,11 +151050,15 @@ entities: - type: Transform pos: 41.5,-50.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 18701 components: - type: Transform pos: 39.5,-54.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignBridge entities: - uid: 5872 @@ -148884,11 +151066,15 @@ entities: - type: Transform pos: -12.5,-6.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 11638 components: - type: Transform pos: 11.5,-6.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignCanisters entities: - uid: 23140 @@ -148897,6 +151083,8 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-40.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignCansScience entities: - uid: 15137 @@ -148904,6 +151092,8 @@ entities: - type: Transform pos: 64.5,-34.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignCargo entities: - uid: 17679 @@ -148911,6 +151101,8 @@ entities: - type: Transform pos: -18.5,-20.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignCargoDock entities: - uid: 21755 @@ -148918,6 +151110,8 @@ entities: - type: Transform pos: -29.5,-18.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignChapel entities: - uid: 4989 @@ -148925,6 +151119,8 @@ entities: - type: Transform pos: 74.5,-6.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignChem entities: - uid: 8023 @@ -148932,11 +151128,15 @@ entities: - type: Transform pos: 18.5,-23.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 18609 components: - type: Transform pos: 23.5,-16.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignCloning entities: - uid: 15727 @@ -148944,6 +151144,8 @@ entities: - type: Transform pos: 42.5,-43.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignConference entities: - uid: 912 @@ -148951,6 +151153,8 @@ entities: - type: Transform pos: -8.5,-10.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignCryogenicsMed entities: - uid: 14702 @@ -148958,11 +151162,15 @@ entities: - type: Transform pos: 27.5,-76.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 24722 components: - type: Transform pos: 38.5,-33.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignDangerMed entities: - uid: 27385 @@ -148970,6 +151178,8 @@ entities: - type: Transform pos: 10.5,-71.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBridge entities: - uid: 25931 @@ -148978,11 +151188,15 @@ entities: rot: 1.5707963267948966 rad pos: -62.5,2.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 25937 components: - type: Transform pos: -17.5,0.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignDirectionalCryo entities: - uid: 24710 @@ -148990,14 +151204,18 @@ entities: - type: Transform pos: 37.5,-26.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignDirectionalDorms entities: - uid: 25933 components: - type: Transform rot: 1.5707963267948966 rad - pos: -62.499004,2.2885544 + pos: -62.5,2.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEng entities: - uid: 4996 @@ -149006,27 +151224,37 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-28.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 12053 components: - type: Transform - pos: -19.49536,-3.7142625 + pos: -19.5,-3.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 15920 components: - type: Transform - pos: -2.495048,-32.707497 + pos: -2.5,-32.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 15923 components: - type: Transform - pos: 17.493805,-15.696056 + pos: 17.5,-15.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 25936 components: - type: Transform rot: 1.5707963267948966 rad - pos: -62.50528,-6.7218995 + pos: -62.5,-6.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEvac entities: - uid: 15922 @@ -149035,32 +151263,42 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-32.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 15938 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-11.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 15939 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.504663,2.2990081 + pos: 1.5,2.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 16719 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-3.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignDirectionalGravity entities: - uid: 4995 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.48893,-28.299696 + pos: -12.5,-28.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignDirectionalHop entities: - uid: 25934 @@ -149069,30 +151307,40 @@ entities: rot: 1.5707963267948966 rad pos: -62.5,-6.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 25940 components: - type: Transform - pos: -18.489511,-4.1296644 + pos: -18.5,-4.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 25941 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-28.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 25942 components: - type: Transform pos: -14.5,-20.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignDirectionalHydro entities: - uid: 4997 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.499992,-3.7091393 + pos: -18.5,-3.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignDirectionalJanitor entities: - uid: 1155 @@ -149100,32 +151348,42 @@ entities: - type: Transform pos: 6.5,-32.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignDirectionalMed entities: - uid: 4998 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.499992,-3.2872643 + pos: -18.5,-3.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 15921 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.495048,-32.301247 + pos: -2.5,-32.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 15924 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.493805,-15.305431 + pos: 17.5,-15.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 20059 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,2.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSci entities: - uid: 4999 @@ -149134,12 +151392,16 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,-3.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 15925 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-15.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSec entities: - uid: 6562 @@ -149148,36 +151410,48 @@ entities: rot: 3.141592653589793 rad pos: 10.5,13.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 12055 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.49536,-3.2767625 + pos: -19.5,-3.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 15926 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.499279,-11.288156 + pos: 17.5,-11.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 15940 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.504663,2.7208831 + pos: 1.5,2.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 25932 components: - type: Transform rot: 1.5707963267948966 rad - pos: -62.499004,2.7260544 + pos: -62.5,2.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 25938 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.505136,0.7252439 + pos: -17.5,0.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSolar entities: - uid: 4844 @@ -149186,47 +151460,63 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-59.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 4845 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,-65.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 4846 components: - type: Transform pos: 83.5,-49.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 4847 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,14.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 4848 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,4.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 4849 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,12.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 4850 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,12.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 4851 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,6.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSupply entities: - uid: 4992 @@ -149235,36 +151525,48 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-32.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 4993 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.494359,-28.72186 + pos: -12.5,-28.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 4994 components: - type: Transform - pos: -18.494526,-3.909933 + pos: -18.5,-3.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 25935 components: - type: Transform rot: 1.5707963267948966 rad - pos: -62.50528,-6.2843995 + pos: -62.5,-6.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 25939 components: - type: Transform - pos: -17.505136,0.28774393 + pos: -17.5,0.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignDirectionalWash entities: - uid: 4968 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.490667,-11.707433 + pos: 17.5,-11.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignElectricalMed entities: - uid: 764 @@ -149272,101 +151574,141 @@ entities: - type: Transform pos: 43.5,4.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 3655 components: - type: Transform pos: 1.5,-10.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 9820 components: - type: Transform pos: 9.5,35.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 9844 components: - type: Transform pos: -27.5,18.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 9845 components: - type: Transform pos: -36.5,33.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 9846 components: - type: Transform pos: -27.5,25.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 9847 components: - type: Transform pos: -32.5,30.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 9848 components: - type: Transform pos: -36.5,40.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 9849 components: - type: Transform pos: -34.5,45.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 9850 components: - type: Transform pos: -30.5,49.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 9851 components: - type: Transform pos: -22.5,49.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 9852 components: - type: Transform pos: -17.5,47.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 9853 components: - type: Transform pos: -17.5,40.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 12364 components: - type: Transform pos: -44.5,11.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 14150 components: - type: Transform pos: -8.5,-73.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 14238 components: - type: Transform pos: -19.5,-36.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 15971 components: - type: Transform pos: -2.5,-10.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 18691 components: - type: Transform pos: -2.5,-35.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 18898 components: - type: Transform pos: -30.5,-64.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22849 components: - type: Transform pos: -2.5,-60.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignEngine entities: - uid: 1315 @@ -149374,6 +151716,8 @@ entities: - type: Transform pos: -21.5,-67.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignEngineering entities: - uid: 15897 @@ -149381,6 +151725,8 @@ entities: - type: Transform pos: 1.5,-54.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignEscapePods entities: - uid: 5618 @@ -149389,11 +151735,15 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,54.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 12645 components: - type: Transform pos: -65.5,-8.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignEVA entities: - uid: 4991 @@ -149401,6 +151751,8 @@ entities: - type: Transform pos: -13.5,0.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignExamroom entities: - uid: 18666 @@ -149408,11 +151760,15 @@ entities: - type: Transform pos: 34.5,-26.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 18706 components: - type: Transform pos: 28.5,-26.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignFire entities: - uid: 5227 @@ -149420,11 +151776,29 @@ entities: - type: Transform pos: 74.5,-42.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 5228 components: - type: Transform pos: 68.5,-38.5 parent: 8364 + - type: Fixtures + fixtures: {} + - uid: 28791 + components: + - type: Transform + pos: 16.5,-84.5 + parent: 8364 + - type: Fixtures + fixtures: {} + - uid: 28792 + components: + - type: Transform + pos: 16.5,-94.5 + parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignFlammableMed entities: - uid: 27386 @@ -149432,6 +151806,15 @@ entities: - type: Transform pos: 10.5,-70.5 parent: 8364 + - type: Fixtures + fixtures: {} + - uid: 28793 + components: + - type: Transform + pos: 12.5,-82.5 + parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignGenpop entities: - uid: 8478 @@ -149439,11 +151822,15 @@ entities: - type: Transform pos: -11.5,34.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 9140 components: - type: Transform pos: -6.5,26.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignGravity entities: - uid: 4299 @@ -149451,6 +151838,8 @@ entities: - type: Transform pos: -20.5,-71.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignHead entities: - uid: 4843 @@ -149458,6 +151847,8 @@ entities: - type: Transform pos: -8.5,-28.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignHydro1 entities: - uid: 13393 @@ -149465,6 +151856,8 @@ entities: - type: Transform pos: 41.5,-11.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignInterrogation entities: - uid: 7658 @@ -149472,6 +151865,8 @@ entities: - type: Transform pos: -13.5,36.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignJanitor entities: - uid: 4496 @@ -149479,6 +151874,8 @@ entities: - type: Transform pos: 2.5,-32.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignKiddiePlaque entities: - uid: 201 @@ -149486,6 +151883,8 @@ entities: - type: Transform pos: -29.5,7.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 2001 components: - type: MetaData @@ -149494,26 +151893,36 @@ entities: - type: Transform pos: 56.5,-51.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 5749 components: - type: Transform pos: 4.5,-12.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 10644 components: - type: Transform pos: 11.5,-23.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22421 components: - type: Transform pos: -56.5,-6.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22444 components: - type: Transform pos: -22.5,-14.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignLawyer entities: - uid: 750 @@ -149521,6 +151930,8 @@ entities: - type: Transform pos: 2.5,22.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignLibrary entities: - uid: 4987 @@ -149528,6 +151939,8 @@ entities: - type: Transform pos: 54.5,-10.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignMagneticsMed entities: - uid: 4975 @@ -149535,6 +151948,8 @@ entities: - type: Transform pos: -29.5,-33.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignMail entities: - uid: 17680 @@ -149542,6 +151957,8 @@ entities: - type: Transform pos: -18.5,-16.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignMaterials entities: - uid: 21495 @@ -149549,6 +151966,8 @@ entities: - type: Transform pos: -51.5,-3.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignMedical entities: - uid: 1754 @@ -149556,16 +151975,22 @@ entities: - type: Transform pos: 36.5,-15.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 19142 components: - type: Transform pos: 24.5,-15.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 21718 components: - type: Transform pos: 63.5,10.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignMorgue entities: - uid: 4971 @@ -149573,11 +151998,15 @@ entities: - type: Transform pos: 45.5,-15.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 4972 components: - type: Transform pos: 42.5,-21.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignNews entities: - uid: 3821 @@ -149586,6 +152015,8 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-10.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignNosmoking entities: - uid: 5229 @@ -149593,6 +152024,8 @@ entities: - type: Transform pos: 64.5,-36.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignPlaque entities: - uid: 5723 @@ -149600,21 +152033,29 @@ entities: - type: Transform pos: 9.5,-23.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22017 components: - type: Transform pos: -11.5,-10.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22445 components: - type: Transform pos: -24.5,-8.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 25943 components: - type: Transform pos: -10.5,-20.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignPsychology entities: - uid: 18613 @@ -149622,6 +152063,8 @@ entities: - type: Transform pos: 9.5,-32.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignRadiationMed entities: - uid: 19068 @@ -149629,41 +152072,64 @@ entities: - type: Transform pos: 6.5,-71.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 21767 components: - type: Transform pos: -19.5,-54.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 21768 components: - type: Transform pos: -30.5,-52.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 26901 components: - type: Transform pos: 8.5,-93.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 26903 components: - type: Transform pos: -9.5,-93.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 26904 components: - type: Transform pos: 9.5,-87.5 parent: 8364 + - type: Fixtures + fixtures: {} + - uid: 27141 + components: + - type: Transform + pos: 10.5,-79.5 + parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27387 components: - type: Transform pos: -3.5,-72.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27388 components: - type: Transform pos: 2.5,-72.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignRedFive entities: - uid: 27669 @@ -149672,6 +152138,8 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,13.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignRedFour entities: - uid: 27668 @@ -149680,6 +152148,8 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,15.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignRedOne entities: - uid: 27665 @@ -149688,6 +152158,8 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,6.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignRedSix entities: - uid: 27670 @@ -149696,6 +152168,8 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,13.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignRedThree entities: - uid: 27667 @@ -149704,6 +152178,8 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,12.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignRedTwo entities: - uid: 27666 @@ -149712,6 +152188,8 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,9.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignRND entities: - uid: 11318 @@ -149719,6 +152197,8 @@ entities: - type: Transform pos: 68.5,-16.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignRobo entities: - uid: 2521 @@ -149726,11 +152206,15 @@ entities: - type: Transform pos: 64.5,-16.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 11317 components: - type: Transform pos: 64.5,-25.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignSalvage entities: - uid: 15136 @@ -149738,6 +152222,8 @@ entities: - type: Transform pos: -23.5,-28.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignScience entities: - uid: 11319 @@ -149745,11 +152231,15 @@ entities: - type: Transform pos: 72.5,-15.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 21761 components: - type: Transform pos: 56.5,-15.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignSecurearea entities: - uid: 3527 @@ -149758,6 +152248,8 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-53.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignSecureMed entities: - uid: 216 @@ -149766,60 +152258,98 @@ entities: rot: 3.141592653589793 rad pos: -32.5,1.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 3806 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-39.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 15316 components: - type: Transform pos: 7.5,-64.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 17010 components: - type: Transform pos: 8.5,-7.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 17011 components: - type: Transform pos: -9.5,-7.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 17488 components: - type: Transform pos: 4.5,-64.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 20149 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-39.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 23142 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-40.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 26837 components: - type: Transform pos: -13.5,5.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 26838 components: - type: Transform pos: -9.5,5.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 28215 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-25.5 parent: 8364 + - type: Fixtures + fixtures: {} + - uid: 28685 + components: + - type: Transform + pos: -8.5,43.5 + parent: 8364 + - type: Fixtures + fixtures: {} +- proto: SignSecureMedRed + entities: + - uid: 7821 + components: + - type: Transform + pos: -12.5,44.5 + parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignSecureSmall entities: - uid: 22440 @@ -149827,11 +152357,15 @@ entities: - type: Transform pos: -80.5,12.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22441 components: - type: Transform pos: -74.5,12.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignSecurity entities: - uid: 8860 @@ -149840,11 +152374,15 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,29.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 15339 components: - type: Transform pos: 1.5,18.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignServer entities: - uid: 16618 @@ -149852,6 +152390,8 @@ entities: - type: Transform pos: 54.5,-28.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignSmoking entities: - uid: 1922 @@ -149859,21 +152399,29 @@ entities: - type: Transform pos: 43.5,-31.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 2569 components: - type: Transform pos: 61.5,-32.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 5214 components: - type: Transform pos: 28.5,-30.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 19051 components: - type: Transform pos: 23.5,-36.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignSomethingOld entities: - uid: 4970 @@ -149881,6 +152429,8 @@ entities: - type: Transform pos: -6.5,-40.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignSomethingOld2 entities: - uid: 4969 @@ -149888,6 +152438,8 @@ entities: - type: Transform pos: -8.5,-32.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignSpace entities: - uid: 7282 @@ -149896,127 +152448,177 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,50.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 7284 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,50.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 12261 components: - type: Transform pos: 63.5,-69.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 17810 components: - type: Transform pos: -44.5,-29.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 17818 components: - type: Transform pos: -44.5,-32.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 17904 components: - type: Transform pos: -44.5,-26.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 21516 components: - type: Transform pos: 48.5,21.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 21518 components: - type: Transform pos: 91.5,-24.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 21519 components: - type: Transform pos: 83.5,-4.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 21520 components: - type: Transform pos: 83.5,-12.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 21522 components: - type: Transform pos: 87.5,-56.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 21523 components: - type: Transform pos: 80.5,-66.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 21524 components: - type: Transform pos: 48.5,-66.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 21530 components: - type: Transform pos: -33.5,-64.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 21531 components: - type: Transform pos: -39.5,-60.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 21532 components: - type: Transform pos: -38.5,-48.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 21533 components: - type: Transform pos: -30.5,-35.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 21535 components: - type: Transform pos: -62.5,-20.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 21536 components: - type: Transform pos: -69.5,-15.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 21537 components: - type: Transform pos: -74.5,-15.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 21538 components: - type: Transform pos: -76.5,-12.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 21546 components: - type: Transform pos: -67.5,19.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 21547 components: - type: Transform pos: -62.5,15.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 21549 components: - type: Transform pos: -48.5,24.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 26101 components: - type: Transform pos: 8.5,-76.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignSurgery entities: - uid: 18640 @@ -150024,6 +152626,8 @@ entities: - type: Transform pos: 23.5,-32.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignTelecomms entities: - uid: 16455 @@ -150031,6 +152635,8 @@ entities: - type: Transform pos: -4.5,-55.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignToolStorage entities: - uid: 11715 @@ -150038,6 +152644,8 @@ entities: - type: Transform pos: -43.5,0.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignToxins entities: - uid: 5295 @@ -150045,6 +152653,8 @@ entities: - type: Transform pos: 69.5,-43.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignVirology entities: - uid: 18696 @@ -150052,6 +152662,8 @@ entities: - type: Transform pos: 39.5,-50.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SingularityGenerator entities: - uid: 18597 @@ -152148,7 +154760,7 @@ entities: parent: 8364 - proto: SpawnPointHeadOfPersonnel entities: - - uid: 11765 + - uid: 6207 components: - type: Transform pos: -11.5,-22.5 @@ -152727,36 +155339,50 @@ entities: - type: Transform pos: -51.5,0.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27691 components: - type: Transform pos: -66.5,-2.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27692 components: - type: Transform pos: 15.5,0.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27693 components: - type: Transform pos: 29.5,-11.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27694 components: - type: Transform pos: 65.5,-11.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27695 components: - type: Transform pos: -11.5,-32.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 27696 components: - type: Transform pos: 13.5,-32.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: SteelBench entities: - uid: 9071 @@ -153483,11 +156109,63 @@ entities: - type: Transform pos: -10.5,29.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: + - 28691 + - 28692 - uid: 26320 components: - type: Transform pos: -9.5,29.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: + - 28693 + - 28694 - proto: SuitStorageHOS entities: - uid: 5096 @@ -153504,10 +156182,12 @@ entities: parent: 8364 - proto: SuitStorageSec entities: - - uid: 174 + - uid: 271 components: + - type: MetaData + name: suit storage unit (Double, Jetpack) - type: Transform - pos: -14.5,47.5 + pos: -8.5,40.5 parent: 8364 - type: EntityStorage air: @@ -153527,18 +156207,6 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 231 - - uid: 7349 - components: - - type: Transform - pos: -10.5,47.5 - parent: 8364 - type: ContainerContainer containers: entity_storage: !type:Container @@ -153546,71 +156214,95 @@ entities: occludes: True ents: - 7350 - - uid: 7415 - components: - - type: Transform - pos: -11.5,47.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: - - 7416 - - uid: 8558 - components: - - type: Transform - pos: -13.5,47.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: - - 8559 + - 346 + - 4931 + - type: Label + currentLabel: Double, Jetpack + - type: NameModifier + baseName: suit storage unit - uid: 16531 components: - type: Transform pos: -8.5,3.5 parent: 8364 + - uid: 19941 + components: + - type: MetaData + name: suit storage unit (Double, Jetpack) + - type: Transform + pos: -8.5,42.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: + - 26284 + - 19947 + - 19946 + - type: Label + currentLabel: Double, Jetpack + - type: NameModifier + baseName: suit storage unit + - uid: 26315 + components: + - type: MetaData + name: suit storage unit (Double, Jetpack) + - type: Transform + pos: -9.5,40.5 + parent: 8364 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 26318 + - 26321 + - 26322 + - type: Label + currentLabel: Double, Jetpack + - type: NameModifier + baseName: suit storage unit + - uid: 28717 + components: + - type: MetaData + name: suit storage unit (Double, Jetpack) + - type: Transform + pos: -9.5,42.5 + parent: 8364 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 28720 + - 28719 + - 28718 + - type: Label + currentLabel: Double, Jetpack + - type: NameModifier + baseName: suit storage unit - proto: SuitStorageWarden entities: - uid: 9085 @@ -153642,17 +156334,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: Conference Room - - uid: 300 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-6.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge West - uid: 301 components: - type: Transform @@ -153769,11 +156450,14 @@ entities: - uid: 28201 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-26.5 + rot: 1.5707963267948966 rad + pos: -7.5,-23.5 parent: 8364 - type: SurveillanceCamera - id: AI Entrance Airlock + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HOP - uid: 28202 components: - type: Transform @@ -153806,6 +156490,17 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos Canister Storage + - uid: 4263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-91.5 + parent: 8364 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Burn Chambers - uid: 7004 components: - type: Transform @@ -153828,27 +156523,11 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-71.5 parent: 8364 - - type: SurveillanceCamera - id: TEG North - - uid: 8602 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-78.5 - parent: 8364 - - type: SurveillanceCamera - id: TEG West - - uid: 14221 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-92.5 - parent: 8364 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Singulo Cage Southeast + id: TEG - North - uid: 14227 components: - type: Transform @@ -153870,22 +156549,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Circuitry - - uid: 15958 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-77.5 - parent: 8364 - - type: SurveillanceCamera - id: TEG East - - uid: 15959 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-80.5 - parent: 8364 - - type: SurveillanceCamera - id: Singulo Cage Northeast - uid: 16620 components: - type: Transform @@ -154139,6 +156802,16 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Break Room + - uid: 27153 + components: + - type: Transform + pos: 23.5,-81.5 + parent: 8364 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: TEG - South - uid: 27289 components: - type: MetaData @@ -154453,28 +157126,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Main Hall Closet - - uid: 16974 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-7.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Bridge Entrance W - - uid: 17678 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-0.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Eva - uid: 17693 components: - type: Transform @@ -154731,14 +157382,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Main Hall Library - - uid: 28203 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-29.5 - parent: 8364 - - type: SurveillanceCamera - id: Hall Outside AI - uid: 28548 components: - type: Transform @@ -155542,7 +158185,10 @@ entities: pos: -12.5,40.5 parent: 8364 - type: SurveillanceCamera - id: Armory - South + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory - Blue - uid: 28580 components: - type: Transform @@ -155550,7 +158196,10 @@ entities: pos: -12.5,47.5 parent: 8364 - type: SurveillanceCamera - id: Armory - North + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory - Red - uid: 28583 components: - type: Transform @@ -158112,12 +160761,6 @@ entities: - type: Transform pos: -3.5,-24.5 parent: 8364 - - uid: 26321 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,46.5 - parent: 8364 - uid: 26827 components: - type: Transform @@ -158153,6 +160796,11 @@ entities: - type: Transform pos: -3.5,-23.5 parent: 8364 + - uid: 28723 + components: + - type: Transform + pos: -11.5,47.5 + parent: 8364 - proto: TableReinforcedGlass entities: - uid: 3167 @@ -158325,6 +160973,11 @@ entities: - type: Transform pos: -9.5,-27.5 parent: 8364 + - uid: 5877 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 8364 - uid: 6123 components: - type: Transform @@ -158336,11 +160989,6 @@ entities: - type: Transform pos: -7.5,22.5 parent: 8364 - - uid: 6389 - components: - - type: Transform - pos: -9.5,-25.5 - parent: 8364 - uid: 6472 components: - type: Transform @@ -158860,6 +161508,11 @@ entities: - type: Transform pos: -13.5,-14.5 parent: 8364 + - uid: 16974 + components: + - type: Transform + pos: -9.5,-24.5 + parent: 8364 - uid: 18581 components: - type: Transform @@ -158921,6 +161574,11 @@ entities: - type: Transform pos: 18.5,-9.5 parent: 8364 + - uid: 28725 + components: + - type: Transform + pos: -11.5,-21.5 + parent: 8364 - proto: TargetClown entities: - uid: 7612 @@ -160564,11 +163222,6 @@ entities: - type: Transform pos: 75.5,-43.5 parent: 8364 - - uid: 7314 - components: - - type: Transform - pos: -12.5,47.5 - parent: 8364 - uid: 14610 components: - type: Transform @@ -160622,6 +163275,8 @@ entities: - type: Transform pos: 34.5,-33.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: VendingMachineYouTool entities: - uid: 12245 @@ -160646,6 +163301,8 @@ entities: - type: Transform pos: 70.5,-33.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: WallmountTelevision entities: - uid: 25840 @@ -160653,11 +163310,15 @@ entities: - type: Transform pos: 23.5,1.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 25928 components: - type: Transform pos: -21.5,0.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: WallReinforced entities: - uid: 1 @@ -160968,13 +163629,16 @@ entities: - uid: 206 components: - type: Transform - rot: 3.141592653589793 rad pos: -32.5,1.5 parent: 8364 + - uid: 217 + components: + - type: Transform + pos: -12.5,44.5 + parent: 8364 - uid: 219 components: - type: Transform - rot: 3.141592653589793 rad pos: -30.5,1.5 parent: 8364 - uid: 239 @@ -163582,11 +166246,6 @@ entities: - type: Transform pos: 75.5,-26.5 parent: 8364 - - uid: 2389 - components: - - type: Transform - pos: 27.5,-82.5 - parent: 8364 - uid: 2408 components: - type: Transform @@ -163792,11 +166451,6 @@ entities: - type: Transform pos: -42.5,-19.5 parent: 8364 - - uid: 2832 - components: - - type: Transform - pos: 24.5,-84.5 - parent: 8364 - uid: 2862 components: - type: Transform @@ -165452,11 +168106,6 @@ entities: - type: Transform pos: 67.5,-70.5 parent: 8364 - - uid: 4005 - components: - - type: Transform - pos: 24.5,-83.5 - parent: 8364 - uid: 4028 components: - type: Transform @@ -165465,7 +168114,7 @@ entities: - uid: 4031 components: - type: Transform - pos: 17.5,-82.5 + pos: 24.5,-85.5 parent: 8364 - uid: 4033 components: @@ -165487,11 +168136,6 @@ entities: - type: Transform pos: 10.5,-55.5 parent: 8364 - - uid: 4041 - components: - - type: Transform - pos: 19.5,-83.5 - parent: 8364 - uid: 4043 components: - type: Transform @@ -165520,7 +168164,7 @@ entities: - uid: 4105 components: - type: Transform - pos: 26.5,-82.5 + pos: 20.5,-88.5 parent: 8364 - uid: 4114 components: @@ -165627,6 +168271,11 @@ entities: - type: Transform pos: 14.5,-67.5 parent: 8364 + - uid: 4135 + components: + - type: Transform + pos: 27.5,-85.5 + parent: 8364 - uid: 4138 components: - type: Transform @@ -165967,21 +168616,41 @@ entities: - type: Transform pos: 64.5,-59.5 parent: 8364 + - uid: 4398 + components: + - type: Transform + pos: 12.5,-82.5 + parent: 8364 - uid: 4413 components: - type: Transform pos: 59.5,-63.5 parent: 8364 - - uid: 4429 + - uid: 4425 components: - type: Transform - pos: 16.5,-86.5 + pos: 27.5,-82.5 + parent: 8364 + - uid: 4428 + components: + - type: Transform + pos: 26.5,-82.5 parent: 8364 - uid: 4457 components: - type: Transform pos: -24.5,-84.5 parent: 8364 + - uid: 4467 + components: + - type: Transform + pos: 24.5,-86.5 + parent: 8364 + - uid: 4471 + components: + - type: Transform + pos: 20.5,-94.5 + parent: 8364 - uid: 4505 components: - type: Transform @@ -166082,6 +168751,16 @@ entities: - type: Transform pos: -20.5,-88.5 parent: 8364 + - uid: 4626 + components: + - type: Transform + pos: 20.5,-90.5 + parent: 8364 + - uid: 4627 + components: + - type: Transform + pos: 16.5,-94.5 + parent: 8364 - uid: 4647 components: - type: Transform @@ -166637,6 +169316,11 @@ entities: - type: Transform pos: 18.5,47.5 parent: 8364 + - uid: 5198 + components: + - type: Transform + pos: 20.5,-86.5 + parent: 8364 - uid: 5240 components: - type: Transform @@ -166652,6 +169336,11 @@ entities: - type: Transform pos: 2.5,-22.5 parent: 8364 + - uid: 5271 + components: + - type: Transform + pos: 27.5,-86.5 + parent: 8364 - uid: 5288 components: - type: Transform @@ -166772,6 +169461,11 @@ entities: - type: Transform pos: -2.5,-26.5 parent: 8364 + - uid: 5861 + components: + - type: Transform + pos: 16.5,-88.5 + parent: 8364 - uid: 5874 components: - type: Transform @@ -166965,7 +169659,7 @@ entities: - uid: 7217 components: - type: Transform - pos: 24.5,-86.5 + pos: 12.5,-88.5 parent: 8364 - uid: 7275 components: @@ -167067,6 +169761,11 @@ entities: - type: Transform pos: -18.5,39.5 parent: 8364 + - uid: 7416 + components: + - type: Transform + pos: -15.5,44.5 + parent: 8364 - uid: 7417 components: - type: Transform @@ -168512,6 +171211,11 @@ entities: - type: Transform pos: -18.5,38.5 parent: 8364 + - uid: 8550 + components: + - type: Transform + pos: -10.5,43.5 + parent: 8364 - uid: 8554 components: - type: Transform @@ -168552,6 +171256,11 @@ entities: - type: Transform pos: 13.5,52.5 parent: 8364 + - uid: 8602 + components: + - type: Transform + pos: 12.5,-84.5 + parent: 8364 - uid: 8605 components: - type: Transform @@ -169167,11 +171876,6 @@ entities: - type: Transform pos: -42.5,-20.5 parent: 8364 - - uid: 10037 - components: - - type: Transform - pos: -15.5,43.5 - parent: 8364 - uid: 10534 components: - type: Transform @@ -169202,6 +171906,11 @@ entities: - type: Transform pos: 26.5,-59.5 parent: 8364 + - uid: 11754 + components: + - type: Transform + pos: 16.5,-84.5 + parent: 8364 - uid: 11890 components: - type: Transform @@ -169247,6 +171956,16 @@ entities: - type: Transform pos: -29.5,25.5 parent: 8364 + - uid: 12262 + components: + - type: Transform + pos: 12.5,-90.5 + parent: 8364 + - uid: 12460 + components: + - type: Transform + pos: 25.5,-86.5 + parent: 8364 - uid: 12464 components: - type: Transform @@ -169337,6 +172056,11 @@ entities: - type: Transform pos: -36.5,-32.5 parent: 8364 + - uid: 14105 + components: + - type: Transform + pos: 26.5,-86.5 + parent: 8364 - uid: 14132 components: - type: Transform @@ -169402,11 +172126,6 @@ entities: - type: Transform pos: -33.5,-23.5 parent: 8364 - - uid: 15489 - components: - - type: Transform - pos: 27.5,-85.5 - parent: 8364 - uid: 15491 components: - type: Transform @@ -169462,16 +172181,6 @@ entities: - type: Transform pos: -4.5,-22.5 parent: 8364 - - uid: 16623 - components: - - type: Transform - pos: 26.5,-85.5 - parent: 8364 - - uid: 16632 - components: - - type: Transform - pos: 27.5,-83.5 - parent: 8364 - uid: 16709 components: - type: Transform @@ -169977,26 +172686,6 @@ entities: - type: Transform pos: -3.5,-65.5 parent: 8364 - - uid: 23148 - components: - - type: Transform - pos: 20.5,-86.5 - parent: 8364 - - uid: 23149 - components: - - type: Transform - pos: 19.5,-86.5 - parent: 8364 - - uid: 23165 - components: - - type: Transform - pos: 22.5,-93.5 - parent: 8364 - - uid: 23170 - components: - - type: Transform - pos: 17.5,-83.5 - parent: 8364 - uid: 23201 components: - type: Transform @@ -170110,7 +172799,7 @@ entities: - uid: 25045 components: - type: Transform - pos: 12.5,-84.5 + pos: 20.5,-91.5 parent: 8364 - uid: 25076 components: @@ -170130,38 +172819,13 @@ entities: - uid: 25189 components: - type: Transform - pos: 31.5,-93.5 - parent: 8364 - - uid: 25221 - components: - - type: Transform - pos: 17.5,-86.5 + pos: 19.5,-94.5 parent: 8364 - uid: 25228 components: - type: Transform pos: -18.5,-80.5 parent: 8364 - - uid: 25229 - components: - - type: Transform - pos: 26.5,-93.5 - parent: 8364 - - uid: 25248 - components: - - type: Transform - pos: 32.5,-93.5 - parent: 8364 - - uid: 25250 - components: - - type: Transform - pos: 24.5,-82.5 - parent: 8364 - - uid: 25260 - components: - - type: Transform - pos: 17.5,-85.5 - parent: 8364 - uid: 25828 components: - type: Transform @@ -170492,11 +173156,6 @@ entities: - type: Transform pos: 9.5,-91.5 parent: 8364 - - uid: 26879 - components: - - type: Transform - pos: 9.5,-90.5 - parent: 8364 - uid: 26897 components: - type: Transform @@ -170530,28 +173189,23 @@ entities: - uid: 26960 components: - type: Transform - pos: 33.5,-93.5 + pos: 22.5,-82.5 parent: 8364 - uid: 26985 components: - type: Transform pos: 10.5,-68.5 parent: 8364 - - uid: 26990 + - uid: 26989 components: - type: Transform - pos: 12.5,-82.5 + pos: 22.5,-86.5 parent: 8364 - uid: 26991 components: - type: Transform pos: -10.5,-81.5 parent: 8364 - - uid: 27026 - components: - - type: Transform - pos: 35.5,-93.5 - parent: 8364 - uid: 27043 components: - type: Transform @@ -170572,25 +173226,15 @@ entities: - type: Transform pos: -22.5,-78.5 parent: 8364 - - uid: 27067 + - uid: 27125 components: - type: Transform - pos: 19.5,-85.5 - parent: 8364 - - uid: 27068 - components: - - type: Transform - pos: 12.5,-85.5 - parent: 8364 - - uid: 27080 - components: - - type: Transform - pos: 12.5,-83.5 + pos: 23.5,-82.5 parent: 8364 - uid: 27146 components: - type: Transform - pos: 29.5,-93.5 + pos: 24.5,-83.5 parent: 8364 - uid: 27165 components: @@ -170602,50 +173246,30 @@ entities: - type: Transform pos: -20.5,-79.5 parent: 8364 - - uid: 27180 + - uid: 27190 components: - type: Transform - pos: 34.5,-93.5 + pos: 20.5,-87.5 + parent: 8364 + - uid: 27191 + components: + - type: Transform + pos: 27.5,-83.5 parent: 8364 - uid: 27290 components: - type: Transform pos: -18.5,-78.5 parent: 8364 - - uid: 27618 + - uid: 27431 components: - type: Transform - pos: 24.5,-93.5 + pos: 12.5,-94.5 parent: 8364 - - uid: 27621 + - uid: 27475 components: - type: Transform - pos: 25.5,-93.5 - parent: 8364 - - uid: 27623 - components: - - type: Transform - pos: 27.5,-93.5 - parent: 8364 - - uid: 27624 - components: - - type: Transform - pos: 23.5,-93.5 - parent: 8364 - - uid: 27625 - components: - - type: Transform - pos: 30.5,-93.5 - parent: 8364 - - uid: 27702 - components: - - type: Transform - pos: 28.5,-93.5 - parent: 8364 - - uid: 27706 - components: - - type: Transform - pos: 25.5,-85.5 + pos: 24.5,-82.5 parent: 8364 - uid: 27788 components: @@ -170732,26 +173356,16 @@ entities: - type: Transform pos: 1.5,-10.5 parent: 8364 - - uid: 27851 - components: - - type: Transform - pos: 12.5,-86.5 - parent: 8364 - - uid: 27853 - components: - - type: Transform - pos: 24.5,-85.5 - parent: 8364 - - uid: 27857 - components: - - type: Transform - pos: 19.5,-82.5 - parent: 8364 - uid: 27983 components: - type: Transform pos: 0.5,-18.5 parent: 8364 + - uid: 27990 + components: + - type: Transform + pos: 17.5,-82.5 + parent: 8364 - uid: 28150 components: - type: Transform @@ -170767,6 +173381,21 @@ entities: - type: Transform pos: 0.5,-25.5 parent: 8364 + - uid: 28390 + components: + - type: Transform + pos: 9.5,-89.5 + parent: 8364 + - uid: 28636 + components: + - type: Transform + pos: -10.5,44.5 + parent: 8364 + - uid: 28726 + components: + - type: Transform + pos: 16.5,-90.5 + parent: 8364 - proto: WallShuttle entities: - uid: 2304 @@ -178863,6 +181492,14 @@ entities: - type: Transform pos: 49.5,12.5 parent: 8364 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 28715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,43.5 + parent: 8364 - proto: WardrobeAtmospherics entities: - uid: 15758 @@ -179312,6 +181949,8 @@ entities: - type: Transform pos: 19.5,-63.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: WarningCO2 entities: - uid: 22908 @@ -179319,6 +181958,8 @@ entities: - type: Transform pos: 25.5,-53.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: WarningN2 entities: - uid: 22913 @@ -179326,6 +181967,8 @@ entities: - type: Transform pos: 11.5,-63.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: WarningO2 entities: - uid: 22912 @@ -179333,6 +181976,8 @@ entities: - type: Transform pos: 15.5,-63.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: WarningPlasma entities: - uid: 22910 @@ -179340,6 +181985,8 @@ entities: - type: Transform pos: 25.5,-45.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: WarningWaste entities: - uid: 22909 @@ -179347,11 +181994,15 @@ entities: - type: Transform pos: 25.5,-49.5 parent: 8364 + - type: Fixtures + fixtures: {} - uid: 22911 components: - type: Transform pos: 25.5,-41.5 parent: 8364 + - type: Fixtures + fixtures: {} - proto: WarpPoint entities: - uid: 22219 @@ -179550,33 +182201,6 @@ entities: - type: Transform pos: -5.5,-6.5 parent: 8364 - - uid: 5646 - components: - - type: Transform - pos: -9.5,-27.5 - parent: 8364 - - type: ContainerContainer - containers: - WeaponCapacitorCharger-powerCellContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger-slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - uid: 5680 components: - type: Transform @@ -179642,11 +182266,11 @@ entities: - type: Transform pos: -9.5,-15.5 parent: 8364 - - uid: 28637 + - uid: 28722 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,46.5 + rot: 3.141592653589793 rad + pos: -11.5,47.5 parent: 8364 - proto: WeaponDisablerPractice entities: @@ -179771,15 +182395,6 @@ entities: deviceLists: - 258 - 28663 - - uid: 217 - components: - - type: Transform - pos: -12.5,44.5 - parent: 8364 - - type: DeviceNetwork - deviceLists: - - 271 - - 270 - uid: 269 components: - type: Transform @@ -179789,6 +182404,22 @@ entities: deviceLists: - 258 - 28663 + - uid: 7715 + components: + - type: Transform + pos: -12.5,43.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 8420 + - uid: 28582 + components: + - type: Transform + pos: -12.5,45.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 8420 - proto: WeaponEnergyTurretSecurityControlPanel entities: - uid: 258 @@ -179800,22 +182431,16 @@ entities: devices: - 203 - 269 - - uid: 270 + - uid: 8420 components: - type: Transform - pos: -9.5,48.5 + rot: 1.5707963267948966 rad + pos: -7.5,39.5 parent: 8364 - type: DeviceList devices: - - 217 - - uid: 271 - components: - - type: Transform - pos: -8.5,43.5 - parent: 8364 - - type: DeviceList - devices: - - 217 + - 7715 + - 28582 - uid: 28663 components: - type: Transform @@ -179826,6 +182451,15 @@ entities: devices: - 203 - 269 +- proto: WeaponLaserCarbine + entities: + - uid: 26291 + components: + - type: Transform + parent: 26316 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponLaserCarbinePractice entities: - uid: 5107 @@ -179838,13 +182472,49 @@ entities: - type: Transform pos: 10.54466,50.378418 parent: 8364 +- proto: WeaponRifleLecter + entities: + - uid: 26302 + components: + - type: Transform + parent: 25688 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26305 + components: + - type: Transform + parent: 25688 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponShotgunEnforcer entities: - uid: 9086 components: - type: Transform - pos: -7.4696865,34.5829 + pos: -7.4221897,34.38881 parent: 8364 + - type: BallisticAmmoProvider + proto: ShellShotgunSlug +- proto: WeaponShotgunKammerer + entities: + - uid: 26308 + components: + - type: Transform + parent: 26317 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponSubMachineGunDrozd + entities: + - uid: 26312 + components: + - type: Transform + parent: 8594 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponSubMachineGunWt550 entities: - uid: 5089 @@ -180094,11 +182764,27 @@ entities: - type: Transform pos: -4.5,29.5 parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 9095: + - - DoorStatus + - Close + 9096: + - - DoorStatus + - Close - uid: 9109 components: - type: Transform pos: -5.5,29.5 parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 9095: + - - DoorStatus + - Close + 9096: + - - DoorStatus + - Close - uid: 9264 components: - type: Transform @@ -180169,6 +182855,63 @@ entities: rot: 3.141592653589793 rad pos: -23.5,39.5 parent: 8364 + - uid: 28702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,31.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9094: + - - DoorStatus + - Close + 9093: + - - DoorStatus + - Close + 9092: + - - DoorStatus + - Close + - uid: 28703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,32.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9092: + - - DoorStatus + - Close + 9093: + - - DoorStatus + - Close + 9094: + - - DoorStatus + - Close + - uid: 28704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,33.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9092: + - - DoorStatus + - Close + 9093: + - - DoorStatus + - Close + 9094: + - - DoorStatus + - Close - proto: WindoorAssembly entities: - uid: 13311 @@ -180291,30 +183034,73 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,33.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28703: + - - DoorStatus + - Close + 28704: + - - DoorStatus + - Close + 28702: + - - DoorStatus + - Close - uid: 9093 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,32.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28702: + - - DoorStatus + - Close + 28703: + - - DoorStatus + - Close + 28704: + - - DoorStatus + - Close - uid: 9094 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,31.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28702: + - - DoorStatus + - Close + 28703: + - - DoorStatus + - Close + 28704: + - - DoorStatus + - Close - uid: 9095 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,29.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 9096 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,29.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 - proto: WindoorSecureBrigLocked entities: - uid: 757 @@ -180333,30 +183119,12 @@ entities: rot: 3.141592653589793 rad pos: -10.5,22.5 parent: 8364 - - uid: 9100 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,33.5 - parent: 8364 - - uid: 9102 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,32.5 - parent: 8364 - uid: 9103 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,33.5 parent: 8364 - - uid: 9106 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,31.5 - parent: 8364 - proto: WindoorSecureChemistryLocked entities: - uid: 1758 @@ -180536,12 +183304,6 @@ entities: - type: Transform pos: 79.5,-4.5 parent: 8364 - - uid: 28636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,46.5 - parent: 8364 - proto: Window entities: - uid: 526 diff --git a/Resources/Maps/elkridge.yml b/Resources/Maps/elkridge.yml index 01129f897a..e3b6021c07 100644 --- a/Resources/Maps/elkridge.yml +++ b/Resources/Maps/elkridge.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 264.0.0 + engineVersion: 266.0.0 forkId: "" forkVersion: "" - time: 07/22/2025 15:38:07 - entityCount: 18654 + time: 08/31/2025 08:35:35 + entityCount: 18658 maps: - 1 grids: @@ -10918,6 +10918,8 @@ entities: - 454 - 18629 - 18628 + - type: Fixtures + fixtures: {} - uid: 811 components: - type: MetaData @@ -10945,6 +10947,8 @@ entities: - 197 - 243 - 1619 + - type: Fixtures + fixtures: {} - uid: 813 components: - type: MetaData @@ -10958,6 +10962,8 @@ entities: - 902 - 909 - 1628 + - type: Fixtures + fixtures: {} - uid: 814 components: - type: MetaData @@ -10976,6 +10982,8 @@ entities: - 265 - 266 - 1629 + - type: Fixtures + fixtures: {} - uid: 817 components: - type: MetaData @@ -10989,6 +10997,8 @@ entities: - 960 - 959 - 975 + - type: Fixtures + fixtures: {} - uid: 818 components: - type: MetaData @@ -11005,6 +11015,8 @@ entities: - 197 - 243 - 1619 + - type: Fixtures + fixtures: {} - uid: 819 components: - type: MetaData @@ -11018,6 +11030,8 @@ entities: - 912 - 911 - 944 + - type: Fixtures + fixtures: {} - uid: 822 components: - type: MetaData @@ -11030,6 +11044,8 @@ entities: - 947 - 946 - 12722 + - type: Fixtures + fixtures: {} - uid: 958 components: - type: MetaData @@ -11051,6 +11067,8 @@ entities: - 10846 - 10847 - 10848 + - type: Fixtures + fixtures: {} - uid: 1136 components: - type: MetaData @@ -11063,6 +11081,8 @@ entities: - 7523 - 13848 - 368 + - type: Fixtures + fixtures: {} - uid: 2196 components: - type: MetaData @@ -11077,6 +11097,8 @@ entities: - 11393 - 14212 - 14136 + - type: Fixtures + fixtures: {} - uid: 2200 components: - type: MetaData @@ -11099,6 +11121,8 @@ entities: - 12452 - 12449 - 12453 + - type: Fixtures + fixtures: {} - uid: 3078 components: - type: MetaData @@ -11112,6 +11136,8 @@ entities: - 1395 - 12516 - 12541 + - type: Fixtures + fixtures: {} - uid: 3330 components: - type: MetaData @@ -11125,6 +11151,8 @@ entities: - 11812 - 12426 - 8895 + - type: Fixtures + fixtures: {} - uid: 3340 components: - type: MetaData @@ -11140,6 +11168,8 @@ entities: - 14465 - 12539 - 12538 + - type: Fixtures + fixtures: {} - uid: 5566 components: - type: MetaData @@ -11151,6 +11181,8 @@ entities: - type: DeviceList devices: - 7952 + - type: Fixtures + fixtures: {} - uid: 5980 components: - type: MetaData @@ -11166,6 +11198,8 @@ entities: - 1029 - 1028 - 9755 + - type: Fixtures + fixtures: {} - uid: 6106 components: - type: Transform @@ -11177,6 +11211,8 @@ entities: - 2280 - 3484 - 10525 + - type: Fixtures + fixtures: {} - uid: 6195 components: - type: MetaData @@ -11185,6 +11221,8 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8141 components: - type: MetaData @@ -11196,6 +11234,8 @@ entities: - type: DeviceList devices: - 13849 + - type: Fixtures + fixtures: {} - uid: 10356 components: - type: MetaData @@ -11204,6 +11244,8 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11015 components: - type: MetaData @@ -11216,6 +11258,8 @@ entities: - 11037 - 11038 - 11039 + - type: Fixtures + fixtures: {} - uid: 11020 components: - type: MetaData @@ -11236,6 +11280,8 @@ entities: - 10804 - 10878 - 10879 + - type: Fixtures + fixtures: {} - uid: 11079 components: - type: MetaData @@ -11250,6 +11296,8 @@ entities: - 10999 - 10876 - 10877 + - type: Fixtures + fixtures: {} - uid: 11080 components: - type: MetaData @@ -11263,6 +11311,8 @@ entities: - 11057 - 11058 - 11065 + - type: Fixtures + fixtures: {} - uid: 11082 components: - type: MetaData @@ -11278,6 +11328,8 @@ entities: - 10998 - 10874 - 10875 + - type: Fixtures + fixtures: {} - uid: 11083 components: - type: MetaData @@ -11292,6 +11344,8 @@ entities: - 5035 - 10874 - 10875 + - type: Fixtures + fixtures: {} - uid: 11197 components: - type: MetaData @@ -11307,6 +11361,8 @@ entities: - 14237 - 11190 - 5155 + - type: Fixtures + fixtures: {} - uid: 11199 components: - type: MetaData @@ -11322,6 +11378,8 @@ entities: - 12751 - 6856 - 16465 + - type: Fixtures + fixtures: {} - uid: 11203 components: - type: MetaData @@ -11334,6 +11392,8 @@ entities: - 13082 - 14784 - 6886 + - type: Fixtures + fixtures: {} - uid: 11204 components: - type: MetaData @@ -11349,6 +11409,8 @@ entities: - 11205 - 16469 - 16468 + - type: Fixtures + fixtures: {} - uid: 11206 components: - type: MetaData @@ -11362,6 +11424,8 @@ entities: - 6737 - 5295 - 11198 + - type: Fixtures + fixtures: {} - uid: 11207 components: - type: MetaData @@ -11377,6 +11441,8 @@ entities: - 11224 - 16478 - 16479 + - type: Fixtures + fixtures: {} - uid: 11208 components: - type: MetaData @@ -11390,6 +11456,8 @@ entities: - 11254 - 13087 - 12921 + - type: Fixtures + fixtures: {} - uid: 11209 components: - type: MetaData @@ -11400,6 +11468,8 @@ entities: - type: DeviceList devices: - 16480 + - type: Fixtures + fixtures: {} - uid: 11210 components: - type: MetaData @@ -11413,6 +11483,8 @@ entities: - 11185 - 11202 - 11150 + - type: Fixtures + fixtures: {} - uid: 11211 components: - type: MetaData @@ -11431,6 +11503,8 @@ entities: - 6856 - 16465 - 16471 + - type: Fixtures + fixtures: {} - uid: 11212 components: - type: MetaData @@ -11445,6 +11519,8 @@ entities: - 11163 - 13967 - 12920 + - type: Fixtures + fixtures: {} - uid: 11289 components: - type: MetaData @@ -11458,6 +11534,8 @@ entities: - 11285 - 5028 - 11257 + - type: Fixtures + fixtures: {} - uid: 11291 components: - type: MetaData @@ -11471,6 +11549,8 @@ entities: - 11288 - 8834 - 1908 + - type: Fixtures + fixtures: {} - uid: 11296 components: - type: MetaData @@ -11483,6 +11563,8 @@ entities: - 5498 - 5500 - 11315 + - type: Fixtures + fixtures: {} - uid: 11297 components: - type: MetaData @@ -11494,6 +11576,8 @@ entities: - type: DeviceList devices: - 11290 + - type: Fixtures + fixtures: {} - uid: 11301 components: - type: MetaData @@ -11507,6 +11591,8 @@ entities: - 11261 - 11258 - 11259 + - type: Fixtures + fixtures: {} - uid: 11357 components: - type: MetaData @@ -11519,6 +11605,8 @@ entities: devices: - 11344 - 357 + - type: Fixtures + fixtures: {} - uid: 11358 components: - type: MetaData @@ -11532,6 +11620,8 @@ entities: - 11320 - 11318 - 11361 + - type: Fixtures + fixtures: {} - uid: 11359 components: - type: MetaData @@ -11545,6 +11635,8 @@ entities: - 11319 - 11321 - 11360 + - type: Fixtures + fixtures: {} - uid: 11397 components: - type: MetaData @@ -11558,6 +11650,8 @@ entities: - 11392 - 11395 - 11394 + - type: Fixtures + fixtures: {} - uid: 11399 components: - type: MetaData @@ -11572,6 +11666,8 @@ entities: - 11410 - 11411 - 10873 + - type: Fixtures + fixtures: {} - uid: 12625 components: - type: MetaData @@ -11586,6 +11682,8 @@ entities: - 12649 - 10376 - 1437 + - type: Fixtures + fixtures: {} - uid: 12674 components: - type: MetaData @@ -11597,6 +11695,8 @@ entities: - type: DeviceList devices: - 2624 + - type: Fixtures + fixtures: {} - uid: 12724 components: - type: MetaData @@ -11616,6 +11716,8 @@ entities: - 3278 - 3622 - 6044 + - type: Fixtures + fixtures: {} - uid: 12725 components: - type: MetaData @@ -11629,6 +11731,8 @@ entities: - 9018 - 9027 - 9028 + - type: Fixtures + fixtures: {} - uid: 12726 components: - type: MetaData @@ -11641,6 +11745,8 @@ entities: - 4927 - 4937 - 9064 + - type: Fixtures + fixtures: {} - uid: 12727 components: - type: MetaData @@ -11654,6 +11760,8 @@ entities: - 8327 - 4923 - 9048 + - type: Fixtures + fixtures: {} - uid: 12729 components: - type: MetaData @@ -11667,6 +11775,8 @@ entities: - 10476 - 10064 - 12703 + - type: Fixtures + fixtures: {} - uid: 12730 components: - type: MetaData @@ -11679,6 +11789,8 @@ entities: - 10444 - 10477 - 10427 + - type: Fixtures + fixtures: {} - uid: 12731 components: - type: MetaData @@ -11690,6 +11802,8 @@ entities: - type: DeviceList devices: - 10065 + - type: Fixtures + fixtures: {} - uid: 12732 components: - type: MetaData @@ -11705,12 +11819,16 @@ entities: - 2768 - 13804 - 13805 + - type: Fixtures + fixtures: {} - uid: 13031 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13789 components: - type: MetaData @@ -11728,6 +11846,8 @@ entities: - 10826 - 10820 - 357 + - type: Fixtures + fixtures: {} - uid: 13790 components: - type: MetaData @@ -11748,6 +11868,8 @@ entities: - 10824 - 10814 - 10812 + - type: Fixtures + fixtures: {} - uid: 13791 components: - type: MetaData @@ -11768,6 +11890,8 @@ entities: - 14212 - 14136 - 18028 + - type: Fixtures + fixtures: {} - uid: 13792 components: - type: MetaData @@ -11786,6 +11910,8 @@ entities: - 11641 - 11644 - 11642 + - type: Fixtures + fixtures: {} - uid: 13793 components: - type: MetaData @@ -11803,6 +11929,8 @@ entities: - 10812 - 10813 - 10817 + - type: Fixtures + fixtures: {} - uid: 13794 components: - type: MetaData @@ -11824,6 +11952,8 @@ entities: - 10832 - 10833 - 12011 + - type: Fixtures + fixtures: {} - uid: 13795 components: - type: MetaData @@ -11841,6 +11971,8 @@ entities: - 10828 - 14970 - 14997 + - type: Fixtures + fixtures: {} - uid: 13800 components: - type: MetaData @@ -11860,6 +11992,8 @@ entities: - 12549 - 12547 - 12548 + - type: Fixtures + fixtures: {} - uid: 13811 components: - type: MetaData @@ -11878,6 +12012,8 @@ entities: - 10898 - 10899 - 13810 + - type: Fixtures + fixtures: {} - uid: 13812 components: - type: MetaData @@ -11892,6 +12028,8 @@ entities: - 8740 - 8741 - 13810 + - type: Fixtures + fixtures: {} - uid: 13813 components: - type: MetaData @@ -11909,6 +12047,8 @@ entities: - 10899 - 10900 - 10901 + - type: Fixtures + fixtures: {} - uid: 13814 components: - type: MetaData @@ -11922,6 +12062,8 @@ entities: - 8713 - 8714 - 8699 + - type: Fixtures + fixtures: {} - uid: 13815 components: - type: MetaData @@ -11935,6 +12077,8 @@ entities: - 8686 - 8677 - 12546 + - type: Fixtures + fixtures: {} - uid: 13816 components: - type: MetaData @@ -11951,6 +12095,8 @@ entities: - 10902 - 10901 - 10900 + - type: Fixtures + fixtures: {} - uid: 13817 components: - type: MetaData @@ -11965,6 +12111,8 @@ entities: - 8695 - 10905 - 4374 + - type: Fixtures + fixtures: {} - uid: 13818 components: - type: MetaData @@ -11977,6 +12125,8 @@ entities: - 5762 - 1428 - 8754 + - type: Fixtures + fixtures: {} - uid: 13819 components: - type: MetaData @@ -11991,6 +12141,8 @@ entities: - 8623 - 8622 - 10902 + - type: Fixtures + fixtures: {} - uid: 13821 components: - type: MetaData @@ -12003,6 +12155,8 @@ entities: - 8799 - 8800 - 8814 + - type: Fixtures + fixtures: {} - uid: 13822 components: - type: MetaData @@ -12015,6 +12169,8 @@ entities: - 8781 - 8782 - 8780 + - type: Fixtures + fixtures: {} - uid: 13823 components: - type: MetaData @@ -12028,6 +12184,8 @@ entities: - 8790 - 8792 - 8791 + - type: Fixtures + fixtures: {} - uid: 13824 components: - type: MetaData @@ -12040,6 +12198,8 @@ entities: - 8757 - 8756 - 8758 + - type: Fixtures + fixtures: {} - uid: 13825 components: - type: MetaData @@ -12053,6 +12213,8 @@ entities: - 8733 - 8731 - 8732 + - type: Fixtures + fixtures: {} - uid: 13852 components: - type: MetaData @@ -12067,6 +12229,8 @@ entities: - 2835 - 10412 - 10907 + - type: Fixtures + fixtures: {} - uid: 13862 components: - type: MetaData @@ -12087,6 +12251,8 @@ entities: - 10891 - 10890 - 11143 + - type: Fixtures + fixtures: {} - uid: 13863 components: - type: MetaData @@ -12107,6 +12273,8 @@ entities: - 12542 - 10894 - 10895 + - type: Fixtures + fixtures: {} - uid: 13864 components: - type: MetaData @@ -12120,6 +12288,8 @@ entities: - 12469 - 12468 - 12471 + - type: Fixtures + fixtures: {} - uid: 13865 components: - type: MetaData @@ -12133,6 +12303,8 @@ entities: - 12454 - 12455 - 12470 + - type: Fixtures + fixtures: {} - uid: 13870 components: - type: MetaData @@ -12159,6 +12331,8 @@ entities: - 11224 - 16478 - 16479 + - type: Fixtures + fixtures: {} - uid: 13933 components: - type: MetaData @@ -12178,6 +12352,8 @@ entities: - 10883 - 10840 - 10841 + - type: Fixtures + fixtures: {} - uid: 13934 components: - type: MetaData @@ -12191,6 +12367,8 @@ entities: - 12395 - 12398 - 12401 + - type: Fixtures + fixtures: {} - uid: 13935 components: - type: MetaData @@ -12205,6 +12383,8 @@ entities: - 12400 - 12403 - 10883 + - type: Fixtures + fixtures: {} - uid: 13962 components: - type: MetaData @@ -12222,6 +12402,8 @@ entities: - 12404 - 10840 - 10841 + - type: Fixtures + fixtures: {} - uid: 13971 components: - type: MetaData @@ -12234,6 +12416,8 @@ entities: - 12647 - 10859 - 18302 + - type: Fixtures + fixtures: {} - uid: 14483 components: - type: MetaData @@ -12246,6 +12430,8 @@ entities: devices: - 18031 - 18032 + - type: Fixtures + fixtures: {} - uid: 14484 components: - type: MetaData @@ -12258,6 +12444,8 @@ entities: - 18029 - 18028 - 18030 + - type: Fixtures + fixtures: {} - uid: 14486 components: - type: MetaData @@ -12269,6 +12457,8 @@ entities: - type: DeviceList devices: - 18033 + - type: Fixtures + fixtures: {} - uid: 14552 components: - type: MetaData @@ -12287,6 +12477,8 @@ entities: - 13834 - 13835 - 13850 + - type: Fixtures + fixtures: {} - uid: 14605 components: - type: MetaData @@ -12306,6 +12498,8 @@ entities: - 18030 - 18031 - 18032 + - type: Fixtures + fixtures: {} - uid: 14859 components: - type: MetaData @@ -12322,6 +12516,8 @@ entities: - 14998 - 14999 - 4973 + - type: Fixtures + fixtures: {} - uid: 15065 components: - type: MetaData @@ -12336,6 +12532,8 @@ entities: - 11896 - 1879 - 1878 + - type: Fixtures + fixtures: {} - uid: 15066 components: - type: MetaData @@ -12351,6 +12549,8 @@ entities: - 14847 - 14970 - 14997 + - type: Fixtures + fixtures: {} - uid: 15067 components: - type: MetaData @@ -12365,6 +12565,8 @@ entities: - 13746 - 13539 - 4973 + - type: Fixtures + fixtures: {} - uid: 15069 components: - type: MetaData @@ -12380,6 +12582,8 @@ entities: - 14029 - 14998 - 14999 + - type: Fixtures + fixtures: {} - uid: 15093 components: - type: MetaData @@ -12388,6 +12592,8 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15135 components: - type: MetaData @@ -12398,6 +12604,8 @@ entities: - type: DeviceList devices: - 13744 + - type: Fixtures + fixtures: {} - uid: 15190 components: - type: MetaData @@ -12410,6 +12618,8 @@ entities: - 12743 - 5665 - 11808 + - type: Fixtures + fixtures: {} - uid: 15197 components: - type: MetaData @@ -12418,6 +12628,8 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15328 components: - type: MetaData @@ -12442,6 +12654,8 @@ entities: - 1879 - 1878 - 18033 + - type: Fixtures + fixtures: {} - uid: 15382 components: - type: MetaData @@ -12455,6 +12669,8 @@ entities: - 1782 - 4448 - 15429 + - type: Fixtures + fixtures: {} - uid: 15453 components: - type: MetaData @@ -12466,6 +12682,8 @@ entities: devices: - 15450 - 15454 + - type: Fixtures + fixtures: {} - uid: 15456 components: - type: MetaData @@ -12489,6 +12707,8 @@ entities: - 10854 - 10853 - 10852 + - type: Fixtures + fixtures: {} - uid: 15650 components: - type: MetaData @@ -12500,6 +12720,8 @@ entities: - type: DeviceList devices: - 15649 + - type: Fixtures + fixtures: {} - uid: 15720 components: - type: MetaData @@ -12513,6 +12735,8 @@ entities: - 15571 - 15318 - 15319 + - type: Fixtures + fixtures: {} - uid: 15876 components: - type: MetaData @@ -12526,6 +12750,8 @@ entities: - 6491 - 15875 - 6202 + - type: Fixtures + fixtures: {} - uid: 15940 components: - type: MetaData @@ -12539,6 +12765,8 @@ entities: - 15941 - 15942 - 15943 + - type: Fixtures + fixtures: {} - uid: 16172 components: - type: MetaData @@ -12552,6 +12780,8 @@ entities: - 8812 - 8811 - 8813 + - type: Fixtures + fixtures: {} - uid: 16745 components: - type: MetaData @@ -12560,6 +12790,8 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16808 components: - type: MetaData @@ -12576,6 +12808,8 @@ entities: - 16807 - 10890 - 10891 + - type: Fixtures + fixtures: {} - uid: 17020 components: - type: MetaData @@ -12594,6 +12828,8 @@ entities: - 11224 - 16478 - 16479 + - type: Fixtures + fixtures: {} - uid: 17459 components: - type: MetaData @@ -12606,6 +12842,8 @@ entities: - 17521 - 17463 - 17520 + - type: Fixtures + fixtures: {} - uid: 17460 components: - type: MetaData @@ -12618,6 +12856,8 @@ entities: - 17498 - 17531 - 17499 + - type: Fixtures + fixtures: {} - uid: 17461 components: - type: MetaData @@ -12631,6 +12871,8 @@ entities: - 17484 - 17464 - 17488 + - type: Fixtures + fixtures: {} - uid: 17462 components: - type: MetaData @@ -12644,6 +12886,8 @@ entities: - 17529 - 17530 - 17465 + - type: Fixtures + fixtures: {} - uid: 17609 components: - type: MetaData @@ -12662,6 +12906,8 @@ entities: - 15890 - 963 - 14946 + - type: Fixtures + fixtures: {} - uid: 18230 components: - type: MetaData @@ -12680,6 +12926,8 @@ entities: - 8973 - 10077 - 13803 + - type: Fixtures + fixtures: {} - uid: 18231 components: - type: MetaData @@ -12693,6 +12941,8 @@ entities: - 5367 - 1054 - 1053 + - type: Fixtures + fixtures: {} - uid: 18303 components: - type: MetaData @@ -12719,6 +12969,8 @@ entities: - 10810 - 10811 - 10804 + - type: Fixtures + fixtures: {} - proto: AirAlarmElectronics entities: - uid: 1784 @@ -12741,6 +12993,8 @@ entities: - 1388 - 290 - 1430 + - type: Fixtures + fixtures: {} - proto: AirCanister entities: - uid: 6295 @@ -16219,6 +16473,8 @@ entities: - type: Transform pos: -2.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 431 components: - type: MetaData @@ -16227,6 +16483,8 @@ entities: rot: 3.141592653589793 rad pos: 3.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 432 components: - type: MetaData @@ -16235,6 +16493,8 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 505 components: - type: MetaData @@ -16242,6 +16502,8 @@ entities: - type: Transform pos: -31.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 653 components: - type: MetaData @@ -16250,6 +16512,8 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 682 components: - type: MetaData @@ -16258,6 +16522,8 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 972 components: - type: MetaData @@ -16266,6 +16532,8 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1149 components: - type: MetaData @@ -16274,6 +16542,8 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1393 components: - type: MetaData @@ -16282,6 +16552,8 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1419 components: - type: MetaData @@ -16290,6 +16562,8 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1562 components: - type: MetaData @@ -16297,6 +16571,8 @@ entities: - type: Transform pos: 25.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2556 components: - type: MetaData @@ -16305,6 +16581,8 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2584 components: - type: MetaData @@ -16312,6 +16590,8 @@ entities: - type: Transform pos: -24.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2771 components: - type: MetaData @@ -16320,6 +16600,8 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2809 components: - type: MetaData @@ -16328,6 +16610,8 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3295 components: - type: MetaData @@ -16336,6 +16620,8 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3297 components: - type: MetaData @@ -16344,6 +16630,8 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3298 components: - type: MetaData @@ -16351,6 +16639,8 @@ entities: - type: Transform pos: -29.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3433 components: - type: MetaData @@ -16359,6 +16649,8 @@ entities: rot: 3.141592653589793 rad pos: -19.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3445 components: - type: MetaData @@ -16366,6 +16658,8 @@ entities: - type: Transform pos: -24.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3587 components: - type: MetaData @@ -16374,6 +16668,8 @@ entities: rot: 3.141592653589793 rad pos: -14.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4449 components: - type: MetaData @@ -16382,6 +16678,8 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4473 components: - type: MetaData @@ -16389,6 +16687,8 @@ entities: - type: Transform pos: -32.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4776 components: - type: MetaData @@ -16397,6 +16697,8 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4827 components: - type: MetaData @@ -16405,6 +16707,8 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4829 components: - type: MetaData @@ -16412,6 +16716,8 @@ entities: - type: Transform pos: -17.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5097 components: - type: MetaData @@ -16420,6 +16726,8 @@ entities: rot: 3.141592653589793 rad pos: -23.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5175 components: - type: MetaData @@ -16427,6 +16735,8 @@ entities: - type: Transform pos: -24.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5210 components: - type: MetaData @@ -16435,6 +16745,8 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5241 components: - type: MetaData @@ -16443,6 +16755,8 @@ entities: rot: 3.141592653589793 rad pos: -15.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5371 components: - type: MetaData @@ -16451,6 +16765,8 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5484 components: - type: MetaData @@ -16459,6 +16775,8 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5734 components: - type: MetaData @@ -16467,6 +16785,8 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5739 components: - type: MetaData @@ -16474,6 +16794,8 @@ entities: - type: Transform pos: -1.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5740 components: - type: MetaData @@ -16482,6 +16804,8 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5836 components: - type: MetaData @@ -16489,6 +16813,8 @@ entities: - type: Transform pos: -5.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5926 components: - type: MetaData @@ -16497,6 +16823,8 @@ entities: rot: 3.141592653589793 rad pos: -33.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6151 components: - type: MetaData @@ -16505,6 +16833,8 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6163 components: - type: MetaData @@ -16513,6 +16843,8 @@ entities: rot: 3.141592653589793 rad pos: -15.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6267 components: - type: MetaData @@ -16521,6 +16853,8 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6860 components: - type: MetaData @@ -16528,6 +16862,8 @@ entities: - type: Transform pos: -11.5,23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6933 components: - type: MetaData @@ -16536,6 +16872,8 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6978 components: - type: MetaData @@ -16544,6 +16882,8 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6981 components: - type: MetaData @@ -16552,6 +16892,8 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6985 components: - type: MetaData @@ -16559,6 +16901,8 @@ entities: - type: Transform pos: -38.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6999 components: - type: MetaData @@ -16566,6 +16910,8 @@ entities: - type: Transform pos: -15.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7325 components: - type: MetaData @@ -16574,6 +16920,8 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7326 components: - type: MetaData @@ -16582,6 +16930,8 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7328 components: - type: MetaData @@ -16590,6 +16940,8 @@ entities: rot: 3.141592653589793 rad pos: -9.5,53.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7483 components: - type: MetaData @@ -16597,6 +16949,8 @@ entities: - type: Transform pos: 3.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7510 components: - type: MetaData @@ -16604,6 +16958,8 @@ entities: - type: Transform pos: 13.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7516 components: - type: MetaData @@ -16612,6 +16968,8 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7517 components: - type: MetaData @@ -16620,6 +16978,8 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7518 components: - type: MetaData @@ -16628,6 +16988,8 @@ entities: rot: 3.141592653589793 rad pos: 11.5,32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7519 components: - type: MetaData @@ -16636,6 +16998,8 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7780 components: - type: MetaData @@ -16644,6 +17008,8 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7943 components: - type: MetaData @@ -16651,6 +17017,8 @@ entities: - type: Transform pos: 21.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8241 components: - type: MetaData @@ -16659,6 +17027,8 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8616 components: - type: MetaData @@ -16666,6 +17036,8 @@ entities: - type: Transform pos: -46.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8620 components: - type: MetaData @@ -16674,6 +17046,8 @@ entities: rot: 3.141592653589793 rad pos: -3.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8751 components: - type: MetaData @@ -16681,6 +17055,8 @@ entities: - type: Transform pos: 40.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8945 components: - type: MetaData @@ -16689,6 +17065,8 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9111 components: - type: MetaData @@ -16697,6 +17075,8 @@ entities: rot: -1.5707963267948966 rad pos: 49.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9157 components: - type: MetaData @@ -16704,6 +17084,8 @@ entities: - type: Transform pos: 33.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9201 components: - type: MetaData @@ -16712,6 +17094,8 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9281 components: - type: MetaData @@ -16720,6 +17104,8 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9297 components: - type: MetaData @@ -16728,6 +17114,8 @@ entities: rot: 3.141592653589793 rad pos: 21.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9632 components: - type: MetaData @@ -16736,6 +17124,8 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9695 components: - type: MetaData @@ -16743,6 +17133,8 @@ entities: - type: Transform pos: 34.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9696 components: - type: MetaData @@ -16750,6 +17142,8 @@ entities: - type: Transform pos: 26.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9697 components: - type: MetaData @@ -16758,6 +17152,8 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9698 components: - type: MetaData @@ -16765,6 +17161,8 @@ entities: - type: Transform pos: 39.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9700 components: - type: MetaData @@ -16772,6 +17170,8 @@ entities: - type: Transform pos: 34.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9701 components: - type: MetaData @@ -16779,6 +17179,8 @@ entities: - type: Transform pos: 22.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9702 components: - type: MetaData @@ -16787,6 +17189,8 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9703 components: - type: MetaData @@ -16794,6 +17198,8 @@ entities: - type: Transform pos: 29.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9704 components: - type: MetaData @@ -16801,6 +17207,8 @@ entities: - type: Transform pos: 35.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9822 components: - type: MetaData @@ -16809,6 +17217,8 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9910 components: - type: MetaData @@ -16816,6 +17226,8 @@ entities: - type: Transform pos: 18.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9937 components: - type: MetaData @@ -16824,6 +17236,8 @@ entities: rot: 3.141592653589793 rad pos: 1.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9944 components: - type: MetaData @@ -16832,6 +17246,8 @@ entities: rot: 3.141592653589793 rad pos: -8.5,27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9950 components: - type: MetaData @@ -16840,6 +17256,8 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9996 components: - type: MetaData @@ -16848,6 +17266,8 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10027 components: - type: MetaData @@ -16855,6 +17275,8 @@ entities: - type: Transform pos: 0.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10100 components: - type: MetaData @@ -16863,6 +17285,8 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10521 components: - type: MetaData @@ -16871,6 +17295,8 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10558 components: - type: MetaData @@ -16879,6 +17305,8 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10755 components: - type: MetaData @@ -16886,6 +17314,8 @@ entities: - type: Transform pos: 34.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11177 components: - type: MetaData @@ -16894,6 +17324,8 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11819 components: - type: MetaData @@ -16902,6 +17334,8 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12084 components: - type: MetaData @@ -16910,6 +17344,8 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12187 components: - type: MetaData @@ -16918,6 +17354,8 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12212 components: - type: MetaData @@ -16925,6 +17363,8 @@ entities: - type: Transform pos: 34.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13643 components: - type: MetaData @@ -16933,6 +17373,8 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14028 components: - type: MetaData @@ -16941,6 +17383,8 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14169 components: - type: MetaData @@ -16949,6 +17393,8 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14312 components: - type: MetaData @@ -16957,6 +17403,8 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15147 components: - type: MetaData @@ -16964,6 +17412,8 @@ entities: - type: Transform pos: -1.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15387 components: - type: MetaData @@ -16971,6 +17421,8 @@ entities: - type: Transform pos: 6.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15615 components: - type: MetaData @@ -16978,6 +17430,8 @@ entities: - type: Transform pos: 38.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15627 components: - type: MetaData @@ -16986,6 +17440,8 @@ entities: rot: 3.141592653589793 rad pos: 45.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15823 components: - type: MetaData @@ -16994,6 +17450,8 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15931 components: - type: MetaData @@ -17002,6 +17460,8 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16014 components: - type: MetaData @@ -17010,6 +17470,8 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16809 components: - type: MetaData @@ -17017,6 +17479,8 @@ entities: - type: Transform pos: 11.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17039 components: - type: MetaData @@ -17024,6 +17488,8 @@ entities: - type: Transform pos: -36.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18312 components: - type: MetaData @@ -17032,6 +17498,8 @@ entities: rot: 3.141592653589793 rad pos: 18.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: APCElectronics entities: - uid: 1789 @@ -17064,6 +17532,8 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: AppraisalTool entities: - uid: 14317 @@ -17078,24 +17548,32 @@ entities: - type: Transform pos: -8.5,32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14633 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14634 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14635 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,42.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ArtistCircuitBoard entities: - uid: 5380 @@ -21561,6 +22039,8 @@ entities: - type: Transform pos: 1.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BarSignSpacebucks entities: - uid: 5917 @@ -21568,6 +22048,8 @@ entities: - type: Transform pos: -17.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BarSpoon entities: - uid: 11927 @@ -51585,6 +52067,8 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ClosetBombFilled entities: - uid: 5817 @@ -55259,52 +55743,70 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13950 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13951 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14424 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15297 components: - type: Transform pos: 10.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15476 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15520 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18081 components: - type: Transform pos: -59.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18082 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,48.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: DeployableBarrier entities: - uid: 2999 @@ -61480,6 +61982,8 @@ entities: - type: Transform pos: 7.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ExtinguisherCabinetFilled entities: - uid: 1257 @@ -61487,102 +61991,138 @@ entities: - type: Transform pos: 25.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4487 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7216 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15963 components: - type: Transform pos: -42.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15964 components: - type: Transform pos: -27.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15965 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15966 components: - type: Transform pos: -2.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15969 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15970 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15971 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15972 components: - type: Transform pos: 27.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15973 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15974 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15977 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15980 components: - type: Transform pos: -46.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15981 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18107 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18108 components: - type: Transform pos: -5.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FaxMachineBase entities: - uid: 4025 @@ -61830,6 +62370,8 @@ entities: - 15890 - 963 - 14946 + - type: Fixtures + fixtures: {} - uid: 8138 components: - type: MetaData @@ -61846,6 +62388,8 @@ entities: - 10849 - 10850 - 10851 + - type: Fixtures + fixtures: {} - uid: 10771 components: - type: MetaData @@ -61854,6 +62398,8 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11390 components: - type: MetaData @@ -61866,6 +62412,8 @@ entities: - 10822 - 10823 - 10824 + - type: Fixtures + fixtures: {} - uid: 11391 components: - type: MetaData @@ -61888,6 +62436,8 @@ entities: - 10839 - 1938 - 1437 + - type: Fixtures + fixtures: {} - uid: 11574 components: - type: MetaData @@ -61907,6 +62457,8 @@ entities: - 10832 - 10833 - 12011 + - type: Fixtures + fixtures: {} - uid: 11575 components: - type: MetaData @@ -61928,6 +62480,8 @@ entities: - 1879 - 1878 - 18033 + - type: Fixtures + fixtures: {} - uid: 11576 components: - type: MetaData @@ -61943,6 +62497,8 @@ entities: - 10829 - 14970 - 14997 + - type: Fixtures + fixtures: {} - uid: 12224 components: - type: MetaData @@ -61966,6 +62522,8 @@ entities: - 11224 - 16478 - 16479 + - type: Fixtures + fixtures: {} - uid: 12225 components: - type: MetaData @@ -61982,6 +62540,8 @@ entities: - 10883 - 10841 - 10840 + - type: Fixtures + fixtures: {} - uid: 12226 components: - type: MetaData @@ -61994,6 +62554,8 @@ entities: devices: - 10841 - 10840 + - type: Fixtures + fixtures: {} - uid: 12553 components: - type: MetaData @@ -62005,6 +62567,8 @@ entities: - type: DeviceList devices: - 13803 + - type: Fixtures + fixtures: {} - uid: 13456 components: - type: MetaData @@ -62024,6 +62588,8 @@ entities: - 10907 - 1630 - 15890 + - type: Fixtures + fixtures: {} - uid: 13457 components: - type: MetaData @@ -62044,6 +62610,8 @@ entities: - 10846 - 10847 - 10848 + - type: Fixtures + fixtures: {} - uid: 13936 components: - type: MetaData @@ -62062,6 +62630,8 @@ entities: - 10887 - 10889 - 10888 + - type: Fixtures + fixtures: {} - uid: 14119 components: - type: MetaData @@ -62076,6 +62646,8 @@ entities: - 10825 - 10827 - 357 + - type: Fixtures + fixtures: {} - uid: 14126 components: - type: MetaData @@ -62089,6 +62661,8 @@ entities: - 10814 - 10813 - 10817 + - type: Fixtures + fixtures: {} - uid: 14128 components: - type: MetaData @@ -62106,6 +62680,8 @@ entities: - 10822 - 10823 - 10824 + - type: Fixtures + fixtures: {} - uid: 14129 components: - type: MetaData @@ -62123,6 +62699,8 @@ entities: - 10820 - 10826 - 18028 + - type: Fixtures + fixtures: {} - uid: 14279 components: - type: MetaData @@ -62137,6 +62715,8 @@ entities: - 10876 - 10875 - 10874 + - type: Fixtures + fixtures: {} - uid: 14525 components: - type: MetaData @@ -62149,6 +62729,8 @@ entities: - 18029 - 18028 - 18030 + - type: Fixtures + fixtures: {} - uid: 14526 components: - type: MetaData @@ -62162,6 +62744,8 @@ entities: - 18030 - 18031 - 18032 + - type: Fixtures + fixtures: {} - uid: 14641 components: - type: MetaData @@ -62185,6 +62769,8 @@ entities: - 266 - 1628 - 1629 + - type: Fixtures + fixtures: {} - uid: 14651 components: - type: MetaData @@ -62201,6 +62787,8 @@ entities: - 1629 - 963 - 14946 + - type: Fixtures + fixtures: {} - uid: 14652 components: - type: MetaData @@ -62213,6 +62801,8 @@ entities: devices: - 243 - 197 + - type: Fixtures + fixtures: {} - uid: 14654 components: - type: MetaData @@ -62230,6 +62820,8 @@ entities: - 10810 - 10811 - 10804 + - type: Fixtures + fixtures: {} - uid: 14655 components: - type: MetaData @@ -62242,6 +62834,8 @@ entities: devices: - 10875 - 10874 + - type: Fixtures + fixtures: {} - uid: 14656 components: - type: MetaData @@ -62253,6 +62847,8 @@ entities: - type: DeviceList devices: - 10873 + - type: Fixtures + fixtures: {} - uid: 14665 components: - type: MetaData @@ -62268,6 +62864,8 @@ entities: - 13835 - 13834 - 13850 + - type: Fixtures + fixtures: {} - uid: 14667 components: - type: MetaData @@ -62281,6 +62879,8 @@ entities: - 13835 - 13834 - 13850 + - type: Fixtures + fixtures: {} - uid: 14668 components: - type: MetaData @@ -62296,6 +62896,8 @@ entities: - 10853 - 10854 - 13810 + - type: Fixtures + fixtures: {} - uid: 14669 components: - type: MetaData @@ -62310,6 +62912,8 @@ entities: - 10900 - 10898 - 10899 + - type: Fixtures + fixtures: {} - uid: 14671 components: - type: MetaData @@ -62325,6 +62929,8 @@ entities: - 10901 - 10902 - 14672 + - type: Fixtures + fixtures: {} - uid: 14673 components: - type: MetaData @@ -62339,6 +62945,8 @@ entities: - 14670 - 10905 - 4374 + - type: Fixtures + fixtures: {} - uid: 14675 components: - type: MetaData @@ -62350,6 +62958,8 @@ entities: - type: DeviceList devices: - 10902 + - type: Fixtures + fixtures: {} - uid: 14677 components: - type: MetaData @@ -62366,6 +62976,8 @@ entities: - 10893 - 10892 - 11143 + - type: Fixtures + fixtures: {} - uid: 14678 components: - type: MetaData @@ -62382,6 +62994,8 @@ entities: - 10893 - 10894 - 10895 + - type: Fixtures + fixtures: {} - uid: 14679 components: - type: MetaData @@ -62394,6 +63008,8 @@ entities: devices: - 10894 - 10895 + - type: Fixtures + fixtures: {} - uid: 14683 components: - type: MetaData @@ -62405,6 +63021,8 @@ entities: - type: DeviceList devices: - 13810 + - type: Fixtures + fixtures: {} - uid: 14684 components: - type: MetaData @@ -62416,6 +63034,8 @@ entities: - type: DeviceList devices: - 10907 + - type: Fixtures + fixtures: {} - uid: 15059 components: - type: MetaData @@ -62428,6 +63048,8 @@ entities: devices: - 14970 - 14997 + - type: Fixtures + fixtures: {} - uid: 15060 components: - type: MetaData @@ -62441,6 +63063,8 @@ entities: - 14998 - 14999 - 4973 + - type: Fixtures + fixtures: {} - uid: 15061 components: - type: Transform @@ -62451,6 +63075,8 @@ entities: devices: - 1879 - 1878 + - type: Fixtures + fixtures: {} - uid: 15232 components: - type: MetaData @@ -62462,6 +63088,8 @@ entities: devices: - 14998 - 14999 + - type: Fixtures + fixtures: {} - uid: 15794 components: - type: MetaData @@ -62474,6 +63102,8 @@ entities: devices: - 14212 - 14136 + - type: Fixtures + fixtures: {} - uid: 15796 components: - type: MetaData @@ -62485,6 +63115,8 @@ entities: - type: DeviceList devices: - 357 + - type: Fixtures + fixtures: {} - uid: 16327 components: - type: MetaData @@ -62498,6 +63130,8 @@ entities: - 18629 - 18628 - 1628 + - type: Fixtures + fixtures: {} - uid: 16472 components: - type: MetaData @@ -62510,6 +63144,8 @@ entities: devices: - 16467 - 16470 + - type: Fixtures + fixtures: {} - uid: 16473 components: - type: MetaData @@ -62528,6 +63164,8 @@ entities: - 6856 - 16465 - 16471 + - type: Fixtures + fixtures: {} - uid: 16474 components: - type: MetaData @@ -62539,6 +63177,8 @@ entities: devices: - 6856 - 16465 + - type: Fixtures + fixtures: {} - uid: 16475 components: - type: MetaData @@ -62550,6 +63190,8 @@ entities: - type: DeviceList devices: - 16471 + - type: Fixtures + fixtures: {} - uid: 16476 components: - type: MetaData @@ -62562,6 +63204,8 @@ entities: devices: - 16469 - 16468 + - type: Fixtures + fixtures: {} - uid: 16477 components: - type: MetaData @@ -62574,6 +63218,8 @@ entities: - 16479 - 16478 - 11224 + - type: Fixtures + fixtures: {} - uid: 16827 components: - type: MetaData @@ -62588,6 +63234,8 @@ entities: - 10891 - 16806 - 16807 + - type: Fixtures + fixtures: {} - uid: 17019 components: - type: MetaData @@ -62603,6 +63251,8 @@ entities: - 11224 - 16478 - 16479 + - type: Fixtures + fixtures: {} - proto: FireAlarmElectronics entities: - uid: 2284 @@ -62617,12 +63267,16 @@ entities: - type: Transform pos: 30.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15812 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FireExtinguisher entities: - uid: 1914 @@ -89041,17 +89695,23 @@ entities: - type: Transform pos: -26.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17256 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17442 components: - type: Transform pos: -42.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomAssembly entities: - uid: 16722 @@ -89068,12 +89728,16 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14474 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomEngineering entities: - uid: 8816 @@ -89082,6 +89746,8 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomMedical entities: - uid: 4076 @@ -89090,6 +89756,8 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomScience entities: - uid: 11181 @@ -89098,6 +89766,8 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSecurity entities: - uid: 3496 @@ -89106,17 +89776,23 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8618 components: - type: Transform pos: -2.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15299 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomService entities: - uid: 15899 @@ -89125,6 +89801,8 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSupply entities: - uid: 9995 @@ -89133,6 +89811,8 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: JanitorialTrolley entities: - uid: 7354 @@ -89486,6 +90166,8 @@ entities: 3436: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonCaptain entities: - uid: 13976 @@ -89515,6 +90197,8 @@ entities: 11048: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonChiefEngineer entities: - uid: 16183 @@ -89539,6 +90223,8 @@ entities: 8126: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonChiefMedicalOfficer entities: - uid: 16176 @@ -89555,6 +90241,8 @@ entities: 16174: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonCommand entities: - uid: 11097 @@ -89602,6 +90290,8 @@ entities: 15279: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 18607 components: - type: MetaData @@ -89627,6 +90317,8 @@ entities: - Open - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - proto: LockableButtonEngineering entities: - uid: 2911 @@ -89641,6 +90333,8 @@ entities: 12655: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonExternal entities: - uid: 6221 @@ -89667,6 +90361,8 @@ entities: 15143: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 8194 components: - type: MetaData @@ -89692,6 +90388,8 @@ entities: 15143: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonHeadOfPersonnel entities: - uid: 14619 @@ -89714,6 +90412,8 @@ entities: 3135: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonHeadOfSecurity entities: - uid: 18105 @@ -89732,6 +90432,8 @@ entities: 15186: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonKitchen entities: - uid: 4481 @@ -89755,6 +90457,8 @@ entities: 16222: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonMedical entities: - uid: 9089 @@ -89773,6 +90477,8 @@ entities: 3916: - - Pressed - Open + - type: Fixtures + fixtures: {} - uid: 13575 components: - type: MetaData @@ -89789,6 +90495,8 @@ entities: 4706: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 13768 components: - type: MetaData @@ -89804,6 +90512,8 @@ entities: 5080: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 16210 components: - type: MetaData @@ -89820,6 +90530,8 @@ entities: 16147: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonQuartermaster entities: - uid: 16161 @@ -89847,6 +90559,8 @@ entities: 16155: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonResearchDirector entities: - uid: 11128 @@ -89866,6 +90580,8 @@ entities: 11182: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockerAtmosphericsFilled entities: - uid: 2107 @@ -91504,21 +92220,29 @@ entities: - type: Transform pos: -0.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 281 components: - type: Transform pos: 1.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 282 components: - type: Transform pos: 3.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18053 components: - type: Transform pos: -9.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: MonkeyCube entities: - uid: 15919 @@ -91711,32 +92435,44 @@ entities: - type: Transform pos: 3.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13678 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13679 components: - type: Transform pos: 24.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13680 components: - type: Transform pos: 5.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13681 components: - type: Transform pos: -32.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15881 components: - type: Transform pos: -12.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: NTDefaultCircuitBoard entities: - uid: 1594 @@ -91879,6 +92615,8 @@ entities: - type: Transform pos: 3.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PairedChopsticks entities: - uid: 317 @@ -92594,6 +93332,8 @@ entities: - type: Transform pos: 36.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandC20r entities: - uid: 16064 @@ -92601,6 +93341,8 @@ entities: - type: Transform pos: -16.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandEnlistGorlex entities: - uid: 6322 @@ -92608,6 +93350,8 @@ entities: - type: Transform pos: -19.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandFunPolice entities: - uid: 16063 @@ -92615,6 +93359,8 @@ entities: - type: Transform pos: -14.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandNuclearDeviceInformational entities: - uid: 18596 @@ -92622,6 +93368,8 @@ entities: - type: Transform pos: 9.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandSyndicateRecruitment entities: - uid: 16054 @@ -92629,6 +93377,8 @@ entities: - type: Transform pos: -18.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitFoamForceAd entities: - uid: 2970 @@ -92636,6 +93386,8 @@ entities: - type: Transform pos: 18.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitNanotrasenLogo entities: - uid: 3227 @@ -92644,12 +93396,16 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3230 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PottedPlantRandom entities: - uid: 759 @@ -98902,83 +99658,113 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13525 components: - type: Transform pos: -63.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14555 components: - type: Transform pos: -51.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14636 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14637 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14638 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14640 components: - type: Transform pos: 2.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14642 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14644 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14645 components: - type: Transform pos: -35.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14647 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14648 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14916 components: - type: Transform pos: 29.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15097 components: - type: Transform pos: -18.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17582 components: - type: Transform pos: -1.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Screwdriver entities: - uid: 15457 @@ -99648,16 +100434,22 @@ entities: - type: Transform pos: -9.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3809 components: - type: Transform pos: -39.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5468 components: - type: Transform pos: -34.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignalButton entities: - uid: 18100 @@ -99685,6 +100477,8 @@ entities: 18098: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: SignalButtonDirectional entities: - uid: 841 @@ -99695,6 +100489,8 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1491 components: - type: MetaData @@ -99714,6 +100510,8 @@ entities: 11766: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 2449 components: - type: MetaData @@ -99727,6 +100525,8 @@ entities: 12655: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 2643 components: - type: MetaData @@ -99743,6 +100543,8 @@ entities: 2360: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 3473 components: - type: MetaData @@ -99762,6 +100564,8 @@ entities: 6996: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 6029 components: - type: MetaData @@ -99774,6 +100578,8 @@ entities: 7748: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 7024 components: - type: MetaData @@ -99790,6 +100596,8 @@ entities: 16017: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 9353 components: - type: MetaData @@ -99803,6 +100611,8 @@ entities: 8133: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 9658 components: - type: MetaData @@ -99822,6 +100632,8 @@ entities: 2332: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 10510 components: - type: MetaData @@ -99834,6 +100646,8 @@ entities: 9968: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 11169 components: - type: MetaData @@ -99847,6 +100661,8 @@ entities: 14013: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 11201 components: - type: MetaData @@ -99862,6 +100678,8 @@ entities: 11215: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 11351 components: - type: MetaData @@ -99883,6 +100701,8 @@ entities: 1514: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 12773 components: - type: MetaData @@ -99899,6 +100719,8 @@ entities: 5141: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 12908 components: - type: MetaData @@ -99921,6 +100743,8 @@ entities: 1443: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 13629 components: - type: MetaData @@ -99934,6 +100758,8 @@ entities: 15892: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 14428 components: - type: MetaData @@ -99949,6 +100775,8 @@ entities: 7942: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 14431 components: - type: MetaData @@ -99964,6 +100792,8 @@ entities: 2526: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 14435 components: - type: MetaData @@ -99979,6 +100809,8 @@ entities: 3916: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 14437 components: - type: MetaData @@ -99995,6 +100827,8 @@ entities: 2588: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 14511 components: - type: MetaData @@ -100011,6 +100845,8 @@ entities: 4514: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 14512 components: - type: MetaData @@ -100027,6 +100863,8 @@ entities: 4531: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15612 components: - type: MetaData @@ -100035,6 +100873,8 @@ entities: rot: 1.5707963267948966 rad pos: -1.5549712,-18.496132 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15737 components: - type: MetaData @@ -100051,6 +100891,8 @@ entities: 1256: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15861 components: - type: MetaData @@ -100064,6 +100906,8 @@ entities: 6033: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 15865 components: - type: MetaData @@ -100077,6 +100921,8 @@ entities: 6303: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 15868 components: - type: MetaData @@ -100090,6 +100936,8 @@ entities: 15857: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15871 components: - type: MetaData @@ -100103,6 +100951,8 @@ entities: 15872: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15880 components: - type: MetaData @@ -100116,6 +100966,8 @@ entities: 15856: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15886 components: - type: MetaData @@ -100129,6 +100981,8 @@ entities: 15884: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15889 components: - type: MetaData @@ -100142,6 +100996,8 @@ entities: 15888: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15895 components: - type: MetaData @@ -100155,6 +101011,8 @@ entities: 3590: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 16553 components: - type: MetaData @@ -100168,6 +101026,8 @@ entities: 16579: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 18047 components: - type: MetaData @@ -100181,6 +101041,8 @@ entities: 18048: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 18062 components: - type: MetaData @@ -100197,6 +101059,8 @@ entities: 3047: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: SignalSwitchDirectional entities: - uid: 9640 @@ -100258,6 +101122,8 @@ entities: - Forward - - Off - Off + - type: Fixtures + fixtures: {} - proto: SignAnomaly entities: - uid: 16169 @@ -100265,6 +101131,8 @@ entities: - type: Transform pos: -19.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAnomaly2 entities: - uid: 5317 @@ -100272,6 +101140,8 @@ entities: - type: Transform pos: -22.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignArmory entities: - uid: 5648 @@ -100280,6 +101150,8 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAtmos entities: - uid: 12611 @@ -100287,6 +101159,8 @@ entities: - type: Transform pos: 35.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBar entities: - uid: 21 @@ -100295,6 +101169,8 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBath entities: - uid: 15938 @@ -100302,6 +101178,8 @@ entities: - type: Transform pos: -43.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBiohazardMed entities: - uid: 12777 @@ -100309,11 +101187,15 @@ entities: - type: Transform pos: 26.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12778 components: - type: Transform pos: 22.5,27.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCans entities: - uid: 1377 @@ -100321,6 +101203,8 @@ entities: - type: Transform pos: 36.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCargo entities: - uid: 4218 @@ -100328,6 +101212,8 @@ entities: - type: Transform pos: 8.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCargoDock entities: - uid: 6506 @@ -100335,11 +101221,15 @@ entities: - type: Transform pos: 8.5,42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6507 components: - type: Transform pos: 8.5,40.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChapel entities: - uid: 3245 @@ -100348,6 +101238,8 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChem entities: - uid: 1930 @@ -100356,11 +101248,15 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4110 components: - type: Transform pos: 29.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCryo entities: - uid: 4171 @@ -100369,6 +101265,8 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCryogenicsMed entities: - uid: 4068 @@ -100376,11 +101274,15 @@ entities: - type: Transform pos: 36.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6308 components: - type: Transform pos: 12.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDetective entities: - uid: 5848 @@ -100388,6 +101290,8 @@ entities: - type: Transform pos: 1.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBar entities: - uid: 11727 @@ -100396,12 +101300,16 @@ entities: rot: 1.5707963267948966 rad pos: -20.501694,-14.704858 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14742 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.497725,-40.304935 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBridge entities: - uid: 11753 @@ -100409,35 +101317,47 @@ entities: - type: Transform pos: -4.4989257,18.304083 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12812 components: - type: Transform pos: 18.501328,3.7005234 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12951 components: - type: Transform rot: 3.141592653589793 rad pos: -23.50321,-14.303962 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14761 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15032 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15040 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.498208,18.692 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalChapel entities: - uid: 15044 @@ -100445,6 +101365,8 @@ entities: - type: Transform pos: -14.498813,-14.699825 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalCryo entities: - uid: 11734 @@ -100453,30 +101375,40 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13582 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.498813,-14.304178 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14344 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.496222,-1.7055917 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14744 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.50147,15.697969 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15047 components: - type: Transform rot: 3.141592653589793 rad pos: 12.502421,15.691843 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalDorms entities: - uid: 6112 @@ -100484,11 +101416,15 @@ entities: - type: Transform pos: -32.50111,-32.70194 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15039 components: - type: Transform pos: -14.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEng entities: - uid: 11096 @@ -100497,40 +101433,54 @@ entities: rot: 3.141592653589793 rad pos: -17.495373,-27.69906 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11754 components: - type: Transform rot: 3.141592653589793 rad pos: 14.500077,-11.300287 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13531 components: - type: Transform pos: 18.497702,12.302287 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13624 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.50321,-14.6975975 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13693 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5034904,-11.692226 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14762 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.503107,-40.69738 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15042 components: - type: Transform pos: -6.4968357,11.693296 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEscapePod entities: - uid: 5555 @@ -100539,70 +101489,94 @@ entities: rot: 3.141592653589793 rad pos: -8.5,53.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8427 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11590 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13877 components: - type: Transform pos: -28.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13878 components: - type: Transform pos: -37.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14105 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14740 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.49834,18.307442 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15035 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.497536,-2.7050738 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17328 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17331 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17332 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17371 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEvac entities: - uid: 11723 @@ -100610,77 +101584,105 @@ entities: - type: Transform pos: -6.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11729 components: - type: Transform pos: -17.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13536 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13690 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13726 components: - type: Transform pos: 18.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14123 components: - type: Transform pos: -18.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14162 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14708 components: - type: Transform pos: -10.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14733 components: - type: Transform pos: -4.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14840 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14993 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15036 components: - type: Transform pos: -20.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15043 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15891 components: - type: Transform pos: 18.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalFood entities: - uid: 12758 @@ -100689,18 +101691,24 @@ entities: rot: 1.5707963267948966 rad pos: -26.497725,-40.69556 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14000 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.496222,-1.2993416 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14764 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalHop entities: - uid: 11902 @@ -100709,12 +101717,16 @@ entities: rot: 1.5707963267948966 rad pos: -20.501694,-14.30642 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18358 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.498719,15.302658 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalMed entities: - uid: 627 @@ -100722,53 +101734,71 @@ entities: - type: Transform pos: 18.497702,12.692912 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11725 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.497272,-28.30454 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12017 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.49786,-18.297403 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13339 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.50076,15.701214 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14104 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.499932,-11.301019 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14524 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14719 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.4997537,15.306389 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14845 components: - type: Transform rot: 3.141592653589793 rad pos: -18.496513,-31.303017 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15045 components: - type: Transform pos: -10.496966,-2.2960353 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSci entities: - uid: 11051 @@ -100777,42 +101807,56 @@ entities: rot: 3.141592653589793 rad pos: -17.50317,-27.31334 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11728 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.498208,18.301374 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13689 components: - type: Transform rot: 3.141592653589793 rad pos: -10.502838,-11.307338 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14520 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5002685,18.692705 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14676 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15033 components: - type: Transform rot: 3.141592653589793 rad pos: 18.499554,-2.3014147 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15046 components: - type: Transform rot: 3.141592653589793 rad pos: -10.4983835,3.2940526 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSec entities: - uid: 11430 @@ -100820,57 +101864,77 @@ entities: - type: Transform pos: 18.498915,3.3042421 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11724 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.501745,-40.300663 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11726 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.497155,-11.7099 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12860 components: - type: Transform pos: -10.498068,-2.7127101 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13225 components: - type: Transform pos: 18.500702,-2.6998522 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14994 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.49976,15.29352 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14995 components: - type: Transform rot: 3.141592653589793 rad pos: -18.501804,-31.709396 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15037 components: - type: Transform pos: -6.5035267,11.294012 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15038 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.497272,-28.702978 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15049 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.50137,-18.69309 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSolar entities: - uid: 1299 @@ -100878,59 +101942,79 @@ entities: - type: Transform pos: 13.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15068 components: - type: Transform pos: 5.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15071 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15072 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15982 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15983 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15984 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15985 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15986 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15987 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSupply entities: - uid: 6117 @@ -100939,36 +102023,48 @@ entities: rot: 3.141592653589793 rad pos: -17.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11735 components: - type: Transform rot: 3.141592653589793 rad pos: -10.500978,-11.697264 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11903 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14739 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15034 components: - type: Transform rot: 3.141592653589793 rad pos: -10.4983835,3.708115 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15041 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalWash entities: - uid: 14836 @@ -100977,6 +102073,8 @@ entities: rot: -1.5707963267948966 rad pos: -32.501183,-32.302574 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDisposalSpace entities: - uid: 12615 @@ -100984,11 +102082,15 @@ entities: - type: Transform pos: 46.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12616 components: - type: Transform pos: 46.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignElectricalMed entities: - uid: 1354 @@ -100996,121 +102098,167 @@ entities: - type: Transform pos: 61.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1448 components: - type: Transform pos: 44.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1450 components: - type: Transform pos: 61.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1496 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1498 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1601 components: - type: Transform pos: 44.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1956 components: - type: Transform pos: 15.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4286 components: - type: Transform pos: -6.5,55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4287 components: - type: Transform pos: 1.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5070 components: - type: Transform pos: -34.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5231 components: - type: Transform pos: -10.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6134 components: - type: Transform pos: -29.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6283 components: - type: Transform pos: 43.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7945 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8292 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8355 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10472 components: - type: Transform pos: 40.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11477 components: - type: Transform pos: 26.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11483 components: - type: Transform pos: 12.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12776 components: - type: Transform pos: 35.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18070 components: - type: Transform pos: -16.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18074 components: - type: Transform pos: -13.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18075 components: - type: Transform pos: -10.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEngine entities: - uid: 75 @@ -101118,16 +102266,22 @@ entities: - type: Transform pos: 30.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12736 components: - type: Transform pos: 38.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12745 components: - type: Transform pos: 37.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEngineering entities: - uid: 1447 @@ -101135,6 +102289,8 @@ entities: - type: Transform pos: 25.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEscapePods entities: - uid: 5443 @@ -101142,31 +102298,43 @@ entities: - type: Transform pos: 45.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13889 components: - type: Transform pos: -27.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14358 components: - type: Transform pos: 45.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14775 components: - type: Transform pos: -23.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15024 components: - type: Transform pos: -28.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17377 components: - type: Transform pos: -20.5,56.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEVA entities: - uid: 7 @@ -101174,11 +102342,15 @@ entities: - type: Transform pos: -17.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16466 components: - type: Transform pos: -8.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignExamroom entities: - uid: 12705 @@ -101186,6 +102358,8 @@ entities: - type: Transform pos: 32.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignFlammableMed entities: - uid: 5548 @@ -101193,16 +102367,22 @@ entities: - type: Transform pos: 27.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6138 components: - type: Transform pos: 30.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15260 components: - type: Transform pos: 28.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignGenpop entities: - uid: 6110 @@ -101210,11 +102390,15 @@ entities: - type: Transform pos: -9.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6500 components: - type: Transform pos: -13.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignGravity entities: - uid: 8365 @@ -101222,6 +102406,8 @@ entities: - type: Transform pos: 38.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignHead entities: - uid: 2269 @@ -101229,11 +102415,15 @@ entities: - type: Transform pos: -29.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10518 components: - type: Transform pos: -11.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignHydro1 entities: - uid: 12734 @@ -101241,6 +102431,8 @@ entities: - type: Transform pos: 13.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignInterrogation entities: - uid: 5512 @@ -101248,6 +102440,8 @@ entities: - type: Transform pos: -2.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignJanitor entities: - uid: 410 @@ -101255,12 +102449,16 @@ entities: - type: Transform pos: -5.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 426 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignKitchen entities: - uid: 343 @@ -101268,6 +102466,8 @@ entities: - type: Transform pos: 7.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLawyer entities: - uid: 2761 @@ -101275,11 +102475,15 @@ entities: - type: Transform pos: -32.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15874 components: - type: Transform pos: -20.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLibrary entities: - uid: 2194 @@ -101287,6 +102491,8 @@ entities: - type: Transform pos: -17.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMagneticsMed entities: - uid: 14324 @@ -101294,11 +102500,15 @@ entities: - type: Transform pos: 22.5,44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15687 components: - type: Transform pos: 44.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMail entities: - uid: 16820 @@ -101306,6 +102516,8 @@ entities: - type: Transform pos: 9.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMaterials entities: - uid: 12670 @@ -101313,6 +102525,8 @@ entities: - type: Transform pos: 34.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMedical entities: - uid: 1065 @@ -101320,6 +102534,8 @@ entities: - type: Transform pos: 22.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMorgue entities: - uid: 4020 @@ -101328,6 +102544,8 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNews entities: - uid: 12735 @@ -101335,6 +102553,8 @@ entities: - type: Transform pos: -29.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNosmoking entities: - uid: 12769 @@ -101342,16 +102562,22 @@ entities: - type: Transform pos: 34.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12772 components: - type: Transform pos: 27.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15250 components: - type: Transform pos: 16.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignPrison entities: - uid: 1645 @@ -101359,11 +102585,15 @@ entities: - type: Transform pos: -7.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11776 components: - type: Transform pos: -6.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignPsychology entities: - uid: 4211 @@ -101371,6 +102601,8 @@ entities: - type: Transform pos: 5.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRadiationMed entities: - uid: 18595 @@ -101378,6 +102610,8 @@ entities: - type: Transform pos: 8.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRND entities: - uid: 11141 @@ -101385,6 +102619,8 @@ entities: - type: Transform pos: -15.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRobo entities: - uid: 10494 @@ -101392,6 +102628,8 @@ entities: - type: Transform pos: -16.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSalvage entities: - uid: 12749 @@ -101399,6 +102637,8 @@ entities: - type: Transform pos: 17.5,37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignScience entities: - uid: 11170 @@ -101406,6 +102646,8 @@ entities: - type: Transform pos: -8.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecureMed entities: - uid: 4492 @@ -101413,31 +102655,43 @@ entities: - type: Transform pos: -23.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5599 components: - type: Transform pos: -11.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5749 components: - type: Transform pos: -9.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6599 components: - type: Transform pos: -13.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12767 components: - type: Transform pos: 37.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15471 components: - type: Transform pos: -5.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecurity entities: - uid: 5558 @@ -101445,21 +102699,29 @@ entities: - type: Transform pos: -2.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6622 components: - type: Transform pos: -34.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6646 components: - type: Transform pos: -4.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8658 components: - type: Transform pos: 18.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignShipDock entities: - uid: 10122 @@ -101467,21 +102729,29 @@ entities: - type: Transform pos: -53.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12617 components: - type: Transform pos: -43.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15792 components: - type: Transform pos: -53.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15793 components: - type: Transform pos: -61.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSmoking entities: - uid: 6034 @@ -101489,16 +102759,22 @@ entities: - type: Transform pos: 32.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12679 components: - type: Transform pos: 28.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12771 components: - type: Transform pos: 38.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSpace entities: - uid: 2151 @@ -101506,46 +102782,64 @@ entities: - type: Transform pos: 13.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6108 components: - type: Transform pos: -38.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12753 components: - type: Transform pos: 30.5,32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12754 components: - type: Transform pos: 47.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12755 components: - type: Transform pos: 38.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12756 components: - type: Transform pos: 41.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16101 components: - type: Transform pos: -22.5,55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17642 components: - type: Transform pos: 23.5,42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18605 components: - type: Transform pos: 48.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSurgery entities: - uid: 4067 @@ -101553,6 +102847,8 @@ entities: - type: Transform pos: 33.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignTelecomms entities: - uid: 7999 @@ -101560,6 +102856,8 @@ entities: - type: Transform pos: 31.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignTheater entities: - uid: 344 @@ -101567,6 +102865,8 @@ entities: - type: Transform pos: 5.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignToolStorage entities: - uid: 8238 @@ -101574,6 +102874,8 @@ entities: - type: Transform pos: -3.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignVault entities: - uid: 15513 @@ -101581,6 +102883,8 @@ entities: - type: Transform pos: 8.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignVirology entities: - uid: 3978 @@ -101589,6 +102893,8 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignXenobio entities: - uid: 5402 @@ -101596,6 +102902,8 @@ entities: - type: Transform pos: -31.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SilverRingDiamond entities: - uid: 10378 @@ -102896,6 +104204,28 @@ entities: - type: Transform pos: -4.5,6.5 parent: 2 +- proto: SpawnPointLatejoin + entities: + - uid: 18655 + components: + - type: Transform + pos: -5.5,46.5 + parent: 2 + - uid: 18656 + components: + - type: Transform + pos: -5.5,45.5 + parent: 2 + - uid: 18657 + components: + - type: Transform + pos: -5.5,40.5 + parent: 2 + - uid: 18658 + components: + - type: Transform + pos: -5.5,39.5 + parent: 2 - proto: SpawnPointLawyer entities: - uid: 7804 @@ -103678,69 +105008,93 @@ entities: - type: Transform pos: -17.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12867 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14620 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14621 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14623 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14624 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14626 components: - type: Transform pos: -27.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14880 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15927 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17229 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17581 components: - type: Transform pos: -0.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18357 components: - type: Transform pos: 11.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: StationMapBroken entities: - uid: 14628 @@ -103749,6 +105103,8 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SteelBench entities: - uid: 1309 @@ -106085,6 +107441,8 @@ entities: - type: Transform pos: -14.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SyndieHandyFlag entities: - uid: 16078 @@ -122375,6 +123733,8 @@ entities: - type: Transform pos: 37.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningN2 entities: - uid: 14218 @@ -122382,6 +123742,8 @@ entities: - type: Transform pos: 37.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningO2 entities: - uid: 13985 @@ -122389,6 +123751,8 @@ entities: - type: Transform pos: 37.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningPlasma entities: - uid: 13984 @@ -122397,6 +123761,8 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningTritium entities: - uid: 13983 @@ -122405,6 +123771,8 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningWaste entities: - uid: 13982 @@ -122413,6 +123781,8 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WaterCooler entities: - uid: 1683 diff --git a/Resources/Maps/exo.yml b/Resources/Maps/exo.yml index d00cb05179..512da6036f 100644 --- a/Resources/Maps/exo.yml +++ b/Resources/Maps/exo.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 265.0.0 + engineVersion: 266.0.0 forkId: "" forkVersion: "" - time: 07/31/2025 15:20:28 - entityCount: 20082 + time: 08/31/2025 08:35:05 + entityCount: 19817 maps: - 1 grids: @@ -16,6 +16,7 @@ tilemap: 0: Space 51: FloorAsteroidIronsandBorderless 28: FloorAstroGrass + 52: FloorAstroSnow 50: FloorBlue 19: FloorBlueCircuit 21: FloorBoxing @@ -100,95 +101,95 @@ entities: chunks: 0,0: ind: 0,0 - tiles: YAAAAAAAAGAAAAAAAABgAAAAAAIAYAAAAAADAGAAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAEAYAAAAAABAGAAAAAAAgBgAAAAAAEAYAAAAAACAIEAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAEAYAAAAAABAGAAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YAAAAAABAGAAAAAAAwBgAAAAAAMAYAAAAAABAGAAAAAAAwBgAAAAAAMAYAAAAAABAGAAAAAAAQCBAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAABAGAAAAAAAwBgAAAAAAEAYAAAAAADAGAAAAAAAgBgAAAAAAMAYAAAAAAAAIEAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAEAYAAAAAACAGAAAAAAAQBgAAAAAAEAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAFgAAAAADABYAAAAAAgAWAAAAAAEAFgAAAAABABYAAAAAAABgAAAAAAMAYAAAAAABAGAAAAAAAABgAAAAAAEAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAABYAAAAAAQAWAAAAAAEAFgAAAAAAABYAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAABgAAAAAAIAYAAAAAADAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABYAAAAAAAAWAAAAAAMAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAABAGAAAAAAAQBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAFgAAAAADABYAAAAAAwAWAAAAAAIAFgAAAAADABYAAAAAAwBgAAAAAAAAYAAAAAADAGAAAAAAAwBgAAAAAAMAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAABYAAAAAAAAWAAAAAAMAFgAAAAABABYAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAEAYAAAAAAAAGAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABYAAAAAAwAWAAAAAAEAgQAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAABAGAAAAAAAQBgAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 0,-1: ind: 0,-1 - tiles: JQAAAAABACUAAAAAAgAlAAAAAAIAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAwCBAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAACBAAAAAAAAYAAAAAAAAIEAAAAAAAAlAAAAAAMAJQAAAAABAIEAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAEAJQAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAACBAAAAAAAAKwAAAAAAACsAAAAAAACBAAAAAAAAKwAAAAAAACsAAAAAAwArAAAAAAIAKwAAAAACACsAAAAAAwArAAAAAAEAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAAAAGAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAEAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAAAYAAAAAACAGAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAABgAAAAAAIAgQAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAgBgAAAAAAIAgQAAAAAAAIEAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAIAYAAAAAADAIEAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAABgAAAAAAIAYAAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAIAYAAAAAADAGAAAAAAAQBgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAABAIEAAAAAAABgAAAAAAAAYAAAAAACAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: JQAAAAABACUAAAAAAgAlAAAAAAEAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAAAAGAAAAAAAwCBAAAAAAAAYAAAAAABAGAAAAAAAgBgAAAAAAIAYAAAAAAAAGAAAAAAAACBAAAAAAAAYAAAAAADAIEAAAAAAAAlAAAAAAIAJQAAAAABAIEAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAEAJQAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAwCBAAAAAAAAKwAAAAABACsAAAAAAwCBAAAAAAAAKwAAAAABACsAAAAAAAArAAAAAAEAKwAAAAADACsAAAAAAQArAAAAAAEAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAwCBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAACAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAABAGAAAAAAAgBgAAAAAAIAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAMAYAAAAAACAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAABAGAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAABgAAAAAAMAgQAAAAAAAIEAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAEAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAADAIEAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAABAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAgBgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAADAIEAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -1,-1: ind: -1,-1 - tiles: gQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAIEAAAAAAAAkAAAAAAMAJAAAAAADAIEAAAAAAAAlAAAAAAIAJQAAAAAAACUAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAgAlAAAAAAIAgQAAAAAAAGAAAAAAAgBgAAAAAAMAgQAAAAAAACUAAAAAAAAtAAAAAAADLQAAAAAAAxgAAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAAEYAAAAAAAALQAAAAAAAS4AAAAAAAMlAAAAAAEARAAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAAAAEQAAAAAAAAlAAAAAAEAKwAAAAABACsAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAArAAAAAAEAGAAAAAAAACUAAAAAAAAtAAAAAAAAJQAAAAABAIEAAAAAAACBAAAAAAAARAAAAAAAAEQAAAAAAACBAAAAAAAAJQAAAAACAC0AAAAAAAMtAAAAAAADGAAAAAAAABgAAAAAAAAYAAAAAAAALQAAAAAAARgAAAAAAAAtAAAAAAABLgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAEAgQAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAACAGAAAAAAAABgAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAEAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAgBgAAAAAAEAYAAAAAACAGAAAAAAAgBgAAAAAAIAYAAAAAABAGAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAACAIEAAAAAAABgAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAABAIEAAAAAAABgAAAAAAMAYAAAAAABAGAAAAAAAQCBAAAAAAAAYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAEAYAAAAAABAGAAAAAAAwBgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAMAgQAAAAAAAGAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAMAgQAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAABAIEAAAAAAABgAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: gQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAIEAAAAAAAAkAAAAAAIAJAAAAAADAIEAAAAAAAAlAAAAAAAAJQAAAAABACUAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAABACUAAAAAAAAlAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAAAgQAAAAAAACUAAAAAAQAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAEYAAAAAAAALQAAAAAAAS4AAAAAAAMlAAAAAAIARAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAACAEQAAAAAAAAlAAAAAAIAKwAAAAAAACsAAAAAAAArAAAAAAIAKwAAAAACACsAAAAAAgArAAAAAAEAGAAAAAAAACUAAAAAAQAtAAAAAAAAJQAAAAADAIEAAAAAAACBAAAAAAAARAAAAAAAAEQAAAAAAACBAAAAAAAAJQAAAAADAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAARgAAAAAAAAtAAAAAAABLgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAABAGAAAAAAAwAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAACAGAAAAAAAwBgAAAAAAEAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAABAIEAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAEAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAABAGAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAABAIEAAAAAAABgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAADAIEAAAAAAABgAAAAAAMAYAAAAAABAGAAAAAAAwCBAAAAAAAAYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAQBgAAAAAAIAgQAAAAAAAGAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAACAGAAAAAAAwBgAAAAAAMAgQAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAADAIEAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAwCBAAAAAAAAgQAAAAAAAA== version: 7 -1,-2: ind: -1,-2 - tiles: gQAAAAAAAC4AAAAAAAEuAAAAAAADLgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAC4AAAAAAAItAAAAAAAAJQAAAAABAIEAAAAAAACBAAAAAAAALgAAAAAAAS4AAAAAAAMlAAAAAAAAJQAAAAAAAC4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy4AAAAAAAIuAAAAAAAALQAAAAAAACsAAAAAAQeBAAAAAAAAgQAAAAAAACAAAAAAAwCBAAAAAAAAJQAAAAAAACUAAAAAAgCBAAAAAAAAJAAAAAAAACQAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHgQAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAACACUAAAAAAQAlAAAAAAMAgQAAAAAAACQAAAAAAAAkAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAADAIEAAAAAAAAtAAAAAAAAKwAAAAABB4EAAAAAAAAgAAAAAAMALgAAAAAAAi0AAAAAAAMuAAAAAAADIAAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAAAgAAAAAAIAIAAAAAADACAAAAAAAQCBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAIAAAAAABAC0AAAAAAAAEAAAAAAAALQAAAAAAACAAAAAAAAAgAAAAAAEAgQAAAAAAAC0AAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAMHIAAAAAACACAAAAAAAgAuAAAAAAABLQAAAAAAAy4AAAAAAAAgAAAAAAMAIAAAAAADACAAAAAAAgAtAAAAAAAAIAAAAAACABQAAAAAAAAUAAAAAAAAFAAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAACByAAAAAAAgAgAAAAAAAAIAAAAAABACAAAAAAAQAgAAAAAAIAIAAAAAABACAAAAAAAgAgAAAAAAAALQAAAAAAACAAAAAAAwAUAAAAAAAAFAAAAAAAABQAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAQeBAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAEAAgAAAAAAAAIAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAEHRAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAEQAAAAAAAAtAAAAAAAAGAAAAAAAACQAAAAAAwAkAAAAAAIAJAAAAAADAIEAAAAAAAAtAAAAAAAAKwAAAAACBy0AAAAAAAAuAAAAAAADLQAAAAAAAC4AAAAAAAIuAAAAAAACLQAAAAAAAy0AAAAAAAAuAAAAAAACLgAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAACQAAAAAAgCBAAAAAAAALQAAAAAAACsAAAAAAgcuAAAAAAAALgAAAAAAAS0AAAAAAAAuAAAAAAAALgAAAAAAAi0AAAAAAAMuAAAAAAAALQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAkAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAAy0AAAAAAAMtAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAAYAAAAAAAAGAAAAAAAACQAAAAAAgAkAAAAAAMAJAAAAAABAIEAAAAAAAAtAAAAAAAAKwAAAAAABy8AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAvAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAACUAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAACQAAAAAAACBAAAAAAAAgQAAAAAAACQAAAAAAgAkAAAAAAMAJQAAAAACACUAAAAAAwAlAAAAAAAAJQAAAAADAC4AAAAAAAEtAAAAAAADgQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAIEAAAAAAAAkAAAAAAIAJAAAAAAAAC8AAAAAAAAkAAAAAAAAJQAAAAAAACUAAAAAAQAlAAAAAAEAJQAAAAAAACUAAAAAAQAlAAAAAAIAJQAAAAACAA== + tiles: GAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAC4AAAAAAAItAAAAAAAAJQAAAAABABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAABHAAAAAAAARwAAAAAAAC4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy4AAAAAAAIuAAAAAAAALQAAAAAAACsAAAAAAAeBAAAAAAAAgQAAAAAAACAAAAAAAQCBAAAAAAAARwAAAAAAAEcAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHgQAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAADAEcAAAAAAABHAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAIAgQAAAAAAACAAAAAAAQAgAAAAAAMAIAAAAAACAIEAAAAAAAAtAAAAAAAAKwAAAAABB4EAAAAAAAAgAAAAAAIALgAAAAAAAi0AAAAAAAMuAAAAAAADIAAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAADACAAAAAAAQCBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAIAAAAAABAC0AAAAAAAAEAAAAAAAALQAAAAAAACAAAAAAAQAgAAAAAAEAgQAAAAAAAC0AAAAAAAAZAAAAAAEAGQAAAAACABkAAAAAAgAZAAAAAAEAgQAAAAAAAC0AAAAAAAArAAAAAAIHIAAAAAADACAAAAAAAQAuAAAAAAABLQAAAAAAAy4AAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAQAtAAAAAAAAHgAAAAAAABkAAAAAAQAZAAAAAAEAGQAAAAACAIEAAAAAAAAtAAAAAAAAKwAAAAABByAAAAAAAAAgAAAAAAMAIAAAAAABACAAAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAwAgAAAAAAMALQAAAAAAAB4AAAAAAAAZAAAAAAIAGQAAAAAAABkAAAAAAwCBAAAAAAAALQAAAAAAACsAAAAAAQeBAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAAAAgAAAAAAAAIAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAEHRAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAEQAAAAAAAAtAAAAAAAAGAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAACBy0AAAAAAAAuAAAAAAADLQAAAAAAAC4AAAAAAAIuAAAAAAACLQAAAAAAAy0AAAAAAAAuAAAAAAACLgAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAB4AAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAgcuAAAAAAAALgAAAAAAAS0AAAAAAAAuAAAAAAAALgAAAAAAAi0AAAAAAAMuAAAAAAAALQAAAAAAABgAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAeAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAEHLQAAAAAAAy0AAAAAAAMtAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAAYAAAAAAAAGAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAADBy8AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAvAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAACUAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAACQAAAAAAgCBAAAAAAAAgQAAAAAAACQAAAAAAwAkAAAAAAMAJQAAAAACACUAAAAAAAAlAAAAAAIAJQAAAAAAAC4AAAAAAAEtAAAAAAADgQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAIEAAAAAAAAkAAAAAAEAJAAAAAACAC8AAAAAAAAkAAAAAAMAJQAAAAADACUAAAAAAgAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAABAA== version: 7 0,-2: ind: 0,-2 - tiles: KwAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAABAC4AAAAAAAKBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAgAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAG8AAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAQBgAAAAAAMAYAAAAAABAGAAAAAAAABgAAAAAAIALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAgCBAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAAAYAAAAAADABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAABgAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAAAYAAAAAACAGAAAAAAAABgAAAAAAMAYAAAAAACAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgAVAAAAAAAAFQAAAAABABUAAAAAAwBgAAAAAAMAYAAAAAADAGAAAAAAAwAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAFQAAAAACABUAAAAAAAAVAAAAAAIAYAAAAAADAGAAAAAAAgBgAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAADAGAAAAAAAgCBAAAAAAAAYAAAAAABABUAAAAAAAAVAAAAAAMAFQAAAAACAGAAAAAAAAAyAAAAAAAAMgAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAQBgAAAAAAMAgQAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAEAgQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAIAYAAAAAACAGAAAAAAAQBgAAAAAAMAYAAAAAABAGAAAAAAAABgAAAAAAMALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAwCBAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAMAYAAAAAAAAGAAAAAAAABgAAAAAAMAYAAAAAADAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAAAJQAAAAABACUAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAYAAAAAADAIEAAAAAAABgAAAAAAIAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAACAIEAAAAAAABgAAAAAAEAJQAAAAACAIEAAAAAAABEAAAAAAAARAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAADAGAAAAAAAQBgAAAAAAIAYAAAAAABAGAAAAAAAgBgAAAAAAMAYAAAAAADAG8AAAAAAACBAAAAAAAAYAAAAAADAA== + tiles: KwAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAMAYAAAAAACAC4AAAAAAAKBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAgAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAG8AAAAAAABgAAAAAAIAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAACAGAAAAAAAQBgAAAAAAMALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAACAGAAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAEAYAAAAAADAGAAAAAAAwBgAAAAAAEAgQAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAAAAGAAAAAAAwAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAEAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgAVAAAAAAEAFQAAAAAAABUAAAAAAwBgAAAAAAIAYAAAAAADAGAAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAFQAAAAACABUAAAAAAwAVAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAIALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAADAGAAAAAAAACBAAAAAAAAYAAAAAACABUAAAAAAgAVAAAAAAMAFQAAAAACAGAAAAAAAAAyAAAAAAAAMgAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAABAGAAAAAAAwBgAAAAAAEAgQAAAAAAAGAAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAwBgAAAAAAEAgQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAABAGAAAAAAAwBgAAAAAAIAYAAAAAACAGAAAAAAAQBgAAAAAAEAYAAAAAADAGAAAAAAAQBgAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAADAGAAAAAAAgCBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAACAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAAAJQAAAAABACUAAAAAAwCBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAYAAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAABAIEAAAAAAABgAAAAAAEAJQAAAAACAIEAAAAAAABEAAAAAAAARAAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAABAG8AAAAAAACBAAAAAAAAYAAAAAADAA== version: 7 1,-1: ind: 1,-1 - tiles: YAAAAAACAGAAAAAAAABgAAAAAAMAYAAAAAABAGAAAAAAAwBgAAAAAAMAYAAAAAABAIEAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAAMtAAAAAAAAgQAAAAAAACkAAAAAAAApAAAAAAEAKQAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAi4AAAAAAAArAAAAAAADLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACkAAAAAAwAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAAlAAAAAAIAJQAAAAAAAC4AAAAAAAEtAAAAAAADLgAAAAAAA4EAAAAAAACBAAAAAAAAKwAAAAAAACsAAAAAAwArAAAAAAMAKwAAAAADACsAAAAAAAArAAAAAAAAKwAAAAACACUAAAAAAQAlAAAAAAIAJQAAAAADACUAAAAAAAArAAAAAAAAJQAAAAAAAC0AAAAAAACBAAAAAAAAKQAAAAADAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAgQAAAAAAACkAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgCBAAAAAAAAIAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAACAGAAAAAAAQBgAAAAAAMAYAAAAAACAIEAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAAMtAAAAAAAAgQAAAAAAACkAAAAAAQApAAAAAAMAKQAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAi4AAAAAAAArAAAAAAADLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACkAAAAAAQAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAAlAAAAAAAAJQAAAAABAC4AAAAAAAEtAAAAAAADLgAAAAAAA4EAAAAAAACBAAAAAAAAKwAAAAAAACsAAAAAAQArAAAAAAAAKwAAAAABACsAAAAAAgArAAAAAAMAKwAAAAACACUAAAAAAQAlAAAAAAEAJQAAAAADACUAAAAAAQArAAAAAAEAJQAAAAADAC0AAAAAAACBAAAAAAAAKQAAAAABAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAgQAAAAAAACkAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAACBAAAAAAAAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 1,-2: ind: 1,-2 - tiles: YAAAAAAAAGAAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAABgAAAAAAAAgQAAAAAAAC0AAAAAAAAlAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAKQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAAAYAAAAAAAAIEAAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAACBAAAAAAAAKQAAAAADACkAAAAAAwApAAAAAAAAJQAAAAABACUAAAAAAwBgAAAAAAAAYAAAAAABAGAAAAAAAgBgAAAAAAAAYAAAAAADAGAAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAACkAAAAAAwAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAIAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAApAAAAAAEAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAACAGAAAAAAAQBgAAAAAAMAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAKQAAAAACABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAAIEAAAAAAAApAAAAAAEAKQAAAAABACUAAAAAAwAlAAAAAAIAgQAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAADABYAAAAAAwCBAAAAAAAAgQAAAAAAAC4AAAAAAAItAAAAAAADLQAAAAAAAy4AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAAAAGAAAAAAAgBgAAAAAAIAgQAAAAAAAIEAAAAAAAAtAAAAAAAALgAAAAAAAi4AAAAAAAMuAAAAAAABLQAAAAAAAykAAAAAAgApAAAAAAIALQAAAAAAAy0AAAAAAANgAAAAAAEAYAAAAAADAGAAAAAAAwBgAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAAAYAAAAAAAAC4AAAAAAAEuAAAAAAAAJQAAAAACACsAAAAAAgArAAAAAAIAKwAAAAACACsAAAAAAwArAAAAAAMAgQAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAABAGAAAAAAAwBgAAAAAAMAYAAAAAAAAGAAAAAAAQAtAAAAAAADLgAAAAAAAysAAAAAAwMuAAAAAAACLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAABgAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAy0AAAAAAAArAAAAAAEDLQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAEAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAAAAy0AAAAAAACBAAAAAAAAKQAAAAAAACkAAAAAAQApAAAAAAIAYAAAAAABAGAAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAABgAAAAAAEAYAAAAAACAGAAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAwMtAAAAAAAAGAAAAAAAACkAAAAAAAApAAAAAAAAKQAAAAABAGAAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAgBgAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIDLQAAAAAAABgAAAAAAAApAAAAAAIAKQAAAAAAACkAAAAAAABgAAAAAAIAYAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAABAGAAAAAAAABgAAAAAAIAYAAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAADAy0AAAAAAACBAAAAAAAAKQAAAAAAACkAAAAAAAApAAAAAAEAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAQCBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAApAAAAAAMAKQAAAAACAA== + tiles: YAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAACAGAAAAAAAgBgAAAAAAEAgQAAAAAAAC0AAAAAAAAlAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAKQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAADAIEAAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAACBAAAAAAAAKQAAAAADACkAAAAAAwApAAAAAAAAJQAAAAADACUAAAAAAABgAAAAAAMAYAAAAAABAGAAAAAAAgBgAAAAAAMAYAAAAAAAAGAAAAAAAwCBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAACkAAAAAAQAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAABAGAAAAAAAQBgAAAAAAIAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAApAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAEAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAKQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAAIEAAAAAAAApAAAAAAEAKQAAAAAAACUAAAAAAQAlAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAACABYAAAAAAgCBAAAAAAAAgQAAAAAAAC4AAAAAAAItAAAAAAADLQAAAAAAAy4AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAABAGAAAAAAAABgAAAAAAMAgQAAAAAAAIEAAAAAAAAeAAAAAAAALgAAAAAAAi4AAAAAAAMuAAAAAAABHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAC0AAAAAAANgAAAAAAEAYAAAAAACAGAAAAAAAwBgAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAMAHgAAAAAAAC4AAAAAAAEuAAAAAAAAJQAAAAACACsAAAAAAQArAAAAAAIAKwAAAAAAACsAAAAAAwArAAAAAAIAgQAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAACAGAAAAAAAQBgAAAAAAIAYAAAAAAAAB4AAAAAAAAtAAAAAAADLgAAAAAAAysAAAAAAwMuAAAAAAACLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAABgAAAAAAMAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAy0AAAAAAAArAAAAAAADLQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAQBgAAAAAAEAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAACAy0AAAAAAACBAAAAAAAAKQAAAAAAACkAAAAAAQApAAAAAAMAYAAAAAABAGAAAAAAAABgAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAAAYAAAAAABAGAAAAAAAQCBAAAAAAAALQAAAAAAACsAAAAAAgMtAAAAAAAAGAAAAAAAACkAAAAAAwApAAAAAAIAKQAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAABAGAAAAAAAQBgAAAAAAIAYAAAAAACAGAAAAAAAQBgAAAAAAIAgQAAAAAAAC0AAAAAAAArAAAAAAIDLQAAAAAAABgAAAAAAAApAAAAAAEAKQAAAAAAACkAAAAAAABgAAAAAAEAYAAAAAACAGAAAAAAAwBgAAAAAAEAYAAAAAADAGAAAAAAAABgAAAAAAAAYAAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAADAy0AAAAAAACBAAAAAAAAKQAAAAACACkAAAAAAgApAAAAAAEAYAAAAAADAGAAAAAAAwBgAAAAAAMAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAACAGAAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAApAAAAAAEAKQAAAAACAA== version: 7 0,-3: ind: 0,-3 - tiles: IAAAAAACAAMAAAAAAAADAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAIAAAAAAAACUAAAAAAQAlAAAAAAIAJQAAAAACACUAAAAAAAAlAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAcAAAAAAAADAAAAAAAAAwAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAALgAAAAAAAi0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAi4AAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAYAAAAAAAAJAAAAAABABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAC0AAAAAAAAlAAAAAAEALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAAABy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS4AAAAAAAOBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAuAAAAAAABLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAEHLQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAKwAAAAACBy4AAAAAAAEYAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADKwAAAAABACsAAAAAAAArAAAAAAAAKwAAAAABACUAAAAAAQArAAAAAAIAGAAAAAAAACsAAAAAAgArAAAAAAEAKwAAAAAAACsAAAAAAgArAAAAAAAAKwAAAAABACsAAAAAAgArAAAAAAMAKwAAAAAAAC4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAxgAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAABAA== + tiles: IAAAAAACAAMAAAAAAAADAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAIAAAAAAAACUAAAAAAAAlAAAAAAIAJQAAAAACACUAAAAAAwAlAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAcAAAAAAAADAAAAAAAAAwAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAALgAAAAAAAi0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAi4AAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAgQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAC0AAAAAAAAlAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS4AAAAAAAOBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAuAAAAAAABLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAKwAAAAADBy4AAAAAAAEYAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADKwAAAAAAACsAAAAAAAArAAAAAAAAKwAAAAAAACUAAAAAAwArAAAAAAMAGAAAAAAAACsAAAAAAgArAAAAAAEAKwAAAAAAACsAAAAAAwArAAAAAAMAKwAAAAADACsAAAAAAgArAAAAAAEAKwAAAAACAC4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAxgAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAACAA== version: 7 1,-3: ind: 1,-3 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAYAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAADFwAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAJQAAAAABACUAAAAAAAAlAAAAAAMAJQAAAAACACUAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS4AAAAAAAOBAAAAAAAAIAAAAAAAACsAAAAAAgAgAAAAAAMAgQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAADACUAAAAAAgAlAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAABgAAAAAAAAlAAAAAAIAJQAAAAADACUAAAAAAQAlAAAAAAIAJQAAAAADAC4AAAAAAAItAAAAAAADLgAAAAAAA4EAAAAAAACBAAAAAAAALQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAAABy0AAAAAAAAYAAAAAAAAJQAAAAACACUAAAAAAQAlAAAAAAEAJQAAAAACACUAAAAAAQAtAAAAAAAABAAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAQctAAAAAAAAgQAAAAAAACUAAAAAAQAlAAAAAAEAJQAAAAAAACUAAAAAAQAlAAAAAAIALgAAAAAAAS0AAAAAAAMuAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAAIEAAAAAAAAlAAAAAAEAJQAAAAAAACUAAAAAAwAlAAAAAAMAJQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAAABy0AAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAEAJQAAAAABACUAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAi4AAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAActAAAAAAAAgQAAAAAAACUAAAAAAAAlAAAAAAEAJQAAAAACACUAAAAAAwAlAAAAAAIALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAAXAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAQAAAAAAAAEAAAAAADABAAAAAAAgAQAAAAAAIAJQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAADBy0AAAAAAACBAAAAAAAAEAAAAAABABAAAAAAAAAQAAAAAAIAEAAAAAAAACUAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMYAAAAAAAALgAAAAAAACsAAAAAAActAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAKwAAAAACACsAAAAAAwArAAAAAAEAKwAAAAAAACsAAAAAAgArAAAAAAEAGAAAAAAAACsAAAAAAAAlAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAxgAAAAAAAAuAAAAAAADKwAAAAACBy0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAALQAAAAAAACsAAAAAAQctAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAYAAAAAAAAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAYAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAADFwAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS4AAAAAAAOBAAAAAAAAIAAAAAABACsAAAAAAAAgAAAAAAIAgQAAAAAAAG8AAAAAAAAlAAAAAAMAJQAAAAACACUAAAAAAQAlAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAABgAAAAAAABvAAAAAAAAJQAAAAACACUAAAAAAAAlAAAAAAEAJQAAAAADAAkAAAAAAAAJAAAAAAAACQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAAAYAAAAAAAAbwAAAAAAACUAAAAAAgAlAAAAAAMAJQAAAAAAACUAAAAAAAAJAAAAAAAABAAAAAAAAAkAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAActAAAAAAAAgQAAAAAAAG8AAAAAAAAlAAAAAAMAJQAAAAACACUAAAAAAQAlAAAAAAMACQAAAAAAAAkAAAAAAAAJAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAIEAAAAAAABvAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAbwAAAAAAACUAAAAAAAAlAAAAAAIAJQAAAAACACUAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAi4AAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAActAAAAAAAAgQAAAAAAAG8AAAAAAAAlAAAAAAMAJQAAAAABACUAAAAAAQAlAAAAAAEALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAAXAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAQAAAAAAAAEAAAAAABABAAAAAAAAAQAAAAAAIAJQAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAEAAAAAABABAAAAAAAAAQAAAAAAMAEAAAAAABAG8AAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMYAAAAAAAALgAAAAAAACsAAAAAAQctAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAKwAAAAACACsAAAAAAQArAAAAAAEAKwAAAAADACsAAAAAAAArAAAAAAMAGAAAAAAAACsAAAAAAQAlAAAAAAIALQAAAAAAAC0AAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAxgAAAAAAAAuAAAAAAADKwAAAAACBy0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAALQAAAAAAACsAAAAAAwctAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAYAAAAAADAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 -1,-3: ind: -1,-3 - tiles: gQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAIEAAAAAAABvAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAAAACAAAAAAAgCBAAAAAAAAIAAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAAABy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwAgAAAAAAMALQAAAAAAACsAAAAAAQctAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAAAgAAAAAAIAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAIAAAAAACAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAJAAAAAABACQAAAAAAwAkAAAAAAIAJAAAAAABACQAAAAAAQCBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAwctAAAAAAAAgQAAAAAAACQAAAAAAAAkAAAAAAEAJAAAAAAAACQAAAAAAwAkAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAEAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAABy4AAAAAAAOBAAAAAAAAFwAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAAAuAAAAAAABLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAABcAAAAAAAAYAAAAAAAALQAAAAAAACUAAAAAAgArAAAAAAMAJQAAAAAAAC4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAAtAAAAAAAALQAAAAAAACAAAAAAAACBAAAAAAAAGAAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAC4AAAAAAAIuAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAC4AAAAAAAEtAAAAAAAHLgAAAAAAAxgAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAuAAAAAAABGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAACLQAAAAAABy4AAAAAAAWBAAAAAAAALQAAAAAAAC0AAAAAAAAuAAAAAAABLQAAAAAAAy0AAAAAAAMYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALQAAAAAAAC4AAAAAAAEtAAAAAAADgQAAAAAAAC0AAAAAAAAuAAAAAAABLQAAAAAAA4EAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAJQAAAAABAIEAAAAAAAAuAAAAAAABLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAxgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAtAAAAAAAALQAAAAAAACsAAAAAAAeBAAAAAAAALQAAAAAAAC0AAAAAAAAuAAAAAAABLgAAAAAAAxgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALQAAAAAAAC0AAAAAAAArAAAAAAAHgQAAAAAAAC0AAAAAAAAuAAAAAAABLgAAAAAAAy4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAAtAAAAAAAAKwAAAAAABw== + tiles: gQAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAAIEAAAAAAAAeAAAAAAAAIAAAAAABACAAAAAAAQAgAAAAAAMAgQAAAAAAACAAAAAAAwAgAAAAAAMAIAAAAAAAACAAAAAAAwCBAAAAAAAAIAAAAAADAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAAAYAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALwAAAAAAAIEAAAAAAAAgAAAAAAMAgQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAC8AAAAAAACBAAAAAAAAIAAAAAADAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAwctAAAAAAAAgQAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAFwAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAAAuAAAAAAABLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAxgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABcAAAAAAAAYAAAAAAAALQAAAAAAACUAAAAAAwArAAAAAAEAJQAAAAADAC4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAxgAAAAAAAAYAAAAAAAAGAAAAAAAACAAAAAAAgCBAAAAAAAAGAAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABvAAAAAAAALQAAAAAABxgAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAuAAAAAAABbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAC4AAAAAAAEtAAAAAAADGAAAAAAAAIEAAAAAAAAYAAAAAAAALQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAAAYAAAAAAAAJQAAAAACABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABvAAAAAAAALQAAAAAAACsAAAAAAAcYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAC0AAAAAAAArAAAAAAMHGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAAAtAAAAAAAAKwAAAAABBw== version: 7 -2,-2: ind: -2,-2 - tiles: gQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAIAAAAAACAAEAAAAAAgAYAAAAAAAAAAAAAAAAAIEAAAAAAAABAAAAAAEAAQAAAAABAAEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAACAAAAAAAAABAAAAAAIAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAYAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAAIEAAAAAAAAgAAAAAAEAAQAAAAABAAEAAAAAAgAmAAAAAAIAJgAAAAABABgAAAAAAAAGAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAABgAAAAABABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAvAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAEAIAAAAAACAAEAAAAAAwABAAAAAAEAAQAAAAABAAYAAAAAAwABAAAAAAMAAQAAAAADAAEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAACAAAAAAAQAgAAAAAAIALgAAAAAAAi0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAMgAAAAAAIALgAAAAAAA4EAAAAAAAAtAAAAAAAAKwAAAAAABy0AAAAAAACBAAAAAAAAIAAAAAACAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAIAAAAAADAC4AAAAAAAAYAAAAAAAALQAAAAAAACsAAAAAAActAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAMAIAAAAAADACAAAAAAAgAgAAAAAAAAIAAAAAACACAAAAAAAgAgAAAAAAMAIAAAAAACACAAAAAAAwAuAAAAAAADGAAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAALQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAARAAAAAAAAEQAAAAAAAAYAAAAAAAARAAAAAAAAC0AAAAAAAAYAAAAAAAALQAAAAAAACsAAAAAAwctAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAC4AAAAAAAItAAAAAAADLQAAAAAAAy4AAAAAAAMuAAAAAAAAGAAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAABgAAAAAAAAtAAAAAAAAGAAAAAAAABgAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAwctAAAAAAAALQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAAEQAAAAAAACBAAAAAAAAIAAAAAACAC0AAAAAAAArAAAAAAMHLQAAAAAAAC0AAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAABEAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAAAtAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAEAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAAAtAAAAAAAAJQAAAAAAAC0AAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAAAAAAAAAIEAAAAAAAABAAAAAAAAAQAAAAADAAEAAAAAAQAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAB4AAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAeAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAHgAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAvAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAADAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAACAAAAAAAwAgAAAAAAAALgAAAAAAAi0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAMgAAAAAAAALgAAAAAAA4EAAAAAAAAtAAAAAAAAKwAAAAADBy0AAAAAAACBAAAAAAAAIAAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAIAAAAAADAC4AAAAAAAAYAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAgQAAAAAAACAAAAAAAwAgAAAAAAIAIAAAAAABACAAAAAAAwAgAAAAAAEAIAAAAAACACAAAAAAAwAgAAAAAAAAIAAAAAABACAAAAAAAwAuAAAAAAADGAAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAALQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAAABy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAARAAAAAAAAEQAAAAAAAAYAAAAAAAARAAAAAAAAC0AAAAAAAAYAAAAAAAALQAAAAAAACsAAAAAAActAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAC4AAAAAAAItAAAAAAADLQAAAAAAAy4AAAAAAAMuAAAAAAAAGAAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAABgAAAAAAAAtAAAAAAAAGAAAAAAAABgAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAxgAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAwctAAAAAAAALQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAAEQAAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAC0AAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAABEAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAACBy0AAAAAAAAtAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAEAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAA== version: 7 -2,-1: ind: -2,-1 - tiles: IAAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAAABy0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAABEAAAAAAAARAAAAAAAACAAAAAAAgAgAAAAAAIALQAAAAAAACsAAAAAAgctAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIALgAAAAAAAi4AAAAAAAArAAAAAAAHLgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADGAAAAAAAABgAAAAAAAAtAAAAAAADLQAAAAAAAy4AAAAAAAAlAAAAAAMAJQAAAAADACsAAAAAAgArAAAAAAIAKwAAAAAAACsAAAAAAwArAAAAAAEAKwAAAAACACsAAAAAAAArAAAAAAEAKwAAAAADABgAAAAAAAAYAAAAAAAAKwAAAAACACsAAAAAAQArAAAAAAMAJQAAAAACAC4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMYAAAAAAAAGAAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABAIEAAAAAAAAgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAACBAAAAAAAAIAAAAAACAIEAAAAAAACBAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAgAAAAAAMAgQAAAAAAACAAAAAAAwCBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: HgAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAABEAAAAAAAARAAAAAAAAB4AAAAAAAAeAAAAAAAALQAAAAAAACsAAAAAAActAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAALgAAAAAAAi4AAAAAAAArAAAAAAIHLgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAAlAAAAAAAAJQAAAAACACsAAAAAAQArAAAAAAAAKwAAAAAAACsAAAAAAgArAAAAAAIAKwAAAAACACsAAAAAAwArAAAAAAMAKwAAAAAAACsAAAAAAQArAAAAAAEAKwAAAAACACsAAAAAAwArAAAAAAMAJQAAAAABAC4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -2,-3: ind: -2,-3 - tiles: gQAAAAAAAIEAAAAAAAAlAAAAAAMAAQAAAAABACUAAAAAAwAlAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAAAgAAAAAAMAIAAAAAACAIEAAAAAAACBAAAAAAAALwAAAAAAAAAAAAAAAACBAAAAAAAAJQAAAAADAAEAAAAAAgAlAAAAAAEAJQAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwAgAAAAAAAAIAAAAAAAACAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAACUAAAAAAwABAAAAAAAAJQAAAAACACUAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAAAACAAAAAAAwAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAAAlAAAAAAMAAQAAAAAAACUAAAAAAAAlAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAgAgAAAAAAEAIAAAAAACAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAAAAAEAAAAAAwAlAAAAAAIAJQAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAwAlAAAAAAIAJQAAAAACACUAAAAAAQAgAAAAAAMAgQAAAAAAAIEAAAAAAAAgAAAAAAIAIAAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAACACAAAAAAAAAgAAAAAAAAGAAAAAAAACUAAAAAAwAlAAAAAAIAJQAAAAACACUAAAAAAAAlAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAgAgAAAAAAAAIAAAAAADAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAMAIAAAAAABACAAAAAAAAAgAAAAAAMAIAAAAAAAACAAAAAAAwAYAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAMAJQAAAAABAIEAAAAAAAAgAAAAAAIAIAAAAAAAACAAAAAAAwAgAAAAAAMAIAAAAAACACAAAAAAAwAgAAAAAAMAIAAAAAAAACAAAAAAAwAgAAAAAAEAGAAAAAAAABgAAAAAAAAlAAAAAAAAJQAAAAADACUAAAAAAQCBAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAIAIAAAAAABACAAAAAAAgAgAAAAAAMAIAAAAAACACAAAAAAAAAgAAAAAAAAIAAAAAABABgAAAAAAAAYAAAAAAAAGAAAAAAAACUAAAAAAgAlAAAAAAAAGAAAAAAAACAAAAAAAwABAAAAAAAAAQAAAAADAAEAAAAAAgABAAAAAAEAAQAAAAABAAYAAAAAAQABAAAAAAAAAQAAAAACAAEAAAAAAQCBAAAAAAAAGAAAAAAAABgAAAAAAAAlAAAAAAMAJQAAAAAAABgAAAAAAAAgAAAAAAIAAQAAAAACABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAABAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAJQAAAAADACUAAAAAAAAYAAAAAAAAIAAAAAADAAEAAAAAAwABAAAAAAMAJgAAAAAAACYAAAAAAgAYAAAAAAAABgAAAAACABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAJQAAAAACACUAAAAAAQAlAAAAAAMAgQAAAAAAACAAAAAAAgABAAAAAAMAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAYAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAJQAAAAADACUAAAAAAwAlAAAAAAAAJQAAAAABAIEAAAAAAAAgAAAAAAIAAQAAAAADABgAAAAAAAAAAAAAAAAAgQAAAAAAAAEAAAAAAQABAAAAAAMAAQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAJQAAAAAAAC0AAAAAAACBAAAAAAAAIAAAAAADAAEAAAAAAAAYAAAAAAAAAAAAAAAAAIEAAAAAAAArAAAAAAMAKwAAAAABACsAAAAAAgAYAAAAAAAAGAAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAAAtAAAAAAACKwAAAAABARgAAAAAAAAtAAAAAAACgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAIAIAAAAAADAIEAAAAAAACBAAAAAAAALwAAAAAAAAAAAAAAAACBAAAAAAAALQAAAAAAAisAAAAAAQEYAAAAAAAALQAAAAAAAoEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAACACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAAC0AAAAAAAIrAAAAAAEBGAAAAAAAAC0AAAAAAAKBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIAIAAAAAADACAAAAAAAgAgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAAAtAAAAAAACKwAAAAAAARgAAAAAAAAtAAAAAAACgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAgAgAAAAAAMAIAAAAAACAIEAAAAAAAAYAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAisAAAAAAwEYAAAAAAAALQAAAAAAAoEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAC0AAAAAAAIrAAAAAAEBGAAAAAAAAC0AAAAAAAIYAAAAAAAAGAAAAAAAAIEAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAtAAAAAAACKwAAAAAAAS4AAAAAAAIuAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAeAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAHgAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAB4AAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAAAAAAAAAAgQAAAAAAAAEAAAAAAAABAAAAAAMAAQAAAAADABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAAAS4AAAAAAAOBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAAAAAAAAAIEAAAAAAAArAAAAAAIAKwAAAAADACsAAAAAAgAYAAAAAAAAGAAAAAAAAA== version: 7 0,-4: ind: 0,-4 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAArAAAAAAIHKwAAAAABB4EAAAAAAAAYAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAKwAAAAABBysAAAAAAQeBAAAAAAAAGAAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAADACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAABkAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAwAgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAACAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAGAAAAAAAQAwAAAAAAMAGgAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAACACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAEALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAADEAAAAAAgCBAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAIAIAAAAAABACAAAAAAAAAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAxAAAAAAMAIAAAAAABACAAAAAAAQAgAAAAAAAAIAAAAAADACAAAAAAAgAgAAAAAAIAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAMQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAABACAAAAAAAgAgAAAAAAIAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAADEAAAAAAwCBAAAAAAAAgQAAAAAAACAAAAAAAwCBAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAALgAAAAAAAi0AAAAAAAMtAAAAAAADGAAAAAAAAC4AAAAAAAAtAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAyAAAAAAAgAgAAAAAAAAIAAAAAACAC0AAAAAAAAlAAAAAAAAKwAAAAABABgAAAAAAAArAAAAAAAAKwAAAAAAACsAAAAAAgArAAAAAAIAKwAAAAADACsAAAAAAAArAAAAAAIAKwAAAAADACsAAAAAAQAgAAAAAAEAIAAAAAADACAAAAAAAQAtAAAAAAAALQAAAAAAAC4AAAAAAAIYAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAAMAAAAAAAADAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAlAAAAAAMAJQAAAAABACUAAAAAAQAlAAAAAAIAJQAAAAAAAIEAAAAAAAAgAAAAAAAALgAAAAAAAi0AAAAAAAMDAAAAAAAAAwAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAgAAAAAAIAJQAAAAABACAAAAAAAAAgAAAAAAMAIAAAAAADACUAAAAAAACBAAAAAAAAIAAAAAADAC0AAAAAAAAlAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAACUAAAAAAQAgAAAAAAEAIAAAAAACACAAAAAAAQAlAAAAAAAAgQAAAAAAACAAAAAAAAAuAAAAAAABLQAAAAAAAw== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAArAAAAAAMHKwAAAAACB4EAAAAAAAAYAAAAAAAAgQAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAACAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAKwAAAAACBysAAAAAAgeBAAAAAAAAGAAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAAAACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAABkAAAAAAwCBAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAABvAAAAAAAAbwAAAAAAACAAAAAAAwAgAAAAAAIAIAAAAAABACAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAACACAAAAAAAAAgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAABvAAAAAAAAIAAAAAADACAAAAAAAgAgAAAAAAEAIAAAAAADACAAAAAAAwAgAAAAAAAAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAbwAAAAAAAIEAAAAAAAAgAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAAAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgCBAAAAAAAAIAAAAAACACAAAAAAAgAgAAAAAAAALgAAAAAAAi0AAAAAAAMtAAAAAAADGAAAAAAAAC4AAAAAAAAtAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAyAAAAAAAAAgAAAAAAEAIAAAAAACAC0AAAAAAAAlAAAAAAEAKwAAAAAAABgAAAAAAAArAAAAAAEAKwAAAAACACsAAAAAAQArAAAAAAEAKwAAAAACACsAAAAAAwArAAAAAAMAKwAAAAADACsAAAAAAwAgAAAAAAIAIAAAAAADACAAAAAAAQAtAAAAAAAALQAAAAAAAC4AAAAAAAIYAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAAMAAAAAAAADAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAlAAAAAAIAJQAAAAADACUAAAAAAwAlAAAAAAIAJQAAAAAAAIEAAAAAAAAgAAAAAAEALgAAAAAAAi0AAAAAAAMDAAAAAAAAAwAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAgAAAAAAIAJQAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAABACUAAAAAAwCBAAAAAAAAIAAAAAABAC0AAAAAAAAlAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAACUAAAAAAgAgAAAAAAMAIAAAAAABACAAAAAAAAAlAAAAAAEAgQAAAAAAACAAAAAAAwAuAAAAAAABLQAAAAAAAw== version: 7 1,-4: ind: 1,-4 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAABAIEAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAADBy0AAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAACACsAAAAAAQAgAAAAAAIAgQAAAAAAACAAAAAAAwAgAAAAAAIAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAADACAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAGAAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAItAAAAAAADLgAAAAAAABgAAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAAOBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAIuAAAAAAAAGAAAAAAAABgAAAAAAAAlAAAAAAEAGAAAAAAAABgAAAAAAAAuAAAAAAABLgAAAAAAA4EAAAAAAACBAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAIuAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAACLQAAAAAAAy4AAAAAAAMYAAAAAAAAGAAAAAAAAC4AAAAAAAEuAAAAAAADgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAACLgAAAAAAAGAAAAAAAQAuAAAAAAABLgAAAAAAAxgAAAAAAAAYAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABABgAAAAAAAAtAAAAAAADLgAAAAAAABgAAAAAAAAuAAAAAAACLgAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAEuAAAAAAADGAAAAAAAAC4AAAAAAAEtAAAAAAADGAAAAAAAACsAAAAAAgAYAAAAAAAAGAAAAAAAABgAAAAAAAAlAAAAAAAALQAAAAAAAGAAAAAAAAAYAAAAAAAAEwAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAACUAAAAAAgAYAAAAAAAAGAAAAAAAABgAAAAAAAAgAAAAAAEAGAAAAAAAAC0AAAAAAAMuAAAAAAADGAAAAAAAAC4AAAAAAAEuAAAAAAADGAAAAAAAABgAAAAAAAAYAAAAAAAALgAAAAAAAi4AAAAAAAAYAAAAAAAALgAAAAAAAi0AAAAAAAMYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAABgAAAAAAAAYAAAAAAAALgAAAAAAAS4AAAAAAANgAAAAAAAALgAAAAAAAi4AAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMuAAAAAAADgQAAAAAAAC4AAAAAAAEuAAAAAAADGAAAAAAAABgAAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAIuAAAAAAAAgQAAAAAAACAAAAAAAwAlAAAAAAIALQAAAAAAAIEAAAAAAAAuAAAAAAADLgAAAAAAAS4AAAAAAAMYAAAAAAAAGAAAAAAAACUAAAAAAgAYAAAAAAAAGAAAAAAAAC4AAAAAAAIuAAAAAAAALgAAAAAAAoEAAAAAAAAgAAAAAAIALQAAAAAAAy4AAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAAMYAAAAAAAALgAAAAAAAi0AAAAAAAMuAAAAAAAALgAAAAAAAi4AAAAAAACBAAAAAAAAIAAAAAABAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAAIEAAAAAAAAgAAAAAAEAIAAAAAADAIEAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAAABy0AAAAAAACBAAAAAAAAIAAAAAACACAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACsAAAAAAAAgAAAAAAEAgQAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAgAAAAAAEAIAAAAAACACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAGAAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAItAAAAAAADLgAAAAAAABgAAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAAOBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAIuAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAABLgAAAAAAA4EAAAAAAACBAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAIuAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAACLQAAAAAAAy4AAAAAAAMYAAAAAAAAGAAAAAAAAC4AAAAAAAEuAAAAAAADgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAACHgAAAAAAAB4AAAAAAAAeAAAAAAAALgAAAAAAAxgAAAAAAAAYAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADABgAAAAAAAAtAAAAAAADLgAAAAAAABgAAAAAAAAuAAAAAAACHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAAAuAAAAAAADGAAAAAAAAC4AAAAAAAEtAAAAAAADGAAAAAAAACsAAAAAAwAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAgAAAAAAMAGAAAAAAAAC0AAAAAAAMuAAAAAAADGAAAAAAAAC4AAAAAAAEeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAC4AAAAAAAAYAAAAAAAALgAAAAAAAi0AAAAAAAMYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAABgAAAAAAAAYAAAAAAAALgAAAAAAAR4AAAAAAAAeAAAAAAAAHgAAAAAAAC4AAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMuAAAAAAADgQAAAAAAAC4AAAAAAAEuAAAAAAADGAAAAAAAABgAAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAIuAAAAAAAAgQAAAAAAACAAAAAAAAAlAAAAAAAALQAAAAAAAIEAAAAAAAAuAAAAAAADLgAAAAAAAS4AAAAAAAMYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAIuAAAAAAAALgAAAAAAAoEAAAAAAAAgAAAAAAEALQAAAAAAAy4AAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAAMYAAAAAAAALgAAAAAAAi0AAAAAAAMuAAAAAAAALgAAAAAAAi4AAAAAAACBAAAAAAAAIAAAAAABAA== version: 7 -1,-4: ind: -1,-4 - tiles: gQAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAEAIAAAAAABACAAAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAwAgAAAAAAAAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAMAIAAAAAACACAAAAAAAgAgAAAAAAIAIAAAAAADACAAAAAAAgAgAAAAAAIAIAAAAAADACAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAAAYAAAAAABAIEAAAAAAAAgAAAAAAEAIAAAAAACACAAAAAAAQAgAAAAAAMAIAAAAAACACAAAAAAAwAgAAAAAAIAIAAAAAADACAAAAAAAwAgAAAAAAEAYAAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAQBgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAcAAAAAAAAgAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAAIAAAAAABAC0AAAAAAAMuAAAAAAADLwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAHAAAAAAAAIAAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAAAACAAAAAAAwAlAAAAAAEALgAAAAAAAS4AAAAAAAMvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAABwAAAAAAACAAAAAAAAAgAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAAJQAAAAAAACUAAAAAAQAuAAAAAAABLgAAAAAAA4EAAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAAcAAAAAAAAgAAAAAAEAIAAAAAABACAAAAAAAgAgAAAAAAIAIAAAAAAAAC4AAAAAAAMlAAAAAAEAJQAAAAABACAAAAAAAQBvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAAAgAAAAAAEAIAAAAAADACAAAAAAAAAgAAAAAAAAIAAAAAACACAAAAAAAwAuAAAAAAABLgAAAAAAAyUAAAAAAQAgAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAQCBAAAAAAAAIAAAAAAAAIEAAAAAAAAgAAAAAAMAgQAAAAAAAC0AAAAAAAArAAAAAAEHIAAAAAACAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAACAAAAAAAAAgAAAAAAIAgQAAAAAAACAAAAAAAACBAAAAAAAAIAAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAACBy0AAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAAAHAAAAAAAABwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgCBAAAAAAAALQAAAAAAACsAAAAAAwctAAAAAAAAgQAAAAAAAG8AAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAAAAIEAAAAAAAAgAAAAAAIAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAACAAAAAAAQBvAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAgQAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAAAACAAAAAAAAAgAAAAAAIAIAAAAAABAA== + tiles: gQAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAwAgAAAAAAMAIAAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAADACAAAAAAAgAgAAAAAAEAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAABACAAAAAAAgAgAAAAAAMAIAAAAAAAACAAAAAAAgBgAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAABAIEAAAAAAAAgAAAAAAIAIAAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAABACAAAAAAAQAgAAAAAAAAIAAAAAABACAAAAAAAwAgAAAAAAIAYAAAAAABAGAAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAACAGAAAAAAAQBgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAcAAAAAAAAgAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAIAAAAAACAC0AAAAAAAMuAAAAAAADLwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAAAHAAAAAAAAIAAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAADACAAAAAAAAAlAAAAAAAALgAAAAAAAS4AAAAAAAMvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAABwAAAAAAACAAAAAAAAAgAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAAJQAAAAAAACUAAAAAAQAuAAAAAAABLgAAAAAAA4EAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAAcAAAAAAAAgAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAAAIAAAAAACAC4AAAAAAAMlAAAAAAMAJQAAAAABACAAAAAAAQBvAAAAAAAAHgAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAADACAAAAAAAQAuAAAAAAABLgAAAAAAAyUAAAAAAwAgAAAAAAEAbwAAAAAAAB4AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgCBAAAAAAAAIAAAAAACAIEAAAAAAAAgAAAAAAEAgQAAAAAAAC0AAAAAAAArAAAAAAEHIAAAAAACAG8AAAAAAAAeAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAEAgQAAAAAAACAAAAAAAACBAAAAAAAAIAAAAAACAIEAAAAAAAAtAAAAAAAAKwAAAAAABy0AAAAAAACBAAAAAAAAHgAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAAAHAAAAAAAABwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAActAAAAAAAAgQAAAAAAAB4AAAAAAAAgAAAAAAIAIAAAAAADACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABAIEAAAAAAAAgAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAEHLQAAAAAAACAAAAAAAAAeAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAIAgQAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAAAIAAAAAACAA== version: 7 0,-5: ind: 0,-5 - tiles: LwAAAAAAAIEAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy8AAAAAAACBAAAAAAAAGwAAAAAAACkAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAACUAAAAAAQArAAAAAAEAKwAAAAADACsAAAAAAQArAAAAAAMAJQAAAAADACsAAAAAAgAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACkAAAAAAgCBAAAAAAAAgQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAysAAAAAAAcuAAAAAAACgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAEHLQAAAAAAABsAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAApAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAABACUAAAAAAQAlAAAAAAIAJQAAAAACAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAApAAAAAAEAgQAAAAAAACkAAAAAAwCBAAAAAAAAgQAAAAAAACUAAAAAAQAlAAAAAAAAJQAAAAACAIEAAAAAAAAuAAAAAAAALQAAAAAAACsAAAAAAActAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAKQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAArAAAAAAEHLQAAAAAAABsAAAAAAACBAAAAAAAAKQAAAAACACkAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAACUAAAAAAgArAAAAAAMAKwAAAAADACsAAAAAAAArAAAAAAMAJQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAApAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHLgAAAAAAAi0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAALQAAAAAAAy0AAAAAAAMuAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAADAC0AAAAAAAMuAAAAAAADLQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAQctAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAABAGAAAAAAAAAgAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgCBAAAAAAAAIAAAAAABAC0AAAAAAAAuAAAAAAABLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAKwAAAAAABy0AAAAAAACBAAAAAAAAJAAAAAACACQAAAAAAAAgAAAAAAMAJAAAAAAAACAAAAAAAAAtAAAAAAAAJQAAAAADACsAAAAAAQArAAAAAAMAKwAAAAADACsAAAAAAAArAAAAAAIAKwAAAAAAACUAAAAAAwAtAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAMALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAIEAAAAAAAAKAAAAAAAACgAAAAAAACAAAAAAAgAgAAAAAAIAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: LwAAAAAAAIEAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy8AAAAAAACBAAAAAAAAGwAAAAAAACkAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAACUAAAAAAAArAAAAAAMAKwAAAAADACsAAAAAAwArAAAAAAIAJQAAAAABACsAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACkAAAAAAQCBAAAAAAAAgQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAysAAAAAAAcuAAAAAAACgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAABsAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAApAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAgAlAAAAAAIAJQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAApAAAAAAMAgQAAAAAAACkAAAAAAQCBAAAAAAAAgQAAAAAAACUAAAAAAwAlAAAAAAMAJQAAAAACAIEAAAAAAAAuAAAAAAAALQAAAAAAACsAAAAAAQctAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAKQAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAArAAAAAAEHLQAAAAAAABsAAAAAAACBAAAAAAAAKQAAAAAAACkAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAACUAAAAAAwArAAAAAAMAKwAAAAADACsAAAAAAQArAAAAAAMAJQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAApAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAEHLgAAAAAAAi0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAALQAAAAAAAy0AAAAAAAMuAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAADBy0AAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAABAC0AAAAAAAMuAAAAAAADLQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAQAgAAAAAAIALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAEHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAIAAAAAACAC0AAAAAAAAuAAAAAAABLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAACAAAAAAAQAtAAAAAAAAJQAAAAACACsAAAAAAgArAAAAAAIAKwAAAAACACsAAAAAAgArAAAAAAAAKwAAAAACACUAAAAAAwAtAAAAAAAAIAAAAAADAB4AAAAAAAAgAAAAAAMAIAAAAAAAACAAAAAAAAAgAAAAAAEALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAIEAAAAAAAAKAAAAAAAACgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 -2,-4: ind: -2,-4 - tiles: YAAAAAACAGAAAAAAAgCBAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAADAGAAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAMAYAAAAAACAGAAAAAAAgBgAAAAAAAAgQAAAAAAACAAAAAAAgCBAAAAAAAAYAAAAAACAGAAAAAAAQBgAAAAAAEAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAADAGAAAAAAAgCBAAAAAAAAgQAAAAAAACAAAAAAAQBgAAAAAAIAYAAAAAAAAGAAAAAAAwBgAAAAAAIAgQAAAAAAAGAAAAAAAwBgAAAAAAEAYAAAAAABAGAAAAAAAgBgAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAMAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAEAYAAAAAAAAIEAAAAAAABrAAAAAAMAawAAAAAAAGsAAAAAAQBrAAAAAAIAgQAAAAAAAGAAAAAAAwBgAAAAAAEAYAAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAwCBAAAAAAAAYAAAAAAAAGAAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAADAGAAAAAAAgCBAAAAAAAAgQAAAAAAAA8AAAAAAwCBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAMAGAAAAAAAACUAAAAAAQAlAAAAAAEAJQAAAAAAACUAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAA4EAAAAAAACBAAAAAAAAIAAAAAABABgAAAAAAAAYAAAAAAAAJQAAAAADACUAAAAAAAAlAAAAAAEAJQAAAAADACsAAAAAAwArAAAAAAIAKwAAAAADACsAAAAAAgAlAAAAAAIAJQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMYAAAAAAAAGAAAAAAAABgAAAAAAAAlAAAAAAMAJQAAAAABAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAADJQAAAAABACUAAAAAAAArAAAAAAEAKwAAAAADACsAAAAAAwAlAAAAAAEAgQAAAAAAABgAAAAAAAAYAAAAAAAAJQAAAAAAACUAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAxgAAAAAAAAYAAAAAAAAGAAAAAAAACUAAAAAAwAlAAAAAAAAgQAAAAAAAC8AAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAy4AAAAAAAEYAAAAAAAAGAAAAAAAACUAAAAAAgAlAAAAAAIAJQAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAJQAAAAAAACUAAAAAAQBgAAAAAAIAgQAAAAAAAIEAAAAAAAAuAAAAAAADGAAAAAAAACUAAAAAAAAlAAAAAAIAJQAAAAABACUAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACACUAAAAAAQAlAAAAAAAAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAGAAAAAAAwAlAAAAAAAAJQAAAAAAAGAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAJQAAAAABACUAAAAAAwAlAAAAAAMAJQAAAAADACUAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAJQAAAAACACUAAAAAAgBgAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAJQAAAAADACUAAAAAAQAlAAAAAAMAJQAAAAABACUAAAAAAgAlAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: YAAAAAADAGAAAAAAAwCBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAACAGAAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAADAGAAAAAAAwBgAAAAAAMAgQAAAAAAACAAAAAAAgCBAAAAAAAAYAAAAAABAGAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAAAYAAAAAADAGAAAAAAAwCBAAAAAAAAgQAAAAAAACAAAAAAAQBgAAAAAAIAYAAAAAACAGAAAAAAAwBgAAAAAAMAgQAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAACAGAAAAAAAgBgAAAAAAEAgQAAAAAAAGAAAAAAAgBgAAAAAAEAYAAAAAADAGAAAAAAAgBgAAAAAAAAYAAAAAADAIEAAAAAAABrAAAAAAEAawAAAAACAGsAAAAAAwBrAAAAAAEAgQAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAADAIEAAAAAAABgAAAAAAEAYAAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAgAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAA8AAAAAAQCBAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAA4EAAAAAAACBAAAAAAAAIAAAAAABABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAArAAAAAAAAKwAAAAACACsAAAAAAgAlAAAAAAMAJQAAAAACAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAADJQAAAAABACUAAAAAAQArAAAAAAEAKwAAAAADACsAAAAAAgAlAAAAAAIABAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAxgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAC8AAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAy4AAAAAAAEYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAADGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACUAAAAAAgAlAAAAAAIAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAGAAAAAAAACAAAAAAAQAlAAAAAAAAJQAAAAABACAAAAAAAQAYAAAAAAAAGAAAAAAAABgAAAAAAAAeAAAAAAAAHgAAAAAAAC0AAAAAAAIrAAAAAAMBLgAAAAAAAS4AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAQAgAAAAAAIAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAB4AAAAAAAAtAAAAAAACKwAAAAACARgAAAAAAAAtAAAAAAACgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAA== version: 7 -3,-4: ind: -3,-4 - tiles: gQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAQctAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAtAAAAAAAAJQAAAAACAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAALgAAAAAAAS0AAAAAAAMuAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAlAAAAAAEAJQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAEAJQAAAAAAABgAAAAAAAAuAAAAAAADgQAAAAAAABgAAAAAAAAYAAAAAAAALgAAAAAAAi0AAAAAAAMtAAAAAAADIAAAAAADAIEAAAAAAAAgAAAAAAMAIAAAAAACAIEAAAAAAACBAAAAAAAAJQAAAAABABgAAAAAAAAYAAAAAAAALQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAAAgAAAAAAMAIAAAAAABACAAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAgCBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAIAAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAACACAAAAAAAQAgAAAAAAIAgQAAAAAAAIEAAAAAAAAlAAAAAAMAGAAAAAAAABgAAAAAAAAtAAAAAAADgQAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAACACAAAAAAAQAgAAAAAAMAIAAAAAADAIEAAAAAAAAgAAAAAAEAIAAAAAABAIEAAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAQAYAAAAAAAALQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAACAC0AAAAAAAMtAAAAAAAALQAAAAAAAC0AAAAAAAMuAAAAAAADLgAAAAAAAi0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAC0AAAAAAAAuAAAAAAADLQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAxgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALQAAAAAAAy0AAAAAAAOBAAAAAAAALQAAAAAAAC0AAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMYAAAAAAAALQAAAAAAAy0AAAAAAAMuAAAAAAADLQAAAAAAAC0AAAAAAAAlAAAAAAIAJQAAAAABAA== + tiles: gQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAwctAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAtAAAAAAAAJQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAALgAAAAAAAS0AAAAAAAMuAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAADgQAAAAAAABgAAAAAAAAYAAAAAAAALgAAAAAAAi0AAAAAAAMtAAAAAAADIAAAAAADAIEAAAAAAAAgAAAAAAMAIAAAAAADAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAwCBAAAAAAAAIAAAAAAAACAAAAAAAQCBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAIAAAAAADACAAAAAAAgAgAAAAAAEAIAAAAAAAACAAAAAAAgAgAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAtAAAAAAADgQAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAACACAAAAAAAwAgAAAAAAEAIAAAAAAAAIEAAAAAAAAgAAAAAAIAIAAAAAABAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAC0AAAAAAAMtAAAAAAAALQAAAAAAAC0AAAAAAAMuAAAAAAADLgAAAAAAAi0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAC0AAAAAAAAuAAAAAAADLQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAxgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAB4AAAAAAAAeAAAAAAAALQAAAAAAAy0AAAAAAAOBAAAAAAAALQAAAAAAAC0AAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMYAAAAAAAALQAAAAAAAy0AAAAAAAMuAAAAAAADLQAAAAAAAC0AAAAAAAAeAAAAAAAAgQAAAAAAAA== version: 7 -3,-3: ind: -3,-3 - tiles: LQAAAAAAAC4AAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAACBAAAAAAAAJAAAAAABACQAAAAAAgAkAAAAAAMAIAAAAAADAIEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAIEAAAAAAAAkAAAAAAMAJAAAAAACACQAAAAAAAAgAAAAAAEAgQAAAAAAAC0AAAAAAAAuAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAA4EAAAAAAAAtAAAAAAAALQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAxgAAAAAAAAtAAAAAAADLQAAAAAAAy4AAAAAAAAtAAAAAAAALQAAAAAAACUAAAAAAQAlAAAAAAEALQAAAAAAAy0AAAAAAAAtAAAAAAAALgAAAAAAAC0AAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAAMtAAAAAAAALQAAAAAAAC0AAAAAAAMuAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAAIEAAAAAAAAtAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACQAAAAAAgAkAAAAAAIAKQAAAAABACkAAAAAAgAkAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAEALQAAAAAAA4EAAAAAAAAkAAAAAAMAJAAAAAADAIEAAAAAAACBAAAAAAAAJAAAAAADACQAAAAAAwAkAAAAAAAAJAAAAAABAIEAAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAwAlAAAAAAEAGAAAAAAAAC4AAAAAAAKBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAgAlAAAAAAMAGAAAAAAAABgAAAAAAAAtAAAAAAAAIAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAADACUAAAAAAgAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAIAJQAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAMAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAEAgQAAAAAAAA== + tiles: LQAAAAAAAC4AAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAIEAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAC0AAAAAAAAuAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAA4EAAAAAAAAtAAAAAAAALQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAxgAAAAAAAAtAAAAAAADLQAAAAAAAy4AAAAAAAAtAAAAAAAALQAAAAAAAB4AAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAAtAAAAAAAALgAAAAAAAC0AAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAeAAAAAAAAHgAAAAAAAC0AAAAAAAMtAAAAAAAALQAAAAAAAC0AAAAAAAMuAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAAIEAAAAAAAAtAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACQAAAAAAwAkAAAAAAEAKQAAAAACACkAAAAAAwAkAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAALQAAAAAAA4EAAAAAAAAkAAAAAAMAJAAAAAAAAIEAAAAAAACBAAAAAAAAJAAAAAACACQAAAAAAwAkAAAAAAAAJAAAAAADAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAKBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAtAAAAAAAAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAA== version: 7 -3,-2: ind: -3,-2 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAACgAAAAAAAIEAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAKAAAAAAAAgQAAAAAAAAoAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAAALgAAAAAAAS0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAItAAAAAAADgQAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAEtAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFgAAAAACABYAAAAAAwCBAAAAAAAALgAAAAAAAi0AAAAAAAMuAAAAAAADgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAACgAAAAAAAIEAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAAAKAAAAAAAAgQAAAAAAAAoAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAAA4EAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIALgAAAAAAAS0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAItAAAAAAADgQAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAEtAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFgAAAAABABYAAAAAAwCBAAAAAAAALgAAAAAAAi0AAAAAAAMuAAAAAAADgQAAAAAAAA== version: 7 -3,-1: ind: -3,-1 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABYAAAAAAQAWAAAAAAAAFgAAAAADABYAAAAAAQCBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLgAAAAAAAoEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAWAAAAAAAAFgAAAAABABYAAAAAAQAWAAAAAAIAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAgAAAAAAMALQAAAAAAAC0AAAAAAAAvAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFgAAAAADAIEAAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMuAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAC4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC8AAAAAAAAtAAAAAAAAJQAAAAAAACsAAAAAAgArAAAAAAAAKwAAAAADACsAAAAAAQArAAAAAAIAKwAAAAAAACsAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIAgQAAAAAAACAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABAIEAAAAAAAAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAACAAAAAAAgCBAAAAAAAAIAAAAAADAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABYAAAAAAwAWAAAAAAEAFgAAAAABABYAAAAAAwCBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLgAAAAAAAoEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAWAAAAAAIAFgAAAAACABYAAAAAAQAWAAAAAAIAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAgAAAAAAAALQAAAAAAAC0AAAAAAAAvAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFgAAAAAAAIEAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMuAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC8AAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -4,-1: ind: -4,-1 @@ -196,7 +197,7 @@ entities: version: 7 -4,-2: ind: -4,-2 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAsAAAAAAACBAAAAAAAACQAAAAAAAAkAAAAAAAArAAAAAAIAKwAAAAADACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAALAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAAKwAAAAADACsAAAAAAQAgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAACwAAAAAAAIEAAAAAAAAJAAAAAAAACQAAAAAAACsAAAAAAQArAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAADMAAAAAAAAzAAAAAAwAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAMwAAAAAJAIEAAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAsAAAAAAACBAAAAAAAACQAAAAAAAAkAAAAAAAArAAAAAAIAKwAAAAABACAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAALAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAAKwAAAAADACsAAAAAAQAgAAAAAAMAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAACwAAAAAAAIEAAAAAAAAJAAAAAAAACQAAAAAAACsAAAAAAgArAAAAAAIAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAADMAAAAADAAzAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAMwAAAAAHAIEAAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 -5,-2: ind: -5,-2 @@ -204,7 +205,7 @@ entities: version: 7 -4,-4: ind: -4,-4 - tiles: DAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAALAAAAAAAAgQAAAAAAAA0AAAAAAAANAAAAAAAAKwAAAAADACsAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAQCBAAAAAAAAgQAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACwAAAAAAAIEAAAAAAAANAAAAAAAADQAAAAAAACsAAAAAAAArAAAAAAEAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAsAAAAAAACBAAAAAAAADQAAAAAAAA0AAAAAAAArAAAAAAIAKwAAAAACAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAxcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAAuAAAAAAABFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAAuAAAAAAABLQAAAAAAAxcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAtAAAAAAADLgAAAAAAAy4AAAAAAAIuAAAAAAAALgAAAAAAAi0AAAAAAAMXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAALgAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAy4AAAAAAAAuAAAAAAACFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALgAAAAAAAYEAAAAAAACBAAAAAAAALgAAAAAAAQ== + tiles: DAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAALAAAAAAAAgQAAAAAAAA0AAAAAAAANAAAAAAAAKwAAAAABACsAAAAAAQCBAAAAAAAAgQAAAAAAACAAAAAAAQCBAAAAAAAAgQAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACwAAAAAAAIEAAAAAAAANAAAAAAAADQAAAAAAACsAAAAAAAArAAAAAAEAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAsAAAAAAACBAAAAAAAADQAAAAAAAA0AAAAAAAArAAAAAAMAKwAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAxcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAAuAAAAAAABFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAAuAAAAAAABLQAAAAAAAxcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAtAAAAAAADLgAAAAAAAy4AAAAAAAIuAAAAAAAALgAAAAAAAi0AAAAAAAMXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAALgAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAy4AAAAAAAAuAAAAAAACFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALgAAAAAAAYEAAAAAAACBAAAAAAAALgAAAAAAAQ== version: 7 -4,-3: ind: -4,-3 @@ -212,7 +213,7 @@ entities: version: 7 -3,-5: ind: -3,-5 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLgAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMuAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALwAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAALQAAAAAAAy0AAAAAAAAuAAAAAAABLgAAAAAAAw8AAAAAAQAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAAAJQAAAAAAAC0AAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAACsAAAAAAQctAAAAAAAAgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLgAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMuAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALwAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAALQAAAAAAAy0AAAAAAAAuAAAAAAABLgAAAAAAAw8AAAAAAwAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAAAJQAAAAABAC0AAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAACsAAAAAAQctAAAAAAAAgQAAAAAAAA== version: 7 -4,-5: ind: -4,-5 @@ -232,11 +233,11 @@ entities: version: 7 -2,-5: ind: -2,-5 - tiles: gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAIAawAAAAAAAGsAAAAAAwBrAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAACQAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAAAAGAAAAAAAwCBAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAAAgQAAAAAAAAkAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAgBgAAAAAAEAYAAAAAABAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAgQAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAADAIEAAAAAAAAJAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAIAYAAAAAAAAIEAAAAAAABgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAAAAGAAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAEAYAAAAAADAGAAAAAAAwCBAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQCBAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAACAGAAAAAAAgBgAAAAAAMAYAAAAAACAGAAAAAAAgBgAAAAAAIAgQAAAAAAAGAAAAAAAABgAAAAAAEAYAAAAAABAGAAAAAAAABgAAAAAAMAgQAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAADAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAEAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAIAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAADAGAAAAAAAgBgAAAAAAAAYAAAAAADAA== + tiles: gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAIAawAAAAAAAGsAAAAAAABrAAAAAAMAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAACQAAAAAAAGAAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAACBAAAAAAAAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgCBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAIAgQAAAAAAAAkAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAAAAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAABAIEAAAAAAAAJAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAIAYAAAAAAAAIEAAAAAAABgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAABAGAAAAAAAQCBAAAAAAAAYAAAAAABAGAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAQCBAAAAAAAAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQCBAAAAAAAAYAAAAAACAGAAAAAAAQBgAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAQBgAAAAAAIAgQAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAACAGAAAAAAAQBgAAAAAAMAgQAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAABAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAACAGAAAAAAAwCBAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAEAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAgBgAAAAAAAAYAAAAAACAA== version: 7 -1,-5: ind: -1,-5 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC0AAAAAAAAgAAAAAAAALQAAAAAAAC8AAAAAAACBAAAAAAAALwAAAAAAAC0AAAAAAAAgAAAAAAEALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAvAAAAAAAAgQAAAAAAAC8AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAALgAAAAAAAC0AAAAAAAAuAAAAAAAALwAAAAAAAIEAAAAAAAAvAAAAAAAALgAAAAAAAC0AAAAAAAAuAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAABsAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAbAAAAAAAAGwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABsAAAAAAACBAAAAAAAAGwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAGwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAi0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAABsAAAAAAACBAAAAAAAAIAAAAAACACAAAAAAAQAgAAAAAAAAgQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAAAJAAAAAAAACQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAAAgAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAACBAAAAAAAAIAAAAAACACAAAAAAAgAgAAAAAAMAIAAAAAABACAAAAAAAAAgAAAAAAIAIAAAAAABACAAAAAAAQAgAAAAAAMAIAAAAAADAIEAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAbAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAAAACAAAAAAAwAgAAAAAAEAIAAAAAABACAAAAAAAQCBAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAGwAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAABACAAAAAAAwAgAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAEAIAAAAAABACAAAAAAAgAgAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAEAIAAAAAABACAAAAAAAwAgAAAAAAIAIAAAAAACACAAAAAAAgAgAAAAAAIAIAAAAAABAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC0AAAAAAAAgAAAAAAAALQAAAAAAAC8AAAAAAACBAAAAAAAALwAAAAAAAC0AAAAAAAAgAAAAAAEALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAvAAAAAAAAgQAAAAAAAC8AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAALgAAAAAAAC0AAAAAAAAuAAAAAAAALwAAAAAAAIEAAAAAAAAvAAAAAAAALgAAAAAAAC0AAAAAAAAuAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAABsAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAbAAAAAAAAGwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAABsAAAAAAACBAAAAAAAAGwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAGwAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAi0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAABsAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAEAgQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAAAJAAAAAAAACQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAAAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwAgAAAAAAIAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAgAgAAAAAAMAIAAAAAAAACAAAAAAAwAgAAAAAAEAIAAAAAACACAAAAAAAQAgAAAAAAEAIAAAAAACAIEAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAbAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAABACAAAAAAAQAgAAAAAAMAIAAAAAACACAAAAAAAQAgAAAAAAAAIAAAAAAAACAAAAAAAwCBAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAGwAAAAAAAIEAAAAAAAAgAAAAAAIAIAAAAAAAACAAAAAAAAAgAAAAAAIAIAAAAAACACAAAAAAAQAgAAAAAAAAIAAAAAAAACAAAAAAAQAgAAAAAAMAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAMAIAAAAAACACAAAAAAAQAgAAAAAAEAIAAAAAABACAAAAAAAQAgAAAAAAIAIAAAAAAAAA== version: 7 -1,-6: ind: -1,-6 @@ -244,31 +245,31 @@ entities: version: 7 0,-6: ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAgBgAAAAAAMAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAgBgAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAMAYAAAAAABAGAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAABAGAAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAgBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAwBgAAAAAAIAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAABAAAAAAAQAQAAAAAAAAEAAAAAADAIEAAAAAAAAXAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAAAQAAAAAAIAEAAAAAAAABAAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAEAAAAAACABAAAAAAAwAQAAAAAAAAgQAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAgQAAAAAAABAAAAAAAgAQAAAAAAEAEAAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAEAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAQAAAAAAMAEAAAAAADABAAAAAAAgCBAAAAAAAAFwAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAgAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAADAGAAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAgBgAAAAAAIAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAACAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAARAAAAAAAAIEAAAAAAABEAAAAAAAAgQAAAAAAAEQAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAEQAAAAAAACBAAAAAAAARAAAAAAAAIEAAAAAAABEAAAAAAAAgQAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAACAGAAAAAAAQBgAAAAAAMAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAEAYAAAAAACAGAAAAAAAwBgAAAAAAMAYAAAAAADAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAADAGAAAAAAAABgAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAMAYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAABAAAAAAAgAQAAAAAAIAEAAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAQCBAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAEAAAAAADABAAAAAAAQAQAAAAAAMAgQAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAgQAAAAAAABAAAAAAAgAQAAAAAAEAEAAAAAABAIEAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAQAAAAAAEAEAAAAAAAABAAAAAAAQCBAAAAAAAAFwAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAABAGAAAAAAAgBgAAAAAAAAYAAAAAADAGAAAAAAAwBgAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAQBgAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAACAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAARAAAAAAAAIEAAAAAAABEAAAAAAAAgQAAAAAAAEQAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAEQAAAAAAACBAAAAAAAARAAAAAAAAIEAAAAAAABEAAAAAAAAgQAAAAAAAA== version: 7 0,-7: ind: 0,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAACAGAAAAAAAQBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAQBgAAAAAAIAYAAAAAACAGAAAAAAAgBgAAAAAAEAYAAAAAACAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAABAGAAAAAAAgBgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAABAGAAAAAAAQBgAAAAAAEAYAAAAAACAGAAAAAAAgBgAAAAAAEAYAAAAAACAA== version: 7 1,-6: ind: 1,-6 - tiles: YAAAAAADAGAAAAAAAwBgAAAAAAMAYAAAAAADAGAAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAAAaAAAAAAEAYAAAAAACAGAAAAAAAQBgAAAAAAIAYAAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAACAIEAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAwBgAAAAAAMAYAAAAAACAGAAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAgBgAAAAAAIAYAAAAAAAAGAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAABABoAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAgBgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAEAgQAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAEAYAAAAAABAIEAAAAAAABgAAAAAAEAYAAAAAAAAGsAAAAAAgBgAAAAAAIAYAAAAAACAGsAAAAAAgBgAAAAAAEAYAAAAAACAGAAAAAAAABrAAAAAAAAYAAAAAABAGsAAAAAAwBgAAAAAAEAYAAAAAAAAGAAAAAAAwCBAAAAAAAAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAIAYAAAAAADAGAAAAAAAQBgAAAAAAEAYAAAAAAAAGAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAABgAAAAAAMAYAAAAAABAIEAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAgBgAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAIAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAgBgAAAAAAMAYAAAAAADAGAAAAAAAABgAAAAAAMAYAAAAAABAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAMAYAAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: YAAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAQAaAAAAAAAAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAADAGAAAAAAAABgAAAAAAAAYAAAAAABAIEAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAIAYAAAAAADAGAAAAAAAgBgAAAAAAAAYAAAAAACAGAAAAAAAQBgAAAAAAAAYAAAAAAAAGAAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAEAYAAAAAACAGAAAAAAAABgAAAAAAIAYAAAAAACABoAAAAAAwBgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAQBgAAAAAAIAgQAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAEAYAAAAAACAGAAAAAAAQBgAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAEAYAAAAAACAIEAAAAAAABgAAAAAAIAYAAAAAABAGsAAAAAAwBgAAAAAAMAYAAAAAADAGsAAAAAAQBgAAAAAAEAYAAAAAAAAGAAAAAAAwBrAAAAAAMAYAAAAAAAAGsAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAwCBAAAAAAAAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAADAGAAAAAAAwBgAAAAAAAAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAIAYAAAAAABAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAABAIEAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAABgAAAAAAEAYAAAAAABAGAAAAAAAwBgAAAAAAMAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABgAAAAAAIAYAAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAEAYAAAAAADAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 1,-7: ind: 1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAADAIEAAAAAAABgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAgCBAAAAAAAAYAAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAACAGAAAAAAAQCBAAAAAAAAYAAAAAADAIEAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAACBAAAAAAAAGgAAAAAAAGAAAAAAAABgAAAAAAEAgQAAAAAAAGAAAAAAAQCBAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAIAgQAAAAAAAGAAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAQBgAAAAAAIAgQAAAAAAABoAAAAAAwBgAAAAAAIAYAAAAAABAGAAAAAAAQBgAAAAAAIAYAAAAAAAAGAAAAAAAgAaAAAAAAIAYAAAAAADAGAAAAAAAgBgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAAAAIEAAAAAAAAaAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAAAYAAAAAABAGAAAAAAAgCBAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAwBgAAAAAAAAYAAAAAACABoAAAAAAQBgAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAEAYAAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAABAGAAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAgBgAAAAAAMAYAAAAAADAGAAAAAAAQBgAAAAAAMAYAAAAAABAGAAAAAAAQBgAAAAAAEAYAAAAAABAGAAAAAAAgBgAAAAAAEAYAAAAAACAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAIAgQAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAADAIEAAAAAAABgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAwCBAAAAAAAAYAAAAAADAIEAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAwCBAAAAAAAAYAAAAAABAIEAAAAAAABgAAAAAAAAYAAAAAACAGAAAAAAAgCBAAAAAAAAGgAAAAADAGAAAAAAAABgAAAAAAIAgQAAAAAAAGAAAAAAAgCBAAAAAAAAYAAAAAADAGAAAAAAAwBgAAAAAAEAgQAAAAAAAGAAAAAAAwCBAAAAAAAAYAAAAAACAGAAAAAAAABgAAAAAAMAgQAAAAAAABoAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAgBgAAAAAAEAYAAAAAABAGAAAAAAAwAaAAAAAAMAYAAAAAACAGAAAAAAAABgAAAAAAAAYAAAAAACAGAAAAAAAQBgAAAAAAAAYAAAAAACAIEAAAAAAAAaAAAAAAAAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAABAGAAAAAAAgBgAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAMAYAAAAAABAGAAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAwCBAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAEAYAAAAAADAGAAAAAAAABgAAAAAAMAYAAAAAACABoAAAAAAwBgAAAAAAAAYAAAAAACAGAAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAABgAAAAAAIAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAMAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAABAA== version: 7 1,-5: ind: 1,-5 - tiles: LQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACsAAAAAAgArAAAAAAEAKwAAAAABACsAAAAAAQArAAAAAAMAKwAAAAAAACsAAAAAAgArAAAAAAIAJQAAAAADAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAysAAAAAAActAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAoEAAAAAAAAPAAAAAAMADwAAAAACAA8AAAAAAgCBAAAAAAAALgAAAAAAAy0AAAAAAAArAAAAAAEHLQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAADwAAAAADAA8AAAAAAAAPAAAAAAIAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAADwAAAAAAAA8AAAAAAgAPAAAAAAAADwAAAAABAA8AAAAAAQCBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAA8AAAAAAwAPAAAAAAMADwAAAAAAAA8AAAAAAgAPAAAAAAIAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAgAAAAAAMAIAAAAAACAIEAAAAAAAAPAAAAAAMADwAAAAACAA8AAAAAAgAPAAAAAAIADwAAAAABAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAADwAAAAADAA8AAAAAAgAPAAAAAAAADwAAAAABAA8AAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAAAIAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA8AAAAAAQAPAAAAAAEADwAAAAADAA8AAAAAAwAkAAAAAAMAgQAAAAAAAC0AAAAAAAArAAAAAAEHLQAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAACACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAAAgAAAAAAMAIAAAAAABACAAAAAAAwAgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAACACAAAAAAAAAgAAAAAAIALQAAAAAAACsAAAAAAActAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJAAAAAABACAAAAAAAQAgAAAAAAEAJQAAAAADACAAAAAAAwAgAAAAAAEAgQAAAAAAAC0AAAAAAAArAAAAAAIHLgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAACAAAAAAAwAgAAAAAAMAIAAAAAADACUAAAAAAwAgAAAAAAMAIAAAAAADAIEAAAAAAAAtAAAAAAAAKwAAAAADBy4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAAAgAAAAAAIAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACQAAAAAAgCBAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAIEAAAAAAAAgAAAAAAIAIAAAAAACAIEAAAAAAAAKAAAAAAAAgQAAAAAAAA== + tiles: LQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACsAAAAAAQArAAAAAAEAKwAAAAACACsAAAAAAAArAAAAAAEAKwAAAAABACsAAAAAAwArAAAAAAAAJQAAAAABAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAysAAAAAAQctAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAoEAAAAAAAAPAAAAAAEADwAAAAAAAA8AAAAAAACBAAAAAAAALgAAAAAAAy0AAAAAAAArAAAAAAIHLQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAADwAAAAACAA8AAAAAAgAPAAAAAAMAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAADwAAAAADAA8AAAAAAgAPAAAAAAMADwAAAAADAA8AAAAAAQCBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAA8AAAAAAgAPAAAAAAIADwAAAAABAA8AAAAAAQAPAAAAAAIAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAgAAAAAAEAIAAAAAAAAIEAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAIADwAAAAADAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAADwAAAAADAA8AAAAAAwAPAAAAAAMADwAAAAAAAA8AAAAAAgCBAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAA8AAAAAAQAPAAAAAAMADwAAAAADAA8AAAAAAAAkAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAACAAAAAAAwAgAAAAAAIAIAAAAAAAACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAAAgAAAAAAIAIAAAAAACACAAAAAAAAAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAALQAAAAAAACsAAAAAAwctAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAADACAAAAAAAAAeAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAMHLgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAACAAAAAAAAAgAAAAAAIAIAAAAAADACAAAAAAAgAgAAAAAAMAHgAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAEHLQAAAAAAAIEAAAAAAAAgAAAAAAAAIAAAAAAAAIEAAAAAAAAKAAAAAAAAgQAAAAAAAA== version: 7 2,-6: ind: 2,-6 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAA== version: 7 2,-5: ind: 2,-5 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAQCBAAAAAAAACgAAAAAAAAoAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAACBAAAAAAAACgAAAAAAAAoAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 2,-7: ind: 2,-7 @@ -276,11 +277,11 @@ entities: version: 7 3,-5: ind: 3,-5 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 4,-5: ind: 4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAHgAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAB4AAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAHgAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAB4AAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 3,-6: ind: 3,-6 @@ -288,7 +289,7 @@ entities: version: 7 4,-4: ind: 4,-4 - tiles: gQAAAAAAAIEAAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAACgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAQBgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAgBgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAC8AAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAMARAAAAAAAAEQAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAAAAGAAAAAAAAAaAAAAAAIAGgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAACABAAAAAAAQAQAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAABgAAAAAAIAgQAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAAAACAAAAAAAgAQAAAAAAAAEAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAACgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAIAYAAAAAABAGAAAAAAAgBgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAC8AAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAgBgAAAAAAAARAAAAAAAAEQAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAgAaAAAAAAEAGgAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABABAAAAAAAwAQAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAABgAAAAAAMAgQAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAABACAAAAAAAAAQAAAAAAIAEAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 5,-4: ind: 5,-4 @@ -300,39 +301,39 @@ entities: version: 7 3,-4: ind: 3,-4 - tiles: CgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAgAlAAAAAAEAJQAAAAACACUAAAAAAQAlAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAEAJQAAAAABACUAAAAAAwAlAAAAAAAAJQAAAAADACUAAAAAAQAlAAAAAAEAJQAAAAACAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAABACUAAAAAAQAlAAAAAAIAJQAAAAACACUAAAAAAAAlAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAIAJQAAAAADACUAAAAAAgAlAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAC0AAAAAAAOBAAAAAAAAJQAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAFAAAAAAAwBEAAAAAAAARAAAAAAAAEQAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABQAAAAAAEAUAAAAAADAFAAAAAAAgBQAAAAAAIAUAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAUAAAAAAAAFAAAAAAAQBQAAAAAAMAUAAAAAABAFAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAFAAAAAAAwBQAAAAAAAAUAAAAAADAFAAAAAAAABQAAAAAAAAgQAAAAAAAA== + tiles: CgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAACBAAAAAAAAGAAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAACACUAAAAAAwAlAAAAAAIAJQAAAAABACUAAAAAAgAlAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAAAJQAAAAABACUAAAAAAAAlAAAAAAEAJQAAAAAAACUAAAAAAgAlAAAAAAIAJQAAAAADAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAADACUAAAAAAAAlAAAAAAEAJQAAAAACACUAAAAAAwAlAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAMAJQAAAAADACUAAAAAAgAlAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAC0AAAAAAAOBAAAAAAAAJQAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAFAAAAAAAgBEAAAAAAAARAAAAAAAAEQAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABQAAAAAAIAUAAAAAADAFAAAAAAAwBQAAAAAAMAUAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAUAAAAAACAFAAAAAAAQBQAAAAAAEAUAAAAAACAFAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAFAAAAAAAQBQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAMAgQAAAAAAAA== version: 7 4,-3: ind: 4,-3 - tiles: YAAAAAAAAGAAAAAAAwBgAAAAAAEAIAAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAACACAAAAAAAQAgAAAAAAEAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAABAGAAAAAAAwBgAAAAAAMAYAAAAAADAIEAAAAAAAAgAAAAAAEAIAAAAAADACAAAAAAAQAgAAAAAAEAIAAAAAADACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAQBgAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACYAAAAAAwAmAAAAAAIAYAAAAAABAGAAAAAAAQBgAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAEAIAAAAAADAGAAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAQBgAAAAAAEAgQAAAAAAAIEAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAIAgQAAAAAAAGAAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAgBgAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAADAGAAAAAAAABgAAAAAAIAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAMAYAAAAAABAGAAAAAAAwBgAAAAAAEAYAAAAAADAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAwBgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAACAIEAAAAAAACBAAAAAAAAIAAAAAAAAEQAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAgCBAAAAAAAAIAAAAAAAACAAAAAAAwBEAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAAARAAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAACACAAAAAAAQAgAAAAAAEAIAAAAAACACAAAAAAAgCBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAwCBAAAAAAAAIAAAAAACACAAAAAAAwAgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: YAAAAAADAGAAAAAAAQBgAAAAAAIAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAABACAAAAAAAgAgAAAAAAAAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIAIAAAAAABAGAAAAAAAQBgAAAAAAAAYAAAAAADAIEAAAAAAAAgAAAAAAIAIAAAAAACACAAAAAAAwAgAAAAAAAAIAAAAAABACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAQBgAAAAAAMAYAAAAAACAGAAAAAAAwBgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACYAAAAAAgAmAAAAAAIAYAAAAAABAGAAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAMAYAAAAAACAGAAAAAAAABgAAAAAAEAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAACAGAAAAAAAwBgAAAAAAIAYAAAAAABAGAAAAAAAQBgAAAAAAMAgQAAAAAAAIEAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAIAgQAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAADAGAAAAAAAwBgAAAAAAEAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAACAGAAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAwBgAAAAAAIAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAMAYAAAAAADAGAAAAAAAgBgAAAAAAMAYAAAAAABAGAAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAMAgQAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAAAAGAAAAAAAgBgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAEAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAADAIEAAAAAAACBAAAAAAAAIAAAAAADAEQAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAgCBAAAAAAAAIAAAAAABACAAAAAAAQBEAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAEAIAAAAAAAACAAAAAAAgAgAAAAAAEARAAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAABACAAAAAAAAAgAAAAAAAAIAAAAAABACAAAAAAAwCBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAgCBAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 5,-3: ind: 5,-3 - tiles: IAAAAAADACAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAABAAAAAAAABgAAAAAAAAmAAAAAAEAJgAAAAAAACYAAAAAAwAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAEAAAAAAAAgQAAAAAAAAQAAAAAAABHAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAAAIAAAAAABACAAAAAAAwAgAAAAAAEAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAEAAAAAAAAGAAAAAAAACAAAAAAAQAgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAA== + tiles: IAAAAAACACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAACABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAABAAAAAAAABgAAAAAAAAmAAAAAAIAJgAAAAADACYAAAAAAwAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAEAAAAAAAAgQAAAAAAAAQAAAAAAABHAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAEAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAEAAAAAAAAGAAAAAAAACAAAAAAAgAgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAA== version: 7 3,-3: ind: 3,-3 - tiles: gQAAAAAAAIEAAAAAAAAtAAAAAAAAIAAAAAACAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAFAAAAAAAgBQAAAAAAMAUAAAAAADAFAAAAAAAABQAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAuAAAAAAABLgAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAUAAAAAACAFAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAIAAAAAAAAC4AAAAAAAEtAAAAAAABLQAAAAAAAYEAAAAAAACBAAAAAAAAUAAAAAABAFAAAAAAAgBQAAAAAAMAUAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAAALgAAAAAAAS4AAAAAAAMgAAAAAAAAIAAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAQAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAAAtAAAAAAAAIAAAAAACACAAAAAAAwAgAAAAAAAAIAAAAAAAACAAAAAAAgAgAAAAAAEAIAAAAAACACAAAAAAAgAgAAAAAAMAIAAAAAADAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAADACAAAAAAAgAgAAAAAAAAIAAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAADACAAAAAAAABgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAACACAAAAAAAQAgAAAAAAAAIAAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAABACAAAAAAAQAgAAAAAAEAgQAAAAAAAIEAAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAADAIEAAAAAAABgAAAAAAMAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEARAAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAgCBAAAAAAAAYAAAAAADAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAgCBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAMAgQAAAAAAAGAAAAAAAgBgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAMAgQAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAADAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAIAYAAAAAADAIEAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAABAGAAAAAAAQBgAAAAAAEAYAAAAAACAGAAAAAAAABgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQCBAAAAAAAAgQAAAAAAAGAAAAAAAQCBAAAAAAAAYAAAAAADAGAAAAAAAgCBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAAAAIEAAAAAAACBAAAAAAAAFgAAAAACABYAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAABgAAAAAAEAYAAAAAACAGAAAAAAAQBgAAAAAAMAYAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAAAAGAAAAAAAgCBAAAAAAAAgQAAAAAAABYAAAAAAwAWAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAABAGAAAAAAAABgAAAAAAIAgQAAAAAAAIEAAAAAAAAWAAAAAAAAFgAAAAACABYAAAAAAQBgAAAAAAEAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAQBgAAAAAAMAYAAAAAADAA== + tiles: gQAAAAAAAIEAAAAAAAAtAAAAAAAAIAAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAFAAAAAAAQBQAAAAAAIAUAAAAAAAAFAAAAAAAABQAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAuAAAAAAABLgAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAUAAAAAAAAFAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAIAAAAAABAC4AAAAAAAEtAAAAAAABLQAAAAAAAYEAAAAAAACBAAAAAAAAUAAAAAAAAFAAAAAAAwBQAAAAAAIAUAAAAAACAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAAAuAAAAAAAALgAAAAAAAS4AAAAAAAMgAAAAAAMAIAAAAAAAACAAAAAAAQAgAAAAAAAAIAAAAAADAFAAAAAAAABQAAAAAAMAUAAAAAACAFAAAAAAAAAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAgAtAAAAAAAAIAAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAADAGAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwAgAAAAAAIAIAAAAAACACAAAAAAAQAgAAAAAAAAIAAAAAABACAAAAAAAQAgAAAAAAAAIAAAAAADACAAAAAAAABgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAACACAAAAAAAgAgAAAAAAIAIAAAAAABACAAAAAAAgAgAAAAAAAAIAAAAAAAACAAAAAAAwAgAAAAAAEAgQAAAAAAAIEAAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAEAYAAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMARAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAABAGAAAAAAAQCBAAAAAAAAYAAAAAACAGAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAMAgQAAAAAAAGAAAAAAAQBgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAEAgQAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAADAGAAAAAAAwBgAAAAAAIAYAAAAAABAIEAAAAAAABgAAAAAAIAYAAAAAADAIEAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAwAgAAAAAAIAIAAAAAABAIEAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAgBgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAEAYAAAAAABAGAAAAAAAgBgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAwCBAAAAAAAAgQAAAAAAAGAAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAAAAIEAAAAAAACBAAAAAAAAFgAAAAADABYAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAwBgAAAAAAMAYAAAAAAAAGAAAAAAAABgAAAAAAMAYAAAAAABAGAAAAAAAQBgAAAAAAIAYAAAAAACAGAAAAAAAgCBAAAAAAAAgQAAAAAAABYAAAAAAQAWAAAAAAMAYAAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAgBgAAAAAAEAYAAAAAACAGAAAAAAAgBgAAAAAAEAYAAAAAAAAGAAAAAAAgBgAAAAAAIAgQAAAAAAAIEAAAAAAAAWAAAAAAIAFgAAAAAAABYAAAAAAABgAAAAAAMAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAABAGAAAAAAAQBgAAAAAAEAYAAAAAABAGAAAAAAAQBgAAAAAAEAYAAAAAADAA== version: 7 4,-2: ind: 4,-2 - tiles: YAAAAAAAAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQCBAAAAAAAAgQAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAACAGAAAAAAAgBgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAEAYAAAAAADAGAAAAAAAQBgAAAAAAIAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAEAEgAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAARwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAS8AAAAAAAAtAAAAAAABLQAAAAAAAS0AAAAAAAEuAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAEvAAAAAAAALQAAAAAAAS0AAAAAAAEuAAAAAAADLgAAAAAAAS4AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAABLwAAAAAAAC0AAAAAAAGBAAAAAAAALgAAAAAAAS0AAAAAAAEtAAAAAAAALwAAAAAAACAAAAAAAwAgAAAAAAEAIAAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAMAgQAAAAAAAEcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS4AAAAAAAOBAAAAAAAAIAAAAAACACAAAAAAAAAgAAAAAAIAIAAAAAADACAAAAAAAwAgAAAAAAIAIAAAAAACAIEAAAAAAAAlAAAAAAAAJQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAMtAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAMAIAAAAAACACAAAAAAAQCBAAAAAAAAJQAAAAABACUAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAABLgAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAAAACAAAAAAAAAgAAAAAAIAIAAAAAABACAAAAAAAQAgAAAAAAIAgQAAAAAAACUAAAAAAwAlAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAOBAAAAAAAAIAAAAAACACAAAAAAAAAgAAAAAAEAIAAAAAABACAAAAAAAgAgAAAAAAIAIAAAAAADACUAAAAAAQAlAAAAAAEAJQAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAIAJQAAAAADACUAAAAAAgCBAAAAAAAAIQAAAAAAACEAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAA== + tiles: YAAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgCBAAAAAAAAgQAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAACAB4AAAAAAAAgAAAAAAMAIAAAAAABACAAAAAAAQAgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAYAAAAAACAGAAAAAAAwAeAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAIAIAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAIAHgAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAARwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAS8AAAAAAAAtAAAAAAABLQAAAAAAAS0AAAAAAAEuAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAEvAAAAAAAALQAAAAAAAS0AAAAAAAEuAAAAAAADLgAAAAAAAS4AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAABLwAAAAAAAC0AAAAAAAGBAAAAAAAALgAAAAAAAS0AAAAAAAEtAAAAAAAALwAAAAAAACAAAAAAAgAgAAAAAAEAIAAAAAABACAAAAAAAAAgAAAAAAMAIAAAAAABACAAAAAAAQAgAAAAAAMAgQAAAAAAACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS4AAAAAAAOBAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAABACAAAAAAAQAgAAAAAAIAIAAAAAAAAIEAAAAAAAAgAAAAAAEAIAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAMtAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAABACAAAAAAAgAgAAAAAAMAIAAAAAADACAAAAAAAACBAAAAAAAAIAAAAAACACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAABLgAAAAAAAIEAAAAAAAAgAAAAAAEAIAAAAAACACAAAAAAAwAgAAAAAAMAIAAAAAABACAAAAAAAAAgAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAOBAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAMAIAAAAAACACAAAAAAAgAgAAAAAAMAIAAAAAACACAAAAAAAQAgAAAAAAMAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAABACAAAAAAAgCBAAAAAAAAIQAAAAACACEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAA== version: 7 3,-2: ind: 3,-2 - tiles: gQAAAAAAAIEAAAAAAAAWAAAAAAIAFgAAAAADABYAAAAAAABgAAAAAAIAgQAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAACAGAAAAAAAwBgAAAAAAMAYAAAAAABAGAAAAAAAgBgAAAAAAEAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAIEAAAAAAABgAAAAAAMAYAAAAAABAIEAAAAAAABgAAAAAAAAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAQCBAAAAAAAAYAAAAAACAGAAAAAAAABgAAAAAAIAYAAAAAADAGAAAAAAAgBgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAABAIEAAAAAAABgAAAAAAEAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAwBgAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAEAYAAAAAACAGAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQCBAAAAAAAAYAAAAAABAGAAAAAAAABgAAAAAAMAgQAAAAAAAIEAAAAAAABHAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAiAAAAAAAgAgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAABLwAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAADLgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAABLQAAAAAAAS8AAAAAAAAuAAAAAAABLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAS0AAAAAAAEvAAAAAAAAIAAAAAADACAAAAAAAAAgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAgAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAARwAAAAAAACUAAAAAAwAlAAAAAAEAJQAAAAADACUAAAAAAQAlAAAAAAAAJQAAAAABACUAAAAAAAAlAAAAAAMAJQAAAAACACUAAAAAAwAlAAAAAAAARwAAAAAAAIEAAAAAAABHAAAAAAAAgQAAAAAAACUAAAAAAwBgAAAAAAEAYAAAAAADAGAAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAACAGAAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAIAIAAAAAACACAAAAAAAwAlAAAAAAAAIgAAAAABACIAAAAAAgAiAAAAAAAAIgAAAAADACQAAAAAAAAiAAAAAAIAIgAAAAAAACIAAAAAAwBgAAAAAAIAIAAAAAAAACAAAAAAAQAgAAAAAAAAIAAAAAABACAAAAAAAwCBAAAAAAAARwAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAABAGAAAAAAAAAiAAAAAAAAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAQAfAAAAAAIAgQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAIEAAAAAAABgAAAAAAMAIgAAAAADAGAAAAAAAQBHAAAAAAAAJQAAAAADACUAAAAAAwAlAAAAAAEAJQAAAAABACUAAAAAAQAlAAAAAAEAgQAAAAAAAGAAAAAAAgCBAAAAAAAAgQAAAAAAAGAAAAAAAwAiAAAAAAEAIgAAAAABACIAAAAAAwBgAAAAAAIAgQAAAAAAACQAAAAAAwAlAAAAAAEAJQAAAAACACUAAAAAAwAlAAAAAAIAJQAAAAABAA== + tiles: gQAAAAAAAIEAAAAAAAAWAAAAAAEAFgAAAAABABYAAAAAAQBgAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAEAYAAAAAACAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAADAIEAAAAAAABgAAAAAAIAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAQCBAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAADAGAAAAAAAwBgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAgBgAAAAAAAAYAAAAAABAIEAAAAAAABgAAAAAAIAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAQBgAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAAAAGAAAAAAAQAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAQCBAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAEAgQAAAAAAAIEAAAAAAABHAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAALgAAAAAAAiAAAAAAAwAgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAABLwAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAADLgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAABLQAAAAAAAS8AAAAAAAAuAAAAAAABLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAS0AAAAAAAEvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAABACAAAAAAAQAgAAAAAAMAgQAAAAAAACAAAAAAAQBgAAAAAAEAYAAAAAADAGAAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAQBgAAAAAAEAYAAAAAACAGAAAAAAAQCBAAAAAAAAIAAAAAACACAAAAAAAAAgAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAEAIgAAAAADACIAAAAAAQAiAAAAAAEAIgAAAAADACQAAAAAAgAiAAAAAAMAIgAAAAADACIAAAAAAQBgAAAAAAMAIAAAAAACACAAAAAAAQAgAAAAAAEAIAAAAAAAACAAAAAAAACBAAAAAAAAIAAAAAACAGAAAAAAAQBgAAAAAAMAYAAAAAACAGAAAAAAAgBgAAAAAAIAYAAAAAAAAGAAAAAAAAAiAAAAAAEAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwAfAAAAAAEAgQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAIEAAAAAAABgAAAAAAEAIgAAAAACAGAAAAAAAABHAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAAAIAAAAAADACAAAAAAAAAgAAAAAAMAgQAAAAAAAGAAAAAAAwCBAAAAAAAAgQAAAAAAAGAAAAAAAwAiAAAAAAAAIgAAAAABACIAAAAAAABgAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAADAA== version: 7 2,-2: ind: 2,-2 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAALwAAAAAAACUAAAAAAgAlAAAAAAEAJQAAAAADACkAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAApAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAACkAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAlAAAAAAAAJQAAAAACACkAAAAAAwApAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMuAAAAAAACLgAAAAAAA4EAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC0AAAAAAAMYAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAMtAAAAAAADLgAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAIrAAAAAAMAGAAAAAAAACsAAAAAAwArAAAAAAIAKwAAAAABACUAAAAAAwAtAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAALQAAAAAAAxgAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAIEAAAAAAAAgAAAAAAIAgQAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAADACAAAAAAAAAgAAAAAAAAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAARwAAAAAAACUAAAAAAQAlAAAAAAIAJQAAAAADACUAAAAAAgAlAAAAAAIAJQAAAAADACUAAAAAAgApAAAAAAAAKQAAAAAAAIEAAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAIAKQAAAAACACkAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAIEAAAAAAAAZAAAAAAMAgQAAAAAAACIAAAAAAgAiAAAAAAMAIgAAAAABACIAAAAAAgAiAAAAAAIAIgAAAAADACkAAAAAAwApAAAAAAAAKQAAAAABACkAAAAAAwApAAAAAAEAgQAAAAAAABcAAAAAAACBAAAAAAAAYAAAAAAAACIAAAAAAwAiAAAAAAMAYAAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAABAGAAAAAAAwApAAAAAAMAKQAAAAABACkAAAAAAwApAAAAAAIAKQAAAAADAIEAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAwAiAAAAAAAAYAAAAAADAIEAAAAAAAAfAAAAAAMAHwAAAAABAGAAAAAAAwAfAAAAAAIAKQAAAAAAAIEAAAAAAACBAAAAAAAAKQAAAAABAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAMAIgAAAAACAGAAAAAAAQBgAAAAAAEAgQAAAAAAAIEAAAAAAABgAAAAAAIAgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAALwAAAAAAACUAAAAAAQAlAAAAAAAAJQAAAAADACkAAAAAAQCBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAApAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAACkAAAAAAgCBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAlAAAAAAIAJQAAAAAAACkAAAAAAgApAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMuAAAAAAACLgAAAAAAA4EAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC0AAAAAAAMYAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAMtAAAAAAADLgAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAIrAAAAAAEAGAAAAAAAACsAAAAAAQArAAAAAAEAKwAAAAAAACUAAAAAAAAtAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAALQAAAAAAAxgAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAApAAAAAAIAKQAAAAADAIEAAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAEAYAAAAAADAGAAAAAAAQBgAAAAAAAAKQAAAAACACkAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAIEAAAAAAAAZAAAAAAIAgQAAAAAAACIAAAAAAgAiAAAAAAMAIgAAAAAAACIAAAAAAwAiAAAAAAMAIgAAAAABACkAAAAAAAApAAAAAAIAKQAAAAADACkAAAAAAAApAAAAAAIAgQAAAAAAABcAAAAAAACBAAAAAAAAYAAAAAADACIAAAAAAAAiAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAAApAAAAAAIAKQAAAAABACkAAAAAAgApAAAAAAAAKQAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAAAiAAAAAAAAYAAAAAADAIEAAAAAAAAfAAAAAAAAHwAAAAACAGAAAAAAAAAfAAAAAAEAKQAAAAADAIEAAAAAAACBAAAAAAAAKQAAAAABAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAIAIgAAAAADAGAAAAAAAgBgAAAAAAIAgQAAAAAAAIEAAAAAAABgAAAAAAAAgQAAAAAAAA== version: 7 2,-3: ind: 2,-3 - tiles: gQAAAAAAACAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIAgQAAAAAAACAAAAAAAwAPAAAAAAAADwAAAAAAAA8AAAAAAwAPAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAwAlAAAAAAMAJQAAAAACAIEAAAAAAAABAAAAAAMAAQAAAAACACAAAAAAAwAPAAAAAAIADwAAAAAAAA8AAAAAAQAPAAAAAAIADwAAAAAAAA8AAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAIAJQAAAAAAACUAAAAAAAAgAAAAAAAAAQAAAAADAAEAAAAAAAAgAAAAAAEADwAAAAAAAA8AAAAAAwAPAAAAAAIADwAAAAAAAA8AAAAAAwAPAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAQAlAAAAAAMAIAAAAAAAAAEAAAAAAQABAAAAAAIAIAAAAAABAA8AAAAAAAAPAAAAAAMADwAAAAACAA8AAAAAAQAPAAAAAAMADwAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAAAlAAAAAAEAJQAAAAAAACAAAAAAAwABAAAAAAEAAQAAAAAAACAAAAAAAQAPAAAAAAEADwAAAAADAA8AAAAAAgAPAAAAAAIADwAAAAAAAA8AAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAEAJQAAAAADACUAAAAAAAAgAAAAAAMAAQAAAAADAAEAAAAAAQAgAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAMAIAAAAAACAAEAAAAAAAABAAAAAAAAgQAAAAAAAA8AAAAAAwAPAAAAAAIADwAAAAAAAA8AAAAAAwAPAAAAAAIADwAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAwAlAAAAAAEAJQAAAAACAIEAAAAAAAABAAAAAAMAAQAAAAABACAAAAAAAgAPAAAAAAIADwAAAAADAA8AAAAAAAAPAAAAAAMADwAAAAABAA8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAAAJQAAAAACACUAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAABACUAAAAAAgAlAAAAAAMAgQAAAAAAAC8AAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAAAlAAAAAAEAJQAAAAABACUAAAAAAwAlAAAAAAEAJQAAAAADACUAAAAAAQCBAAAAAAAAgQAAAAAAACUAAAAAAQAlAAAAAAEAJQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAEAJQAAAAAAACUAAAAAAwAlAAAAAAIAJQAAAAACACUAAAAAAwAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAACUAAAAAAAAlAAAAAAEAJQAAAAABACUAAAAAAAAlAAAAAAMAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAGAAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAABgAAAAAAAAvAAAAAAAAgQAAAAAAAA== + tiles: gQAAAAAAACAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIAgQAAAAAAACAAAAAAAwAPAAAAAAMADwAAAAAAAA8AAAAAAgAPAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAAABAAAAAAIAAQAAAAADACAAAAAAAgAPAAAAAAEADwAAAAADAA8AAAAAAQAPAAAAAAIADwAAAAAAAA8AAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAIAJQAAAAABAG8AAAAAAAAgAAAAAAMAAQAAAAAAAAEAAAAAAgAgAAAAAAEADwAAAAAAAA8AAAAAAwAPAAAAAAAADwAAAAADAA8AAAAAAgAPAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAABvAAAAAAAAIAAAAAAAAAEAAAAAAgABAAAAAAAAIAAAAAADAA8AAAAAAwAPAAAAAAMADwAAAAAAAA8AAAAAAgAPAAAAAAEADwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAAAlAAAAAAEAbwAAAAAAACAAAAAAAwABAAAAAAMAAQAAAAABACAAAAAAAAAPAAAAAAIADwAAAAAAAA8AAAAAAwAPAAAAAAMADwAAAAADAA8AAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAEAJQAAAAABAG8AAAAAAAAgAAAAAAIAAQAAAAAAAAEAAAAAAwAgAAAAAAMADwAAAAABAA8AAAAAAQAPAAAAAAAADwAAAAABAA8AAAAAAwAPAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAABACUAAAAAAgBvAAAAAAAAIAAAAAADAAEAAAAAAAABAAAAAAAAgQAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAACAA8AAAAAAgAPAAAAAAAADwAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAAAlAAAAAAIAbwAAAAAAAIEAAAAAAAABAAAAAAIAAQAAAAAAACAAAAAAAQAPAAAAAAAADwAAAAABAA8AAAAAAwAPAAAAAAEADwAAAAAAAA8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAMAJQAAAAABAG8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAACACUAAAAAAQBvAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAAA0AAAAAAkANAAAAAAAABgAAAAAAAAYAAAAAAAANAAAAAAAADQAAAAACACBAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAADQAAAAAAAA0AAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAADQAAAAAAwAYAAAAAAAAGAAAAAAAADQAAAAAAgA0AAAAAAAANAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAADQAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAGAAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAABgAAAAAAAAvAAAAAAAAgQAAAAAAAA== version: 7 5,-2: ind: 5,-2 - tiles: gQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAgQAAAAAAACAAAAAAAwAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABAIEAAAAAAAAgAAAAAAEAIAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAQAgAAAAAAMAIAAAAAAAACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAgQAAAAAAACAAAAAAAwAgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAHAAAAAACABwAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAEAgQAAAAAAACAAAAAAAAAgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACAIEAAAAAAAAgAAAAAAMAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAgAgAAAAAAEAIAAAAAACACAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIAgQAAAAAAACAAAAAAAAAgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAHAAAAAACABwAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 5,-1: ind: 5,-1 @@ -340,7 +341,7 @@ entities: version: 7 3,-1: ind: 3,-1 - tiles: YAAAAAABAGAAAAAAAABgAAAAAAMAYAAAAAADACIAAAAAAgAiAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAEARwAAAAAAACUAAAAAAwAlAAAAAAIAJQAAAAADACUAAAAAAwCBAAAAAAAAgQAAAAAAACIAAAAAAwAiAAAAAAIAIgAAAAAAACIAAAAAAQAiAAAAAAMAIwAAAAAAACMAAAAAAAAjAAAAAAAAIwAAAAAAAIEAAAAAAAAlAAAAAAIAJQAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAEAYAAAAAADACMAAAAAAAAjAAAAAAAAHwAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAADACIAAAAAAQAiAAAAAAEAYAAAAAACAGAAAAAAAABgAAAAAAAARwAAAAAAACAAAAAAAwAgAAAAAAIAIAAAAAAAACAAAAAAAgCBAAAAAAAAgQAAAAAAACIAAAAAAgAiAAAAAAEAIgAAAAAAACIAAAAAAwAiAAAAAAIAIwAAAAAAACMAAAAAAAAjAAAAAAAAIwAAAAAAAIEAAAAAAAAlAAAAAAMAJQAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAACMAAAAAAAAjAAAAAAAAHwAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,-1: ind: 4,-1 @@ -348,11 +349,11 @@ entities: version: 7 2,-1: ind: 2,-1 - tiles: KQAAAAABACkAAAAAAwApAAAAAAAAKQAAAAAAACkAAAAAAwCBAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAEAIgAAAAADAGAAAAAAAQCBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAADACkAAAAAAAApAAAAAAAAKQAAAAACACkAAAAAAwApAAAAAAIAgQAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAABACIAAAAAAAAiAAAAAAEAIgAAAAAAACIAAAAAAgAiAAAAAAMAIgAAAAABACIAAAAAAgCBAAAAAAAAgQAAAAAAACkAAAAAAQApAAAAAAEAKQAAAAABAIEAAAAAAAAXAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAEAYAAAAAAAAGAAAAAAAgBgAAAAAAAAKQAAAAACAIEAAAAAAAApAAAAAAMAKQAAAAABACkAAAAAAQCBAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACkAAAAAAgCBAAAAAAAAKQAAAAABACkAAAAAAgApAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: KQAAAAACACkAAAAAAgApAAAAAAMAKQAAAAAAACkAAAAAAQCBAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAAAIgAAAAACAGAAAAAAAQCBAAAAAAAAYAAAAAABAGAAAAAAAgBgAAAAAAIAYAAAAAABACkAAAAAAgApAAAAAAIAKQAAAAABACkAAAAAAAApAAAAAAAAgQAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAACACIAAAAAAgAiAAAAAAMAIgAAAAAAACIAAAAAAgAiAAAAAAMAIgAAAAABACIAAAAAAgCBAAAAAAAAgQAAAAAAACkAAAAAAAApAAAAAAIAKQAAAAADAIEAAAAAAAAXAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAADAGAAAAAAAABgAAAAAAIAKQAAAAACAIEAAAAAAAApAAAAAAAAKQAAAAABACkAAAAAAQCBAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACkAAAAAAACBAAAAAAAAKQAAAAACACkAAAAAAgApAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 2,-4: ind: 2,-4 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAALQAAAAAAAC0AAAAAAAMtAAAAAAADGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALQAAAAAAAy0AAAAAAAMuAAAAAAAGgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAAMuAAAAAAADGAAAAAAAAC0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAMtAAAAAAAALQAAAAAAAy0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAABBgAAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAEtAAAAAAADLgAAAAAAAy4AAAAAAAEtAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAyAAAAAAAwAgAAAAAAMAIAAAAAACACAAAAAAAgAgAAAAAAEAIAAAAAACAIEAAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAgAYAAAAAAAAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAEAIAAAAAACACAAAAAAAwAgAAAAAAEAIAAAAAADACAAAAAAAgAgAAAAAAIAIAAAAAADACAAAAAAAgAYAAAAAAAAGAAAAAAAACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAAAACAAAAAAAgAgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAALQAAAAAAAC0AAAAAAAMtAAAAAAADGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALQAAAAAAAy0AAAAAAAMuAAAAAAAGgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAAMuAAAAAAADGAAAAAAAAC0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAMtAAAAAAAALQAAAAAAAy0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAABBgAAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAEtAAAAAAADLgAAAAAAAy4AAAAAAAEtAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAyAAAAAAAAAgAAAAAAEAIAAAAAABACAAAAAAAwAgAAAAAAIAIAAAAAACAIEAAAAAAAAgAAAAAAIAIAAAAAACACAAAAAAAAAYAAAAAAAAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAgAgAAAAAAEAIAAAAAACACAAAAAAAwAgAAAAAAIAIAAAAAAAACAAAAAAAAAYAAAAAAAAGAAAAAAAACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAQAgAAAAAAAAIAAAAAACACAAAAAAAAAgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 -2,-6: ind: -2,-6 @@ -384,7 +385,7 @@ entities: version: 7 3,-7: ind: 3,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAgBgAAAAAAEAYAAAAAABAGAAAAAAAABgAAAAAAEAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAIAYAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAABAGAAAAAAAQCBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAADAGAAAAAAAQBgAAAAAAMAYAAAAAABAGAAAAAAAQBgAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAABAGAAAAAAAQBgAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAIAYAAAAAADAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAEAYAAAAAABAGAAAAAAAABgAAAAAAEAYAAAAAACAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAABAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAAAAGAAAAAAAgBgAAAAAAMAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAIAYAAAAAACAGAAAAAAAgBgAAAAAAMAYAAAAAACAGAAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAABAGAAAAAAAgBgAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAMAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAwBgAAAAAAMAYAAAAAABAGAAAAAAAgBgAAAAAAIAYAAAAAADAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAACAGAAAAAAAABgAAAAAAMAYAAAAAABAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -5,-3: ind: -5,-3 @@ -435,8 +436,6 @@ entities: 2004: -24,-81 3303: 65,-22 3304: 65,-26 - 3314: 60,-20 - 3810: 11,-55 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -444,7 +443,6 @@ entities: decals: 2005: -25,-82 3295: 56,-16 - 3313: 59,-21 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -465,7 +463,6 @@ entities: 561: -2,1 2007: -23,-82 3302: 58,-18 - 3312: 61,-21 3664: -3,-18 - node: angle: 3.141592653589793 rad @@ -497,7 +494,6 @@ entities: color: '#FFFFFFFF' id: Basalt6 decals: - 2059: 11,-13 2060: 6,-11 2061: -6,-13 2064: -5,-11 @@ -521,11 +517,9 @@ entities: color: '#FFFFFFFF' id: Bot decals: - 171: 11,-56 172: 11,-57 173: 11,-58 174: 11,-59 - 175: 11,-60 458: 54,-102 1726: 40,-14 1727: 41,-14 @@ -574,6 +568,20 @@ entities: 4672: 56,-37 4776: 54,-97 4780: 53,-102 + 4974: 26,-54 + 4988: -8,-51 + 4989: -8,-52 + 4990: -8,-54 + 5015: -10,-44 + 5016: -9,-44 + 5017: -9,-43 + 5018: -7,-43 + 5070: -4,-28 + 5089: -22,-50 + 5090: -21,-50 + 5094: 13,-66 + 5181: -40,-12 + 5182: -38,-12 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -614,6 +622,22 @@ entities: 3559: -28,-86 3560: -28,-78 3902: -10,-70 + - node: + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 4975: 24,-52 + 4976: 22,-54 + 4977: 24,-56 + 5025: -9,-37 + 5026: -8,-37 + 5027: -7,-37 + 5028: -6,-37 + 5029: -6,-35 + 5030: -7,-35 + 5031: -8,-35 + 5032: -9,-35 + 5082: -22,-43 - node: color: '#FFFFFFFF' id: BotLeft @@ -646,11 +670,11 @@ entities: 282: 28,-97 283: 28,-98 - node: - angle: 4.71238898038469 rad color: '#FFFFFFFF' - id: BotLeft + id: BotLeftGreyscale decals: - 3311: 60,-21 + 5021: -5,-35 + 5022: -10,-37 - node: color: '#FFFFFFFF' id: BotRight @@ -683,6 +707,12 @@ entities: 269: 22,-98 270: 21,-98 271: 20,-98 + - node: + color: '#FFFFFFFF' + id: BotRightGreyscale + decals: + 5023: -10,-35 + 5024: -5,-37 - node: color: '#FFFFFFFF' id: Box @@ -736,11 +766,6 @@ entities: id: BrickCornerOverlayNE decals: 546: 6,-7 - - node: - color: '#D381C926' - id: BrickCornerOverlayNE - decals: - 3549: 7,-42 - node: color: '#FF940093' id: BrickCornerOverlayNE @@ -759,11 +784,6 @@ entities: id: BrickCornerOverlayNW decals: 513: -4,1 - - node: - color: '#D381C926' - id: BrickCornerOverlayNW - decals: - 3550: 6,-42 - node: color: '#FF940093' id: BrickCornerOverlayNW @@ -779,11 +799,6 @@ entities: id: BrickCornerOverlaySE decals: 514: 6,1 - - node: - color: '#D381C926' - id: BrickCornerOverlaySE - decals: - 3553: 7,-44 - node: color: '#FF940093' id: BrickCornerOverlaySE @@ -800,11 +815,6 @@ entities: id: BrickCornerOverlaySW decals: 536: -4,-7 - - node: - color: '#D381C926' - id: BrickCornerOverlaySW - decals: - 3552: 6,-44 - node: color: '#FF940093' id: BrickCornerOverlaySW @@ -837,19 +847,6 @@ entities: decals: 2986: 13,-31 2987: 17,-30 - - node: - color: '#334E6DC8' - id: BrickLineOverlayE - decals: - 4899: -35,-49 - 4900: -35,-43 - 4903: -35,-44 - 4904: -35,-48 - - node: - color: '#8C347F96' - id: BrickLineOverlayE - decals: - 4945: -13,-49 - node: color: '#95FF6F72' id: BrickLineOverlayE @@ -873,11 +870,6 @@ entities: 2516: 15,-90 2517: 15,-91 2518: 15,-86 - - node: - color: '#FA750096' - id: BrickLineOverlayE - decals: - 3836: 10,-67 - node: color: '#FF940093' id: BrickLineOverlayE @@ -912,13 +904,6 @@ entities: color: '#D381C926' id: BrickLineOverlayN decals: - 3533: 14,-43 - 3534: 15,-43 - 3535: 13,-43 - 3536: 12,-43 - 3537: 11,-43 - 3538: 10,-43 - 3539: 9,-43 3540: 8,-43 - node: color: '#DE3A3A96' @@ -985,33 +970,12 @@ entities: id: BrickLineOverlayS decals: 3541: 8,-43 - 3542: 9,-43 - 3543: 10,-43 - 3544: 11,-43 - 3545: 12,-43 - 3546: 13,-43 - 3547: 14,-43 - 3548: 15,-43 - - node: - color: '#D381C971' - id: BrickLineOverlayS - decals: - 938: 8,-74 - 939: 9,-74 - 940: 10,-74 - node: color: '#DE3A3A96' id: BrickLineOverlayS decals: 4618: 55,-26 4619: 56,-26 - - node: - color: '#EFB34196' - id: BrickLineOverlayS - decals: - 2952: -22,-58 - 2953: -21,-58 - 2954: -20,-58 - node: color: '#FF940093' id: BrickLineOverlayS @@ -1038,16 +1002,6 @@ entities: 1821: 43,-15 1822: 42,-15 1823: 54,-17 - - node: - color: '#334E6DC8' - id: BrickLineOverlayW - decals: - 2936: -30,-43 - 2937: -30,-42 - 2938: -30,-49 - 2939: -30,-50 - 2945: -30,-44 - 2948: -30,-48 - node: color: '#95FF6F72' id: BrickLineOverlayW @@ -1073,16 +1027,6 @@ entities: 2522: 14,-90 2523: 14,-91 2527: 21,-83 - - node: - color: '#D381C926' - id: BrickLineOverlayW - decals: - 3551: 6,-43 - - node: - color: '#FA750096' - id: BrickLineOverlayW - decals: - 3838: 23,-69 - node: color: '#FF940093' id: BrickLineOverlayW @@ -1096,10 +1040,7 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 12: -4,-25 - 1429: -12,-38 2904: -18,-26 - 3512: 7,-42 4137: 92,-42 4138: 93,-43 4139: 94,-44 @@ -1107,20 +1048,14 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 13: -6,-25 2903: -25,-26 - 3508: 6,-42 - 3892: -7,-27 4142: 92,-49 4143: 93,-48 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 1428: -12,-34 2905: -18,-27 - 3513: 7,-44 - 3896: -4,-27 4134: 92,-50 4135: 93,-49 4136: 94,-48 @@ -1129,7 +1064,6 @@ entities: id: BrickTileDarkCornerSw decals: 2902: -25,-27 - 3509: 6,-44 4140: 93,-44 4141: 92,-43 - node: @@ -1142,18 +1076,13 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 1435: -12,-39 - 2208: 23,-55 4163: 92,-43 4164: 93,-44 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 757: -4,-38 - 1430: -3,-39 2207: 25,-55 - 3894: -6,-27 4153: 92,-50 4154: 93,-49 4155: 94,-48 @@ -1162,17 +1091,13 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 1432: -12,-33 2209: 23,-53 - 3893: -7,-27 4161: 92,-49 4162: 93,-48 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 758: -4,-34 - 1431: -3,-33 2210: 25,-53 4157: 93,-43 4158: 92,-42 @@ -1182,61 +1107,22 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 14: -4,-26 2205: 23,-54 - 3835: 10,-67 4146: 94,-45 4147: 94,-46 4148: 94,-47 - 4896: -35,-49 - 4897: -35,-43 - 4901: -35,-48 - 4902: -35,-44 - 4930: -48,-51 - 4931: -48,-50 - 4932: -48,-42 - 4933: -48,-41 - 4944: -13,-49 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 15: -5,-25 - 804: -3,-36 - 805: -2,-36 - 1405: -11,-39 - 1406: -10,-39 - 1407: -9,-39 - 1408: -8,-39 - 1409: -7,-39 - 1410: -6,-39 - 1411: -5,-39 - 1412: -4,-39 2204: 24,-55 - 2789: -29,-42 - 2790: -28,-42 2912: -24,-26 2913: -23,-26 2914: -22,-26 2915: -21,-26 2916: -19,-26 2917: -20,-26 - 2931: -30,-42 - 2957: -11,-38 - 3167: -10,-38 - 3168: -9,-38 - 3169: -8,-38 - 3170: -7,-38 - 3171: -6,-38 - 3172: -5,-38 3514: 8,-43 - 3515: 9,-43 - 3516: 10,-43 - 3517: 11,-43 - 3518: 12,-43 - 3519: 13,-43 - 3520: 14,-43 - 3532: 15,-43 4132: 90,-50 4133: 91,-50 4150: 93,-46 @@ -1246,81 +1132,26 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 11: -5,-27 - 802: -3,-36 - 803: -2,-36 - 935: 8,-74 - 936: 9,-74 - 937: 10,-74 - 1417: -4,-33 - 1418: -5,-33 - 1419: -6,-33 - 1420: -7,-33 - 1421: -9,-33 - 1422: -8,-33 - 1423: -10,-33 - 1424: -11,-33 2206: 24,-53 - 2787: -28,-50 2906: -24,-27 2907: -23,-27 2908: -22,-27 2909: -21,-27 2910: -20,-27 2911: -19,-27 - 2929: -30,-50 - 2956: -11,-34 - 3161: -10,-34 - 3162: -9,-34 - 3163: -8,-34 - 3164: -7,-34 - 3165: -6,-34 - 3166: -5,-34 - 3523: 14,-43 - 3524: 13,-43 - 3525: 12,-43 - 3526: 11,-43 - 3527: 10,-43 - 3528: 9,-43 3529: 8,-43 - 3531: 15,-43 - 3895: -6,-27 4128: 90,-42 4129: 91,-42 4130: 90,-50 4131: 91,-50 4149: 93,-46 - 4925: -29,-50 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 9: -6,-26 - 166: 14,-51 - 167: 14,-50 - 168: 14,-49 - 1413: -3,-38 - 1414: -3,-37 - 1415: -3,-35 - 1416: -3,-34 2203: 25,-54 - 2932: -30,-42 - 2933: -30,-43 - 2934: -30,-50 - 2935: -30,-49 - 2940: -30,-44 - 2941: -30,-48 - 3179: -4,-35 - 3180: -4,-36 - 3181: -4,-37 - 3507: 6,-43 - 3837: 23,-69 4144: 94,-47 4145: 94,-45 - 4926: -45,-41 - 4927: -45,-42 - 4928: -45,-50 - 4929: -45,-51 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe @@ -1344,7 +1175,6 @@ entities: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 0: -10,-50 1763: 42,-20 1764: 41,-19 1765: 52,-16 @@ -1375,6 +1205,7 @@ entities: 1796: 53,-16 1797: 52,-15 1798: 55,-17 + 5187: 56,-39 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE @@ -1421,8 +1252,6 @@ entities: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 3: -8,-50 - 4: -9,-50 1728: 43,-15 1729: 44,-15 1730: 45,-15 @@ -1455,15 +1284,10 @@ entities: 2391: 18,-83 2394: 8,-83 2395: 15,-83 - 2949: -22,-58 - 2950: -21,-58 - 2951: -20,-58 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 1: -10,-49 - 2: -10,-48 1748: 41,-18 1749: 41,-17 1750: 41,-16 @@ -1638,18 +1462,6 @@ entities: color: '#DE3A3A96' id: CheckerNESW decals: - 1616: 42,-23 - 1617: 43,-23 - 1618: 44,-23 - 1619: 45,-23 - 1620: 46,-23 - 1621: 47,-23 - 1622: 48,-23 - 1623: 49,-23 - 1625: 54,-23 - 1626: 55,-23 - 1627: 56,-23 - 4206: 50,-23 4210: 50,-32 4213: 50,-35 4229: 51,-35 @@ -1848,53 +1660,17 @@ entities: 4946: -13,-52 4947: -13,-53 4948: -13,-54 + 4980: 11,-60 + 4981: 6,-59 + 5058: -11,-30 + 5059: -12,-30 + 5130: -38,-46 - node: color: '#DE3A3AFF' id: DeliveryGreyscale decals: 4660: 59,-38 4753: 67,-44 - - node: - color: '#00000056' - id: DiagonalCheckerAOverlay - decals: - 3693: -25,-38 - 3694: -24,-38 - 3695: -23,-38 - 3696: -22,-38 - 3697: -25,-37 - 3698: -25,-31 - 3699: -25,-32 - 3700: -25,-33 - 3701: -25,-34 - 3702: -25,-35 - 3703: -25,-36 - 3704: -24,-36 - 3705: -21,-38 - 3706: -19,-38 - 3707: -18,-38 - 3708: -17,-38 - 3717: -23,-28 - 3718: -22,-28 - 3719: -21,-28 - 3720: -19,-28 - 3721: -18,-28 - 3722: -17,-28 - - node: - color: '#00000066' - id: DiagonalCheckerAOverlay - decals: - 4107: -24,-30 - - node: - color: '#00000067' - id: DiagonalCheckerAOverlay - decals: - 2552: -25,-30 - - node: - color: '#0000006C' - id: DiagonalCheckerAOverlay - decals: - 2869: -20,-37 - node: color: '#0000008C' id: DiagonalCheckerAOverlay @@ -1913,15 +1689,6 @@ entities: 1466: 37,-42 1467: 37,-41 1468: 36,-41 - - node: - color: '#00000053' - id: DiagonalCheckerBOverlay - decals: - 1945: -29,-48 - 1946: -29,-47 - 1947: -29,-46 - 1948: -29,-45 - 1949: -29,-44 - node: cleanable: True color: '#000000FF' @@ -1940,17 +1707,13 @@ entities: 2052: 5,-12 2053: 9,-11 2054: 10,-12 - 2055: 14,-12 2067: 1,-11 2068: 1,-11 2086: 7,-33 2087: 1,-31 - 2088: 4,-32 - 2089: 5,-32 2090: 8,-31 2091: 8,-34 2098: 1,-33 - 2099: 0,-32 - node: cleanable: True color: '#FFFFFFFF' @@ -2032,7 +1795,6 @@ entities: color: '#000000FF' id: DirtHeavyMonotile decals: - 2012: 0,-11 2013: 6,-11 2014: 5,-13 2015: 7,-11 @@ -2062,7 +1824,6 @@ entities: 1502: -1,-76 1503: 3,-79 1519: -53,-69 - 1521: -50,-31 1526: -40,-27 1531: -51,-26 1532: -50,-25 @@ -2074,8 +1835,6 @@ entities: 1930: 46,-20 1931: 49,-16 1932: 54,-19 - 1939: 44,-22 - 1940: 52,-22 2127: 4,-9 2404: 10,-83 2410: 14,-80 @@ -2130,14 +1889,10 @@ entities: 1550: -1,-14 1551: 3,-14 1938: 46,-17 - 1941: 45,-23 - 1942: 54,-23 - 1943: 49,-23 2124: -8,-8 2125: -3,-9 2126: -1,-10 2132: -17,-47 - 2133: -4,-46 2134: 17,-64 2135: 19,-62 2136: -11,-76 @@ -2163,9 +1918,7 @@ entities: color: '#000000FF' id: DirtMedium decals: - 2040: 0,-11 2041: -8,-10 - 2084: 4,-32 2085: 2,-32 - node: cleanable: True @@ -2176,7 +1929,6 @@ entities: 1475: 39,-50 1497: 77,-50 1524: -42,-29 - 1552: 12,-14 1553: 1,-63 1927: 47,-19 1928: 46,-18 @@ -2196,21 +1948,11 @@ entities: 4759: 78,-71 4763: 49,-17 4852: 61,-74 - - node: - color: '#334E6DC8' - id: FullTileOverlayGreyscale - decals: - 3808: 9,-60 - node: color: '#43995C96' id: FullTileOverlayGreyscale decals: 4385: 31,-17 - - node: - color: '#9FED5896' - id: FullTileOverlayGreyscale - decals: - 3981: 6,-59 - node: color: '#A4610696' id: FullTileOverlayGreyscale @@ -2305,31 +2047,12 @@ entities: 1106: -17,-59 1107: -16,-59 1108: -15,-59 - 1110: -27,-59 - 1111: -26,-59 - 1112: -25,-59 - 1113: -24,-59 1137: -29,-64 - node: color: '#00000026' id: HalfTileOverlayGreyscale180 decals: 33: -47,-49 - - node: - color: '#00000066' - id: HalfTileOverlayGreyscale180 - decals: - 2928: -24,-40 - - node: - color: '#00000067' - id: HalfTileOverlayGreyscale180 - decals: - 2575: -25,-40 - 2577: -22,-43 - 2578: -21,-43 - 2579: -20,-43 - 2580: -19,-43 - 2581: -18,-43 - node: color: '#43995C96' id: HalfTileOverlayGreyscale180 @@ -2344,8 +2067,6 @@ entities: 1573: 14,-71 1574: 13,-71 3978: -40,-16 - 4408: 28,-25 - 4409: 29,-25 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 @@ -2361,21 +2082,6 @@ entities: id: HalfTileOverlayGreyscale180 decals: 4510: 20,-25 - - node: - color: '#00000067' - id: HalfTileOverlayGreyscale270 - decals: - 2565: -26,-34 - 2566: -26,-35 - 2567: -26,-33 - 2568: -26,-32 - 2569: -26,-31 - 2571: -26,-36 - 2572: -26,-37 - 2573: -26,-38 - 2574: -26,-39 - 2582: -23,-41 - 2583: -23,-42 - node: color: '#0080FF3A' id: HalfTileOverlayGreyscale270 @@ -2394,12 +2100,6 @@ entities: decals: 4388: 29,-20 4389: 29,-19 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale270 - decals: - 4579: 23,-23 - 4580: 23,-24 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 @@ -2419,14 +2119,6 @@ entities: id: HalfTileOverlayGreyscale270 decals: 229: -5,-6 - - node: - color: '#00000067' - id: HalfTileOverlayGreyscale90 - decals: - 2584: -17,-39 - 2585: -17,-40 - 2586: -17,-41 - 2587: -17,-42 - node: color: '#3E92D883' id: HalfTileOverlayGreyscale90 @@ -2481,6 +2173,7 @@ entities: decals: 4125: 96,-58 4127: 96,-34 + 4979: 10,-60 - node: color: '#FFFFFFFF' id: LoadingArea @@ -2500,6 +2193,11 @@ entities: 3969: 4,-10 3970: 5,-10 3971: 6,-10 + 4978: 11,-56 + 5054: -12,-31 + 5055: -11,-31 + 5056: -12,-29 + 5057: -11,-29 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -2518,13 +2216,14 @@ entities: 2525: 21,-84 3297: 63,-26 3306: 63,-19 + 5179: -40,-11 + 5180: -38,-11 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: LoadingArea decals: 3296: 56,-18 - 3811: 9,-60 - node: angle: 4.71238898038469 rad color: '#00FFFFFF' @@ -2537,6 +2236,11 @@ entities: id: LoadingAreaGreyscale decals: 3903: -11,-70 + - node: + color: '#FFFFFFFF' + id: LoadingAreaGreyscale + decals: + 5071: -4,-28 - node: angle: 1.5707963267948966 rad color: '#00000019' @@ -2646,11 +2350,6 @@ entities: 3034: 17,-99 3035: 17,-100 3036: 17,-101 - - node: - color: '#EFDF3A8F' - id: MiniTileCheckerAOverlay - decals: - 3506: 7,-43 - node: color: '#FFFFFF3A' id: MiniTileCheckerAOverlay @@ -2668,11 +2367,6 @@ entities: id: MiniTileCheckerBOverlay decals: 3687: -8,-17 - - node: - color: '#D381C94E' - id: MiniTileCheckerBOverlay - decals: - 1353: -8,-29 - node: color: '#FFFFFFBF' id: MiniTileCheckerBOverlay @@ -2683,11 +2377,6 @@ entities: id: MiniTileCornerOverlayNE decals: 3183: -10,-16 - - node: - color: '#D381C926' - id: MiniTileCornerOverlayNW - decals: - 2224: -6,-23 - node: color: '#D381C928' id: MiniTileCornerOverlayNW @@ -2698,11 +2387,6 @@ entities: id: MiniTileCornerOverlaySE decals: 3186: -10,-17 - - node: - color: '#D381C926' - id: MiniTileCornerOverlaySW - decals: - 2228: -6,-20 - node: color: '#D381C928' id: MiniTileCornerOverlaySW @@ -2712,23 +2396,8 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkCornerNe decals: - 135: -53,-45 - 161: -33,-38 - 162: -33,-56 200: 29,-73 223: 40,-76 - 638: 26,-50 - 639: 27,-51 - 640: 28,-52 - 646: 21,-56 - 647: 22,-57 - 761: 35,-54 - 764: 37,-54 - 1246: -30,-36 - 1247: -31,-35 - 1263: -30,-54 - 1264: -31,-53 - 1296: -32,-50 4177: 34,-28 4201: 42,-50 4602: 33,-75 @@ -2736,44 +2405,13 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkCornerNw decals: - 160: -31,-38 - 163: -31,-56 - 623: 20,-52 - 624: 21,-51 - 625: 22,-50 - 626: 26,-57 - 627: 27,-56 - 763: 36,-54 - 767: 40,-53 - 1250: -34,-36 - 1251: -33,-35 - 1258: -33,-53 - 1260: -34,-54 - 1285: -40,-42 4174: 28,-28 4601: 35,-76 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerSe decals: - 136: -53,-47 - 158: -33,-36 - 164: -33,-54 224: 40,-77 - 628: 26,-58 - 629: 27,-57 - 630: 28,-56 - 631: 21,-52 - 632: 22,-51 - 762: 36,-55 - 766: 40,-55 - 768: 42,-53 - 1248: -30,-38 - 1249: -31,-39 - 1261: -31,-57 - 1262: -30,-56 - 1270: -32,-42 - 3726: -32,-59 4176: 34,-30 - node: color: '#C8C8FFFF' @@ -2784,36 +2422,19 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkCornerSw decals: - 159: -31,-36 - 165: -31,-54 195: 28,-76 196: 29,-77 - 633: 20,-56 - 634: 21,-57 - 635: 22,-58 - 636: 26,-51 - 637: 27,-52 - 765: 37,-55 - 769: 35,-55 - 1244: -33,-39 - 1245: -34,-38 - 1257: -34,-56 - 1259: -33,-57 4175: 28,-30 4202: 41,-50 - 4868: -40,-50 - node: color: '#FFFFFFFF' id: MiniTileDarkEndN decals: - 157: -31,-21 - 3867: -35,-58 4205: 41,-49 - node: color: '#FFFFFFFF' id: MiniTileDarkEndS decals: - 156: -31,-22 4961: 37,-78 - node: color: '#FFFFFFFF' @@ -2825,78 +2446,22 @@ entities: id: MiniTileDarkInnerNe decals: 201: 29,-75 - 641: 27,-52 - 642: 26,-51 - 643: 21,-57 - 644: 20,-56 - 645: 22,-58 - 784: 37,-55 - 787: 35,-55 - 1164: -33,-57 - 1167: -34,-56 - 1174: -33,-39 - 1175: -34,-38 - 1256: -31,-36 - 1265: -31,-54 2761: 22,-77 - 2773: 7,-66 - 2784: -31,-52 - 2840: -23,-55 - 3868: -35,-59 4191: 34,-29 - 4198: 44,-39 4204: 41,-50 4607: 33,-77 - 4879: -40,-50 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerNw decals: 141: -50,-47 - 685: 21,-52 - 686: 22,-51 - 687: 27,-57 - 688: 28,-56 - 689: 26,-58 - 780: 40,-55 - 786: 36,-55 - 788: 42,-53 - 1170: -31,-57 - 1171: -30,-56 - 1172: -31,-39 - 1173: -30,-38 - 1255: -33,-36 - 1266: -33,-54 - 1308: -32,-42 - 2762: 26,-77 2763: 16,-77 - 2774: 10,-66 - 2839: -20,-55 - 3729: -32,-59 4518: 7,-56 4606: 35,-77 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerSe decals: - 680: 20,-52 - 681: 21,-51 - 682: 22,-50 - 683: 26,-57 - 684: 27,-56 - 783: 36,-54 - 785: 40,-53 - 1168: -34,-54 - 1169: -33,-53 - 1176: -34,-36 - 1177: -33,-35 - 1254: -31,-38 - 1267: -31,-56 - 1309: -40,-42 - 2770: 12,-75 - 2783: -31,-40 - 2841: -23,-53 - 3728: -34,-59 4190: 34,-29 4517: 5,-52 4960: 37,-77 @@ -2907,91 +2472,20 @@ entities: 140: -50,-45 198: 28,-75 199: 29,-76 - 690: 22,-57 - 691: 21,-56 - 692: 26,-50 - 693: 27,-51 - 694: 28,-52 - 781: 35,-54 - 782: 37,-54 - 1165: -31,-53 - 1166: -30,-54 - 1178: -31,-35 - 1179: -30,-36 - 1253: -33,-38 - 1268: -33,-56 - 1297: -32,-50 - 2842: -20,-53 4203: 42,-50 4959: 37,-77 - node: color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 122: -12,-12 - 123: -12,-13 - 124: -12,-14 - 125: -18,-14 - 126: -18,-13 - 127: -18,-12 151: -31,-24 152: -31,-25 202: 29,-74 - 672: 28,-55 - 673: 28,-53 - 674: 24,-49 - 675: 24,-48 - 676: 24,-59 - 677: 24,-60 - 678: 20,-55 - 679: 20,-53 - 779: 40,-54 791: 42,-52 792: 42,-51 - 1154: -32,-53 - 1155: -32,-52 - 1156: -32,-57 - 1157: -32,-58 - 1182: -32,-39 - 1183: -32,-40 - 1184: -32,-35 - 1185: -32,-34 - 1252: -30,-37 - 1269: -30,-55 - 1306: -40,-49 - 1307: -40,-43 - 2699: 5,-37 - 2700: 5,-36 - 2701: 5,-35 - 2717: 21,-37 - 2718: 21,-36 - 2719: 21,-35 - 2729: -11,-14 - 2730: -11,-13 - 2731: -11,-12 - 2744: 5,-53 - 2745: 5,-54 - 2746: 5,-55 - 2752: 30,-55 - 2753: 30,-53 - 2811: -28,-36 - 2812: -28,-37 - 2813: -28,-38 - 2826: -17,-40 - 2827: -17,-39 - 2843: 14,-14 - 2844: 14,-13 - 2863: 25,-45 - 2864: 25,-44 3681: -8,-18 - 4194: 44,-37 - 4195: 44,-38 - 4421: 32,-23 - 4422: 32,-24 - 4423: 32,-25 4603: 33,-76 4635: 66,-48 - 4771: -17,-38 - node: color: '#C8C8FFFF' id: MiniTileDarkLineN @@ -3001,15 +2495,6 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkLineN decals: - 113: 23,-73 - 114: 24,-73 - 115: 25,-73 - 131: -55,-45 - 132: -54,-45 - 142: -51,-47 - 143: -52,-47 - 190: 14,-53 - 191: 15,-53 192: 27,-73 193: 28,-73 203: 30,-75 @@ -3020,101 +2505,18 @@ entities: 220: 37,-76 221: 38,-76 222: 39,-76 - 656: 23,-58 - 657: 25,-58 - 658: 25,-50 - 659: 23,-50 - 660: 19,-54 - 661: 18,-54 - 662: 29,-54 - 663: 30,-54 - 772: 38,-55 - 773: 39,-55 - 774: 33,-54 - 775: 34,-54 - 778: 41,-53 - 800: 32,-54 - 1160: -34,-55 - 1161: -35,-55 - 1188: -34,-37 - 1189: -35,-37 - 1190: -36,-37 - 1278: -33,-42 1279: -34,-42 - 1280: -35,-42 - 1281: -36,-42 - 1282: -37,-42 - 1283: -38,-42 - 1284: -39,-42 - 1298: -33,-50 - 1299: -34,-50 - 2213: 26,-54 - 2214: 27,-54 2541: -21,-34 2542: -20,-34 2543: -19,-34 - 2705: 3,-40 - 2706: 4,-40 - 2707: 5,-40 - 2714: 23,-40 - 2715: 24,-40 - 2716: 25,-40 - 2723: -2,-29 - 2724: -1,-29 - 2725: 0,-29 - 2737: -30,-21 - 2738: -29,-21 - 2739: -28,-21 - 2740: 4,-47 - 2741: 5,-47 - 2754: 25,-48 - 2755: 23,-48 - 2758: 23,-77 - 2759: 24,-77 - 2760: 25,-77 - 2764: 15,-77 - 2765: 14,-77 - 2766: 13,-77 - 2771: 8,-66 - 2772: 9,-66 - 2777: -30,-52 - 2778: -29,-52 - 2779: -28,-52 - 2814: -30,-32 - 2815: -29,-32 - 2816: -28,-32 - 2829: -15,-45 - 2830: -14,-45 - 2831: -13,-45 - 2837: -22,-55 - 2838: -21,-55 - 2867: 28,-49 - 2868: 29,-49 - 2955: 34,-38 - 3724: -34,-59 - 3725: -33,-59 - 3730: -35,-61 - 3731: -34,-61 4178: 29,-28 4179: 30,-28 4180: 31,-28 4181: 32,-28 4182: 33,-28 4193: 35,-29 - 4200: 45,-39 - 4353: 23,-28 - 4354: 24,-28 - 4355: 25,-28 4383: 35,-18 - 4590: 25,-18 - 4591: 26,-18 - 4592: 27,-18 4604: 34,-77 - 4869: -39,-50 - 4870: -38,-50 - 4871: -37,-50 - 4872: -36,-50 - 4873: -35,-50 - node: color: '#C8C8FFFF' id: MiniTileDarkLineS @@ -3125,10 +2527,6 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkLineS decals: - 133: -55,-47 - 134: -54,-47 - 137: -52,-45 - 138: -51,-45 194: 27,-75 197: 30,-77 205: 31,-77 @@ -3136,97 +2534,20 @@ entities: 207: 33,-77 210: 36,-77 213: 39,-77 - 617: 23,-30 - 618: 24,-30 - 648: 23,-58 - 649: 25,-58 - 650: 25,-50 - 651: 23,-50 - 652: 19,-54 - 653: 18,-54 - 654: 29,-54 - 655: 30,-54 - 759: 33,-54 - 760: 34,-54 - 770: 38,-55 - 771: 39,-55 - 777: 41,-53 - 798: 32,-54 - 1162: -34,-55 - 1163: -35,-55 - 1191: -34,-37 - 1192: -35,-37 - 1193: -36,-37 - 1271: -33,-42 1272: -34,-42 - 1273: -35,-42 - 1274: -36,-42 - 1275: -37,-42 - 1276: -38,-42 - 1277: -39,-42 - 1294: -34,-50 - 1295: -33,-50 - 1599: -23,-19 - 1600: -22,-19 - 2211: 27,-54 - 2212: 26,-54 2538: -21,-32 2539: -20,-32 2540: -19,-32 - 2708: 3,-38 - 2709: 4,-38 - 2710: 5,-38 - 2711: 23,-38 - 2712: 24,-38 - 2713: 25,-38 - 2726: -2,-27 - 2727: -1,-27 - 2728: 0,-27 - 2734: -30,-19 - 2735: -29,-19 - 2736: -28,-19 - 2742: 5,-45 - 2743: 4,-45 - 2756: 23,-60 - 2757: 25,-60 - 2767: 15,-75 - 2768: 14,-75 - 2769: 13,-75 - 2775: 8,-64 - 2776: 9,-64 - 2780: -30,-40 - 2781: -29,-40 - 2782: -28,-40 - 2817: -30,-30 - 2818: -29,-30 - 2819: -28,-30 - 2832: -15,-43 - 2833: -14,-43 - 2834: -13,-43 - 2835: -21,-53 - 2836: -22,-53 - 2923: -30,-33 - 2924: -28,-33 - 2959: 25,-30 2960: 26,-30 - 3727: -33,-59 4183: 29,-30 4184: 30,-30 4185: 31,-30 4186: 32,-30 4187: 33,-30 4192: 35,-29 - 4587: 25,-16 - 4588: 26,-16 - 4589: 27,-16 4600: 35,-77 4605: 34,-77 4636: 72,-45 - 4874: -35,-50 - 4875: -36,-50 - 4876: -37,-50 - 4877: -38,-50 - 4878: -39,-50 4958: 38,-77 - node: color: '#C8C8FFFF' @@ -3238,83 +2559,18 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkLineW decals: - 119: -14,-14 - 120: -14,-13 - 121: -14,-12 - 128: -19,-12 - 129: -19,-13 - 130: -19,-14 - 139: -50,-46 149: -31,-24 150: -31,-25 - 664: 24,-59 - 665: 24,-60 - 666: 24,-49 - 667: 24,-48 - 668: 20,-53 - 669: 20,-55 - 670: 28,-55 - 671: 28,-53 - 776: 40,-54 789: 42,-52 790: 42,-51 - 1151: -30,-55 - 1152: -32,-53 - 1153: -32,-52 - 1158: -32,-58 - 1159: -32,-57 - 1180: -32,-39 - 1181: -32,-40 - 1186: -32,-35 - 1187: -32,-34 - 1194: -30,-37 - 1286: -40,-43 - 1287: -40,-49 - 2702: 7,-37 - 2703: 7,-36 - 2704: 7,-35 - 2720: 23,-37 - 2721: 23,-36 - 2722: 23,-35 - 2747: 7,-55 - 2748: 7,-54 - 2749: 7,-53 - 2750: 18,-53 - 2751: 18,-55 - 2820: -15,-38 - 2821: -15,-39 - 2822: -15,-40 - 2823: -26,-38 - 2824: -26,-37 - 2825: -26,-36 - 2845: 16,-14 - 2846: 16,-13 - 2847: 16,-12 - 2865: 27,-45 - 2866: 27,-44 - 2878: -9,-14 - 2879: -9,-13 - 2880: -9,-12 - 2921: -27,-56 - 2922: -27,-58 3682: -7,-18 - 3866: -35,-59 4188: 28,-29 - 4424: 34,-23 - 4425: 34,-24 - 4426: 34,-25 - node: color: '#00000054' id: MiniTileDiagonalCheckerAOverlay decals: 1376: -20,-36 1377: -20,-35 - - node: - color: '#00000056' - id: MiniTileDiagonalCheckerAOverlay - decals: - 3709: -20,-38 - 3716: -20,-28 - node: color: '#0000006C' id: MiniTileDiagonalCheckerAOverlay @@ -3330,12 +2586,6 @@ entities: id: MiniTileEndOverlayW decals: 3677: -8,-18 - - node: - color: '#334E6DC8' - id: MiniTileInnerOverlayNE - decals: - 4906: -35,-50 - 4907: -35,-42 - node: color: '#52B4E996' id: MiniTileInnerOverlayNE @@ -3401,11 +2651,6 @@ entities: 552: -1,1 553: 6,1 582: 4,-7 - - node: - color: '#D381C926' - id: MiniTileInnerOverlayNW - decals: - 2230: -4,-23 - node: color: '#D381C933' id: MiniTileInnerOverlayNW @@ -3416,12 +2661,6 @@ entities: id: MiniTileInnerOverlayNW decals: 1875: 55,-20 - - node: - color: '#334E6DC8' - id: MiniTileInnerOverlaySE - decals: - 4905: -35,-50 - 4908: -35,-42 - node: color: '#52B4E996' id: MiniTileInnerOverlaySE @@ -3456,7 +2695,6 @@ entities: id: MiniTileInnerOverlaySE decals: 1121: -28,-65 - 1150: -18,-57 - node: color: '#FF800066' id: MiniTileInnerOverlaySE @@ -3489,11 +2727,6 @@ entities: id: MiniTileInnerOverlaySW decals: 3816: 14,-85 - - node: - color: '#D381C926' - id: MiniTileInnerOverlaySW - decals: - 2231: -4,-20 - node: color: '#D381C933' id: MiniTileInnerOverlaySW @@ -3503,13 +2736,12 @@ entities: color: '#DE3A3A96' id: MiniTileInnerOverlaySW decals: - 4658: 56,-39 + 5188: 56,-39 - node: color: '#EFB34196' id: MiniTileInnerOverlaySW decals: 1122: -26,-65 - 1149: -14,-57 - node: color: '#FF940093' id: MiniTileInnerOverlaySW @@ -3523,11 +2755,6 @@ entities: id: MiniTileLineOverlayE decals: 1598: 7,-17 - - node: - color: '#9FED5896' - id: MiniTileLineOverlayE - decals: - 1444: 29,-51 - node: color: '#DE3A3A96' id: MiniTileLineOverlayE @@ -3557,45 +2784,23 @@ entities: decals: 255: 22,-92 256: 26,-92 - - node: - color: '#334E6DC8' - id: MiniTileLineOverlayN - decals: - 4884: -34,-45 - 4885: -35,-45 - 4886: -36,-45 - 4887: -37,-45 - node: color: '#43995C96' id: MiniTileLineOverlayN decals: 4384: 35,-18 - - node: - color: '#52B4E996' - id: MiniTileLineOverlayN - decals: - 3626: 14,-35 - 3627: 15,-35 - 3628: 16,-35 - node: color: '#9FED5896' id: MiniTileLineOverlayN decals: 1442: -27,-12 3399: 66,-24 - 3411: 4,-35 - 4209: 52,-24 - node: color: '#D10000A3' id: MiniTileLineOverlayN decals: 257: 19,-92 258: 28,-92 - - node: - color: '#D381C926' - id: MiniTileLineOverlayN - decals: - 2225: -5,-23 - node: color: '#DE3A3A96' id: MiniTileLineOverlayN @@ -3609,15 +2814,6 @@ entities: 3710: -21,-32 3711: -20,-32 3712: -19,-32 - - node: - color: '#334E6DC8' - id: MiniTileLineOverlayS - decals: - 3809: 11,-55 - 4880: -35,-47 - 4881: -36,-47 - 4882: -37,-47 - 4883: -34,-47 - node: color: '#3C44AA33' id: MiniTileLineOverlayS @@ -3630,17 +2826,6 @@ entities: 3615: 14,-33 3616: 15,-33 3617: 16,-33 - - node: - color: '#9FED5896' - id: MiniTileLineOverlayS - decals: - 1446: 20,-80 - 1448: -1,-71 - - node: - color: '#D381C926' - id: MiniTileLineOverlayS - decals: - 2229: -5,-20 - node: color: '#DE3A3A96' id: MiniTileLineOverlayS @@ -3652,9 +2837,6 @@ entities: id: MiniTileLineOverlayS decals: 1120: -27,-65 - 1146: -17,-57 - 1147: -16,-57 - 1148: -15,-57 - node: color: '#3C44AA33' id: MiniTileLineOverlayW @@ -3666,18 +2848,7 @@ entities: color: '#9FED5896' id: MiniTileLineOverlayW decals: - 1440: -35,-57 - 1454: -15,-35 - 1912: 8,-71 4109: 17,-93 - 4586: 25,-20 - 4957: 23,-32 - - node: - color: '#D381C926' - id: MiniTileLineOverlayW - decals: - 2226: -4,-22 - 2227: -4,-21 - node: color: '#DE3A3A96' id: MiniTileLineOverlayW @@ -3716,7 +2887,6 @@ entities: decals: 297: 24,-94 1118: -28,-65 - 1145: -18,-57 1888: 46,-17 3814: 15,-85 4654: 54,-39 @@ -3726,18 +2896,15 @@ entities: id: MiniTileSteelInnerSw decals: 1117: -26,-65 - 1144: -14,-57 1887: 46,-17 2967: 19,-19 3041: 18,-98 3815: 14,-85 - 4653: 56,-39 - node: color: '#FFFFFFFF' id: MiniTileSteelLineE decals: 1114: -28,-66 - 1443: 29,-51 1597: 7,-17 1882: 46,-18 4342: 66,-40 @@ -3758,11 +2925,6 @@ entities: 1879: 47,-19 1880: 48,-19 3398: 66,-24 - 3410: 4,-35 - 3623: 14,-35 - 3624: 15,-35 - 3625: 16,-35 - 4208: 52,-24 4344: 71,-45 4347: 58,-32 4348: 59,-32 @@ -3775,11 +2937,6 @@ entities: id: MiniTileSteelLineS decals: 1116: -27,-65 - 1141: -17,-57 - 1142: -16,-57 - 1143: -15,-57 - 1445: 20,-80 - 1447: -1,-71 1719: 55,-15 1720: 54,-15 1725: 56,-15 @@ -3787,7 +2944,6 @@ entities: 2963: 17,-19 2964: 18,-19 3040: 17,-98 - 3807: 11,-55 4351: 55,-35 4352: 52,-35 4620: 65,-49 @@ -3796,8 +2952,6 @@ entities: color: '#FFFFFFFF' id: MiniTileSteelLineW decals: - 1439: -35,-57 - 1453: -15,-35 1722: 53,-14 1881: 46,-18 2965: 19,-20 @@ -3807,145 +2961,34 @@ entities: 3039: 18,-99 4108: 17,-93 4346: 61,-37 - 4585: 25,-20 4650: 56,-40 - 4956: 23,-32 - - node: - color: '#1488C2FF' - id: MiniTileWhiteInnerNe - decals: - 606: 16,-67 - - node: - color: '#41920FFF' - id: MiniTileWhiteInnerNe - decals: - 598: -1,-54 - - node: - color: '#48AC56FF' - id: MiniTileWhiteInnerNe - decals: - 613: 14,-67 - - node: - color: '#1488C2FF' - id: MiniTileWhiteInnerNw - decals: - 607: 18,-67 - - node: - color: '#41920FFF' - id: MiniTileWhiteInnerNw - decals: - 599: 1,-54 - - node: - color: '#48AC56FF' - id: MiniTileWhiteInnerNw - decals: - 614: 16,-67 - - node: - color: '#41920FFF' - id: MiniTileWhiteInnerSe - decals: - 600: -1,-52 - node: color: '#48AC56FF' id: MiniTileWhiteInnerSe decals: 4834: 38,-47 - - node: - color: '#DE8000FF' - id: MiniTileWhiteInnerSe - decals: - 593: -1,-57 - node: color: '#48AC56FF' id: MiniTileWhiteInnerSw decals: 4833: 40,-47 - - node: - color: '#DE8000FF' - id: MiniTileWhiteInnerSw - decals: - 592: 1,-57 - - node: - color: '#1488C2FF' - id: MiniTileWhiteLineE - decals: - 603: 16,-66 - - node: - color: '#41920FFF' - id: MiniTileWhiteLineE - decals: - 595: -1,-53 - - node: - color: '#48AC56FF' - id: MiniTileWhiteLineE - decals: - 610: 14,-66 - - node: - color: '#DE8000FF' - id: MiniTileWhiteLineE - decals: - 590: -1,-58 - - node: - color: '#1488C2FF' - id: MiniTileWhiteLineN - decals: - 604: 17,-67 - - node: - color: '#41920FFF' - id: MiniTileWhiteLineN - decals: - 596: 0,-54 - - node: - color: '#48AC56FF' - id: MiniTileWhiteLineN - decals: - 612: 15,-67 - node: color: '#48AC56FF' id: MiniTileWhiteLineS decals: 4832: 39,-47 - - node: - color: '#DE8000FF' - id: MiniTileWhiteLineS - decals: - 589: 0,-57 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineS decals: - 144: 9,-42 - 145: 10,-42 - 146: 11,-42 3609: 14,-33 3610: 15,-33 3611: 16,-33 - - node: - color: '#1488C2FF' - id: MiniTileWhiteLineW - decals: - 605: 18,-66 - - node: - color: '#41920FFF' - id: MiniTileWhiteLineW - decals: - 597: 1,-53 - node: color: '#48AC56FF' id: MiniTileWhiteLineW decals: - 611: 16,-66 4831: 40,-48 - - node: - color: '#DE8000FF' - id: MiniTileWhiteLineW - decals: - 591: 1,-58 - - node: - color: '#334E6DC8' - id: MonoOverlay - decals: - 4894: -34,-43 - node: color: '#D381C971' id: MonoOverlay @@ -3992,13 +3035,12 @@ entities: 1100: -26,-62 1101: -27,-62 - node: - color: '#FED83D94' + color: '#EFDB4196' id: QuarterTileOverlayGreyscale decals: - 51: -23,-51 - 52: -23,-52 - 53: -23,-53 - 54: -23,-50 + 5083: -23,-52 + 5084: -23,-51 + 5085: -23,-50 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 @@ -4021,11 +3063,6 @@ entities: id: QuarterTileOverlayGreyscale180 decals: 4512: 19,-25 - - node: - color: '#00000067' - id: QuarterTileOverlayGreyscale270 - decals: - 2588: -23,-40 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 @@ -4082,13 +3119,12 @@ entities: 1104: -18,-64 1105: -17,-64 - node: - color: '#FED83D94' + color: '#EFDB4196' id: QuarterTileOverlayGreyscale90 decals: - 47: -20,-50 - 48: -20,-51 - 49: -20,-52 - 50: -20,-53 + 5086: -20,-52 + 5087: -20,-51 + 5088: -20,-50 - node: color: '#FFFFFFFF' id: Rock06 @@ -4109,11 +3145,67 @@ entities: 2424: 25,-81 4555: 59,-45 4556: 60,-45 + 5178: -39,-11 - node: - color: '#00000067' - id: ThreeQuarterTileOverlayGreyscale + color: '#D4D4D496' + id: StencilLetterA decals: - 2591: -26,-30 + 5162: -1,-11 + 5169: 4,-11 + 5174: -35,-13 + - node: + color: '#334E6DC8' + id: StencilLetterB + decals: + 5189: -33,-42 + 5190: -33,-50 + - node: + color: '#D4D4D496' + id: StencilLetterC + decals: + 5175: -34,-13 + - node: + color: '#D4D4D496' + id: StencilLetterE + decals: + 5172: -37,-13 + - node: + color: '#D4D4D496' + id: StencilLetterI + decals: + 5167: 2,-11 + - node: + color: '#D4D4D496' + id: StencilLetterL + decals: + 5170: 5,-11 + - node: + color: '#D4D4D496' + id: StencilLetterR + decals: + 5165: 0,-11 + 5166: 1,-11 + - node: + color: '#D4D4D496' + id: StencilLetterS + decals: + 5171: 6,-11 + - node: + color: '#D4D4D496' + id: StencilLetterV + decals: + 5168: 3,-11 + 5173: -36,-13 + - node: + color: '#334E6DC8' + id: StencilNumber1 + decals: + 5126: -32,-42 + - node: + color: '#334E6DC8' + id: StencilNumber2 + decals: + 5191: -32,-50 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale @@ -4126,11 +3218,6 @@ entities: decals: 4692: 58,-27 4720: 62,-33 - - node: - color: '#00000067' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 2592: -17,-43 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 @@ -4143,12 +3230,6 @@ entities: decals: 4689: 60,-30 4722: 64,-36 - - node: - color: '#00000067' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 2589: -23,-43 - 2590: -26,-40 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 @@ -4174,21 +3255,21 @@ entities: decals: 4691: 60,-27 4721: 64,-33 + - node: + color: '#43990996' + id: WarnBox + decals: + 5092: 0,-53 + 5093: 0,-53 - node: color: '#FFFFFFFF' id: WarnBox decals: 584: 17,-66 586: 0,-58 - 587: 0,-53 608: 15,-66 4356: 20,-26 4835: 39,-48 - - node: - color: '#41AC28FF' - id: WarnBoxGreyscale - decals: - 594: 0,-53 - node: color: '#48D256FF' id: WarnBoxGreyscale @@ -4210,11 +3291,69 @@ entities: id: WarnBoxGreyscale decals: 588: 0,-58 + - node: + color: '#D381C996' + id: WarnCornerGreyscaleNE + decals: + 5074: -4,-20 + - node: + color: '#FFFFFFFF' + id: WarnCornerGreyscaleNE + decals: + 4997: 30,-25 + 5006: -7,-43 + 5062: -4,-25 + - node: + color: '#FFFFFFFF' + id: WarnCornerGreyscaleNW + decals: + 4996: 27,-25 + 5007: -11,-43 + 5063: -6,-25 + - node: + color: '#D381C996' + id: WarnCornerGreyscaleSE + decals: + 5077: -4,-23 + 5080: -7,-26 + - node: + color: '#FFFFFFFF' + id: WarnCornerGreyscaleSE + decals: + 4995: 23,-25 + 5009: -7,-44 + 5066: -4,-27 + - node: + color: '#FFFFFFFF' + id: WarnCornerGreyscaleSW + decals: + 4985: -10,-50 + 5008: -11,-44 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: 1089: 6,-18 + 4968: 25,-53 + 5052: -4,-34 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 4969: 23,-53 + 5053: -11,-34 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 4967: 25,-55 + 5048: -4,-38 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 4966: 23,-55 + 5047: -11,-38 - node: color: '#D381C9FF' id: WarnCornerSmallGreyscaleNE @@ -4234,6 +3373,11 @@ entities: 3120: -8,-24 3123: -18,-24 3483: -16,-20 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleNW + decals: + 5069: -6,-27 - node: color: '#D381C9FF' id: WarnCornerSmallGreyscaleSE @@ -4322,6 +3466,11 @@ entities: id: WarnEndGreyscaleW decals: 4547: 58,-45 + - node: + color: '#FFFFFFFF' + id: WarnEndGreyscaleW + decals: + 5068: -7,-27 - node: color: '#FFFFFFFF' id: WarnEndW @@ -4385,12 +3534,27 @@ entities: 4764: 76,-44 4766: 82,-45 4767: 82,-47 + 4972: 25,-54 + 5049: -4,-37 + 5050: -4,-36 + 5051: -4,-35 + 5117: -35,-50 + 5118: -35,-49 + 5119: -35,-43 + 5120: -35,-42 - node: color: '#33A9E7FF' id: WarnLineGreyscaleE decals: 3820: 28,-61 3821: 28,-62 + - node: + color: '#D381C996' + id: WarnLineGreyscaleE + decals: + 5075: -4,-21 + 5076: -4,-22 + 5081: -7,-25 - node: color: '#D381C9FF' id: WarnLineGreyscaleE @@ -4409,13 +3573,20 @@ entities: 4699: 65,-35 4700: 65,-34 - node: - color: '#70FFB3FF' + color: '#FFFFFFFF' + id: WarnLineGreyscaleE + decals: + 5000: 23,-24 + 5001: 23,-23 + 5065: -4,-26 + - node: + color: '#D381C996' id: WarnLineGreyscaleN decals: - 39: -35,-47 - 40: -36,-47 - 41: -37,-47 - 42: -34,-47 + 5019: -9,-29 + 5020: -8,-29 + 5072: -6,-20 + 5073: -5,-20 - node: color: '#D381C9FF' id: WarnLineGreyscaleN @@ -4427,20 +3598,41 @@ entities: color: '#DE3A3AFF' id: WarnLineGreyscaleN decals: - 4119: 58,-22 - 4120: 59,-22 - 4121: 61,-22 4239: 51,-32 4551: 59,-45 4552: 60,-45 - node: - color: '#70FFB3FF' + color: '#FFFFFFFF' + id: WarnLineGreyscaleN + decals: + 4998: 29,-25 + 4999: 28,-25 + 5013: -10,-43 + 5014: -9,-43 + 5064: -5,-25 + 5114: -37,-45 + 5115: -36,-45 + 5116: -35,-45 + 5140: -43,-41 + 5141: -42,-41 + 5142: -41,-41 + 5143: -40,-41 + 5144: -39,-41 + - node: + color: '#52B4E996' id: WarnLineGreyscaleS decals: - 36: -37,-45 - 37: -36,-45 - 38: -35,-45 - 43: -34,-45 + 5004: 28,-25 + 5005: 29,-25 + - node: + color: '#D381C996' + id: WarnLineGreyscaleS + decals: + 5078: -5,-23 + 5079: -6,-23 + 5131: 8,-74 + 5132: 9,-74 + 5133: 10,-74 - node: color: '#D381C9FF' id: WarnLineGreyscaleS @@ -4470,15 +3662,40 @@ entities: 1640: 54,-21 1641: 55,-21 1642: 56,-21 - 4122: 58,-22 - 4123: 59,-22 - 4124: 61,-22 4542: 61,-44 4543: 60,-44 4544: 59,-44 4545: 58,-44 4549: 59,-45 4550: 60,-45 + - node: + color: '#FFDB41FF' + id: WarnLineGreyscaleS + decals: + 4991: -26,-59 + 4992: -27,-59 + 4993: -25,-59 + 4994: -24,-59 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleS + decals: + 4983: -8,-50 + 4984: -9,-50 + 5010: -9,-44 + 5011: -8,-44 + 5012: -10,-44 + 5061: -5,-27 + 5067: -6,-27 + 5109: -37,-47 + 5112: -35,-47 + 5113: -36,-47 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleW + decals: + 5002: 23,-24 + 5003: 23,-23 - node: color: '#D381C9FF' id: WarnLineGreyscaleW @@ -4490,6 +3707,18 @@ entities: id: WarnLineGreyscaleW decals: 4541: 62,-45 + - node: + color: '#FA750096' + id: WarnLineGreyscaleW + decals: + 5134: 23,-69 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleW + decals: + 4986: -10,-49 + 4987: -10,-48 + 5060: -6,-26 - node: color: '#FFFFFFFF' id: WarnLineN @@ -4542,9 +3771,6 @@ entities: 3912: -19,-71 3913: -18,-71 4096: 46,-68 - 4112: 59,-22 - 4113: 58,-22 - 4114: 61,-22 4172: 74,-61 4173: 75,-61 4514: 20,-25 @@ -4554,6 +3780,13 @@ entities: 4535: 60,-44 4536: 59,-44 4537: 58,-44 + 4971: 24,-55 + 5033: -10,-38 + 5034: -9,-38 + 5035: -8,-38 + 5036: -7,-38 + 5037: -6,-38 + 5038: -5,-38 - node: color: '#FFFFFFFF' id: WarnLineS @@ -4569,13 +3802,19 @@ entities: 3089: -18,-23 3112: -8,-23 3160: -10,-36 - 3316: 58,-20 3901: -31,-71 3906: -13,-70 4093: 47,-69 4094: 47,-70 4095: 47,-71 4533: 62,-45 + 4973: 23,-54 + 5045: -11,-35 + 5046: -11,-37 + 5121: -30,-43 + 5122: -30,-42 + 5123: -30,-50 + 5124: -30,-49 - node: color: '#FFFFFFFF' id: WarnLineW @@ -4593,9 +3832,6 @@ entities: 3466: -17,-17 3467: -17,-20 4097: 46,-72 - 4110: 61,-22 - 4111: 59,-22 - 4115: 58,-22 4170: 75,-63 4171: 74,-63 4529: 59,-45 @@ -4603,6 +3839,13 @@ entities: 4806: 49,-98 4807: 50,-98 4808: 51,-98 + 4970: 24,-53 + 5039: -10,-34 + 5040: -9,-34 + 5041: -8,-34 + 5042: -7,-34 + 5043: -6,-34 + 5044: -5,-34 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' @@ -4932,7 +4175,9 @@ entities: -1,-5: 0: 65485 -4,-8: - 0: 58574 + 0: 58589 + -4,-9: + 0: 56797 -5,-8: 0: 7579 -4,-7: @@ -4945,8 +4190,6 @@ entities: 0: 65524 -5,-5: 0: 56799 - -4,-9: - 0: 61166 -3,-8: 0: 47359 -3,-7: @@ -4970,7 +4213,7 @@ entities: -1,-6: 0: 56796 -1,-9: - 0: 65535 + 0: 65279 0,-8: 0: 22015 0,-7: @@ -5136,7 +4379,7 @@ entities: 6,-10: 0: 15291 6,-13: - 0: 65534 + 0: 65535 7,-12: 0: 65523 7,-11: @@ -5162,9 +4405,9 @@ entities: -5,-11: 0: 65520 -4,-10: - 0: 61439 + 0: 53247 -5,-10: - 0: 8191 + 0: 40959 -5,-9: 0: 48029 -4,-13: @@ -5174,7 +4417,7 @@ entities: -3,-11: 0: 61678 -3,-10: - 0: 65535 + 0: 65023 -3,-13: 0: 65262 -2,-12: @@ -5206,7 +4449,7 @@ entities: -8,-4: 0: 65533 -8,-9: - 0: 53246 + 0: 53247 -7,-8: 0: 7645 -7,-7: @@ -5254,9 +4497,9 @@ entities: -9,-11: 0: 16371 -8,-10: - 0: 52991 + 0: 61439 -9,-10: - 0: 32760 + 0: 65528 -9,-9: 0: 20207 -8,-12: @@ -5272,7 +4515,7 @@ entities: -6,-12: 0: 61422 -6,-10: - 0: 4095 + 0: 8191 -6,-11: 0: 61156 -5,-13: @@ -5280,7 +4523,7 @@ entities: -1,-16: 0: 4095 0,-16: - 0: 26208 + 0: 58976 0,-15: 0: 30479 -1,-15: @@ -5326,7 +4569,7 @@ entities: 5,-15: 0: 65512 5,-14: - 0: 64511 + 0: 65535 5,-17: 0: 35771 6,-16: @@ -5334,7 +4577,7 @@ entities: 6,-15: 0: 65523 6,-14: - 0: 65534 + 0: 65531 6,-17: 0: 46079 7,-16: @@ -5437,9 +4680,9 @@ entities: -9,-15: 0: 61158 -8,-14: - 0: 65230 + 0: 65519 -9,-14: - 0: 61038 + 0: 61166 -9,-13: 0: 65336 -7,-16: @@ -5502,10 +4745,10 @@ entities: 0: 65456 -10,-16: 0: 18020 + -10,-12: + 0: 49084 -9,-16: 0: 30583 - -10,-12: - 0: 49080 -9,-17: 0: 30707 -9,-12: @@ -5526,7 +4769,7 @@ entities: -13,-9: 0: 12 -11,-11: - 0: 65523 + 0: 65527 -11,-9: 0: 15 1: 65280 @@ -6470,7 +5713,7 @@ entities: 16,-6: 0: 60967 15,-6: - 0: 64143 + 0: 64399 16,-5: 0: 1918 15,-5: @@ -6519,9 +5762,9 @@ entities: 11,-7: 0: 63590 12,-6: - 0: 65407 + 0: 65295 11,-6: - 0: 65535 + 0: 65295 12,-5: 0: 11775 11,-5: @@ -6529,9 +5772,9 @@ entities: 12,-4: 0: 4095 13,-7: - 0: 64952 + 0: 63928 13,-6: - 0: 65487 + 0: 65295 13,-5: 0: 65023 13,-4: @@ -6539,7 +5782,7 @@ entities: 14,-7: 0: 61919 14,-6: - 0: 57119 + 0: 57103 14,-5: 0: 57119 14,-4: @@ -6566,7 +5809,7 @@ entities: 10,-7: 0: 64461 10,-6: - 0: 53215 + 0: 53007 10,-5: 0: 63485 10,-9: @@ -7051,6 +6294,8 @@ entities: - 19139 - 19838 - 19837 + - type: Fixtures + fixtures: {} - uid: 459 components: - type: Transform @@ -7068,6 +6313,8 @@ entities: - 19831 - 19832 - 19833 + - type: Fixtures + fixtures: {} - uid: 8767 components: - type: Transform @@ -7084,6 +6331,8 @@ entities: - 6667 - 13188 - 4984 + - type: Fixtures + fixtures: {} - uid: 8816 components: - type: Transform @@ -7099,6 +6348,8 @@ entities: - 4166 - 3444 - 3445 + - type: Fixtures + fixtures: {} - uid: 9115 components: - type: Transform @@ -7108,6 +6359,8 @@ entities: devices: - 6133 - 9819 + - type: Fixtures + fixtures: {} - uid: 14458 components: - type: Transform @@ -7133,6 +6386,8 @@ entities: - 9647 - 7459 - 1833 + - type: Fixtures + fixtures: {} - uid: 14460 components: - type: Transform @@ -7156,6 +6411,8 @@ entities: - 8775 - 19234 - 19235 + - type: Fixtures + fixtures: {} - uid: 14590 components: - type: Transform @@ -7174,6 +6431,8 @@ entities: - 7135 - 8640 - 18857 + - type: Fixtures + fixtures: {} - uid: 14592 components: - type: Transform @@ -7186,6 +6445,8 @@ entities: - 8872 - 16901 - 18857 + - type: Fixtures + fixtures: {} - uid: 14593 components: - type: Transform @@ -7200,6 +6461,8 @@ entities: - 14595 - 9428 - 14713 + - type: Fixtures + fixtures: {} - uid: 14636 components: - type: Transform @@ -7213,6 +6476,8 @@ entities: - 8665 - 15401 - 8712 + - type: Fixtures + fixtures: {} - uid: 14642 components: - type: Transform @@ -7231,6 +6496,8 @@ entities: - 1595 - 18775 - 3279 + - type: Fixtures + fixtures: {} - uid: 14682 components: - type: Transform @@ -7245,6 +6512,8 @@ entities: - 6977 - 6978 - 3659 + - type: Fixtures + fixtures: {} - uid: 14752 components: - type: Transform @@ -7258,6 +6527,8 @@ entities: - 8760 - 14754 - 18091 + - type: Fixtures + fixtures: {} - uid: 14757 components: - type: Transform @@ -7277,6 +6548,8 @@ entities: - 1698 - 18843 - 18844 + - type: Fixtures + fixtures: {} - uid: 14759 components: - type: Transform @@ -7288,6 +6561,8 @@ entities: - 19924 - 9080 - 12242 + - type: Fixtures + fixtures: {} - uid: 14778 components: - type: Transform @@ -7302,6 +6577,8 @@ entities: - 14547 - 14549 - 14545 + - type: Fixtures + fixtures: {} - uid: 16343 components: - type: Transform @@ -7312,6 +6589,8 @@ entities: devices: - 17517 - 17518 + - type: Fixtures + fixtures: {} - uid: 16344 components: - type: Transform @@ -7321,6 +6600,8 @@ entities: devices: - 17943 - 17926 + - type: Fixtures + fixtures: {} - uid: 16345 components: - type: Transform @@ -7331,6 +6612,8 @@ entities: devices: - 17695 - 17700 + - type: Fixtures + fixtures: {} - uid: 16346 components: - type: Transform @@ -7346,6 +6629,8 @@ entities: - 19907 - 17956 - 17957 + - type: Fixtures + fixtures: {} - uid: 16353 components: - type: Transform @@ -7356,6 +6641,8 @@ entities: devices: - 17908 - 17909 + - type: Fixtures + fixtures: {} - uid: 16354 components: - type: Transform @@ -7381,6 +6668,8 @@ entities: - 19907 - 17906 - 17997 + - type: Fixtures + fixtures: {} - uid: 16356 components: - type: Transform @@ -7397,6 +6686,8 @@ entities: - 17601 - 17516 - 17996 + - type: Fixtures + fixtures: {} - uid: 17282 components: - type: Transform @@ -7412,6 +6703,8 @@ entities: - 18547 - 2334 - 2406 + - type: Fixtures + fixtures: {} - uid: 17993 components: - type: Transform @@ -7422,6 +6715,8 @@ entities: devices: - 17992 - 17990 + - type: Fixtures + fixtures: {} - uid: 18013 components: - type: Transform @@ -7438,6 +6733,8 @@ entities: - 17153 - 18091 - 13567 + - type: Fixtures + fixtures: {} - uid: 18059 components: - type: Transform @@ -7456,6 +6753,8 @@ entities: - 7109 - 2155 - 4170 + - type: Fixtures + fixtures: {} - uid: 18493 components: - type: Transform @@ -7467,6 +6766,8 @@ entities: - 16173 - 13567 - 3659 + - type: Fixtures + fixtures: {} - uid: 18818 components: - type: Transform @@ -7475,18 +6776,6 @@ entities: parent: 2 - type: DeviceList devices: - - 11725 - - 11724 - - 11723 - - 7979 - - 11721 - - 11720 - - 11719 - - 11718 - - 11717 - - 11716 - - 11715 - - 11712 - 4169 - 8778 - 18055 @@ -7499,6 +6788,8 @@ entities: - 9082 - 9066 - 19872 + - type: Fixtures + fixtures: {} - uid: 19220 components: - type: Transform @@ -7508,6 +6799,8 @@ entities: devices: - 19267 - 8020 + - type: Fixtures + fixtures: {} - uid: 19835 components: - type: Transform @@ -7520,6 +6813,8 @@ entities: - 19834 - 8832 - 8831 + - type: Fixtures + fixtures: {} - uid: 19836 components: - type: Transform @@ -7533,6 +6828,8 @@ entities: - 14635 - 14634 - 10070 + - type: Fixtures + fixtures: {} - uid: 19905 components: - type: Transform @@ -7543,6 +6840,8 @@ entities: devices: - 17267 - 17265 + - type: Fixtures + fixtures: {} - uid: 19909 components: - type: Transform @@ -7557,6 +6856,8 @@ entities: - 19906 - 19912 - 3447 + - type: Fixtures + fixtures: {} - uid: 19911 components: - type: Transform @@ -7570,6 +6871,8 @@ entities: - 16247 - 17913 - 17911 + - type: Fixtures + fixtures: {} - proto: AirAlarmFreezer entities: - uid: 7344 @@ -7578,6 +6881,8 @@ entities: rot: 3.141592653589793 rad pos: 44.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: AirAlarmXeno entities: - uid: 469 @@ -7611,6 +6916,8 @@ entities: - 19825 - 19826 - 19827 + - type: Fixtures + fixtures: {} - uid: 569 components: - type: Transform @@ -7632,6 +6939,8 @@ entities: - 19893 - 19894 - 19895 + - type: Fixtures + fixtures: {} - uid: 572 components: - type: Transform @@ -7647,6 +6956,8 @@ entities: - 9613 - 6422 - 18812 + - type: Fixtures + fixtures: {} - uid: 579 components: - type: Transform @@ -7657,9 +6968,6 @@ entities: devices: - 14728 - 7109 - - 11725 - - 11724 - - 11723 - 9877 - 9383 - 16452 @@ -7667,6 +6975,8 @@ entities: - 19871 - 19870 - 8480 + - type: Fixtures + fixtures: {} - uid: 1075 components: - type: Transform @@ -7685,6 +6995,8 @@ entities: - 18797 - 8791 - 19204 + - type: Fixtures + fixtures: {} - uid: 1212 components: - type: Transform @@ -7702,6 +7014,8 @@ entities: - 4096 - 19820 - 19821 + - type: Fixtures + fixtures: {} - uid: 1751 components: - type: Transform @@ -7718,6 +7032,8 @@ entities: - 19841 - 19840 - 19839 + - type: Fixtures + fixtures: {} - uid: 1876 components: - type: Transform @@ -7739,6 +7055,8 @@ entities: - 8498 - 9715 - 2462 + - type: Fixtures + fixtures: {} - uid: 2110 components: - type: Transform @@ -7757,6 +7075,8 @@ entities: - 2462 - 19815 - 811 + - type: Fixtures + fixtures: {} - uid: 2197 components: - type: Transform @@ -7768,6 +7088,8 @@ entities: - 8683 - 18805 - 262 + - type: Fixtures + fixtures: {} - uid: 3424 components: - type: Transform @@ -7783,6 +7105,8 @@ entities: - 8548 - 8549 - 16872 + - type: Fixtures + fixtures: {} - uid: 3897 components: - type: Transform @@ -7814,6 +7138,8 @@ entities: - 8107 - 16242 - 19830 + - type: Fixtures + fixtures: {} - uid: 5107 components: - type: Transform @@ -7830,6 +7156,8 @@ entities: - 7956 - 10474 - 10473 + - type: Fixtures + fixtures: {} - uid: 5159 components: - type: Transform @@ -7838,6 +7166,8 @@ entities: - type: DeviceList devices: - 5168 + - type: Fixtures + fixtures: {} - uid: 5526 components: - type: Transform @@ -7853,6 +7183,8 @@ entities: - 9494 - 14797 - 19819 + - type: Fixtures + fixtures: {} - uid: 5862 components: - type: Transform @@ -7864,6 +7196,8 @@ entities: - 10342 - 10341 - 8758 + - type: Fixtures + fixtures: {} - uid: 6342 components: - type: Transform @@ -7875,6 +7209,8 @@ entities: - 14786 - 14785 - 8649 + - type: Fixtures + fixtures: {} - uid: 6347 components: - type: Transform @@ -7892,6 +7228,8 @@ entities: - 8439 - 8438 - 18862 + - type: Fixtures + fixtures: {} - uid: 6358 components: - type: Transform @@ -7905,6 +7243,8 @@ entities: - 3448 - 19873 - 19874 + - type: Fixtures + fixtures: {} - uid: 6406 components: - type: Transform @@ -7919,6 +7259,8 @@ entities: - 8433 - 8434 - 19885 + - type: Fixtures + fixtures: {} - uid: 6407 components: - type: Transform @@ -7932,6 +7274,8 @@ entities: - 8860 - 8859 - 8721 + - type: Fixtures + fixtures: {} - uid: 6410 components: - type: Transform @@ -7946,6 +7290,8 @@ entities: - 8493 - 8862 - 8863 + - type: Fixtures + fixtures: {} - uid: 6411 components: - type: Transform @@ -7965,6 +7311,8 @@ entities: - 19800 - 19801 - 8751 + - type: Fixtures + fixtures: {} - uid: 6413 components: - type: Transform @@ -7986,6 +7334,8 @@ entities: - 19805 - 19807 - 19808 + - type: Fixtures + fixtures: {} - uid: 6416 components: - type: Transform @@ -7997,6 +7347,8 @@ entities: - 8713 - 8714 - 8715 + - type: Fixtures + fixtures: {} - uid: 6646 components: - type: Transform @@ -8015,6 +7367,8 @@ entities: - 19797 - 19798 - 4002 + - type: Fixtures + fixtures: {} - uid: 7245 components: - type: Transform @@ -8025,6 +7379,8 @@ entities: devices: - 6701 - 9820 + - type: Fixtures + fixtures: {} - uid: 7310 components: - type: Transform @@ -8041,6 +7397,8 @@ entities: - 3081 - 18842 - 19920 + - type: Fixtures + fixtures: {} - uid: 7582 components: - type: Transform @@ -8053,6 +7411,8 @@ entities: - 18293 - 18312 - 6423 + - type: Fixtures + fixtures: {} - uid: 7875 components: - type: Transform @@ -8063,6 +7423,8 @@ entities: devices: - 9546 - 8705 + - type: Fixtures + fixtures: {} - uid: 8130 components: - type: Transform @@ -8072,6 +7434,8 @@ entities: - type: DeviceList devices: - 1112 + - type: Fixtures + fixtures: {} - uid: 9180 components: - type: Transform @@ -8093,6 +7457,8 @@ entities: - 5577 - 5575 - 5576 + - type: Fixtures + fixtures: {} - uid: 9190 components: - type: Transform @@ -8114,6 +7480,8 @@ entities: - 19812 - 19814 - 19813 + - type: Fixtures + fixtures: {} - uid: 9195 components: - type: Transform @@ -8133,6 +7501,8 @@ entities: - 10030 - 20047 - 20048 + - type: Fixtures + fixtures: {} - uid: 9198 components: - type: Transform @@ -8150,6 +7520,8 @@ entities: - 11336 - 18786 - 8605 + - type: Fixtures + fixtures: {} - uid: 9199 components: - type: Transform @@ -8166,6 +7538,8 @@ entities: - 19830 - 19829 - 19828 + - type: Fixtures + fixtures: {} - uid: 9216 components: - type: Transform @@ -8185,6 +7559,8 @@ entities: - 19892 - 19891 - 8759 + - type: Fixtures + fixtures: {} - uid: 9234 components: - type: Transform @@ -8206,6 +7582,8 @@ entities: - 15243 - 15173 - 14797 + - type: Fixtures + fixtures: {} - uid: 9235 components: - type: Transform @@ -8224,6 +7602,8 @@ entities: - 19877 - 19878 - 19879 + - type: Fixtures + fixtures: {} - uid: 9236 components: - type: Transform @@ -8250,6 +7630,8 @@ entities: - 8417 - 8424 - 8556 + - type: Fixtures + fixtures: {} - uid: 9239 components: - type: Transform @@ -8277,6 +7659,8 @@ entities: - 19894 - 19895 - 19899 + - type: Fixtures + fixtures: {} - uid: 9240 components: - type: Transform @@ -8296,6 +7680,8 @@ entities: - 19896 - 19897 - 19898 + - type: Fixtures + fixtures: {} - uid: 9241 components: - type: Transform @@ -8312,6 +7698,8 @@ entities: - 8790 - 19882 - 1800 + - type: Fixtures + fixtures: {} - uid: 9243 components: - type: Transform @@ -8331,6 +7719,8 @@ entities: - 7012 - 9833 - 7056 + - type: Fixtures + fixtures: {} - uid: 9248 components: - type: Transform @@ -8346,6 +7736,8 @@ entities: - 9410 - 10326 - 19920 + - type: Fixtures + fixtures: {} - uid: 9262 components: - type: Transform @@ -8364,6 +7756,8 @@ entities: - 8730 - 8479 - 8731 + - type: Fixtures + fixtures: {} - uid: 9403 components: - type: Transform @@ -8386,6 +7780,8 @@ entities: - 19886 - 19889 - 19890 + - type: Fixtures + fixtures: {} - uid: 10429 components: - type: Transform @@ -8395,6 +7791,8 @@ entities: devices: - 8622 - 9834 + - type: Fixtures + fixtures: {} - uid: 10761 components: - type: Transform @@ -8414,6 +7812,8 @@ entities: - 18399 - 18398 - 15636 + - type: Fixtures + fixtures: {} - uid: 10839 components: - type: Transform @@ -8433,6 +7833,8 @@ entities: - 3747 - 9311 - 7594 + - type: Fixtures + fixtures: {} - uid: 12980 components: - type: Transform @@ -8442,6 +7844,8 @@ entities: devices: - 10474 - 10473 + - type: Fixtures + fixtures: {} - uid: 15885 components: - type: Transform @@ -8463,6 +7867,8 @@ entities: - 14692 - 18794 - 18793 + - type: Fixtures + fixtures: {} - uid: 16120 components: - type: Transform @@ -8479,6 +7885,8 @@ entities: - 9963 - 8717 - 4002 + - type: Fixtures + fixtures: {} - uid: 16312 components: - type: Transform @@ -8499,6 +7907,8 @@ entities: - 16910 - 16911 - 17995 + - type: Fixtures + fixtures: {} - uid: 16342 components: - type: Transform @@ -8509,6 +7919,8 @@ entities: devices: - 10595 - 10279 + - type: Fixtures + fixtures: {} - uid: 16362 components: - type: Transform @@ -8526,6 +7938,8 @@ entities: - 18554 - 18525 - 18731 + - type: Fixtures + fixtures: {} - uid: 16363 components: - type: Transform @@ -8539,6 +7953,8 @@ entities: - 18726 - 18725 - 18735 + - type: Fixtures + fixtures: {} - uid: 16367 components: - type: Transform @@ -8567,6 +7983,8 @@ entities: - 15526 - 1104 - 18400 + - type: Fixtures + fixtures: {} - uid: 16603 components: - type: Transform @@ -8579,6 +7997,8 @@ entities: - 18762 - 8847 - 8849 + - type: Fixtures + fixtures: {} - uid: 17680 components: - type: Transform @@ -8595,6 +8015,8 @@ entities: - 19825 - 19892 - 19891 + - type: Fixtures + fixtures: {} - uid: 18736 components: - type: Transform @@ -8607,6 +8029,8 @@ entities: - 18731 - 18665 - 18666 + - type: Fixtures + fixtures: {} - uid: 18783 components: - type: Transform @@ -8617,6 +8041,8 @@ entities: devices: - 8762 - 813 + - type: Fixtures + fixtures: {} - uid: 18864 components: - type: Transform @@ -8631,6 +8057,8 @@ entities: - 8677 - 8678 - 262 + - type: Fixtures + fixtures: {} - uid: 19200 components: - type: Transform @@ -8650,12 +8078,16 @@ entities: - 8844 - 8792 - 8718 + - type: Fixtures + fixtures: {} - uid: 19312 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-65.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19400 components: - type: Transform @@ -8674,6 +8106,8 @@ entities: - 19822 - 19823 - 19824 + - type: Fixtures + fixtures: {} - uid: 19419 components: - type: Transform @@ -8687,6 +8121,8 @@ entities: - 18786 - 9596 - 11935 + - type: Fixtures + fixtures: {} - uid: 19853 components: - type: Transform @@ -8706,6 +8142,8 @@ entities: - 19847 - 8644 - 9840 + - type: Fixtures + fixtures: {} - uid: 19856 components: - type: Transform @@ -8719,18 +8157,11 @@ entities: - 8550 - 9383 - 9877 - - 7979 - - 11721 - - 11720 - - 11719 - - 11718 - - 11717 - - 11716 - - 11715 - - 11712 - 18681 - 18673 - 18828 + - type: Fixtures + fixtures: {} - uid: 19876 components: - type: Transform @@ -8743,6 +8174,8 @@ entities: - 8818 - 2646 - 8740 + - type: Fixtures + fixtures: {} - uid: 19880 components: - type: Transform @@ -8765,6 +8198,8 @@ entities: - 18789 - 18811 - 19882 + - type: Fixtures + fixtures: {} - uid: 19883 components: - type: Transform @@ -8774,6 +8209,8 @@ entities: devices: - 9247 - 582 + - type: Fixtures + fixtures: {} - uid: 19884 components: - type: Transform @@ -8783,6 +8220,8 @@ entities: devices: - 10371 - 10370 + - type: Fixtures + fixtures: {} - uid: 19916 components: - type: Transform @@ -8796,6 +8235,8 @@ entities: - 19915 - 18832 - 591 + - type: Fixtures + fixtures: {} - uid: 19917 components: - type: Transform @@ -8805,6 +8246,8 @@ entities: - type: DeviceList devices: - 19064 + - type: Fixtures + fixtures: {} - uid: 19922 components: - type: Transform @@ -8814,6 +8257,8 @@ entities: - type: DeviceList devices: - 19923 + - type: Fixtures + fixtures: {} - uid: 19961 components: - type: Transform @@ -8824,6 +8269,8 @@ entities: devices: - 9696 - 9699 + - type: Fixtures + fixtures: {} - uid: 19962 components: - type: Transform @@ -8834,6 +8281,8 @@ entities: devices: - 11944 - 10832 + - type: Fixtures + fixtures: {} - uid: 19963 components: - type: Transform @@ -8843,6 +8292,8 @@ entities: devices: - 9702 - 14581 + - type: Fixtures + fixtures: {} - uid: 19964 components: - type: Transform @@ -8853,6 +8304,8 @@ entities: devices: - 5830 - 9701 + - type: Fixtures + fixtures: {} - proto: AirCanister entities: - uid: 6560 @@ -9015,13 +8468,6 @@ entities: - type: Transform pos: 56.5,-29.5 parent: 2 -- proto: AirlockBrigLocked - entities: - - uid: 6126 - components: - - type: Transform - pos: 40.5,-22.5 - parent: 2 - proto: AirlockCaptainLocked entities: - uid: 1217 @@ -9064,6 +8510,18 @@ entities: - type: Transform pos: 16.5,-83.5 parent: 2 +- proto: AirlockChapelGlassLocked + entities: + - uid: 176 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 2 + - uid: 180 + components: + - type: Transform + pos: -19.5,-34.5 + parent: 2 - proto: AirlockChapelLocked entities: - uid: 162 @@ -9071,18 +8529,6 @@ entities: - type: Transform pos: -21.5,-43.5 parent: 2 -- proto: AirlockChapelStandardGlassLocked - entities: - - uid: 161 - components: - - type: Transform - pos: -19.5,-36.5 - parent: 2 - - uid: 248 - components: - - type: Transform - pos: -19.5,-34.5 - parent: 2 - proto: AirlockChemistryGlassLocked entities: - uid: 173 @@ -9228,12 +8674,6 @@ entities: - type: Transform pos: -16.5,-62.5 parent: 2 - - uid: 4653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-53.5 - parent: 2 - proto: AirlockEngineeringLocked entities: - uid: 3 @@ -9913,6 +9353,11 @@ entities: parent: 2 - proto: AirlockGlassXeno entities: + - uid: 270 + components: + - type: Transform + pos: -3.5,-42.5 + parent: 2 - uid: 327 components: - type: Transform @@ -9958,11 +9403,6 @@ entities: - type: Transform pos: -12.5,-43.5 parent: 2 - - uid: 931 - components: - - type: Transform - pos: 26.5,-44.5 - parent: 2 - uid: 932 components: - type: Transform @@ -10203,21 +9643,6 @@ entities: - type: Transform pos: 31.5,-54.5 parent: 2 - - uid: 3876 - components: - - type: Transform - pos: 29.5,-47.5 - parent: 2 - - uid: 4211 - components: - - type: Transform - pos: 28.5,-47.5 - parent: 2 - - uid: 4271 - components: - - type: Transform - pos: 26.5,-43.5 - parent: 2 - uid: 4584 components: - type: Transform @@ -10371,6 +9796,45 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-28.5 parent: 2 +- proto: AirlockHatch + entities: + - uid: 230 + components: + - type: Transform + pos: 26.5,-43.5 + parent: 2 + - uid: 244 + components: + - type: Transform + pos: 26.5,-44.5 + parent: 2 + - uid: 287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-60.5 + parent: 2 + - uid: 389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-70.5 + parent: 2 + - uid: 468 + components: + - type: Transform + pos: 5.5,-59.5 + parent: 2 + - uid: 4686 + components: + - type: Transform + pos: 28.5,-47.5 + parent: 2 + - uid: 11131 + components: + - type: Transform + pos: 29.5,-47.5 + parent: 2 - proto: AirlockHeadOfPersonnelLocked entities: - uid: 1491 @@ -10489,16 +9953,17 @@ entities: parent: 2 - proto: AirlockMaintHydroLocked entities: + - uid: 248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-58.5 + parent: 2 - uid: 998 components: - type: Transform pos: -0.5,-44.5 parent: 2 - - uid: 1071 - components: - - type: Transform - pos: -4.5,-58.5 - parent: 2 - proto: AirlockMaintJanitorLocked entities: - uid: 1025 @@ -10601,7 +10066,7 @@ entities: pos: 11.5,-30.5 parent: 2 - type: Door - secondsUntilStateChange: -221892.55 + secondsUntilStateChange: -231736.94 state: Opening - type: DeviceLinkSource lastSignals: @@ -10948,6 +10413,12 @@ entities: - type: Transform pos: 34.5,-36.5 parent: 2 + - type: Door + secondsUntilStateChange: -7234.6396 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True - uid: 233 components: - type: Transform @@ -10978,11 +10449,6 @@ entities: - type: Transform pos: -48.5,-65.5 parent: 2 - - uid: 585 - components: - - type: Transform - pos: -3.5,-42.5 - parent: 2 - uid: 586 components: - type: Transform @@ -11003,11 +10469,6 @@ entities: - type: Transform pos: 4.5,-55.5 parent: 2 - - uid: 615 - components: - - type: Transform - pos: -8.5,-60.5 - parent: 2 - uid: 617 components: - type: Transform @@ -11053,11 +10514,6 @@ entities: - type: Transform pos: -1.5,-76.5 parent: 2 - - uid: 735 - components: - - type: Transform - pos: -7.5,-70.5 - parent: 2 - uid: 737 components: - type: Transform @@ -11262,16 +10718,6 @@ entities: rot: 3.141592653589793 rad pos: 72.5,-64.5 parent: 2 - - uid: 10742 - components: - - type: Transform - pos: 3.5,-59.5 - parent: 2 - - uid: 10786 - components: - - type: Transform - pos: 5.5,-59.5 - parent: 2 - uid: 10805 components: - type: Transform @@ -12096,6 +11542,14 @@ entities: - type: Transform pos: -18.5,-32.5 parent: 2 +- proto: AlwaysPoweredlightGreen + entities: + - uid: 5683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-56.5 + parent: 2 - proto: AmeController entities: - uid: 2283 @@ -12147,6 +11601,8 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 474 components: - type: MetaData @@ -12155,6 +11611,8 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3106 components: - type: MetaData @@ -12163,6 +11621,8 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3338 components: - type: MetaData @@ -12171,6 +11631,8 @@ entities: rot: 1.5707963267948966 rad pos: 72.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3733 components: - type: MetaData @@ -12179,6 +11641,8 @@ entities: rot: 3.141592653589793 rad pos: 58.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4618 components: - type: MetaData @@ -12186,6 +11650,8 @@ entities: - type: Transform pos: 54.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4912 components: - type: MetaData @@ -12194,6 +11660,8 @@ entities: rot: 1.5707963267948966 rad pos: 53.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5884 components: - type: MetaData @@ -12202,6 +11670,8 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7248 components: - type: MetaData @@ -12210,6 +11680,8 @@ entities: rot: 3.141592653589793 rad pos: -50.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8197 components: - type: MetaData @@ -12218,6 +11690,8 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9264 components: - type: MetaData @@ -12226,6 +11700,8 @@ entities: rot: 3.141592653589793 rad pos: 38.5,-72.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9317 components: - type: MetaData @@ -12234,6 +11710,8 @@ entities: rot: 1.5707963267948966 rad pos: 77.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10475 components: - type: MetaData @@ -12241,6 +11719,8 @@ entities: - type: Transform pos: -5.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10482 components: - type: MetaData @@ -12248,6 +11728,8 @@ entities: - type: Transform pos: -18.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10484 components: - type: MetaData @@ -12255,6 +11737,8 @@ entities: - type: Transform pos: -57.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10486 components: - type: MetaData @@ -12263,6 +11747,8 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-56.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10487 components: - type: MetaData @@ -12271,6 +11757,8 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10488 components: - type: MetaData @@ -12279,6 +11767,8 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10490 components: - type: MetaData @@ -12287,6 +11777,8 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10492 components: - type: MetaData @@ -12295,6 +11787,8 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10493 components: - type: MetaData @@ -12303,6 +11797,8 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-61.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10495 components: - type: MetaData @@ -12310,6 +11806,8 @@ entities: - type: Transform pos: 13.5,-91.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10496 components: - type: MetaData @@ -12318,6 +11816,8 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,-95.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10497 components: - type: MetaData @@ -12326,6 +11826,8 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,-97.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10501 components: - type: MetaData @@ -12334,6 +11836,8 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10502 components: - type: MetaData @@ -12341,6 +11845,8 @@ entities: - type: Transform pos: 43.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10504 components: - type: MetaData @@ -12348,6 +11854,8 @@ entities: - type: Transform pos: 13.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10505 components: - type: MetaData @@ -12355,6 +11863,8 @@ entities: - type: Transform pos: 13.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10506 components: - type: MetaData @@ -12362,6 +11872,8 @@ entities: - type: Transform pos: -7.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10507 components: - type: MetaData @@ -12369,6 +11881,8 @@ entities: - type: Transform pos: -19.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10509 components: - type: MetaData @@ -12377,6 +11891,8 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10512 components: - type: MetaData @@ -12385,6 +11901,8 @@ entities: rot: 1.5707963267948966 rad pos: 72.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10518 components: - type: MetaData @@ -12392,6 +11910,8 @@ entities: - type: Transform pos: -50.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10584 components: - type: MetaData @@ -12400,6 +11920,8 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10614 components: - type: MetaData @@ -12407,6 +11929,8 @@ entities: - type: Transform pos: -6.5,-76.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10838 components: - type: MetaData @@ -12414,6 +11938,8 @@ entities: - type: Transform pos: 95.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10918 components: - type: MetaData @@ -12421,6 +11947,8 @@ entities: - type: Transform pos: -37.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11011 components: - type: MetaData @@ -12429,6 +11957,8 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,-67.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11213 components: - type: MetaData @@ -12437,6 +11967,8 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11214 components: - type: MetaData @@ -12444,6 +11976,8 @@ entities: - type: Transform pos: -31.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11362 components: - type: MetaData @@ -12451,6 +11985,8 @@ entities: - type: Transform pos: -12.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11432 components: - type: MetaData @@ -12459,6 +11995,8 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11637 components: - type: MetaData @@ -12467,6 +12005,8 @@ entities: rot: 3.141592653589793 rad pos: 65.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11638 components: - type: MetaData @@ -12475,6 +12015,8 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11956 components: - type: MetaData @@ -12482,6 +12024,8 @@ entities: - type: Transform pos: 9.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12036 components: - type: MetaData @@ -12490,6 +12034,8 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,-56.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12164 components: - type: MetaData @@ -12498,6 +12044,8 @@ entities: rot: 3.141592653589793 rad pos: 10.5,-91.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12869 components: - type: MetaData @@ -12505,6 +12053,8 @@ entities: - type: Transform pos: 28.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13030 components: - type: MetaData @@ -12513,6 +12063,8 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13649 components: - type: MetaData @@ -12521,6 +12073,8 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13857 components: - type: MetaData @@ -12529,6 +12083,8 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13911 components: - type: MetaData @@ -12536,6 +12092,8 @@ entities: - type: Transform pos: 62.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14739 components: - type: MetaData @@ -12543,6 +12101,8 @@ entities: - type: Transform pos: -17.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15031 components: - type: MetaData @@ -12551,6 +12111,8 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15107 components: - type: MetaData @@ -12559,6 +12121,8 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17057 components: - type: MetaData @@ -12567,6 +12131,8 @@ entities: rot: 3.141592653589793 rad pos: 50.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17484 components: - type: MetaData @@ -12575,6 +12141,8 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17745 components: - type: MetaData @@ -12582,6 +12150,8 @@ entities: - type: Transform pos: 14.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18694 components: - type: MetaData @@ -12590,6 +12160,8 @@ entities: rot: -1.5707963267948966 rad pos: 84.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19021 components: - type: MetaData @@ -12598,6 +12170,8 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19268 components: - type: MetaData @@ -12605,6 +12179,8 @@ entities: - type: Transform pos: -30.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19394 components: - type: MetaData @@ -12613,6 +12189,8 @@ entities: rot: 3.141592653589793 rad pos: -33.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19925 components: - type: MetaData @@ -12621,6 +12199,8 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: APCHighCapacity entities: - uid: 1126 @@ -12630,6 +12210,8 @@ entities: - type: Transform pos: 31.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: APECircuitboard entities: - uid: 9346 @@ -12651,12 +12233,16 @@ entities: - type: Transform pos: -1.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19445 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ArtifactAnalyzerMachineCircuitboard entities: - uid: 1801 @@ -13113,6 +12699,59 @@ entities: - type: Transform pos: 26.5,-79.5 parent: 2 +- proto: Barricade + entities: + - uid: 1674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-37.5 + parent: 2 + - uid: 1675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-36.5 + parent: 2 + - uid: 1676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-37.5 + parent: 2 + - uid: 1677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-33.5 + parent: 2 + - uid: 1678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-33.5 + parent: 2 + - uid: 2289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-37.5 + parent: 2 + - uid: 4384 + components: + - type: Transform + pos: -41.5,-43.5 + parent: 2 + - uid: 7979 + components: + - type: Transform + pos: 22.5,-51.5 + parent: 2 + - uid: 14109 + components: + - type: Transform + pos: -37.5,-47.5 + parent: 2 - proto: BarricadeBlock entities: - uid: 6277 @@ -13132,6 +12771,39 @@ entities: parent: 2 - proto: BarricadeDirectional entities: + - uid: 220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-42.5 + parent: 2 + - uid: 245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-40.5 + parent: 2 + - uid: 2254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-35.5 + parent: 2 + - uid: 4665 + components: + - type: Transform + pos: 24.5,-50.5 + parent: 2 + - uid: 5205 + components: + - type: Transform + pos: -5.5,-37.5 + parent: 2 + - uid: 7146 + components: + - type: Transform + pos: 23.5,-50.5 + parent: 2 - uid: 7258 components: - type: Transform @@ -13143,6 +12815,12 @@ entities: rot: 3.141592653589793 rad pos: 76.5,-41.5 parent: 2 + - uid: 8213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-56.5 + parent: 2 - uid: 13938 components: - type: Transform @@ -13150,17 +12828,23 @@ entities: parent: 2 - proto: BarSign entities: - - uid: 7070 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-41.5 - parent: 2 - uid: 20080 components: - type: Transform pos: 60.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} +- proto: BarSignLV426 + entities: + - uid: 14055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-41.5 + parent: 2 + - type: Fixtures + fixtures: {} - proto: BaseChemistryEmptyVial entities: - uid: 10854 @@ -14063,13 +13747,6 @@ entities: - type: Transform pos: 5.560184,-22.212818 parent: 2 -- proto: BoxCandle - entities: - - uid: 5664 - components: - - type: Transform - pos: -25.412317,-29.355186 - parent: 2 - proto: BoxCartridgeCap entities: - uid: 17387 @@ -37969,6 +37646,96 @@ entities: - type: Transform pos: -10.5,-17.5 parent: 2 + - uid: 14162 + components: + - type: Transform + pos: 57.5,-22.5 + parent: 2 + - uid: 14163 + components: + - type: Transform + pos: 56.5,-22.5 + parent: 2 + - uid: 14164 + components: + - type: Transform + pos: 55.5,-22.5 + parent: 2 + - uid: 14165 + components: + - type: Transform + pos: 54.5,-22.5 + parent: 2 + - uid: 14166 + components: + - type: Transform + pos: 53.5,-22.5 + parent: 2 + - uid: 14167 + components: + - type: Transform + pos: 52.5,-22.5 + parent: 2 + - uid: 14168 + components: + - type: Transform + pos: 51.5,-22.5 + parent: 2 + - uid: 14169 + components: + - type: Transform + pos: 50.5,-22.5 + parent: 2 + - uid: 14170 + components: + - type: Transform + pos: 49.5,-22.5 + parent: 2 + - uid: 14171 + components: + - type: Transform + pos: 48.5,-22.5 + parent: 2 + - uid: 14172 + components: + - type: Transform + pos: 47.5,-22.5 + parent: 2 + - uid: 14173 + components: + - type: Transform + pos: 46.5,-22.5 + parent: 2 + - uid: 14174 + components: + - type: Transform + pos: 45.5,-22.5 + parent: 2 + - uid: 14175 + components: + - type: Transform + pos: 44.5,-22.5 + parent: 2 + - uid: 14176 + components: + - type: Transform + pos: 43.5,-22.5 + parent: 2 + - uid: 14177 + components: + - type: Transform + pos: 42.5,-22.5 + parent: 2 + - uid: 14180 + components: + - type: Transform + pos: 41.5,-22.5 + parent: 2 + - uid: 14182 + components: + - type: Transform + pos: 40.5,-22.5 + parent: 2 - uid: 14234 components: - type: Transform @@ -38703,116 +38470,159 @@ entities: rot: 1.5707963267948966 rad pos: 67.5,-21.5 parent: 2 -- proto: CandleGreen +- proto: CandlePurpleInfinite entities: - - uid: 19004 + - uid: 647 components: - type: Transform - pos: -20.960976,-37.37284 + rot: -1.5707963267948966 rad + pos: -21.847044,-29.3838 parent: 2 - - uid: 19006 + - uid: 795 components: - type: Transform - pos: -18.037804,-37.363953 + rot: -1.5707963267948966 rad + pos: -17.612669,-29.3838 parent: 2 - - uid: 19007 + - uid: 807 components: - type: Transform - pos: -18.860113,-37.363953 + rot: -1.5707963267948966 rad + pos: -21.550169,-35.461926 parent: 2 - - uid: 19009 + - uid: 820 components: - type: Transform - pos: -20.16005,-37.35431 + rot: -1.5707963267948966 rad + pos: -18.157604,-37.1988 parent: 2 -- proto: CandlePurple + - uid: 916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.581419,-35.60255 + parent: 2 + - uid: 931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.407604,-37.495674 + parent: 2 + - uid: 965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.376354,-37.245674 + parent: 2 + - uid: 1071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.626354,-37.495674 + parent: 2 + - uid: 1156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.542524,-33.32053 + parent: 2 + - uid: 1157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.636274,-33.398655 + parent: 2 + - uid: 1163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.823774,-31.25803 + parent: 2 + - uid: 1165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.657604,-37.245674 + parent: 2 + - uid: 1166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.92323,-37.276924 + parent: 2 + - uid: 1230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.612669,-29.6963 + parent: 2 + - uid: 2340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.768919,-35.243176 + parent: 2 +- proto: CandlePurpleSmallInfinite entities: - - uid: 245 + - uid: 735 components: - type: Transform - pos: -18.208582,-33.34535 + rot: -1.5707963267948966 rad + pos: -21.878294,-29.649426 parent: 2 - - uid: 16002 + - uid: 789 components: - type: Transform - pos: -18.646082,-33.78315 + rot: -1.5707963267948966 rad + pos: -17.643919,-29.680676 parent: 2 - - uid: 18846 + - uid: 1113 components: - type: Transform - pos: -18.34701,-33.632214 + rot: -1.5707963267948966 rad + pos: -20.3394,-33.44553 parent: 2 - - uid: 19000 + - uid: 1153 components: - type: Transform - pos: -20.303846,-33.696445 + rot: -1.5707963267948966 rad + pos: -18.417524,-33.492405 parent: 2 - - uid: 19002 + - uid: 1155 components: - type: Transform - pos: -20.824678,-33.508816 + rot: -1.5707963267948966 rad + pos: -20.68315,-33.66428 parent: 2 - - uid: 19003 + - uid: 1167 components: - type: Transform - pos: -20.522596,-33.289913 + rot: -1.5707963267948966 rad + pos: -17.347044,-29.41505 parent: 2 - - uid: 19615 + - uid: 1694 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.744207,-32.486958 + rot: -1.5707963267948966 rad + pos: -21.800169,-35.274426 parent: 2 - - uid: 19616 + - uid: 4701 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.320597,-32.493908 + rot: -1.5707963267948966 rad + pos: -17.331419,-35.305676 parent: 2 - - uid: 19617 + - uid: 10798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.52893,-32.65374 + rot: -1.5707963267948966 rad + pos: -21.440794,-35.649426 parent: 2 -- proto: CandlePurpleSmall - entities: - - uid: 4411 + - uid: 11719 components: - type: Transform - pos: -20.781498,-31.281414 - parent: 2 - - uid: 18692 - components: - - type: Transform - pos: -20.564438,-31.177711 - parent: 2 - - uid: 18847 - components: - - type: Transform - pos: -20.864832,-31.531588 - parent: 2 - - uid: 18997 - components: - - type: Transform - pos: -20.605928,-33.769413 - parent: 2 - - uid: 19001 - components: - - type: Transform - pos: -20.189262,-33.27949 - parent: 2 -- proto: CandleRed - entities: - - uid: 19005 - components: - - type: Transform - pos: -18.447529,-37.35353 - parent: 2 - - uid: 19008 - components: - - type: Transform - pos: -20.555466,-37.371918 + rot: -1.5707963267948966 rad + pos: -20.30815,-31.75803 parent: 2 - proto: CarbonDioxideCanister entities: @@ -39025,6 +38835,31 @@ entities: - type: Transform pos: 54.5,-56.5 parent: 2 + - uid: 4669 + components: + - type: Transform + pos: -22.5,-29.5 + parent: 2 + - uid: 4670 + components: + - type: Transform + pos: -17.5,-38.5 + parent: 2 + - uid: 4671 + components: + - type: Transform + pos: -19.5,-38.5 + parent: 2 + - uid: 4672 + components: + - type: Transform + pos: -21.5,-38.5 + parent: 2 + - uid: 4674 + components: + - type: Transform + pos: -22.5,-35.5 + parent: 2 - uid: 4752 components: - type: Transform @@ -39210,66 +39045,6 @@ entities: - type: Transform pos: 53.5,-55.5 parent: 2 - - uid: 5681 - components: - - type: Transform - pos: -20.5,-41.5 - parent: 2 - - uid: 5682 - components: - - type: Transform - pos: -20.5,-40.5 - parent: 2 - - uid: 5683 - components: - - type: Transform - pos: -20.5,-39.5 - parent: 2 - - uid: 5684 - components: - - type: Transform - pos: -19.5,-41.5 - parent: 2 - - uid: 5685 - components: - - type: Transform - pos: -19.5,-40.5 - parent: 2 - - uid: 5686 - components: - - type: Transform - pos: -19.5,-39.5 - parent: 2 - - uid: 5687 - components: - - type: Transform - pos: -18.5,-41.5 - parent: 2 - - uid: 5688 - components: - - type: Transform - pos: -18.5,-40.5 - parent: 2 - - uid: 5689 - components: - - type: Transform - pos: -18.5,-39.5 - parent: 2 - - uid: 5690 - components: - - type: Transform - pos: -17.5,-41.5 - parent: 2 - - uid: 5691 - components: - - type: Transform - pos: -17.5,-40.5 - parent: 2 - - uid: 5692 - components: - - type: Transform - pos: -17.5,-39.5 - parent: 2 - uid: 6223 components: - type: Transform @@ -39285,6 +39060,18 @@ entities: - type: Transform pos: 53.5,-57.5 parent: 2 + - uid: 8704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-29.5 + parent: 2 + - uid: 10246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-35.5 + parent: 2 - uid: 10431 components: - type: Transform @@ -40021,6 +39808,141 @@ entities: parent: 2 - proto: CartridgePistolSpent entities: + - uid: 184 + components: + - type: Transform + rot: 0.8726646259971648 rad + pos: 20.670906,-55.680134 + parent: 2 + - uid: 595 + components: + - type: Transform + rot: 0.5235987755982988 rad + pos: 22.124031,-56.91451 + parent: 2 + - uid: 1430 + components: + - type: Transform + rot: 0.17453292519943295 rad + pos: -11.63519,-33.256924 + parent: 2 + - uid: 1682 + components: + - type: Transform + rot: 0.17453292519943295 rad + pos: 21.061531,-56.492634 + parent: 2 + - uid: 1744 + components: + - type: Transform + rot: 0.2617993877991494 rad + pos: -11.343524,-33.058872 + parent: 2 + - uid: 2194 + components: + - type: Transform + rot: 5.585053606381854 rad + pos: -5.631365,-38.668835 + parent: 2 + - uid: 2303 + components: + - type: Transform + pos: -10.32269,-33.86151 + parent: 2 + - uid: 3395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.92824,-33.168835 + parent: 2 + - uid: 4664 + components: + - type: Transform + rot: 0.17453292519943295 rad + pos: 26.936531,-51.63326 + parent: 2 + - uid: 4891 + components: + - type: Transform + rot: 0.5235987755982988 rad + pos: -13.65984,-37.05946 + parent: 2 + - uid: 5084 + components: + - type: Transform + rot: 4.886921905584122 rad + pos: -8.521991,-39.200085 + parent: 2 + - uid: 5780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.146991,-34.200085 + parent: 2 + - uid: 5965 + components: + - type: Transform + pos: -2.7876148,-38.40321 + parent: 2 + - uid: 6108 + components: + - type: Transform + rot: 6.1086523819801535 rad + pos: -3.9751148,-39.200085 + parent: 2 + - uid: 6126 + components: + - type: Transform + rot: 0.2617993877991494 rad + pos: -2.5688648,-38.793835 + parent: 2 + - uid: 6260 + components: + - type: Transform + rot: 5.934119456780721 rad + pos: -5.131365,-39.450085 + parent: 2 + - uid: 7937 + components: + - type: Transform + rot: 0.5235987755982988 rad + pos: 21.827156,-56.492634 + parent: 2 + - uid: 8038 + components: + - type: Transform + rot: 6.1086523819801535 rad + pos: 27.514656,-51.13326 + parent: 2 + - uid: 8368 + components: + - type: Transform + rot: 5.934119456780721 rad + pos: 27.467781,-51.78951 + parent: 2 + - uid: 13985 + components: + - type: Transform + rot: 3.3161255787892263 rad + pos: -5.52199,-33.37196 + parent: 2 + - uid: 14059 + components: + - type: Transform + rot: 2.792526803190927 rad + pos: -6.443865,-32.46571 + parent: 2 + - uid: 14073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.256365,-33.106335 + parent: 2 + - uid: 14147 + components: + - type: Transform + pos: -4.7536306,-32.681576 + parent: 2 - uid: 16771 components: - type: Transform @@ -40328,6 +40250,12 @@ entities: rot: -1.5707963267948966 rad pos: -59.5,-25.5 parent: 2 + - uid: 1745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-35.5 + parent: 2 - uid: 1856 components: - type: Transform @@ -40339,6 +40267,21 @@ entities: rot: 3.141592653589793 rad pos: 37.5,-81.5 parent: 2 + - uid: 2305 + components: + - type: Transform + pos: 23.5,-53.5 + parent: 2 + - uid: 2317 + components: + - type: Transform + pos: -31.5,-48.5 + parent: 2 + - uid: 2319 + components: + - type: Transform + pos: -32.5,-48.5 + parent: 2 - uid: 2930 components: - type: Transform @@ -40577,11 +40520,22 @@ entities: - type: Transform pos: 100.5,-37.5 parent: 2 + - uid: 4018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-35.5 + parent: 2 - uid: 4193 components: - type: Transform pos: 51.5,-26.5 parent: 2 + - uid: 4393 + components: + - type: Transform + pos: -31.5,-42.5 + parent: 2 - uid: 4642 components: - type: Transform @@ -40720,12 +40674,6 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-26.5 parent: 2 - - uid: 4835 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-25.5 - parent: 2 - uid: 4836 components: - type: Transform @@ -40804,6 +40752,11 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,-19.5 parent: 2 + - uid: 4932 + components: + - type: Transform + pos: -32.5,-42.5 + parent: 2 - uid: 5255 components: - type: Transform @@ -40855,6 +40808,16 @@ entities: - type: Transform pos: -29.5,-70.5 parent: 2 + - uid: 5651 + components: + - type: Transform + pos: -39.5,-8.5 + parent: 2 + - uid: 5655 + components: + - type: Transform + pos: -37.5,-8.5 + parent: 2 - uid: 5715 components: - type: Transform @@ -40925,12 +40888,29 @@ entities: - type: Transform pos: -22.5,-64.5 parent: 2 + - uid: 5826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-35.5 + parent: 2 - uid: 5841 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-50.5 parent: 2 + - uid: 6149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-35.5 + parent: 2 + - uid: 6206 + components: + - type: Transform + pos: 25.5,-53.5 + parent: 2 - uid: 6227 components: - type: Transform @@ -40949,6 +40929,17 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,-25.5 parent: 2 + - uid: 6239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-35.5 + parent: 2 + - uid: 6242 + components: + - type: Transform + pos: 24.5,-53.5 + parent: 2 - uid: 6381 components: - type: Transform @@ -41335,6 +41326,12 @@ entities: - type: Transform pos: -29.5,-71.5 parent: 2 + - uid: 14021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-35.5 + parent: 2 - uid: 14032 components: - type: Transform @@ -41477,12 +41474,6 @@ entities: - type: Transform pos: 68.5,-23.5 parent: 2 - - uid: 16148 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-18.5 - parent: 2 - uid: 16164 components: - type: Transform @@ -41618,12 +41609,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-44.5 parent: 2 - - uid: 16769 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-43.5 - parent: 2 - uid: 17174 components: - type: Transform @@ -41694,36 +41679,6 @@ entities: - type: Transform pos: 4.5,-59.5 parent: 2 - - uid: 17188 - components: - - type: Transform - pos: -9.5,-45.5 - parent: 2 - - uid: 17189 - components: - - type: Transform - pos: -8.5,-45.5 - parent: 2 - - uid: 17190 - components: - - type: Transform - pos: -7.5,-45.5 - parent: 2 - - uid: 17191 - components: - - type: Transform - pos: -6.5,-45.5 - parent: 2 - - uid: 17192 - components: - - type: Transform - pos: -5.5,-45.5 - parent: 2 - - uid: 17193 - components: - - type: Transform - pos: -4.5,-45.5 - parent: 2 - uid: 17194 components: - type: Transform @@ -41780,11 +41735,6 @@ entities: - type: Transform pos: -41.5,-35.5 parent: 2 - - uid: 17435 - components: - - type: Transform - pos: -37.5,-35.5 - parent: 2 - uid: 17513 components: - type: Transform @@ -41875,11 +41825,6 @@ entities: - type: Transform pos: 9.5,-6.5 parent: 2 - - uid: 18513 - components: - - type: Transform - pos: 30.5,-35.5 - parent: 2 - uid: 18718 components: - type: Transform @@ -42014,6 +41959,28 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,-15.5 parent: 2 + - uid: 1719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-39.5 + parent: 2 + - uid: 1721 + components: + - type: Transform + pos: -32.5,-51.5 + parent: 2 + - uid: 1740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-39.5 + parent: 2 + - uid: 1742 + components: + - type: Transform + pos: -31.5,-51.5 + parent: 2 - uid: 2921 components: - type: Transform @@ -42108,12 +42075,6 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-42.5 parent: 2 - - uid: 5826 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-55.5 - parent: 2 - uid: 5850 components: - type: Transform @@ -42241,12 +42202,6 @@ entities: - type: Transform pos: 21.5,-81.5 parent: 2 - - uid: 19275 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-56.5 - parent: 2 - uid: 19392 components: - type: Transform @@ -42416,23 +42371,12 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-20.5 parent: 2 - - uid: 7937 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-23.5 - parent: 2 - uid: 8845 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-19.5 parent: 2 - - uid: 10302 - components: - - type: Transform - pos: 49.5,-20.5 - parent: 2 - uid: 19152 components: - type: Transform @@ -42890,11 +42834,11 @@ entities: parent: 2 - proto: ChurchOrganInstrument entities: - - uid: 5662 + - uid: 11365 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-35.5 + rot: 3.141592653589793 rad + pos: -24.5,-31.5 parent: 2 - proto: Cigar entities: @@ -42912,6 +42856,11 @@ entities: parent: 2 - proto: CigaretteSpent entities: + - uid: 5063 + components: + - type: Transform + pos: -9.110725,-32.339916 + parent: 2 - uid: 19660 components: - type: Transform @@ -42954,23 +42903,15 @@ entities: - type: Transform pos: -9.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ClockworkGrille entities: - - uid: 176 - components: - - type: Transform - pos: -16.5,-30.5 - parent: 2 - uid: 179 components: - type: Transform pos: -17.5,-36.5 parent: 2 - - uid: 180 - components: - - type: Transform - pos: -16.5,-28.5 - parent: 2 - uid: 183 components: - type: Transform @@ -43001,11 +42942,6 @@ entities: - type: Transform pos: -22.5,-34.5 parent: 2 - - uid: 220 - components: - - type: Transform - pos: -23.5,-36.5 - parent: 2 - uid: 221 components: - type: Transform @@ -43061,11 +42997,6 @@ entities: - type: Transform pos: -18.5,-36.5 parent: 2 - - uid: 795 - components: - - type: Transform - pos: -16.5,-29.5 - parent: 2 - uid: 802 components: - type: Transform @@ -43076,16 +43007,6 @@ entities: - type: Transform pos: -23.5,-32.5 parent: 2 - - uid: 807 - components: - - type: Transform - pos: -17.5,-29.5 - parent: 2 - - uid: 820 - components: - - type: Transform - pos: -16.5,-31.5 - parent: 2 - uid: 1079 components: - type: Transform @@ -43096,26 +43017,6 @@ entities: - type: Transform pos: -22.5,-28.5 parent: 2 - - uid: 1429 - components: - - type: Transform - pos: -16.5,-36.5 - parent: 2 - - uid: 1430 - components: - - type: Transform - pos: -16.5,-35.5 - parent: 2 - - uid: 1431 - components: - - type: Transform - pos: -16.5,-33.5 - parent: 2 - - uid: 1432 - components: - - type: Transform - pos: -16.5,-32.5 - parent: 2 - uid: 1434 components: - type: Transform @@ -43141,11 +43042,6 @@ entities: - type: Transform pos: -23.5,-33.5 parent: 2 - - uid: 2887 - components: - - type: Transform - pos: -15.5,-32.5 - parent: 2 - uid: 4739 components: - type: Transform @@ -43166,16 +43062,6 @@ entities: - type: Transform pos: -20.5,-34.5 parent: 2 - - uid: 5063 - components: - - type: Transform - pos: -17.5,-35.5 - parent: 2 - - uid: 16186 - components: - - type: Transform - pos: -16.5,-34.5 - parent: 2 - uid: 17789 components: - type: Transform @@ -43232,6 +43118,11 @@ entities: - type: Transform pos: -49.5,-55.5 parent: 2 + - uid: 5688 + components: + - type: Transform + pos: 11.5,-37.5 + parent: 2 - uid: 5909 components: - type: Transform @@ -43242,16 +43133,6 @@ entities: - type: Transform pos: -23.5,-58.5 parent: 2 - - uid: 6242 - components: - - type: Transform - pos: -34.5,-52.5 - parent: 2 - - uid: 6243 - components: - - type: Transform - pos: -35.5,-38.5 - parent: 2 - uid: 6557 components: - type: Transform @@ -43322,6 +43203,11 @@ entities: - type: Transform pos: -59.5,-24.5 parent: 2 + - uid: 14066 + components: + - type: Transform + pos: -37.5,-36.5 + parent: 2 - uid: 15408 components: - type: Transform @@ -43337,11 +43223,6 @@ entities: - type: Transform pos: 47.5,-31.5 parent: 2 - - uid: 16038 - components: - - type: Transform - pos: 9.5,-37.5 - parent: 2 - uid: 17038 components: - type: Transform @@ -43357,11 +43238,6 @@ entities: - type: Transform pos: 5.5,-56.5 parent: 2 - - uid: 17889 - components: - - type: Transform - pos: -4.5,-41.5 - parent: 2 - uid: 18596 components: - type: Transform @@ -43458,16 +43334,16 @@ entities: parent: 2 - proto: ClosetFireFilled entities: - - uid: 2335 - components: - - type: Transform - pos: -33.5,-52.5 - parent: 2 - uid: 5059 components: - type: Transform pos: -23.5,-27.5 parent: 2 + - uid: 5308 + components: + - type: Transform + pos: 10.5,-37.5 + parent: 2 - uid: 5525 components: - type: Transform @@ -43518,11 +43394,6 @@ entities: - type: Transform pos: 48.5,-63.5 parent: 2 - - uid: 16039 - components: - - type: Transform - pos: 10.5,-37.5 - parent: 2 - uid: 16050 components: - type: Transform @@ -43773,11 +43644,6 @@ entities: - type: Transform pos: 40.5,-77.5 parent: 2 - - uid: 19282 - components: - - type: Transform - pos: -4.5,-44.5 - parent: 2 - proto: ClosetRadiationSuitFilled entities: - uid: 5058 @@ -43866,6 +43732,8 @@ entities: - 20006 - 20007 - 20008 + - type: Fixtures + fixtures: {} - proto: ClosetWallBlue entities: - uid: 5967 @@ -43884,6 +43752,8 @@ entities: - 5250 - 5251 - 5253 + - type: Fixtures + fixtures: {} - proto: ClosetWallEmergencyFilledRandom entities: - uid: 18901 @@ -43892,12 +43762,16 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-85.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18903 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-87.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ClosetWallFireFilledRandom entities: - uid: 18904 @@ -43906,6 +43780,8 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-88.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ClosetWallGrey entities: - uid: 6067 @@ -43928,6 +43804,8 @@ entities: - 6069 - 6068 - 6075 + - type: Fixtures + fixtures: {} - proto: ClothingBackpack entities: - uid: 12849 @@ -44314,10 +44192,20 @@ entities: parent: 2 - proto: ClothingHeadHatHoodNunHood entities: - - uid: 244 + - uid: 6289 components: - type: Transform - pos: -25.667696,-30.796198 + pos: -25.638721,-39.47225 + parent: 2 + - uid: 9897 + components: + - type: Transform + pos: -25.521437,-39.357975 + parent: 2 + - uid: 14161 + components: + - type: Transform + pos: -25.425758,-39.271492 parent: 2 - proto: ClothingHeadHatJesterAlt entities: @@ -44349,10 +44237,10 @@ entities: parent: 2 - proto: ClothingHeadHatSquid entities: - - uid: 18851 + - uid: 615 components: - type: Transform - pos: -25.722471,-30.292423 + pos: -19.331778,-42.418526 parent: 2 - proto: ClothingHeadHatSurgcapBlue entities: @@ -44585,13 +44473,6 @@ entities: - type: Transform pos: -31.529379,-64.33237 parent: 2 -- proto: ClothingNeckCloakPan - entities: - - uid: 11982 - components: - - type: Transform - pos: 44.485863,-38.413647 - parent: 2 - proto: ClothingNeckCloakPirateCap entities: - uid: 17307 @@ -44625,13 +44506,6 @@ entities: - type: Transform pos: 13.472904,-70.36003 parent: 2 -- proto: ClothingNeckStoleChaplain - entities: - - uid: 17362 - components: - - type: Transform - pos: -24.46909,-39.37975 - parent: 2 - proto: ClothingOuterApronChef entities: - uid: 13574 @@ -44796,10 +44670,20 @@ entities: parent: 2 - proto: ClothingOuterNunRobe entities: - - uid: 18852 + - uid: 4689 components: - type: Transform - pos: -25.556585,-31.15756 + pos: -24.861088,-39.441124 + parent: 2 + - uid: 6243 + components: + - type: Transform + pos: -25.037014,-39.492085 + parent: 2 + - uid: 9896 + components: + - type: Transform + pos: -24.703682,-39.39943 parent: 2 - proto: ClothingOuterPonchoClassic entities: @@ -44910,10 +44794,20 @@ entities: parent: 2 - proto: ClothingShoesTourist entities: - - uid: 184 + - uid: 4700 components: - type: Transform - pos: -25.441221,-31.607365 + pos: -24.425903,-39.658867 + parent: 2 + - uid: 4933 + components: + - type: Transform + pos: -24.33794,-39.607906 + parent: 2 + - uid: 10515 + components: + - type: Transform + pos: -24.550903,-39.709827 parent: 2 - uid: 17279 components: @@ -45140,11 +45034,11 @@ entities: rot: 1.5707963267948966 rad pos: 72.5,-29.5 parent: 2 - - uid: 16507 + - uid: 14159 components: - type: Transform rot: 1.5707963267948966 rad - pos: 78.5,-34.5 + pos: 78.5,-33.5 parent: 2 - uid: 16805 components: @@ -45324,6 +45218,14 @@ entities: 5037: - - ArtifactAnalyzerSender - ArtifactAnalyzerReceiver +- proto: ComputerAtmosMonitoring + entities: + - uid: 20083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-72.5 + parent: 2 - proto: computerBodyScanner entities: - uid: 6698 @@ -45732,34 +45634,11 @@ entities: parent: 2 - proto: ContainmentFieldGenerator entities: - - uid: 4078 - components: - - type: MetaData - desc: A machine that generates a containment field when powered by an emitter. Don't forget to turn it on! - name: extended field generator - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-21.5 - parent: 2 - - type: ContainmentFieldGenerator - enabled: True - maxLength: 19 - uid: 5784 components: - type: Transform pos: -19.5,-77.5 parent: 2 - - uid: 6108 - components: - - type: MetaData - desc: A machine that generates a containment field when powered by an emitter. Don't forget to turn it on! - name: extended field generator - - type: Transform - pos: 59.5,-21.5 - parent: 2 - - type: ContainmentFieldGenerator - enabled: True - maxLength: 19 - uid: 18224 components: - type: Transform @@ -46354,16 +46233,6 @@ entities: - type: Transform pos: 34.5,-26.5 parent: 2 - - uid: 5029 - components: - - type: Transform - pos: -22.5,-29.5 - parent: 2 - - uid: 5031 - components: - - type: Transform - pos: -21.5,-29.5 - parent: 2 - uid: 7605 components: - type: Transform @@ -47627,6 +47496,8 @@ entities: - type: Transform pos: 51.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: DefibrillatorCabinetFilled entities: - uid: 5238 @@ -47634,50 +47505,68 @@ entities: - type: Transform pos: 16.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5239 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5935 components: - type: Transform pos: -6.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10681 components: - type: Transform pos: 13.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17131 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17273 components: - type: Transform pos: -12.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17284 components: - type: Transform pos: 5.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18378 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19260 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: DeskBell entities: - uid: 5856 @@ -48061,6 +47950,11 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,-76.5 parent: 2 + - uid: 14183 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 2 - uid: 14239 components: - type: Transform @@ -48574,6 +48468,12 @@ entities: - type: Transform pos: 7.5,-60.5 parent: 2 + - uid: 11720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-24.5 + parent: 2 - uid: 15507 components: - type: Transform @@ -49514,12 +49414,6 @@ entities: - type: Transform pos: 55.5,-49.5 parent: 2 - - uid: 10515 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-24.5 - parent: 2 - uid: 10561 components: - type: Transform @@ -49537,6 +49431,90 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-44.5 parent: 2 + - uid: 14184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-13.5 + parent: 2 + - uid: 14185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-13.5 + parent: 2 + - uid: 14186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-13.5 + parent: 2 + - uid: 14187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-13.5 + parent: 2 + - uid: 14188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-14.5 + parent: 2 + - uid: 14190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-15.5 + parent: 2 + - uid: 14193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-16.5 + parent: 2 + - uid: 14197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-17.5 + parent: 2 + - uid: 14202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-18.5 + parent: 2 + - uid: 14205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-19.5 + parent: 2 + - uid: 14208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-20.5 + parent: 2 + - uid: 14210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-21.5 + parent: 2 + - uid: 14211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-22.5 + parent: 2 + - uid: 14215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-23.5 + parent: 2 - uid: 14451 components: - type: Transform @@ -53193,18 +53171,6 @@ entities: - type: Transform pos: -56.629017,-61.739758 parent: 2 -- proto: DrinkChangelingStingCan - entities: - - uid: 2843 - components: - - type: Transform - pos: 38.730194,-12.548597 - parent: 2 - - uid: 2851 - components: - - type: Transform - pos: 38.338818,-12.401728 - parent: 2 - proto: DrinkCoffeeJug entities: - uid: 14280 @@ -53529,12 +53495,6 @@ entities: parent: 2 - proto: EmergencyLight entities: - - uid: 1230 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-31.5 - parent: 2 - uid: 1969 components: - type: Transform @@ -54055,12 +54015,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-77.5 parent: 2 - - uid: 18358 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-21.5 - parent: 2 - proto: EmitterFlatpack entities: - uid: 19330 @@ -54121,40 +54075,54 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17293 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-61.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17294 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18340 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18343 components: - type: Transform pos: 12.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18344 components: - type: Transform pos: -27.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19650 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FaxMachineBase entities: - uid: 1889 @@ -54365,6 +54333,11 @@ entities: parent: 2 - proto: filingCabinetRandom entities: + - uid: 2341 + components: + - type: Transform + pos: 9.5,-40.5 + parent: 2 - uid: 5870 components: - type: Transform @@ -54398,6 +54371,8 @@ entities: - 1595 - 18775 - 3279 + - type: Fixtures + fixtures: {} - uid: 5295 components: - type: Transform @@ -54410,6 +54385,8 @@ entities: - 530 - 8870 - 8873 + - type: Fixtures + fixtures: {} - uid: 7439 components: - type: Transform @@ -54424,6 +54401,8 @@ entities: - 19831 - 19832 - 19833 + - type: Fixtures + fixtures: {} - uid: 8800 components: - type: Transform @@ -54437,6 +54416,8 @@ entities: - 872 - 8870 - 8873 + - type: Fixtures + fixtures: {} - uid: 9873 components: - type: Transform @@ -54458,6 +54439,8 @@ entities: - 7954 - 19908 - 19907 + - type: Fixtures + fixtures: {} - uid: 10791 components: - type: Transform @@ -54474,6 +54457,8 @@ entities: - 4169 - 13846 - 4171 + - type: Fixtures + fixtures: {} - uid: 14459 components: - type: Transform @@ -54495,6 +54480,8 @@ entities: - 6636 - 7459 - 1833 + - type: Fixtures + fixtures: {} - uid: 14461 components: - type: Transform @@ -54508,6 +54495,8 @@ entities: - 6633 - 19234 - 19235 + - type: Fixtures + fixtures: {} - uid: 14591 components: - type: Transform @@ -54521,6 +54510,8 @@ entities: - 7135 - 8640 - 18857 + - type: Fixtures + fixtures: {} - uid: 14683 components: - type: Transform @@ -54533,6 +54524,8 @@ entities: - 6977 - 6976 - 3659 + - type: Fixtures + fixtures: {} - uid: 14758 components: - type: Transform @@ -54550,6 +54543,8 @@ entities: - 18844 - 18843 - 1698 + - type: Fixtures + fixtures: {} - uid: 15095 components: - type: Transform @@ -54563,6 +54558,8 @@ entities: - 17153 - 17130 - 17129 + - type: Fixtures + fixtures: {} - uid: 16355 components: - type: Transform @@ -54577,6 +54574,8 @@ entities: - 2157 - 3441 - 4166 + - type: Fixtures + fixtures: {} - uid: 16357 components: - type: Transform @@ -54589,6 +54588,8 @@ entities: - 16238 - 19903 - 19904 + - type: Fixtures + fixtures: {} - uid: 18593 components: - type: Transform @@ -54605,6 +54606,8 @@ entities: - 8920 - 19838 - 19837 + - type: Fixtures + fixtures: {} - uid: 18881 components: - type: Transform @@ -54616,6 +54619,8 @@ entities: - 16165 - 14594 - 14595 + - type: Fixtures + fixtures: {} - uid: 19247 components: - type: Transform @@ -54627,23 +54632,13 @@ entities: - 4169 - 4171 - 13846 - - 11724 - - 11725 - - 11723 - - 7979 - - 11721 - - 11720 - - 11719 - - 11718 - - 11717 - - 11716 - - 11715 - - 11712 - 9297 - 7800 - 8607 - 9082 - 9066 + - type: Fixtures + fixtures: {} - uid: 19910 components: - type: Transform @@ -54657,6 +54652,8 @@ entities: - 19902 - 19908 - 19907 + - type: Fixtures + fixtures: {} - proto: FireAlarmXeno entities: - uid: 1691 @@ -54675,6 +54672,8 @@ entities: - 19886 - 19892 - 19891 + - type: Fixtures + fixtures: {} - uid: 2359 components: - type: Transform @@ -54687,6 +54686,8 @@ entities: - 8737 - 8734 - 8479 + - type: Fixtures + fixtures: {} - uid: 2409 components: - type: Transform @@ -54705,6 +54706,8 @@ entities: - 5577 - 5575 - 5576 + - type: Fixtures + fixtures: {} - uid: 2452 components: - type: Transform @@ -54722,6 +54725,8 @@ entities: - 19810 - 19811 - 19812 + - type: Fixtures + fixtures: {} - uid: 2513 components: - type: Transform @@ -54734,6 +54739,8 @@ entities: - 5577 - 5576 - 5575 + - type: Fixtures + fixtures: {} - uid: 3256 components: - type: Transform @@ -54749,6 +54756,8 @@ entities: - 11336 - 18786 - 8605 + - type: Fixtures + fixtures: {} - uid: 3258 components: - type: Transform @@ -54763,6 +54772,8 @@ entities: - 19830 - 19829 - 19828 + - type: Fixtures + fixtures: {} - uid: 5200 components: - type: Transform @@ -54778,6 +54789,8 @@ entities: - 19797 - 19798 - 4002 + - type: Fixtures + fixtures: {} - uid: 6218 components: - type: Transform @@ -54796,6 +54809,8 @@ entities: - 14799 - 15173 - 14797 + - type: Fixtures + fixtures: {} - uid: 6344 components: - type: Transform @@ -54812,6 +54827,8 @@ entities: - 19877 - 19878 - 19879 + - type: Fixtures + fixtures: {} - uid: 6345 components: - type: Transform @@ -54834,6 +54851,8 @@ entities: - 8415 - 8416 - 8417 + - type: Fixtures + fixtures: {} - uid: 6346 components: - type: Transform @@ -54853,6 +54872,8 @@ entities: - 19890 - 8434 - 8433 + - type: Fixtures + fixtures: {} - uid: 6348 components: - type: Transform @@ -54876,6 +54897,8 @@ entities: - 19893 - 19894 - 19895 + - type: Fixtures + fixtures: {} - uid: 6349 components: - type: Transform @@ -54892,6 +54915,8 @@ entities: - 19896 - 19897 - 19898 + - type: Fixtures + fixtures: {} - uid: 6350 components: - type: Transform @@ -54905,6 +54930,8 @@ entities: - 7016 - 7017 - 19882 + - type: Fixtures + fixtures: {} - uid: 6405 components: - type: Transform @@ -54917,6 +54944,8 @@ entities: - 10326 - 8402 - 19920 + - type: Fixtures + fixtures: {} - uid: 7880 components: - type: Transform @@ -54933,6 +54962,8 @@ entities: - 7011 - 7012 - 7056 + - type: Fixtures + fixtures: {} - uid: 9038 components: - type: Transform @@ -54958,6 +54989,8 @@ entities: - 19825 - 19826 - 19827 + - type: Fixtures + fixtures: {} - uid: 9039 components: - type: Transform @@ -54970,6 +55003,8 @@ entities: - 8415 - 8416 - 8417 + - type: Fixtures + fixtures: {} - uid: 9178 components: - type: Transform @@ -54988,6 +55023,8 @@ entities: - 8495 - 9715 - 2462 + - type: Fixtures + fixtures: {} - uid: 9200 components: - type: Transform @@ -55015,6 +55052,8 @@ entities: - 19829 - 19828 - 16242 + - type: Fixtures + fixtures: {} - uid: 9202 components: - type: Transform @@ -55028,6 +55067,8 @@ entities: - 8492 - 44 - 4002 + - type: Fixtures + fixtures: {} - uid: 9218 components: - type: Transform @@ -55039,6 +55080,8 @@ entities: - 8505 - 8506 - 8507 + - type: Fixtures + fixtures: {} - uid: 9233 components: - type: Transform @@ -55051,6 +55094,8 @@ entities: - 14800 - 14798 - 14797 + - type: Fixtures + fixtures: {} - uid: 9237 components: - type: Transform @@ -55069,6 +55114,8 @@ entities: - 19893 - 19894 - 19895 + - type: Fixtures + fixtures: {} - uid: 9238 components: - type: Transform @@ -55083,6 +55130,8 @@ entities: - 8439 - 8438 - 18862 + - type: Fixtures + fixtures: {} - uid: 9242 components: - type: Transform @@ -55096,6 +55145,8 @@ entities: - 7440 - 7443 - 19204 + - type: Fixtures + fixtures: {} - uid: 9249 components: - type: Transform @@ -55107,6 +55158,8 @@ entities: - 8433 - 8434 - 19885 + - type: Fixtures + fixtures: {} - uid: 9250 components: - type: Transform @@ -55116,6 +55169,8 @@ entities: - type: DeviceList devices: - 8493 + - type: Fixtures + fixtures: {} - uid: 9255 components: - type: Transform @@ -55132,6 +55187,8 @@ entities: - 19799 - 19800 - 19801 + - type: Fixtures + fixtures: {} - uid: 9256 components: - type: Transform @@ -55150,6 +55207,8 @@ entities: - 19805 - 19807 - 19808 + - type: Fixtures + fixtures: {} - uid: 9489 components: - type: Transform @@ -55164,6 +55223,8 @@ entities: - 4096 - 19820 - 19821 + - type: Fixtures + fixtures: {} - uid: 9931 components: - type: Transform @@ -55178,6 +55239,8 @@ entities: - 19841 - 19840 - 19839 + - type: Fixtures + fixtures: {} - uid: 11905 components: - type: Transform @@ -55190,6 +55253,8 @@ entities: - 8547 - 8548 - 8549 + - type: Fixtures + fixtures: {} - uid: 15092 components: - type: Transform @@ -55207,6 +55272,8 @@ entities: - 19798 - 19797 - 19796 + - type: Fixtures + fixtures: {} - uid: 16341 components: - type: Transform @@ -55225,6 +55292,8 @@ entities: - 8549 - 8548 - 8547 + - type: Fixtures + fixtures: {} - uid: 16366 components: - type: Transform @@ -55241,6 +55310,8 @@ entities: - 19831 - 19832 - 19833 + - type: Fixtures + fixtures: {} - uid: 16800 components: - type: Transform @@ -55256,6 +55327,8 @@ entities: - 9715 - 19815 - 811 + - type: Fixtures + fixtures: {} - uid: 16807 components: - type: Transform @@ -55267,6 +55340,8 @@ entities: - 8677 - 8678 - 262 + - type: Fixtures + fixtures: {} - uid: 17681 components: - type: Transform @@ -55280,6 +55355,8 @@ entities: - 19825 - 19892 - 19891 + - type: Fixtures + fixtures: {} - uid: 17872 components: - type: Transform @@ -55305,6 +55382,8 @@ entities: - 8552 - 19854 - 19851 + - type: Fixtures + fixtures: {} - uid: 19201 components: - type: Transform @@ -55320,6 +55399,8 @@ entities: - 16242 - 8107 - 19203 + - type: Fixtures + fixtures: {} - uid: 19399 components: - type: Transform @@ -55336,6 +55417,8 @@ entities: - 19822 - 19823 - 19824 + - type: Fixtures + fixtures: {} - uid: 19420 components: - type: Transform @@ -55347,6 +55430,8 @@ entities: - 18786 - 11336 - 9541 + - type: Fixtures + fixtures: {} - uid: 19852 components: - type: Transform @@ -55364,6 +55449,8 @@ entities: - 19845 - 19846 - 19847 + - type: Fixtures + fixtures: {} - uid: 19855 components: - type: Transform @@ -55379,6 +55466,8 @@ entities: - 18723 - 18709 - 18731 + - type: Fixtures + fixtures: {} - uid: 19857 components: - type: Transform @@ -55392,15 +55481,8 @@ entities: - 8550 - 9383 - 9877 - - 7979 - - 11721 - - 11720 - - 11719 - - 11718 - - 11717 - - 11716 - - 11715 - - 11712 + - type: Fixtures + fixtures: {} - uid: 19881 components: - type: Transform @@ -55420,6 +55502,8 @@ entities: - 7014 - 7013 - 19882 + - type: Fixtures + fixtures: {} - uid: 19921 components: - type: Transform @@ -55432,6 +55516,8 @@ entities: - 8400 - 8399 - 19920 + - type: Fixtures + fixtures: {} - proto: FireAxeCabinetFilled entities: - uid: 5385 @@ -55440,11 +55526,15 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5589 components: - type: Transform pos: -49.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FireExtinguisher entities: - uid: 17297 @@ -55454,135 +55544,6 @@ entities: parent: 2 - proto: Firelock entities: - - uid: 7979 - components: - - type: Transform - pos: 50.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 19857 - - 19856 - - 19247 - - uid: 11712 - components: - - type: Transform - pos: 42.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 19857 - - 19856 - - 19247 - - uid: 11715 - components: - - type: Transform - pos: 43.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 19857 - - 19856 - - 19247 - - uid: 11716 - components: - - type: Transform - pos: 44.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 19857 - - 19856 - - 19247 - - uid: 11717 - components: - - type: Transform - pos: 45.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 19857 - - 19856 - - 19247 - - uid: 11718 - components: - - type: Transform - pos: 46.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 19857 - - 19856 - - 19247 - - uid: 11719 - components: - - type: Transform - pos: 47.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 19857 - - 19856 - - 19247 - - uid: 11720 - components: - - type: Transform - pos: 48.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 19857 - - 19856 - - 19247 - - uid: 11721 - components: - - type: Transform - pos: 49.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 19857 - - 19856 - - 19247 - - uid: 11723 - components: - - type: Transform - pos: 54.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 579 - - 19247 - - uid: 11724 - components: - - type: Transform - pos: 55.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 579 - - 19247 - - uid: 11725 - components: - - type: Transform - pos: 56.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 579 - - 19247 - uid: 19913 components: - type: Transform @@ -56219,12 +56180,6 @@ entities: deviceLists: - 14757 - 14758 - - uid: 19015 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-32.5 - parent: 2 - uid: 19815 components: - type: Transform @@ -59297,6 +59252,18 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: Floodlight + entities: + - uid: 4078 + components: + - type: Transform + pos: -7.5,-38.5 + parent: 2 + - uid: 14022 + components: + - type: Transform + pos: -5.5,-32.5 + parent: 2 - proto: FloorCarpetItemBlack entities: - uid: 7382 @@ -59481,11 +59448,6 @@ entities: - type: Transform pos: -38.5,-36.5 parent: 2 - - uid: 17116 - components: - - type: Transform - pos: -37.5,-36.5 - parent: 2 - uid: 17119 components: - type: Transform @@ -59578,6 +59540,16 @@ entities: parent: 2 - proto: FoodBakedCannabisBrownie entities: + - uid: 4673 + components: + - type: Transform + pos: -20.439116,-42.136227 + parent: 2 + - uid: 11457 + components: + - type: Transform + pos: -20.703005,-42.1177 + parent: 2 - uid: 18034 components: - type: Transform @@ -59860,7 +59832,7 @@ entities: - type: Transform pos: 6.386328,-82.455345 parent: 2 -- proto: FoodDonutJellySlugcat +- proto: FoodDonutJellyScurret entities: - uid: 2917 components: @@ -80290,23 +80262,6 @@ entities: - type: Transform pos: 29.714285,-78.46555 parent: 2 -- proto: GoldenPlunger - entities: - - uid: 647 - components: - - type: MetaData - desc: The prophecy tells of a day in the distant future, in which the Truest Janitor will pick up this plunger and eradicate clogging from this world forever more... - name: lubed cursed golden plunger - - type: Transform - pos: -40.50827,-77.386536 - parent: 2 - - type: WarpPoint - location: cursed golden plunger - - type: Lubed - slipStrength: 10 - slipsLeft: 1000 - - type: NameModifier - baseName: cursed golden plunger - proto: GoldRingDiamond entities: - uid: 7118 @@ -80463,6 +80418,11 @@ entities: - type: Transform pos: -5.5,2.5 parent: 2 + - uid: 161 + components: + - type: Transform + pos: 42.5,-22.5 + parent: 2 - uid: 207 components: - type: Transform @@ -80958,11 +80918,6 @@ entities: - type: Transform pos: 43.5,-55.5 parent: 2 - - uid: 789 - components: - - type: Transform - pos: 26.5,-47.5 - parent: 2 - uid: 790 components: - type: Transform @@ -81053,46 +81008,6 @@ entities: - type: Transform pos: -19.5,-53.5 parent: 2 - - uid: 1153 - components: - - type: Transform - pos: -32.5,-54.5 - parent: 2 - - uid: 1155 - components: - - type: Transform - pos: -30.5,-54.5 - parent: 2 - - uid: 1156 - components: - - type: Transform - pos: -31.5,-55.5 - parent: 2 - - uid: 1157 - components: - - type: Transform - pos: -31.5,-53.5 - parent: 2 - - uid: 1163 - components: - - type: Transform - pos: -32.5,-36.5 - parent: 2 - - uid: 1165 - components: - - type: Transform - pos: -30.5,-36.5 - parent: 2 - - uid: 1166 - components: - - type: Transform - pos: -31.5,-37.5 - parent: 2 - - uid: 1167 - components: - - type: Transform - pos: -31.5,-35.5 - parent: 2 - uid: 1292 components: - type: Transform @@ -81143,11 +81058,6 @@ entities: - type: Transform pos: -36.5,-9.5 parent: 2 - - uid: 1416 - components: - - type: Transform - pos: -35.5,-9.5 - parent: 2 - uid: 1420 components: - type: Transform @@ -81448,86 +81358,16 @@ entities: - type: Transform pos: 16.5,-44.5 parent: 2 - - uid: 1671 - components: - - type: Transform - pos: -41.5,-43.5 - parent: 2 - - uid: 1672 - components: - - type: Transform - pos: -41.5,-44.5 - parent: 2 - uid: 1673 components: - type: Transform - pos: -41.5,-45.5 - parent: 2 - - uid: 1674 - components: - - type: Transform - pos: -41.5,-46.5 - parent: 2 - - uid: 1675 - components: - - type: Transform - pos: -41.5,-47.5 - parent: 2 - - uid: 1676 - components: - - type: Transform - pos: -40.5,-47.5 - parent: 2 - - uid: 1677 - components: - - type: Transform - pos: -39.5,-47.5 - parent: 2 - - uid: 1678 - components: - - type: Transform - pos: -38.5,-47.5 - parent: 2 - - uid: 1679 - components: - - type: Transform - pos: -37.5,-47.5 - parent: 2 - - uid: 1680 - components: - - type: Transform - pos: -37.5,-46.5 + pos: -0.5,-42.5 parent: 2 - uid: 1681 components: - type: Transform pos: 60.5,-35.5 parent: 2 - - uid: 1682 - components: - - type: Transform - pos: -37.5,-44.5 - parent: 2 - - uid: 1683 - components: - - type: Transform - pos: -37.5,-43.5 - parent: 2 - - uid: 1684 - components: - - type: Transform - pos: -38.5,-43.5 - parent: 2 - - uid: 1685 - components: - - type: Transform - pos: -39.5,-43.5 - parent: 2 - - uid: 1686 - components: - - type: Transform - pos: -40.5,-43.5 - parent: 2 - uid: 1688 components: - type: Transform @@ -81614,6 +81454,11 @@ entities: - type: Transform pos: 3.5,-48.5 parent: 2 + - uid: 1884 + components: + - type: Transform + pos: 55.5,-22.5 + parent: 2 - uid: 1953 components: - type: Transform @@ -81820,6 +81665,21 @@ entities: - type: Transform pos: -18.5,-15.5 parent: 2 + - uid: 2321 + components: + - type: Transform + pos: 43.5,-22.5 + parent: 2 + - uid: 2324 + components: + - type: Transform + pos: 49.5,-22.5 + parent: 2 + - uid: 2344 + components: + - type: Transform + pos: 54.5,-22.5 + parent: 2 - uid: 2364 components: - type: Transform @@ -81860,6 +81720,11 @@ entities: - type: Transform pos: -51.5,-55.5 parent: 2 + - uid: 2463 + components: + - type: Transform + pos: 40.5,-22.5 + parent: 2 - uid: 2466 components: - type: Transform @@ -82446,11 +82311,6 @@ entities: - type: Transform pos: 43.5,-11.5 parent: 2 - - uid: 4089 - components: - - type: Transform - pos: 60.5,-21.5 - parent: 2 - uid: 4181 components: - type: Transform @@ -82491,6 +82351,11 @@ entities: - type: Transform pos: -1.5,-40.5 parent: 2 + - uid: 4271 + components: + - type: Transform + pos: -41.5,-45.5 + parent: 2 - uid: 4301 components: - type: Transform @@ -82546,6 +82411,11 @@ entities: - type: Transform pos: 51.5,-64.5 parent: 2 + - uid: 4383 + components: + - type: Transform + pos: -40.5,-43.5 + parent: 2 - uid: 4391 components: - type: Transform @@ -82701,20 +82571,25 @@ entities: - type: Transform pos: 45.5,-55.5 parent: 2 - - uid: 4655 + - uid: 4545 components: - type: Transform - pos: 22.5,-53.5 + pos: -38.5,-47.5 parent: 2 - - uid: 4661 + - uid: 4556 components: - type: Transform - pos: 24.5,-55.5 + pos: 46.5,-22.5 parent: 2 - - uid: 4693 + - uid: 4687 components: - type: Transform - pos: 24.5,-51.5 + pos: 47.5,-22.5 + parent: 2 + - uid: 4702 + components: + - type: Transform + pos: 56.5,-22.5 parent: 2 - uid: 4716 components: @@ -83641,6 +83516,11 @@ entities: - type: Transform pos: 4.5,-14.5 parent: 2 + - uid: 7295 + components: + - type: Transform + pos: 48.5,-22.5 + parent: 2 - uid: 7438 components: - type: Transform @@ -84001,6 +83881,11 @@ entities: - type: Transform pos: 47.5,-12.5 parent: 2 + - uid: 11721 + components: + - type: Transform + pos: 50.5,-22.5 + parent: 2 - uid: 11830 components: - type: Transform @@ -84106,11 +83991,26 @@ entities: - type: Transform pos: 62.5,-21.5 parent: 2 + - uid: 13959 + components: + - type: Transform + pos: -14.5,-32.5 + parent: 2 - uid: 13979 components: - type: Transform pos: 7.5,-33.5 parent: 2 + - uid: 13995 + components: + - type: Transform + pos: 44.5,-22.5 + parent: 2 + - uid: 13997 + components: + - type: Transform + pos: 45.5,-22.5 + parent: 2 - uid: 14006 components: - type: Transform @@ -84131,16 +84031,46 @@ entities: - type: Transform pos: 75.5,-17.5 parent: 2 + - uid: 14100 + components: + - type: Transform + pos: -40.5,-47.5 + parent: 2 + - uid: 14101 + components: + - type: Transform + pos: -41.5,-46.5 + parent: 2 + - uid: 14102 + components: + - type: Transform + pos: -41.5,-44.5 + parent: 2 + - uid: 14103 + components: + - type: Transform + pos: -39.5,-43.5 + parent: 2 - uid: 14105 components: - type: Transform pos: 75.5,-18.5 parent: 2 + - uid: 14107 + components: + - type: Transform + pos: -38.5,-43.5 + parent: 2 - uid: 14126 components: - type: Transform pos: 77.5,-17.5 parent: 2 + - uid: 14131 + components: + - type: Transform + pos: -39.5,-47.5 + parent: 2 - uid: 14152 components: - type: Transform @@ -85032,75 +84962,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-45.5 parent: 2 - - uid: 4656 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-54.5 - parent: 2 - - uid: 4658 - components: - - type: Transform - pos: 23.5,-51.5 - parent: 2 - - uid: 4662 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-55.5 - parent: 2 - - uid: 4663 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-52.5 - parent: 2 - - uid: 4664 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-54.5 - parent: 2 - - uid: 4665 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-55.5 - parent: 2 - - uid: 4667 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-54.5 - parent: 2 - - uid: 4673 - components: - - type: Transform - pos: 25.5,-54.5 - parent: 2 - - uid: 4675 - components: - - type: Transform - pos: 22.5,-52.5 - parent: 2 - - uid: 4676 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-52.5 - parent: 2 - - uid: 4686 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-52.5 - parent: 2 - - uid: 4687 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-51.5 - parent: 2 - uid: 14429 components: - type: Transform @@ -85696,10 +85557,10 @@ entities: - type: Transform pos: 57.514305,-35.453518 parent: 2 - - uid: 19346 + - uid: 13988 components: - type: Transform - pos: 58.428192,-20.46732 + pos: 61.41428,-19.450556 parent: 2 - proto: HandheldGPSBasic entities: @@ -86131,10 +85992,10 @@ entities: parent: 2 - proto: HolopadMedicalVirology entities: - - uid: 18511 + - uid: 4667 components: - type: Transform - pos: 32.5,-18.5 + pos: 30.5,-18.5 parent: 2 - proto: HolopadScienceArtifact entities: @@ -86234,13 +86095,6 @@ entities: - type: Transform pos: 0.5,-54.5 parent: 2 -- proto: HolopadServiceChapel - entities: - - uid: 19163 - components: - - type: Transform - pos: -21.5,-39.5 - parent: 2 - proto: HolopadServiceClownMime entities: - uid: 19134 @@ -86516,6 +86370,45 @@ entities: - type: Transform pos: 27.635538,-72.53113 parent: 2 +- proto: InflatableWall + entities: + - uid: 1847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-37.5 + parent: 2 + - uid: 2342 + components: + - type: Transform + pos: 54.5,-25.5 + parent: 2 + - uid: 3207 + components: + - type: Transform + pos: 26.5,-47.5 + parent: 2 + - uid: 4385 + components: + - type: Transform + pos: -41.5,-47.5 + parent: 2 + - uid: 4653 + components: + - type: Transform + pos: 26.5,-55.5 + parent: 2 + - uid: 6238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-33.5 + parent: 2 + - uid: 14108 + components: + - type: Transform + pos: -37.5,-43.5 + parent: 2 - proto: InflatableWallStack entities: - uid: 8002 @@ -86568,6 +86461,8 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,-53.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomCommon entities: - uid: 17760 @@ -86576,24 +86471,32 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17761 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17763 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17772 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomEngineering entities: - uid: 16536 @@ -86602,24 +86505,32 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-67.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17755 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-71.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17756 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17762 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomMedical entities: - uid: 6295 @@ -86628,28 +86539,38 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6681 components: - type: Transform pos: 16.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17754 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17758 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17759 components: - type: Transform pos: 11.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomScience entities: - uid: 11363 @@ -86658,6 +86579,8 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSecurity entities: - uid: 6087 @@ -86666,12 +86589,16 @@ entities: rot: -1.5707963267948966 rad pos: 63.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19381 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomService entities: - uid: 17768 @@ -86680,12 +86607,16 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17769 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSupply entities: - uid: 2999 @@ -86694,6 +86625,8 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-85.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: JanitorialTrolley entities: - uid: 5623 @@ -86861,7 +86794,8 @@ entities: - uid: 5678 components: - type: Transform - pos: -16.689243,-42.33948 + rot: 1.5707963267948966 rad + pos: -18.285185,-42.4478 parent: 2 - uid: 6027 components: @@ -86992,37 +86926,15 @@ entities: parent: 2 - proto: LeavesCannabisDried entities: - - uid: 18867 + - uid: 4681 components: - type: Transform - pos: -25.706669,-32.16909 + pos: -19.954123,-42.201088 parent: 2 - - uid: 18889 + - uid: 11715 components: - type: Transform - pos: -25.789955,-32.280567 - parent: 2 - - uid: 18902 - components: - - type: Transform - pos: -25.357204,-32.064083 - parent: 2 -- proto: LeavesTobaccoDried - entities: - - uid: 19012 - components: - - type: Transform - pos: -25.30165,-31.992579 - parent: 2 - - uid: 19013 - components: - - type: Transform - pos: -25.259981,-31.89941 - parent: 2 - - uid: 19014 - components: - - type: Transform - pos: -25.64344,-32.075485 + pos: -20.113028,-42.324776 parent: 2 - proto: LiquidNitrogenCanister entities: @@ -87072,6 +86984,8 @@ entities: 3324: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonChiefEngineer entities: - uid: 6608 @@ -87103,6 +87017,8 @@ entities: 15103: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonJanitor entities: - uid: 1041 @@ -87121,6 +87037,8 @@ entities: 696: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonMedical entities: - uid: 5114 @@ -87136,6 +87054,8 @@ entities: 546: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonService entities: - uid: 2479 @@ -87151,6 +87071,8 @@ entities: 252: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockerAtmosphericsFilledHardsuit entities: - uid: 4796 @@ -87324,10 +87246,10 @@ entities: parent: 2 - proto: LockerFreezerVaultFilled entities: - - uid: 5146 + - uid: 11718 components: - type: Transform - pos: 9.5,-43.5 + pos: 9.5,-44.5 parent: 2 - proto: LockerHeadOfPersonnelFilled entities: @@ -87520,13 +87442,15 @@ entities: - type: Transform pos: -16.5,-15.5 parent: 2 -- proto: LockerSecurityFilled +- proto: LockerSecurity entities: - - uid: 6149 + - uid: 4676 components: - type: Transform pos: 11.5,-47.5 parent: 2 +- proto: LockerSecurityFilled + entities: - uid: 9892 components: - type: Transform @@ -87559,6 +87483,8 @@ entities: - type: Transform pos: 12.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: LockerWardenFilled entities: - uid: 3453 @@ -87700,11 +87626,6 @@ entities: - type: Transform pos: 56.648838,-18.357616 parent: 2 - - uid: 18475 - components: - - type: Transform - pos: -23.48515,-92.497 - parent: 2 - proto: MachineAnomalyGenerator entities: - uid: 583 @@ -87865,11 +87786,6 @@ entities: - type: Transform pos: -34.5,-29.5 parent: 2 - - uid: 17361 - components: - - type: Transform - pos: -25.5,-39.5 - parent: 2 - uid: 17421 components: - type: Transform @@ -87978,16 +87894,18 @@ entities: parent: 2 - proto: Matchbox entities: - - uid: 5667 - components: - - type: Transform - pos: -25.615442,-29.699175 - parent: 2 - uid: 18996 components: - type: Transform pos: -21.27906,-47.504948 parent: 2 +- proto: MatchstickSpent + entities: + - uid: 5662 + components: + - type: Transform + pos: -9.56385,-38.433666 + parent: 2 - proto: MaterialBones1 entities: - uid: 7918 @@ -88076,13 +87994,6 @@ entities: - type: Transform pos: -3.5,-22.5 parent: 2 -- proto: MaterialDiamond1 - entities: - - uid: 17564 - components: - - type: Transform - pos: 9.487229,-44.345783 - parent: 2 - proto: MaterialDurathread entities: - uid: 16377 @@ -88121,6 +88032,21 @@ entities: parent: 2 - proto: MaterialWoodPlank1 entities: + - uid: 1679 + components: + - type: Transform + pos: -7.5,-33.5 + parent: 2 + - uid: 5376 + components: + - type: Transform + pos: -10.5,-32.5 + parent: 2 + - uid: 5649 + components: + - type: Transform + pos: -5.5,-38.5 + parent: 2 - uid: 7336 components: - type: Transform @@ -88275,11 +88201,6 @@ entities: - type: Transform pos: 21.454115,-29.711697 parent: 2 - - uid: 17032 - components: - - type: Transform - pos: 21.599949,-29.378132 - parent: 2 - proto: MedkitOxygenFilled entities: - uid: 5126 @@ -88355,24 +88276,32 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6160 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6161 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7093 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: MopBucketFull entities: - uid: 5622 @@ -88678,6 +88607,8 @@ entities: - type: Transform pos: 38.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: NTDefaultCircuitBoard entities: - uid: 18623 @@ -88838,6 +88769,8 @@ entities: - type: Transform pos: 72.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingSadClown entities: - uid: 6001 @@ -88846,6 +88779,8 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingTheGreatWave entities: - uid: 18495 @@ -88853,6 +88788,8 @@ entities: - type: Transform pos: -39.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingTheScream entities: - uid: 7051 @@ -88860,6 +88797,8 @@ entities: - type: Transform pos: -22.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaladinCircuitBoard entities: - uid: 18620 @@ -89230,6 +89169,13 @@ entities: - type: Transform pos: -9.678529,-26.311075 parent: 2 +- proto: PhoneInstrument + entities: + - uid: 14216 + components: + - type: Transform + pos: -48.062805,-45.86218 + parent: 2 - proto: PianoInstrument entities: - uid: 6989 @@ -89298,12 +89244,6 @@ entities: parent: 2 - proto: PlasmaReinforcedWindowDirectional entities: - - uid: 1616 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-21.5 - parent: 2 - uid: 3731 components: - type: Transform @@ -89316,12 +89256,42 @@ entities: rot: 3.141592653589793 rad pos: 58.5,-47.5 parent: 2 + - uid: 4704 + components: + - type: Transform + pos: 45.5,-20.5 + parent: 2 + - uid: 4723 + components: + - type: Transform + pos: 46.5,-20.5 + parent: 2 - uid: 4724 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-66.5 parent: 2 + - uid: 4921 + components: + - type: Transform + pos: 48.5,-20.5 + parent: 2 + - uid: 4923 + components: + - type: Transform + pos: 44.5,-20.5 + parent: 2 + - uid: 4924 + components: + - type: Transform + pos: 42.5,-20.5 + parent: 2 + - uid: 4927 + components: + - type: Transform + pos: 47.5,-20.5 + parent: 2 - uid: 5073 components: - type: Transform @@ -89334,17 +89304,26 @@ entities: rot: 3.141592653589793 rad pos: -57.5,-66.5 parent: 2 + - uid: 5146 + components: + - type: Transform + pos: 43.5,-20.5 + parent: 2 - uid: 5183 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,-66.5 parent: 2 - - uid: 5965 + - uid: 5691 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-66.5 + pos: 54.5,-20.5 + parent: 2 + - uid: 5692 + components: + - type: Transform + pos: 55.5,-20.5 parent: 2 - uid: 5976 components: @@ -89376,11 +89355,41 @@ entities: rot: 3.141592653589793 rad pos: 89.5,-46.5 parent: 2 + - uid: 11723 + components: + - type: Transform + pos: 56.5,-20.5 + parent: 2 - uid: 11755 components: - type: Transform pos: 89.5,-44.5 parent: 2 + - uid: 14000 + components: + - type: Transform + pos: 51.5,-20.5 + parent: 2 + - uid: 14001 + components: + - type: Transform + pos: 52.5,-20.5 + parent: 2 + - uid: 14002 + components: + - type: Transform + pos: 50.5,-20.5 + parent: 2 + - uid: 14003 + components: + - type: Transform + pos: 53.5,-20.5 + parent: 2 + - uid: 14004 + components: + - type: Transform + pos: 49.5,-20.5 + parent: 2 - uid: 16336 components: - type: Transform @@ -89399,11 +89408,6 @@ entities: rot: -1.5707963267948966 rad pos: -59.5,-61.5 parent: 2 - - uid: 18339 - components: - - type: Transform - pos: 58.5,-20.5 - parent: 2 - proto: PlasmaTank entities: - uid: 7689 @@ -89484,12 +89488,6 @@ entities: rot: 3.141592653589793 rad pos: 81.5,-44.5 parent: 2 - - uid: 2378 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-45.5 - parent: 2 - uid: 2896 components: - type: Transform @@ -89584,23 +89582,11 @@ entities: parent: 2 - proto: PlasmaWindoorSecureScienceLocked entities: - - uid: 5117 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-29.5 - parent: 2 - uid: 11364 components: - type: Transform pos: -7.5,-18.5 parent: 2 - - uid: 11711 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-35.5 - parent: 2 - uid: 13975 components: - type: Transform @@ -89620,6 +89606,12 @@ entities: rot: 3.141592653589793 rad pos: 59.5,-47.5 parent: 2 + - uid: 4742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-21.5 + parent: 2 - uid: 6143 components: - type: Transform @@ -89974,6 +89966,8 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandAtmosiaDeclarationIndependence entities: - uid: 17214 @@ -89982,6 +89976,8 @@ entities: rot: 3.141592653589793 rad pos: 45.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandClown entities: - uid: 5968 @@ -89990,18 +89986,24 @@ entities: rot: -1.5707963267948966 rad pos: -58.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19271 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19272 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandDonk entities: - uid: 2807 @@ -90009,98 +90011,132 @@ entities: - type: Transform pos: 13.5,-85.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6807 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-99.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6808 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-86.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6809 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-90.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6810 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-93.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6811 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-94.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6813 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-94.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6956 components: - type: Transform pos: 30.5,-102.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16968 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-83.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16969 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-83.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16970 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-86.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16971 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-86.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17229 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-102.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17230 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,-102.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18230 components: - type: Transform pos: 36.5,-89.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18530 components: - type: Transform pos: 11.5,-76.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18538 components: - type: Transform pos: 16.5,-85.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandDonutCorp entities: - uid: 17316 @@ -90108,6 +90144,8 @@ entities: - type: Transform pos: 6.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandEAT entities: - uid: 15130 @@ -90115,11 +90153,15 @@ entities: - type: Transform pos: 31.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16638 components: - type: Transform pos: 45.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandEnergySwords entities: - uid: 18496 @@ -90127,6 +90169,8 @@ entities: - type: Transform pos: -48.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandExoAcid entities: - uid: 19150 @@ -90135,34 +90179,46 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19155 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19169 components: - type: Transform pos: -41.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19176 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19211 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19240 components: - type: Transform pos: 21.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandExoChomp entities: - uid: 10734 @@ -90171,23 +90227,31 @@ entities: rot: -1.5707963267948966 rad pos: 74.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18764 components: - type: Transform pos: -37.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19148 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19202 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandExoRun entities: - uid: 7810 @@ -90195,24 +90259,32 @@ entities: - type: Transform pos: 74.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19154 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19172 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19190 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandHackingGuide entities: - uid: 19421 @@ -90220,6 +90292,8 @@ entities: - type: Transform pos: 39.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandLamarr entities: - uid: 17407 @@ -90227,6 +90301,8 @@ entities: - type: Transform pos: 3.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandRealExomorph entities: - uid: 2474 @@ -90234,16 +90310,22 @@ entities: - type: Transform pos: -23.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3137 components: - type: Transform pos: 76.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4387 components: - type: Transform pos: -21.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandRouny entities: - uid: 2672 @@ -90251,22 +90333,30 @@ entities: - type: Transform pos: -23.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7949 components: - type: Transform pos: 80.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19219 components: - type: Transform pos: -6.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19316 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandTools entities: - uid: 19383 @@ -90274,6 +90364,8 @@ entities: - type: Transform pos: -18.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandWehWatches entities: - uid: 16274 @@ -90281,6 +90373,8 @@ entities: - type: Transform pos: 51.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitAnatomyPoster entities: - uid: 2842 @@ -90288,6 +90382,8 @@ entities: - type: Transform pos: 12.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitBuild entities: - uid: 17216 @@ -90295,17 +90391,23 @@ entities: - type: Transform pos: 27.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17217 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19242 components: - type: Transform pos: -15.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitDickGumshue entities: - uid: 16263 @@ -90313,6 +90415,8 @@ entities: - type: Transform pos: 71.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitDoNotQuestion entities: - uid: 7071 @@ -90321,11 +90425,15 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18195 components: - type: Transform pos: 8.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitEnlist entities: - uid: 7072 @@ -90334,6 +90442,8 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitFoamForceAd entities: - uid: 8428 @@ -90341,11 +90451,15 @@ entities: - type: Transform pos: 70.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8515 components: - type: Transform pos: 68.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitHelpOthers entities: - uid: 17218 @@ -90354,6 +90468,8 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitHereForYourSafety entities: - uid: 16268 @@ -90361,11 +90477,15 @@ entities: - type: Transform pos: 70.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18196 components: - type: Transform pos: 11.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitIan entities: - uid: 18017 @@ -90373,6 +90493,8 @@ entities: - type: Transform pos: 12.5,-61.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitJustAWeekAway entities: - uid: 17036 @@ -90381,6 +90503,8 @@ entities: rot: 3.141592653589793 rad pos: 9.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitLoveIan entities: - uid: 17035 @@ -90389,11 +90513,15 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18021 components: - type: Transform pos: 12.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitMime entities: - uid: 6000 @@ -90402,6 +90530,8 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitNanotrasenLogo entities: - uid: 16107 @@ -90409,44 +90539,60 @@ entities: - type: Transform pos: -1.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16287 components: - type: Transform pos: 63.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16293 components: - type: Transform pos: 43.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17031 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17033 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17037 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18732 components: - type: Transform pos: 22.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18733 components: - type: Transform pos: 26.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitObey entities: - uid: 7159 @@ -90454,11 +90600,15 @@ entities: - type: Transform pos: 66.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7170 components: - type: Transform pos: 65.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitRenault entities: - uid: 18031 @@ -90467,6 +90617,8 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitReportCrimes entities: - uid: 7069 @@ -90474,11 +90626,15 @@ entities: - type: Transform pos: 31.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16269 components: - type: Transform pos: 63.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyEyeProtection entities: - uid: 19241 @@ -90486,6 +90642,8 @@ entities: - type: Transform pos: 17.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyInternals entities: - uid: 17219 @@ -90494,12 +90652,16 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18774 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,-67.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothDelam entities: - uid: 17232 @@ -90508,6 +90670,8 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothEpi entities: - uid: 16285 @@ -90515,12 +90679,16 @@ entities: - type: Transform pos: 49.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17233 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-61.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothHardhat entities: - uid: 17234 @@ -90529,12 +90697,16 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18773 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-67.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothMeth entities: - uid: 6970 @@ -90543,12 +90715,16 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-67.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17235 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothPiping entities: - uid: 17236 @@ -90557,6 +90733,8 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyReport entities: - uid: 15143 @@ -90564,11 +90742,15 @@ entities: - type: Transform pos: 48.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16284 components: - type: Transform pos: 57.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSecWatch entities: - uid: 7068 @@ -90576,11 +90758,15 @@ entities: - type: Transform pos: 26.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16271 components: - type: Transform pos: 54.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSpaceCops entities: - uid: 16272 @@ -90588,6 +90774,8 @@ entities: - type: Transform pos: 68.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitStateLaws entities: - uid: 17222 @@ -90596,6 +90784,8 @@ entities: rot: 3.141592653589793 rad pos: 26.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitTyrone entities: - uid: 18011 @@ -90604,6 +90794,8 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitWalk entities: - uid: 15144 @@ -90611,12 +90803,16 @@ entities: - type: Transform pos: 62.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16029 components: - type: Transform rot: -1.5707963267948966 rad pos: 73.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitWorkForAFuture entities: - uid: 16270 @@ -90624,12 +90820,16 @@ entities: - type: Transform pos: 73.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17220 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PottedPlant0 entities: - uid: 7767 @@ -90705,11 +90905,6 @@ entities: - type: Transform pos: 3.5,-69.5 parent: 2 - - uid: 17422 - components: - - type: Transform - pos: -2.5,-41.5 - parent: 2 - proto: PottedPlantBioluminscent entities: - uid: 8788 @@ -90839,24 +91034,6 @@ entities: parent: 2 - proto: Poweredlight entities: - - uid: 270 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-40.5 - parent: 2 - - uid: 287 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 94.5,-46.5 - parent: 2 - - uid: 468 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-15.5 - parent: 2 - uid: 806 components: - type: Transform @@ -90869,39 +91046,57 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-32.5 parent: 2 - - uid: 916 + - uid: 1337 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 2 + - uid: 1338 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 1339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-29.5 + parent: 2 + - uid: 1416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-17.5 + parent: 2 + - uid: 1445 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-12.5 + pos: -26.5,-47.5 parent: 2 - - uid: 1113 + - uid: 1616 components: - type: Transform - pos: 41.5,-23.5 + rot: -1.5707963267948966 rad + pos: -51.5,-42.5 parent: 2 - - uid: 1449 + - uid: 1671 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-40.5 + rot: -1.5707963267948966 rad + pos: -47.5,-38.5 parent: 2 - - uid: 1847 + - uid: 1672 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-25.5 + rot: -1.5707963267948966 rad + pos: -47.5,-52.5 parent: 2 - - uid: 1884 + - uid: 1680 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-58.5 - parent: 2 - - uid: 2194 - components: - - type: Transform - pos: 26.5,-48.5 + rot: -1.5707963267948966 rad + pos: -51.5,-48.5 parent: 2 - uid: 2245 components: @@ -90909,47 +91104,16 @@ entities: rot: -1.5707963267948966 rad pos: 54.5,-70.5 parent: 2 - - uid: 2254 + - uid: 3007 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-66.5 - parent: 2 - - uid: 2463 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-57.5 - parent: 2 - - uid: 2649 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-48.5 - parent: 2 - - uid: 2968 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-62.5 - parent: 2 - - uid: 3003 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-40.5 + pos: 17.5,-34.5 parent: 2 - uid: 3064 components: - type: Transform pos: 64.5,-23.5 parent: 2 - - uid: 3207 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-30.5 - parent: 2 - uid: 3348 components: - type: Transform @@ -90962,44 +91126,45 @@ entities: rot: -1.5707963267948966 rad pos: 66.5,-18.5 parent: 2 - - uid: 4018 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-17.5 - parent: 2 - uid: 4173 components: - type: Transform pos: 63.5,-16.5 parent: 2 - - uid: 4511 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-61.5 - parent: 2 - - uid: 4921 - components: - - type: Transform - pos: 29.5,-15.5 - parent: 2 - - uid: 4922 + - uid: 4715 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-10.5 + pos: 15.5,-59.5 parent: 2 - - uid: 5084 + - uid: 4934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-23.5 + parent: 2 + - uid: 4935 + components: + - type: Transform + pos: -39.5,-64.5 + parent: 2 + - uid: 4936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-64.5 + parent: 2 + - uid: 5029 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-21.5 + pos: -45.5,-65.5 parent: 2 - uid: 5122 components: - type: Transform - pos: -17.5,-37.5 + rot: -1.5707963267948966 rad + pos: -16.5,-16.5 parent: 2 - uid: 5184 components: @@ -91007,61 +91172,28 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,-70.5 parent: 2 - - uid: 5205 + - uid: 5298 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-18.5 + rot: -1.5707963267948966 rad + pos: -33.5,-64.5 parent: 2 - - uid: 5224 + - uid: 5682 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-31.5 - parent: 2 - - uid: 5376 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-69.5 - parent: 2 - - uid: 5780 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-84.5 - parent: 2 - - uid: 5842 - components: - - type: Transform - pos: 16.5,-27.5 + pos: -8.5,-43.5 parent: 2 - uid: 5855 components: - type: Transform pos: 12.5,-27.5 parent: 2 - - uid: 5881 + - uid: 6123 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-72.5 - parent: 2 - - uid: 6206 - components: - - type: Transform - pos: 18.5,-34.5 - parent: 2 - - uid: 6260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-67.5 - parent: 2 - - uid: 6289 - components: - - type: Transform - pos: 68.5,-32.5 + rot: -1.5707963267948966 rad + pos: 26.5,-34.5 parent: 2 - uid: 6390 components: @@ -91074,42 +91206,18 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-20.5 parent: 2 - - uid: 7158 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-36.5 - parent: 2 - uid: 7199 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-21.5 parent: 2 - - uid: 7234 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-23.5 - parent: 2 - uid: 7271 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-16.5 parent: 2 - - uid: 7295 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-52.5 - parent: 2 - - uid: 7568 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-27.5 - parent: 2 - uid: 7598 components: - type: Transform @@ -91121,24 +91229,12 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-57.5 parent: 2 - - uid: 7668 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-32.5 - parent: 2 - uid: 7709 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-32.5 parent: 2 - - uid: 7710 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-37.5 - parent: 2 - uid: 7711 components: - type: Transform @@ -91146,88 +91242,50 @@ entities: pos: 21.5,-70.5 parent: 2 - type: Timer - - uid: 7943 - components: - - type: Transform - pos: 60.5,-41.5 - parent: 2 - - uid: 7944 - components: - - type: Transform - pos: 40.5,-52.5 - parent: 2 - - uid: 8037 - components: - - type: Transform - pos: 33.5,-52.5 - parent: 2 - uid: 8181 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-64.5 parent: 2 - - uid: 8807 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-51.5 - parent: 2 - - uid: 9074 - components: - - type: Transform - pos: 11.5,-77.5 - parent: 2 - - uid: 9679 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-29.5 - parent: 2 - - uid: 9822 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-60.5 - parent: 2 - - uid: 9885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-13.5 - parent: 2 - - uid: 9957 - components: - - type: Transform - pos: -9.5,-30.5 - parent: 2 - uid: 10225 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-15.5 parent: 2 + - uid: 10283 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 2 - uid: 10411 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,-47.5 parent: 2 - - uid: 10494 - components: - - type: Transform - pos: -2.5,-30.5 - parent: 2 - uid: 10645 components: - type: Transform - pos: -6.5,-30.5 + pos: 24.5,-11.5 parent: 2 - - uid: 10741 + - uid: 10742 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-34.5 + rot: 3.141592653589793 rad + pos: 51.5,-24.5 + parent: 2 + - uid: 10786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-24.5 + parent: 2 + - uid: 10795 + components: + - type: Transform + pos: 18.5,-11.5 parent: 2 - uid: 10830 components: @@ -91235,17 +91293,6 @@ entities: rot: -1.5707963267948966 rad pos: 94.5,-44.5 parent: 2 - - uid: 11365 - components: - - type: Transform - pos: -8.5,-19.5 - parent: 2 - - uid: 11457 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-18.5 - parent: 2 - uid: 11470 components: - type: Transform @@ -91257,58 +91304,12 @@ entities: rot: 1.5707963267948966 rad pos: 58.5,-20.5 parent: 2 - - uid: 11916 - components: - - type: Transform - pos: -22.5,-37.5 - parent: 2 - - uid: 11917 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-27.5 - parent: 2 - - uid: 11918 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-27.5 - parent: 2 - - uid: 11947 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-73.5 - parent: 2 - - uid: 12786 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-65.5 - parent: 2 - uid: 12827 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,-26.5 parent: 2 - - uid: 12916 - components: - - type: Transform - pos: 57.5,-23.5 - parent: 2 - - uid: 13208 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-29.5 - parent: 2 - - uid: 13330 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-28.5 - parent: 2 - uid: 13332 components: - type: Transform @@ -91333,12 +91334,6 @@ entities: rot: 3.141592653589793 rad pos: 62.5,-29.5 parent: 2 - - uid: 13888 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-16.5 - parent: 2 - uid: 13918 components: - type: Transform @@ -91349,35 +91344,18 @@ entities: - type: Transform pos: -1.5,-5.5 parent: 2 - - uid: 13947 - components: - - type: Transform - pos: 4.5,-5.5 - parent: 2 - uid: 13949 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,2.5 parent: 2 - - uid: 13950 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,0.5 - parent: 2 - uid: 13951 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-5.5 parent: 2 - - uid: 13952 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-7.5 - parent: 2 - uid: 13954 components: - type: Transform @@ -91408,86 +91386,22 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-2.5 parent: 2 - - uid: 13959 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-7.5 - parent: 2 - - uid: 13960 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-4.5 - parent: 2 - - uid: 13961 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 2 - uid: 13962 components: - type: Transform pos: -6.5,-1.5 parent: 2 - - uid: 13963 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-3.5 - parent: 2 - - uid: 13964 - components: - - type: Transform - pos: 6.5,-3.5 - parent: 2 - uid: 13965 components: - type: Transform pos: -4.5,2.5 parent: 2 - - uid: 13971 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-12.5 - parent: 2 - - uid: 13972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-12.5 - parent: 2 - - uid: 13973 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-15.5 - parent: 2 - - uid: 13974 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-15.5 - parent: 2 - uid: 13976 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-15.5 parent: 2 - - uid: 13980 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-16.5 - parent: 2 - - uid: 13981 - components: - - type: Transform - pos: 10.5,-14.5 - parent: 2 - uid: 13982 components: - type: Transform @@ -91504,77 +91418,12 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-20.5 parent: 2 - - uid: 13988 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-22.5 - parent: 2 - uid: 13989 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-25.5 parent: 2 - - uid: 14000 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-25.5 - parent: 2 - - uid: 14001 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-20.5 - parent: 2 - - uid: 14002 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-33.5 - parent: 2 - - uid: 14003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-33.5 - parent: 2 - - uid: 14004 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-36.5 - parent: 2 - - uid: 14012 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-36.5 - parent: 2 - - uid: 14018 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-47.5 - parent: 2 - - uid: 14019 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-41.5 - parent: 2 - - uid: 14021 - components: - - type: Transform - pos: -26.5,-55.5 - parent: 2 - - uid: 14022 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-51.5 - parent: 2 - uid: 14023 components: - type: Transform @@ -91586,63 +91435,23 @@ entities: - type: Transform pos: -12.5,-58.5 parent: 2 - - uid: 14037 - components: - - type: Transform - pos: -21.5,-66.5 - parent: 2 - uid: 14038 components: - type: Transform pos: -25.5,-66.5 parent: 2 - - uid: 14039 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-66.5 - parent: 2 - uid: 14040 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-62.5 parent: 2 - - uid: 14048 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-12.5 - parent: 2 - uid: 14050 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-76.5 parent: 2 - - uid: 14054 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-63.5 - parent: 2 - - uid: 14055 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-54.5 - parent: 2 - - uid: 14057 - components: - - type: Transform - pos: -31.5,-51.5 - parent: 2 - - uid: 14059 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-60.5 - parent: 2 - uid: 14060 components: - type: Transform @@ -91667,125 +91476,27 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,-65.5 parent: 2 - - uid: 14066 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-57.5 - parent: 2 - uid: 14071 components: - type: Transform pos: 8.5,-47.5 parent: 2 - - uid: 14072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-49.5 - parent: 2 - - uid: 14073 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-51.5 - parent: 2 - - uid: 14074 - components: - - type: Transform - pos: 7.5,-52.5 - parent: 2 - - uid: 14075 - components: - - type: Transform - pos: 11.5,-52.5 - parent: 2 - - uid: 14077 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-57.5 - parent: 2 - - uid: 14078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-61.5 - parent: 2 - - uid: 14080 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-56.5 - parent: 2 - uid: 14084 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-51.5 parent: 2 - - uid: 14085 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-56.5 - parent: 2 - - uid: 14087 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-55.5 - parent: 2 - - uid: 14088 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-48.5 - parent: 2 - - uid: 14092 - components: - - type: Transform - pos: 5.5,-65.5 - parent: 2 - - uid: 14095 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-69.5 - parent: 2 - uid: 14097 components: - type: Transform pos: -2.5,-69.5 parent: 2 - - uid: 14107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-76.5 - parent: 2 - - uid: 14108 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-79.5 - parent: 2 - - uid: 14109 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-79.5 - parent: 2 - uid: 14110 components: - type: Transform pos: 22.5,-76.5 parent: 2 - - uid: 14111 - components: - - type: Transform - pos: 26.5,-76.5 - parent: 2 - uid: 14112 components: - type: Transform @@ -91798,297 +91509,40 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,-81.5 parent: 2 - - uid: 14114 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-81.5 - parent: 2 - uid: 14116 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-21.5 parent: 2 - - uid: 14117 - components: - - type: Transform - pos: -15.5,-18.5 - parent: 2 - - uid: 14120 - components: - - type: Transform - pos: 11.5,-71.5 - parent: 2 - - uid: 14124 - components: - - type: Transform - pos: -19.5,-15.5 - parent: 2 - - uid: 14128 - components: - - type: Transform - pos: -12.5,-23.5 - parent: 2 - - uid: 14129 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-27.5 - parent: 2 - uid: 14130 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-26.5 parent: 2 - - uid: 14131 - components: - - type: Transform - pos: -20.5,-24.5 - parent: 2 - - uid: 14133 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-39.5 - parent: 2 - - uid: 14134 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-41.5 - parent: 2 - - uid: 14135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-41.5 - parent: 2 - - uid: 14136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-33.5 - parent: 2 - - uid: 14145 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-13.5 - parent: 2 - - uid: 14146 - components: - - type: Transform - pos: -19.5,-11.5 - parent: 2 - - uid: 14147 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-16.5 - parent: 2 - - uid: 14149 - components: - - type: Transform - pos: -25.5,-11.5 - parent: 2 - uid: 14150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-16.5 + rot: -1.5707963267948966 rad + pos: 25.5,-39.5 parent: 2 - uid: 14151 components: - type: Transform pos: -34.5,-10.5 parent: 2 - - uid: 14154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-12.5 - parent: 2 - uid: 14158 components: - type: Transform pos: -4.5,-10.5 parent: 2 - - uid: 14159 - components: - - type: Transform - pos: 9.5,-10.5 - parent: 2 - - uid: 14161 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-22.5 - parent: 2 - - uid: 14162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-25.5 - parent: 2 - - uid: 14163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-21.5 - parent: 2 - - uid: 14164 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-27.5 - parent: 2 - - uid: 14165 - components: - - type: Transform - pos: -32.5,-33.5 - parent: 2 - - uid: 14166 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-37.5 - parent: 2 - - uid: 14167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-39.5 - parent: 2 - - uid: 14168 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-31.5 - parent: 2 - - uid: 14169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-47.5 - parent: 2 - - uid: 14170 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-43.5 - parent: 2 - - uid: 14171 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-49.5 - parent: 2 - - uid: 14172 - components: - - type: Transform - pos: -32.5,-41.5 - parent: 2 - - uid: 14173 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-47.5 - parent: 2 - - uid: 14174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-43.5 - parent: 2 - - uid: 14175 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-48.5 - parent: 2 - - uid: 14176 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-42.5 - parent: 2 - - uid: 14177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-39.5 - parent: 2 - - uid: 14180 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-54.5 - parent: 2 - - uid: 14182 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-48.5 - parent: 2 - - uid: 14183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-42.5 - parent: 2 - - uid: 14184 - components: - - type: Transform - pos: -50.5,-36.5 - parent: 2 - - uid: 14185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-48.5 - parent: 2 - - uid: 14186 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-42.5 - parent: 2 - - uid: 14187 - components: - - type: Transform - pos: -54.5,-43.5 - parent: 2 - - uid: 14188 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-47.5 - parent: 2 - - uid: 14193 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-73.5 - parent: 2 - - uid: 14202 - components: - - type: Transform - pos: 18.5,-91.5 - parent: 2 - uid: 14204 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-93.5 parent: 2 - - uid: 14205 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-89.5 - parent: 2 - uid: 14206 components: - type: Transform @@ -92101,115 +91555,18 @@ entities: rot: 3.141592653589793 rad pos: 22.5,-99.5 parent: 2 - - uid: 14208 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-101.5 - parent: 2 - uid: 14209 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-101.5 parent: 2 - - uid: 14210 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-95.5 - parent: 2 - - uid: 14211 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-93.5 - parent: 2 - uid: 14214 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-90.5 parent: 2 - - uid: 14215 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-54.5 - parent: 2 - - uid: 14216 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-79.5 - parent: 2 - - uid: 14217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-73.5 - parent: 2 - - type: Timer - - uid: 14218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-68.5 - parent: 2 - - type: Timer - - uid: 14219 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-55.5 - parent: 2 - - uid: 14220 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-64.5 - parent: 2 - - uid: 14221 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-51.5 - parent: 2 - - uid: 14222 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-58.5 - parent: 2 - - uid: 14223 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-58.5 - parent: 2 - - uid: 14224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-55.5 - parent: 2 - - uid: 14225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-51.5 - parent: 2 - - uid: 14226 - components: - - type: Transform - pos: 22.5,-48.5 - parent: 2 - - uid: 14228 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-54.5 - parent: 2 - uid: 14232 components: - type: Transform @@ -92221,52 +91578,11 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,-39.5 parent: 2 - - uid: 14235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-45.5 - parent: 2 - uid: 14236 components: - type: Transform pos: 41.5,-40.5 parent: 2 - - uid: 14260 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-52.5 - parent: 2 - - uid: 14284 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-33.5 - parent: 2 - - uid: 14285 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-39.5 - parent: 2 - - uid: 14286 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-45.5 - parent: 2 - - uid: 14292 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-72.5 - parent: 2 - - uid: 14324 - components: - - type: Transform - pos: 39.5,-56.5 - parent: 2 - uid: 14325 components: - type: Transform @@ -92349,23 +91665,6 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-68.5 parent: 2 - - uid: 14803 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-15.5 - parent: 2 - - uid: 14946 - components: - - type: Transform - pos: 14.5,-11.5 - parent: 2 - - uid: 15146 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-31.5 - parent: 2 - uid: 15148 components: - type: Transform @@ -92382,18 +91681,6 @@ entities: - type: Transform pos: 56.5,-36.5 parent: 2 - - uid: 15201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-39.5 - parent: 2 - - uid: 15202 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-28.5 - parent: 2 - uid: 15203 components: - type: Transform @@ -92406,36 +91693,12 @@ entities: rot: -1.5707963267948966 rad pos: 70.5,-28.5 parent: 2 - - uid: 15205 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-39.5 - parent: 2 - uid: 15206 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-41.5 parent: 2 - - uid: 15207 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-42.5 - parent: 2 - - uid: 15208 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-52.5 - parent: 2 - - uid: 15209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-51.5 - parent: 2 - uid: 15210 components: - type: Transform @@ -92448,69 +91711,12 @@ entities: rot: 1.5707963267948966 rad pos: 64.5,-47.5 parent: 2 - - uid: 15212 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-44.5 - parent: 2 - - uid: 15213 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-44.5 - parent: 2 - - uid: 15215 - components: - - type: Transform - pos: 52.5,-43.5 - parent: 2 - - uid: 15216 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-47.5 - parent: 2 - - uid: 15217 - components: - - type: Transform - pos: 49.5,-50.5 - parent: 2 - - uid: 15218 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-46.5 - parent: 2 - - uid: 15219 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-41.5 - parent: 2 - - uid: 15225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-41.5 - parent: 2 - uid: 15226 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,-35.5 parent: 2 - - uid: 15227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-32.5 - parent: 2 - - uid: 15233 - components: - - type: Transform - pos: 60.5,-31.5 - parent: 2 - uid: 15234 components: - type: Transform @@ -92523,41 +91729,12 @@ entities: rot: -1.5707963267948966 rad pos: 69.5,-34.5 parent: 2 - - uid: 15237 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-44.5 - parent: 2 - - uid: 15238 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-38.5 - parent: 2 - - uid: 15247 - components: - - type: Transform - pos: 88.5,-43.5 - parent: 2 - uid: 15248 components: - type: Transform rot: 3.141592653589793 rad pos: 88.5,-47.5 parent: 2 - - uid: 15251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-49.5 - parent: 2 - - uid: 15252 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-49.5 - parent: 2 - uid: 15253 components: - type: Transform @@ -92574,18 +91751,6 @@ entities: - type: Transform pos: 54.5,-55.5 parent: 2 - - uid: 15399 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-57.5 - parent: 2 - - uid: 15411 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-21.5 - parent: 2 - uid: 15442 components: - type: Transform @@ -92596,12 +91761,6 @@ entities: - type: Transform pos: 15.5,-69.5 parent: 2 - - uid: 15881 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-14.5 - parent: 2 - uid: 16147 components: - type: Transform @@ -92626,39 +91785,12 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-100.5 parent: 2 - - uid: 16533 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-40.5 - parent: 2 - - uid: 16540 - components: - - type: Transform - pos: -13.5,-15.5 - parent: 2 - uid: 16547 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-68.5 parent: 2 - - uid: 16548 - components: - - type: Transform - pos: 13.5,-65.5 - parent: 2 - - uid: 16549 - components: - - type: Transform - pos: 20.5,-65.5 - parent: 2 - - uid: 16550 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-69.5 - parent: 2 - uid: 16564 components: - type: Transform @@ -92675,18 +91807,6 @@ entities: - type: Transform pos: -24.5,-16.5 parent: 2 - - uid: 17332 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-67.5 - parent: 2 - - uid: 17416 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-31.5 - parent: 2 - uid: 17549 components: - type: Transform @@ -92699,91 +91819,12 @@ entities: rot: 3.141592653589793 rad pos: 10.5,-75.5 parent: 2 - - uid: 17785 - components: - - type: Transform - pos: -12.5,-11.5 - parent: 2 - - uid: 17806 - components: - - type: Transform - pos: 3.5,-34.5 - parent: 2 - uid: 17831 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-89.5 parent: 2 - - uid: 17832 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-89.5 - parent: 2 - - uid: 18069 - components: - - type: Transform - pos: 18.5,-11.5 - parent: 2 - - uid: 18070 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-13.5 - parent: 2 - - uid: 18072 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-10.5 - parent: 2 - - uid: 18073 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-27.5 - parent: 2 - - uid: 18074 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-39.5 - parent: 2 - - uid: 18075 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-39.5 - parent: 2 - - uid: 18076 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-50.5 - parent: 2 - - uid: 18077 - components: - - type: Transform - pos: -50.5,-44.5 - parent: 2 - - uid: 18078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-37.5 - parent: 2 - - uid: 18079 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-52.5 - parent: 2 - - uid: 18081 - components: - - type: Transform - pos: -36.5,-64.5 - parent: 2 - uid: 18082 components: - type: Transform @@ -92808,71 +91849,17 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,-78.5 parent: 2 - - uid: 18086 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-78.5 - parent: 2 - uid: 18087 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-78.5 parent: 2 - - uid: 18088 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-78.5 - parent: 2 - uid: 18089 components: - type: Transform pos: 16.5,-65.5 parent: 2 - - uid: 18090 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-69.5 - parent: 2 - - uid: 18093 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-89.5 - parent: 2 - - uid: 18094 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-101.5 - parent: 2 - - uid: 18095 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-100.5 - parent: 2 - - uid: 18096 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-100.5 - parent: 2 - - uid: 18097 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-85.5 - parent: 2 - - uid: 18098 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-85.5 - parent: 2 - uid: 18108 components: - type: Transform @@ -92885,120 +91872,12 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-46.5 parent: 2 - - uid: 18111 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-46.5 - parent: 2 - - uid: 18112 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-15.5 - parent: 2 - - uid: 18113 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-17.5 - parent: 2 - - uid: 18116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-16.5 - parent: 2 - - uid: 18121 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-17.5 - parent: 2 - - uid: 18122 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-17.5 - parent: 2 - - uid: 18123 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-36.5 - parent: 2 - - uid: 18124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-36.5 - parent: 2 - uid: 18125 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-62.5 parent: 2 - - uid: 18126 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-25.5 - parent: 2 - - uid: 18128 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-79.5 - parent: 2 - - uid: 18138 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-52.5 - parent: 2 - - uid: 18139 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-38.5 - parent: 2 - - uid: 18140 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-55.5 - parent: 2 - - uid: 18141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-35.5 - parent: 2 - - uid: 18142 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-47.5 - parent: 2 - - uid: 18143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-43.5 - parent: 2 - - uid: 18144 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-53.5 - parent: 2 - - uid: 18146 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-47.5 - parent: 2 - uid: 18147 components: - type: Transform @@ -93016,42 +91895,12 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,-25.5 parent: 2 - - uid: 18153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-22.5 - parent: 2 - uid: 18155 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-58.5 parent: 2 - - uid: 18157 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-18.5 - parent: 2 - - uid: 18176 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-64.5 - parent: 2 - - uid: 18177 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-64.5 - parent: 2 - - uid: 18178 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-70.5 - parent: 2 - uid: 18179 components: - type: Transform @@ -93075,41 +91924,6 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,-93.5 parent: 2 - - uid: 18192 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-69.5 - parent: 2 - - uid: 18252 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-28.5 - parent: 2 - - uid: 18306 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-14.5 - parent: 2 - - uid: 18357 - components: - - type: Transform - pos: 39.5,-63.5 - parent: 2 - - uid: 18406 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-10.5 - parent: 2 - - uid: 18784 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-15.5 - parent: 2 - uid: 18824 components: - type: Transform @@ -93122,75 +91936,12 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-52.5 parent: 2 - - uid: 19026 - components: - - type: Transform - pos: 32.5,-37.5 - parent: 2 - - uid: 19031 - components: - - type: Transform - pos: -49.5,-49.5 - parent: 2 - - uid: 19032 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-41.5 - parent: 2 - - uid: 19033 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-40.5 - parent: 2 - - uid: 19034 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-50.5 - parent: 2 - - uid: 19199 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-55.5 - parent: 2 - - uid: 19270 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-61.5 - parent: 2 - uid: 19328 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,-69.5 parent: 2 - - uid: 19398 - components: - - type: Transform - pos: 11.5,-34.5 - parent: 2 - - uid: 19443 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-13.5 - parent: 2 - - uid: 19472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-24.5 - parent: 2 - - uid: 19475 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-24.5 - parent: 2 - uid: 19492 components: - type: Transform @@ -93202,35 +91953,6 @@ entities: rot: 3.141592653589793 rad pos: 47.5,-72.5 parent: 2 - - uid: 19511 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-24.5 - parent: 2 - - uid: 19512 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-20.5 - parent: 2 - - uid: 19538 - components: - - type: Transform - pos: -17.5,-53.5 - parent: 2 - - uid: 19542 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-14.5 - parent: 2 - - uid: 19543 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-20.5 - parent: 2 - uid: 19544 components: - type: Transform @@ -93253,61 +91975,46 @@ entities: - type: Transform pos: 34.5,-17.5 parent: 2 - - uid: 19549 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-24.5 - parent: 2 - - uid: 19550 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-24.5 - parent: 2 - - uid: 19552 - components: - - type: Transform - pos: 39.5,-23.5 - parent: 2 - uid: 19553 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-11.5 parent: 2 - - uid: 19576 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-51.5 - parent: 2 - - uid: 19580 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-14.5 - parent: 2 - - uid: 19644 - components: - - type: Transform - pos: 62.5,-20.5 - parent: 2 - - uid: 19729 - components: - - type: Transform - pos: 33.5,-97.5 - parent: 2 - uid: 20052 components: - type: Transform pos: 84.5,-44.5 parent: 2 - - uid: 20053 +- proto: PoweredlightCyan + entities: + - uid: 1336 + components: + - type: Transform + pos: 10.5,-77.5 + parent: 2 + - uid: 1449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-71.5 + parent: 2 + - uid: 10302 + components: + - type: Transform + pos: 4.5,-65.5 + parent: 2 + - uid: 10494 components: - type: Transform rot: 3.141592653589793 rad - pos: 84.5,-46.5 + pos: 19.5,-79.5 + parent: 2 + - uid: 14217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-68.5 parent: 2 - proto: PoweredlightExterior entities: @@ -93483,19 +92190,112 @@ entities: parent: 2 - proto: PoweredlightGreen entities: + - uid: 1709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-45.5 + parent: 2 + - uid: 1717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-50.5 + parent: 2 + - uid: 3215 + components: + - type: Transform + pos: -31.5,-55.5 + parent: 2 + - uid: 3438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-53.5 + parent: 2 + - uid: 4394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-50.5 + parent: 2 + - uid: 4675 + components: + - type: Transform + pos: 22.5,-48.5 + parent: 2 + - uid: 4892 + components: + - type: Transform + pos: 37.5,-53.5 + parent: 2 + - uid: 4922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-46.5 + parent: 2 - uid: 5201 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-42.5 parent: 2 -- proto: PoweredlightPink - entities: - - uid: 3215 + - uid: 5654 + components: + - type: Transform + pos: -15.5,-52.5 + parent: 2 + - uid: 9848 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-43.5 + pos: -13.5,-33.5 + parent: 2 + - uid: 14019 + components: + - type: Transform + pos: -5.5,-30.5 + parent: 2 +- proto: PoweredlightPink + entities: + - uid: 3495 + components: + - type: Transform + pos: 3.5,-34.5 + parent: 2 + - uid: 3876 + components: + - type: Transform + pos: -31.5,-37.5 + parent: 2 + - uid: 4089 + components: + - type: Transform + pos: -15.5,-11.5 + parent: 2 + - uid: 4703 + components: + - type: Transform + pos: 12.5,-52.5 + parent: 2 + - uid: 5650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-16.5 + parent: 2 + - uid: 5681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-28.5 + parent: 2 + - uid: 9957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-58.5 parent: 2 - uid: 12564 components: @@ -93503,42 +92303,23 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-41.5 parent: 2 + - uid: 14027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-35.5 + parent: 2 + - uid: 14114 + components: + - type: Transform + pos: -43.5,-40.5 + parent: 2 - uid: 16463 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-43.5 parent: 2 - - uid: 17739 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-41.5 - parent: 2 - - uid: 19596 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-38.5 - parent: 2 - - uid: 19598 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-46.5 - parent: 2 - - uid: 19599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-38.5 - parent: 2 - - uid: 19600 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-46.5 - parent: 2 - proto: PoweredLightPostSmall entities: - uid: 235 @@ -93573,12 +92354,6 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,-25.5 parent: 2 - - uid: 1694 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-24.5 - parent: 2 - uid: 1702 components: - type: Transform @@ -93603,34 +92378,17 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-68.5 parent: 2 - - uid: 3395 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-77.5 - parent: 2 - uid: 3486 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-61.5 parent: 2 - - uid: 3495 + - uid: 4395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-37.5 - parent: 2 - - uid: 3948 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-36.5 - parent: 2 - - uid: 4303 - components: - - type: Transform - pos: -35.5,-60.5 + rot: 3.141592653589793 rad + pos: -32.5,-42.5 parent: 2 - uid: 4436 components: @@ -93650,16 +92408,39 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-61.5 parent: 2 - - uid: 5298 + - uid: 4693 components: - type: Transform - pos: 71.5,-70.5 + pos: -32.5,-48.5 parent: 2 - - uid: 5308 + - uid: 5684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-72.5 + pos: -6.5,-61.5 + parent: 2 + - uid: 5685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-64.5 + parent: 2 + - uid: 5686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-67.5 + parent: 2 + - uid: 5687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-17.5 + parent: 2 + - uid: 5881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-67.5 parent: 2 - uid: 6045 components: @@ -93678,16 +92459,6 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,-61.5 parent: 2 - - uid: 7146 - components: - - type: Transform - pos: 43.5,-75.5 - parent: 2 - - uid: 7148 - components: - - type: Transform - pos: -47.5,-64.5 - parent: 2 - uid: 7454 components: - type: Transform @@ -93699,63 +92470,23 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-26.5 parent: 2 - - uid: 9307 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-73.5 - parent: 2 - - uid: 9848 - components: - - type: Transform - pos: -42.5,-65.5 - parent: 2 - - uid: 10283 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-45.5 - parent: 2 - uid: 10743 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-57.5 parent: 2 - - uid: 10795 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-43.5 - parent: 2 - uid: 11130 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-80.5 parent: 2 - - uid: 11131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-78.5 - parent: 2 - uid: 11397 components: - type: Transform pos: -54.5,-27.5 parent: 2 - - uid: 12915 - components: - - type: Transform - pos: 20.5,-63.5 - parent: 2 - - uid: 13390 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-101.5 - parent: 2 - uid: 13391 components: - type: Transform @@ -93789,52 +92520,17 @@ entities: rot: 3.141592653589793 rad pos: 11.5,-25.5 parent: 2 - - uid: 13985 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-23.5 - parent: 2 - uid: 13994 components: - type: Transform pos: 5.5,-27.5 parent: 2 - - uid: 13995 - components: - - type: Transform - pos: 8.5,-27.5 - parent: 2 - - uid: 14014 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-43.5 - parent: 2 - - uid: 14027 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-63.5 - parent: 2 - uid: 14031 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-64.5 parent: 2 - - uid: 14041 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-60.5 - parent: 2 - - uid: 14076 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-59.5 - parent: 2 - uid: 14079 components: - type: Transform @@ -93867,38 +92563,10 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-67.5 parent: 2 - - uid: 14100 + - uid: 14120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-64.5 - parent: 2 - - uid: 14101 - components: - - type: Transform - pos: -5.5,-61.5 - parent: 2 - - uid: 14102 - components: - - type: Transform - pos: -7.5,-61.5 - parent: 2 - - uid: 14103 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-72.5 - parent: 2 - - uid: 14132 - components: - - type: Transform - pos: -24.5,-29.5 - parent: 2 - - uid: 14137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-22.5 + pos: -32.5,-48.5 parent: 2 - uid: 14142 components: @@ -93941,12 +92609,6 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,-54.5 parent: 2 - - uid: 14190 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-37.5 - parent: 2 - uid: 14191 components: - type: Transform @@ -93975,12 +92637,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-88.5 parent: 2 - - uid: 14197 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-73.5 - parent: 2 - uid: 14198 components: - type: Transform @@ -94004,12 +92660,6 @@ entities: rot: 3.141592653589793 rad pos: 34.5,-50.5 parent: 2 - - uid: 14231 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-50.5 - parent: 2 - uid: 14332 components: - type: Transform @@ -94045,71 +92695,30 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-25.5 parent: 2 - - uid: 15214 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-58.5 - parent: 2 - - uid: 15240 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-44.5 - parent: 2 - - uid: 15245 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-47.5 - parent: 2 - uid: 15246 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,-45.5 parent: 2 - - uid: 15254 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-50.5 - parent: 2 - uid: 15255 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-56.5 parent: 2 - - uid: 15256 - components: - - type: Transform - pos: 58.5,-68.5 - parent: 2 - uid: 15257 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-74.5 parent: 2 - - uid: 15258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-71.5 - parent: 2 - uid: 15259 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,-68.5 parent: 2 - - uid: 15260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-65.5 - parent: 2 - uid: 15264 components: - type: Transform @@ -94138,121 +92747,23 @@ entities: - type: Transform pos: 66.5,-62.5 parent: 2 - - uid: 15336 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-68.5 - parent: 2 - - uid: 15339 - components: - - type: Transform - pos: 75.5,-60.5 - parent: 2 - - uid: 15340 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-64.5 - parent: 2 - - uid: 15359 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-69.5 - parent: 2 - - uid: 15373 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-66.5 - parent: 2 - uid: 15386 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-75.5 parent: 2 - - uid: 15387 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-76.5 - parent: 2 - - uid: 15388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-55.5 - parent: 2 - - uid: 15430 - components: - - type: Transform - pos: 77.5,-51.5 - parent: 2 - uid: 15462 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-59.5 parent: 2 - - uid: 15546 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-70.5 - parent: 2 - - uid: 15852 - components: - - type: Transform - pos: 48.5,-26.5 - parent: 2 - - uid: 15853 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-32.5 - parent: 2 - - uid: 15856 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-38.5 - parent: 2 - - uid: 15857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-43.5 - parent: 2 - - uid: 15858 - components: - - type: Transform - pos: 51.5,-40.5 - parent: 2 - - uid: 15883 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-46.5 - parent: 2 - uid: 16021 components: - type: Transform pos: 41.5,-32.5 parent: 2 - - uid: 16022 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-36.5 - parent: 2 - - uid: 16028 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-32.5 - parent: 2 - uid: 16041 components: - type: Transform @@ -94292,12 +92803,6 @@ entities: - type: Transform pos: -33.5,-27.5 parent: 2 - - uid: 16544 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-77.5 - parent: 2 - uid: 16545 components: - type: Transform @@ -94321,16 +92826,6 @@ entities: - type: Transform pos: -34.5,-29.5 parent: 2 - - uid: 16597 - components: - - type: Transform - pos: -39.5,-77.5 - parent: 2 - - uid: 16974 - components: - - type: Transform - pos: 53.5,-96.5 - parent: 2 - uid: 17137 components: - type: Transform @@ -94369,94 +92864,18 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,-21.5 parent: 2 - - uid: 18030 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-23.5 - parent: 2 - - uid: 18065 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-69.5 - parent: 2 - - uid: 18080 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-67.5 - parent: 2 - uid: 18099 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-101.5 parent: 2 - - uid: 18107 - components: - - type: Transform - pos: 34.5,-48.5 - parent: 2 - - uid: 18118 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-26.5 - parent: 2 - - uid: 18120 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-17.5 - parent: 2 - - uid: 18136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-29.5 - parent: 2 - uid: 18137 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-37.5 parent: 2 - - uid: 18156 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-47.5 - parent: 2 - - uid: 18185 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-21.5 - parent: 2 - - uid: 18190 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-90.5 - parent: 2 - - uid: 18401 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-56.5 - parent: 2 - - uid: 19030 - components: - - type: Transform - pos: -44.5,-52.5 - parent: 2 - - uid: 19074 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-34.5 - parent: 2 - uid: 19273 components: - type: Transform @@ -94474,12 +92893,6 @@ entities: - type: Transform pos: 55.5,-97.5 parent: 2 - - uid: 19418 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-34.5 - parent: 2 - uid: 19474 components: - type: Transform @@ -94491,12 +92904,6 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,-62.5 parent: 2 - - uid: 19551 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-20.5 - parent: 2 - uid: 20009 components: - type: Transform @@ -94505,11 +92912,41 @@ entities: parent: 2 - proto: PoweredWarmSmallLight entities: - - uid: 15239 + - uid: 1431 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-49.5 + rot: 1.5707963267948966 rad + pos: -49.5,-47.5 + parent: 2 + - uid: 1432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-43.5 + parent: 2 + - uid: 1716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-41.5 + parent: 2 + - uid: 5656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-28.5 + parent: 2 + - uid: 6672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-41.5 + parent: 2 + - uid: 9679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-32.5 parent: 2 - uid: 15241 components: @@ -94523,11 +92960,6 @@ entities: rot: 1.5707963267948966 rad pos: 68.5,-48.5 parent: 2 - - uid: 17504 - components: - - type: Transform - pos: 70.5,-46.5 - parent: 2 - proto: PrefilledSyringe entities: - uid: 17022 @@ -94587,6 +93019,11 @@ entities: - type: Transform pos: 75.5,-23.5 parent: 2 + - uid: 5842 + components: + - type: Transform + pos: 22.5,-55.5 + parent: 2 - uid: 6244 components: - type: Transform @@ -94764,6 +93201,16 @@ entities: parent: 2 - proto: PuddleBloodSmall entities: + - uid: 1683 + components: + - type: Transform + pos: 21.5,-53.5 + parent: 2 + - uid: 1684 + components: + - type: Transform + pos: 27.5,-52.5 + parent: 2 - uid: 2480 components: - type: Transform @@ -94774,6 +93221,91 @@ entities: - type: Transform pos: 75.5,-54.5 parent: 2 + - uid: 4666 + components: + - type: Transform + pos: -12.5,-34.5 + parent: 2 + - uid: 4835 + components: + - type: Transform + pos: -4.5,-40.5 + parent: 2 + - uid: 4850 + components: + - type: Transform + pos: -5.5,-40.5 + parent: 2 + - uid: 4928 + components: + - type: Transform + pos: -3.5,-38.5 + parent: 2 + - uid: 4929 + components: + - type: Transform + pos: -10.5,-33.5 + parent: 2 + - uid: 4930 + components: + - type: Transform + pos: -4.5,-41.5 + parent: 2 + - uid: 4931 + components: + - type: Transform + pos: -2.5,-39.5 + parent: 2 + - uid: 5031 + components: + - type: Transform + pos: -3.5,-39.5 + parent: 2 + - uid: 5117 + components: + - type: Transform + pos: -4.5,-33.5 + parent: 2 + - uid: 5224 + components: + - type: Transform + pos: -2.5,-38.5 + parent: 2 + - uid: 5652 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 2 + - uid: 5653 + components: + - type: Transform + pos: -1.5,-38.5 + parent: 2 + - uid: 5664 + components: + - type: Transform + pos: -0.5,-37.5 + parent: 2 + - uid: 5667 + components: + - type: Transform + pos: -7.5,-40.5 + parent: 2 + - uid: 5689 + components: + - type: Transform + pos: 21.5,-55.5 + parent: 2 + - uid: 9885 + components: + - type: Transform + pos: -2.5,-32.5 + parent: 2 + - uid: 11724 + components: + - type: Transform + pos: 22.5,-56.5 + parent: 2 - uid: 14315 components: - type: Transform @@ -95825,6 +94357,11 @@ entities: parent: 2 - proto: RandomArtifactSpawner entities: + - uid: 4668 + components: + - type: Transform + pos: -19.5,-32.5 + parent: 2 - uid: 5150 components: - type: Transform @@ -96139,11 +94676,6 @@ entities: - type: Transform pos: -9.5,-77.5 parent: 2 - - uid: 19274 - components: - - type: Transform - pos: 19.5,-50.5 - parent: 2 - proto: RandomSoap entities: - uid: 6202 @@ -96178,31 +94710,6 @@ entities: - type: Transform pos: 2.5,-66.5 parent: 2 - - uid: 17157 - components: - - type: Transform - pos: 12.5,-52.5 - parent: 2 - - uid: 17158 - components: - - type: Transform - pos: -5.5,-39.5 - parent: 2 - - uid: 17159 - components: - - type: Transform - pos: -11.5,-32.5 - parent: 2 - - uid: 17160 - components: - - type: Transform - pos: -27.5,-53.5 - parent: 2 - - uid: 17161 - components: - - type: Transform - pos: -29.5,-34.5 - parent: 2 - uid: 17163 components: - type: Transform @@ -96213,11 +94720,6 @@ entities: - type: Transform pos: 23.5,-65.5 parent: 2 - - uid: 17172 - components: - - type: Transform - pos: 28.5,-49.5 - parent: 2 - uid: 17320 components: - type: Transform @@ -96252,11 +94754,6 @@ entities: parent: 2 - proto: RandomVending entities: - - uid: 1710 - components: - - type: Transform - pos: -3.5,-69.5 - parent: 2 - uid: 5837 components: - type: Transform @@ -96272,16 +94769,6 @@ entities: - type: Transform pos: -4.5,-7.5 parent: 2 - - uid: 6238 - components: - - type: Transform - pos: -26.5,-58.5 - parent: 2 - - uid: 6239 - components: - - type: Transform - pos: -25.5,-58.5 - parent: 2 - uid: 7677 components: - type: Transform @@ -96292,54 +94779,29 @@ entities: - type: Transform pos: 73.5,-19.5 parent: 2 - - uid: 7758 - components: - - type: Transform - pos: -3.5,-70.5 - parent: 2 - - uid: 8038 - components: - - type: Transform - pos: 26.5,-35.5 - parent: 2 - - uid: 18329 - components: - - type: Transform - pos: -32.5,-51.5 - parent: 2 - - uid: 18330 - components: - - type: Transform - pos: -32.5,-39.5 - parent: 2 - proto: RandomVendingDrinks entities: + - uid: 5912 + components: + - type: Transform + pos: -34.5,-52.5 + parent: 2 - uid: 9913 components: - type: Transform pos: -42.5,-67.5 parent: 2 - - uid: 10246 - components: - - type: Transform - pos: 28.5,-57.5 - parent: 2 - uid: 10802 components: - type: Transform pos: 48.5,-50.5 parent: 2 - - uid: 14365 - components: - - type: Transform - pos: 8.5,-37.5 - parent: 2 - proto: RandomVendingSnacks entities: - - uid: 595 + - uid: 1743 components: - type: Transform - pos: 11.5,-37.5 + pos: -35.5,-38.5 parent: 2 - uid: 5273 components: @@ -96361,26 +94823,11 @@ entities: - type: Transform pos: -26.5,-18.5 parent: 2 - - uid: 14336 - components: - - type: Transform - pos: 27.5,-58.5 - parent: 2 - - uid: 14721 - components: - - type: Transform - pos: -41.5,-67.5 - parent: 2 - uid: 16051 components: - type: Transform pos: 42.5,-75.5 parent: 2 - - uid: 16117 - components: - - type: Transform - pos: 7.5,-61.5 - parent: 2 - proto: RCD entities: - uid: 5860 @@ -96485,11 +94932,6 @@ entities: - type: Transform pos: -17.5,-36.5 parent: 2 - - uid: 230 - components: - - type: Transform - pos: -16.5,-36.5 - parent: 2 - uid: 231 components: - type: Transform @@ -96590,16 +95032,6 @@ entities: - type: Transform pos: -23.5,-34.5 parent: 2 - - uid: 4540 - components: - - type: Transform - pos: -6.5,-41.5 - parent: 2 - - uid: 4545 - components: - - type: Transform - pos: -23.5,-36.5 - parent: 2 - uid: 4546 components: - type: Transform @@ -96625,31 +95057,11 @@ entities: - type: Transform pos: -20.5,-34.5 parent: 2 - - uid: 4659 - components: - - type: Transform - pos: 24.5,-55.5 - parent: 2 - - uid: 4668 - components: - - type: Transform - pos: 22.5,-53.5 - parent: 2 - - uid: 4690 - components: - - type: Transform - pos: 24.5,-51.5 - parent: 2 - uid: 4741 components: - type: Transform pos: -18.5,-28.5 parent: 2 - - uid: 4742 - components: - - type: Transform - pos: -16.5,-28.5 - parent: 2 - uid: 4743 components: - type: Transform @@ -96705,21 +95117,6 @@ entities: - type: Transform pos: 9.5,-51.5 parent: 2 - - uid: 8213 - components: - - type: Transform - pos: -9.5,-41.5 - parent: 2 - - uid: 8367 - components: - - type: Transform - pos: -10.5,-41.5 - parent: 2 - - uid: 8368 - components: - - type: Transform - pos: -8.5,-41.5 - parent: 2 - uid: 10766 components: - type: Transform @@ -96732,12 +95129,6 @@ entities: rot: 1.5707963267948966 rad pos: 91.5,-44.5 parent: 2 - - uid: 10798 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-21.5 - parent: 2 - uid: 10823 components: - type: Transform @@ -96840,11 +95231,6 @@ entities: - type: Transform pos: 14.5,-43.5 parent: 2 - - uid: 18152 - components: - - type: Transform - pos: -15.5,-32.5 - parent: 2 - uid: 18328 components: - type: Transform @@ -96898,75 +95284,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-45.5 parent: 2 - - uid: 4654 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-54.5 - parent: 2 - - uid: 4657 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-54.5 - parent: 2 - - uid: 4660 - components: - - type: Transform - pos: 22.5,-52.5 - parent: 2 - - uid: 4666 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-52.5 - parent: 2 - - uid: 4669 - components: - - type: Transform - pos: 25.5,-54.5 - parent: 2 - - uid: 4670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-54.5 - parent: 2 - - uid: 4671 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-52.5 - parent: 2 - - uid: 4672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-55.5 - parent: 2 - - uid: 4674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-52.5 - parent: 2 - - uid: 4677 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-51.5 - parent: 2 - - uid: 4681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-55.5 - parent: 2 - - uid: 4689 - components: - - type: Transform - pos: 23.5,-51.5 - parent: 2 - uid: 6916 components: - type: Transform @@ -97548,6 +95865,41 @@ entities: - type: Transform pos: 10.5,-55.5 parent: 2 + - uid: 4205 + components: + - type: Transform + pos: -40.5,-47.5 + parent: 2 + - uid: 4211 + components: + - type: Transform + pos: -39.5,-47.5 + parent: 2 + - uid: 4303 + components: + - type: Transform + pos: -38.5,-47.5 + parent: 2 + - uid: 4396 + components: + - type: Transform + pos: -40.5,-43.5 + parent: 2 + - uid: 4411 + components: + - type: Transform + pos: -38.5,-43.5 + parent: 2 + - uid: 4511 + components: + - type: Transform + pos: -41.5,-45.5 + parent: 2 + - uid: 4540 + components: + - type: Transform + pos: -41.5,-46.5 + parent: 2 - uid: 4551 components: - type: Transform @@ -97608,6 +95960,11 @@ entities: - type: Transform pos: 64.5,-21.5 parent: 2 + - uid: 6671 + components: + - type: Transform + pos: -10.5,-41.5 + parent: 2 - uid: 6857 components: - type: Transform @@ -97649,6 +96006,11 @@ entities: - type: Transform pos: 60.5,-39.5 parent: 2 + - uid: 7158 + components: + - type: Transform + pos: -9.5,-41.5 + parent: 2 - uid: 7160 components: - type: Transform @@ -97664,6 +96026,16 @@ entities: - type: Transform pos: 66.5,-49.5 parent: 2 + - uid: 7234 + components: + - type: Transform + pos: -6.5,-41.5 + parent: 2 + - uid: 7260 + components: + - type: Transform + pos: -8.5,-41.5 + parent: 2 - uid: 7309 components: - type: Transform @@ -97729,6 +96101,121 @@ entities: - type: Transform pos: 25.5,-88.5 parent: 2 + - uid: 14011 + components: + - type: Transform + pos: 26.5,-41.5 + parent: 2 + - uid: 14012 + components: + - type: Transform + pos: 26.5,-46.5 + parent: 2 + - uid: 14014 + components: + - type: Transform + pos: 26.5,-45.5 + parent: 2 + - uid: 14018 + components: + - type: Transform + pos: 26.5,-42.5 + parent: 2 + - uid: 14037 + components: + - type: Transform + pos: -40.5,-7.5 + parent: 2 + - uid: 14039 + components: + - type: Transform + pos: -30.5,-46.5 + parent: 2 + - uid: 14041 + components: + - type: Transform + pos: -30.5,-45.5 + parent: 2 + - uid: 14048 + components: + - type: Transform + pos: -30.5,-44.5 + parent: 2 + - uid: 14054 + components: + - type: Transform + pos: 26.5,-40.5 + parent: 2 + - uid: 14057 + components: + - type: Transform + pos: 27.5,-47.5 + parent: 2 + - uid: 14074 + components: + - type: Transform + pos: -32.5,-44.5 + parent: 2 + - uid: 14075 + components: + - type: Transform + pos: -32.5,-45.5 + parent: 2 + - uid: 14076 + components: + - type: Transform + pos: -32.5,-46.5 + parent: 2 + - uid: 14077 + components: + - type: Transform + pos: -40.5,-8.5 + parent: 2 + - uid: 14078 + components: + - type: Transform + pos: -38.5,-8.5 + parent: 2 + - uid: 14080 + components: + - type: Transform + pos: -40.5,-9.5 + parent: 2 + - uid: 14085 + components: + - type: Transform + pos: -36.5,-9.5 + parent: 2 + - uid: 14087 + components: + - type: Transform + pos: -36.5,-8.5 + parent: 2 + - uid: 14088 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 2 + - uid: 14092 + components: + - type: Transform + pos: -36.5,-7.5 + parent: 2 + - uid: 14095 + components: + - type: Transform + pos: -38.5,-9.5 + parent: 2 + - uid: 14117 + components: + - type: Transform + pos: -39.5,-43.5 + parent: 2 + - uid: 14129 + components: + - type: Transform + pos: -41.5,-44.5 + parent: 2 - uid: 14359 components: - type: Transform @@ -98105,56 +96592,75 @@ entities: - type: Transform pos: 30.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 9822 + components: + - type: Transform + pos: -14.5,-34.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 17989 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19444 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19446 components: - type: Transform pos: -25.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19447 components: - type: Transform pos: 12.5,-76.5 parent: 2 - - uid: 19448 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-33.5 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 19449 components: - type: Transform pos: -45.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19450 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19451 components: - type: Transform pos: 30.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19452 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Screwdriver entities: - uid: 17356 @@ -98253,6 +96759,11 @@ entities: parent: 2 - proto: ShardGlassReinforced entities: + - uid: 2304 + components: + - type: Transform + pos: -3.7276778,-34.553207 + parent: 2 - uid: 7802 components: - type: Transform @@ -98278,6 +96789,11 @@ entities: - type: Transform pos: 1.5636982,-72.57246 parent: 2 + - uid: 14146 + components: + - type: Transform + pos: -8.546482,-37.101284 + parent: 2 - uid: 15469 components: - type: Transform @@ -98303,11 +96819,6 @@ entities: - type: Transform pos: -42.6255,-79.322044 parent: 2 - - uid: 6672 - components: - - type: Transform - pos: -20.285402,-65.214096 - parent: 2 - uid: 6969 components: - type: Transform @@ -98323,6 +96834,11 @@ entities: - type: Transform pos: 57.418205,-62.48799 parent: 2 + - uid: 8807 + components: + - type: Transform + pos: -14.446809,-60.429398 + parent: 2 - uid: 16647 components: - type: Transform @@ -98458,11 +96974,6 @@ entities: - type: Transform pos: 46.594925,-73.20312 parent: 2 - - uid: 6671 - components: - - type: Transform - pos: -20.597902,-65.12376 - parent: 2 - uid: 6932 components: - type: Transform @@ -98483,6 +96994,11 @@ entities: - type: Transform pos: 59.330914,-62.53247 parent: 2 + - uid: 9074 + components: + - type: Transform + pos: -13.478059,-60.538773 + parent: 2 - uid: 13337 components: - type: Transform @@ -98587,6 +97103,8 @@ entities: - 15265 - 15266 - 15274 + - type: Fixtures + fixtures: {} - proto: ShellShotgunImprovised entities: - uid: 17439 @@ -98609,12 +97127,16 @@ entities: rot: -1.5707963267948966 rad pos: 70.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7311 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ShuttersNormal entities: - uid: 252 @@ -99024,12 +97546,16 @@ entities: rot: -1.5707963267948966 rad pos: 86.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15199 components: - type: Transform rot: -1.5707963267948966 rad pos: 86.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAiUpload entities: - uid: 7136 @@ -99038,6 +97564,8 @@ entities: rot: -1.5707963267948966 rad pos: 77.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignalButton entities: - uid: 3098 @@ -99063,6 +97591,8 @@ entities: - Toggle - - Pressed - AutoClose + - type: Fixtures + fixtures: {} - uid: 5999 components: - type: Transform @@ -99080,6 +97610,8 @@ entities: 6224: - - Pressed - Trigger + - type: Fixtures + fixtures: {} - uid: 6233 components: - type: Transform @@ -99097,6 +97629,8 @@ entities: 16993: - - Pressed - Trigger + - type: Fixtures + fixtures: {} - uid: 6674 components: - type: Transform @@ -99113,6 +97647,8 @@ entities: 2281: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 7129 components: - type: Transform @@ -99123,6 +97659,8 @@ entities: 18451: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 8850 components: - type: Transform @@ -99143,6 +97681,8 @@ entities: 8855: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 10578 components: - type: Transform @@ -99227,6 +97767,8 @@ entities: - AutoClose - - Pressed - Open + - type: Fixtures + fixtures: {} - uid: 10582 components: - type: Transform @@ -99309,6 +97851,8 @@ entities: 15175: - - Pressed - Close + - type: Fixtures + fixtures: {} - uid: 13186 components: - type: Transform @@ -99388,6 +97932,8 @@ entities: 3041: - - Pressed - Close + - type: Fixtures + fixtures: {} - uid: 13187 components: - type: Transform @@ -99469,6 +98015,8 @@ entities: - Open - - Pressed - AutoClose + - type: Fixtures + fixtures: {} - uid: 16617 components: - type: Transform @@ -99483,6 +98031,8 @@ entities: 15886: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17742 components: - type: Transform @@ -99499,6 +98049,8 @@ entities: 313: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17829 components: - type: Transform @@ -99543,6 +98095,8 @@ entities: 7772: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17875 components: - type: Transform @@ -99563,6 +98117,8 @@ entities: 4945: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17876 components: - type: Transform @@ -99582,6 +98138,8 @@ entities: 4938: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: SignalButtonDirectional entities: - uid: 5437 @@ -99598,6 +98156,8 @@ entities: 5539: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 10224 components: - type: Transform @@ -99618,6 +98178,8 @@ entities: 6210: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 12415 components: - type: Transform @@ -99643,6 +98205,8 @@ entities: 654: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 13194 components: - type: Transform @@ -99669,6 +98233,8 @@ entities: 626: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 13195 components: - type: Transform @@ -99683,6 +98249,8 @@ entities: 546: - - Pressed - Open + - type: Fixtures + fixtures: {} - uid: 15700 components: - type: Transform @@ -99769,6 +98337,8 @@ entities: 11978: - - Pressed - Forward + - type: Fixtures + fixtures: {} - uid: 15849 components: - type: Transform @@ -99855,6 +98425,8 @@ entities: 11978: - - Pressed - Off + - type: Fixtures + fixtures: {} - uid: 16241 components: - type: Transform @@ -99872,6 +98444,8 @@ entities: 10890: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 18371 components: - type: Transform @@ -99889,6 +98463,8 @@ entities: 18213: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 19574 components: - type: Transform @@ -99953,6 +98529,8 @@ entities: 14056: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: SignAnomaly entities: - uid: 16210 @@ -99961,11 +98539,15 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19256 components: - type: Transform pos: -26.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAnomaly2 entities: - uid: 16191 @@ -99973,6 +98555,8 @@ entities: - type: Transform pos: -8.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignArmory entities: - uid: 208 @@ -99980,11 +98564,15 @@ entities: - type: Transform pos: 66.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8576 components: - type: Transform pos: 57.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAtmos entities: - uid: 8652 @@ -99992,21 +98580,29 @@ entities: - type: Transform pos: 26.5,-65.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16106 components: - type: Transform pos: 36.5,-74.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16109 components: - type: Transform pos: 34.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16192 components: - type: Transform pos: 26.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBar entities: - uid: 16195 @@ -100014,6 +98610,8 @@ entities: - type: Transform pos: 30.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBio entities: - uid: 16817 @@ -100021,6 +98619,8 @@ entities: - type: Transform pos: 4.5,-74.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBridge entities: - uid: 200 @@ -100029,12 +98629,16 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7289 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCansScience entities: - uid: 14148 @@ -100042,6 +98646,8 @@ entities: - type: Transform pos: -23.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCargo entities: - uid: 6764 @@ -100050,12 +98656,16 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-80.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18850 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-80.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCargoDock entities: - uid: 16196 @@ -100063,11 +98673,15 @@ entities: - type: Transform pos: 19.5,-102.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16197 components: - type: Transform pos: 29.5,-102.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChapel entities: - uid: 13203 @@ -100075,22 +98689,15 @@ entities: - type: Transform pos: -26.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16198 components: - type: Transform pos: -15.5,-40.5 parent: 2 - - uid: 16211 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-38.5 - parent: 2 - - uid: 16418 - components: - - type: Transform - pos: -15.5,-36.5 - parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChem entities: - uid: 2732 @@ -100099,28 +98706,38 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9406 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14139 components: - type: Transform pos: -0.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16179 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19281 components: - type: Transform pos: 11.5,-67.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignConference entities: - uid: 5608 @@ -100129,6 +98746,8 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCryo entities: - uid: 19069 @@ -100136,6 +98755,8 @@ entities: - type: Transform pos: 4.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCryogenicsMed entities: - uid: 3832 @@ -100143,6 +98764,8 @@ entities: - type: Transform pos: -3.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDangerMed entities: - uid: 17782 @@ -100151,36 +98774,48 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18269 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18374 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18375 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18376 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18377 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalAtmos entities: - uid: 9434 @@ -100189,40 +98824,54 @@ entities: rot: 3.141592653589793 rad pos: -15.498708,-51.71671 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16151 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5008106,-33.718235 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17980 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.500819,-41.285877 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17982 components: - type: Transform pos: 22.49896,-37.2837 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17983 components: - type: Transform pos: 22.498604,-59.285027 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17985 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19621 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBar entities: - uid: 16128 @@ -100231,6 +98880,8 @@ entities: rot: 1.5707963267948966 rad pos: 1.4994224,-33.715874 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBridge entities: - uid: 12825 @@ -100239,47 +98890,63 @@ entities: rot: -1.5707963267948966 rad pos: -2.5007706,-29.713655 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13202 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16141 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16158 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.49973,-51.71622 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16185 components: - type: Transform rot: 3.141592653589793 rad pos: -26.50135,-54.28437 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16187 components: - type: Transform pos: -30.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19629 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19631 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5013075,-33.288094 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalChapel entities: - uid: 12824 @@ -100288,11 +98955,15 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16189 components: - type: Transform pos: -30.500944,-18.284409 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalChemistry entities: - uid: 6271 @@ -100301,27 +98972,37 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9290 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16113 components: - type: Transform pos: 22.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16127 components: - type: Transform pos: 6.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16134 components: - type: Transform pos: 2.498827,-33.284237 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalCryo entities: - uid: 16159 @@ -100330,18 +99011,24 @@ entities: rot: 3.141592653589793 rad pos: 22.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16180 components: - type: Transform rot: 3.141592653589793 rad pos: 7.50015,-51.284824 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17820 components: - type: Transform rot: 3.141592653589793 rad pos: 1.4999281,-29.715975 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalDorms entities: - uid: 3123 @@ -100350,22 +99037,30 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10764 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16140 components: - type: Transform pos: -15.501332,-42.715443 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16184 components: - type: Transform pos: -35.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEng entities: - uid: 35 @@ -100374,61 +99069,83 @@ entities: rot: -1.5707963267948966 rad pos: -2.5007706,-29.284346 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 1429 + components: + - type: Transform + pos: -14.5,-36.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 14203 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.501791,-54.716873 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14808 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15613 components: - type: Transform pos: -26.499496,-33.933483 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16139 components: - type: Transform pos: -15.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16150 components: - type: Transform pos: -1.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16154 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.498922,-55.28569 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16188 components: - type: Transform pos: -30.500944,-18.717422 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16199 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-80.5 parent: 2 - - uid: 19632 - components: - - type: Transform - pos: -15.5013685,-35.71809 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 19633 components: - type: Transform rot: 3.141592653589793 rad pos: 6.50085,-51.716766 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEvac entities: - uid: 516 @@ -100437,223 +99154,299 @@ entities: rot: -1.5707963267948966 rad pos: 44.501007,-25.282156 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1830 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 2335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-36.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 3321 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5213 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5015326,-8.71623 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7888 components: - type: Transform pos: 4.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7935 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.49919,-51.71689 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9298 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-77.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13204 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5012168,-12.284781 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14008 components: - type: Transform rot: 3.141592653589793 rad pos: -26.501286,-54.06827 parent: 2 - - uid: 15790 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-35.5 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 15910 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16142 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16144 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16162 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.49889,-51.283894 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16168 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.50092,-33.28325 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16174 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16177 components: - type: Transform rot: 3.141592653589793 rad pos: 26.501543,-75.28514 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16358 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.499287,-25.282099 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16365 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16369 components: - type: Transform rot: 3.141592653589793 rad pos: 28.50031,-21.283514 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16372 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16414 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16432 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16979 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.4993314,-15.717761 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17221 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.4992862,-8.714865 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17409 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.499661,-41.28664 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17707 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5012491,-29.285704 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17809 components: - type: Transform rot: 3.141592653589793 rad pos: -26.50015,-33.06894 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17810 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18198 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18205 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18210 components: - type: Transform pos: -5.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18871 components: - type: Transform pos: 36.5,-77.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19406 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-80.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19442 components: - type: Transform pos: -1.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19454 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5003424,-8.714865 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19630 components: - type: Transform rot: 3.141592653589793 rad pos: 6.498548,-51.284073 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19637 components: - type: Transform pos: -5.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalFood entities: - uid: 5177 @@ -100661,35 +99454,47 @@ entities: - type: Transform pos: 0.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7936 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.499363,-51.284214 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16130 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.4994224,-33.283478 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16176 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18204 components: - type: Transform pos: 22.498983,-37.717163 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19636 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.499051,-51.286167 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalHop entities: - uid: 16132 @@ -100697,18 +99502,24 @@ entities: - type: Transform pos: 2.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16152 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18200 components: - type: Transform rot: 3.141592653589793 rad pos: 7.498763,-69.71605 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalHydro entities: - uid: 14430 @@ -100716,23 +99527,31 @@ entities: - type: Transform pos: 15.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16133 components: - type: Transform pos: 2.5014625,-33.715656 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16153 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.498922,-55.715004 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19736 components: - type: Transform rot: 3.141592653589793 rad pos: 39.49834,-48.28038 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalJanitor entities: - uid: 16166 @@ -100740,17 +99559,23 @@ entities: - type: Transform pos: -11.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16167 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.500022,-33.28552 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17078 components: - type: Transform pos: -1.4999341,-15.283161 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalLibrary entities: - uid: 16136 @@ -100758,11 +99583,15 @@ entities: - type: Transform pos: 3.4989862,-33.716446 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16163 components: - type: Transform pos: 6.499085,-55.716106 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalMed entities: - uid: 1024 @@ -100771,57 +99600,77 @@ entities: rot: 3.141592653589793 rad pos: -15.499675,-51.285248 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3000 components: - type: Transform pos: 17.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14822 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.499496,-33.717285 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16160 components: - type: Transform rot: 3.141592653589793 rad pos: 22.499716,-47.716415 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16161 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16178 components: - type: Transform pos: -1.4999341,-12.716049 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16373 components: - type: Transform pos: 23.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17984 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18201 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5010014,-69.072586 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19639 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.499754,-10.717974 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSalvage entities: - uid: 16209 @@ -100830,6 +99679,8 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-96.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSci entities: - uid: 11099 @@ -100838,42 +99689,56 @@ entities: rot: 3.141592653589793 rad pos: -15.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16149 components: - type: Transform rot: 3.141592653589793 rad pos: 7.50015,-51.71722 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16156 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16157 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17808 components: - type: Transform rot: 3.141592653589793 rad pos: -26.50015,-33.285137 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17811 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18199 components: - type: Transform rot: 3.141592653589793 rad pos: 7.4985375,-69.28461 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSec entities: - uid: 10664 @@ -100882,58 +99747,78 @@ entities: rot: 1.5707963267948966 rad pos: 44.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10762 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16122 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16123 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16124 components: - type: Transform pos: 22.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16125 components: - type: Transform pos: -1.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16359 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17813 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.499488,-41.71687 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17922 components: - type: Transform rot: 3.141592653589793 rad pos: 26.500002,-75.714455 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19635 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.499051,-51.718567 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSolar entities: - uid: 6964 @@ -100942,146 +99827,196 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7659 components: - type: Transform pos: 78.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7661 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7662 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9299 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9300 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-77.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9876 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.501007,-25.714556 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10773 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14068 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14725 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14819 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16114 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-78.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16116 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16370 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.499249,-21.715097 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16374 components: - type: Transform rot: 3.141592653589793 rad pos: 86.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16378 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16420 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-73.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17814 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17815 components: - type: Transform pos: -35.50011,-57.715824 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17816 components: - type: Transform pos: -52.5,-67.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17817 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.50103,-63.718613 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18869 components: - type: Transform rot: 1.5707963267948966 rad pos: 77.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18870 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-79.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18905 components: - type: Transform pos: 86.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19269 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.500843,-58.713875 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSupply entities: - uid: 16112 @@ -101089,50 +100024,68 @@ entities: - type: Transform pos: 22.498564,-59.717285 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16135 components: - type: Transform pos: 3.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16143 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.501286,-54.50067 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17364 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-80.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17807 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.499496,-33.501083 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17812 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18035 components: - type: Transform pos: -4.500692,-12.716591 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18202 components: - type: Transform pos: 12.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19634 components: - type: Transform pos: 6.499085,-55.283707 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDisposalSpace entities: - uid: 19775 @@ -101141,6 +100094,8 @@ entities: rot: 1.5707963267948966 rad pos: 71.5,-72.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDoors entities: - uid: 18160 @@ -101149,6 +100104,8 @@ entities: rot: 3.141592653589793 rad pos: 84.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignElectricalMed entities: - uid: 15718 @@ -101157,35 +100114,47 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16759 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-88.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16760 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-88.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16761 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-87.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16762 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-87.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19407 components: - type: Transform pos: 33.5,-96.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEngine entities: - uid: 522 @@ -101193,6 +100162,8 @@ entities: - type: Transform pos: -6.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEngineering entities: - uid: 10822 @@ -101201,17 +100172,23 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17380 components: - type: Transform pos: -32.5,-65.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17986 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEscapePods entities: - uid: 16999 @@ -101220,24 +100197,32 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-76.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17003 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-78.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17028 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-76.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17029 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEVA entities: - uid: 16190 @@ -101245,6 +100230,8 @@ entities: - type: Transform pos: 3.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignExamroom entities: - uid: 5207 @@ -101252,6 +100239,8 @@ entities: - type: Transform pos: 11.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignGravity entities: - uid: 16203 @@ -101260,6 +100249,8 @@ entities: rot: -1.5707963267948966 rad pos: -37.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignHead entities: - uid: 16201 @@ -101268,12 +100259,16 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16202 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignHydro1 entities: - uid: 14927 @@ -101282,11 +100277,15 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18313 components: - type: Transform pos: 14.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignInterrogation entities: - uid: 7095 @@ -101294,6 +100293,8 @@ entities: - type: Transform pos: 50.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignJanitor entities: - uid: 5617 @@ -101302,6 +100303,8 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignKitchen entities: - uid: 18300 @@ -101309,6 +100312,8 @@ entities: - type: Transform pos: 1.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLaserMed entities: - uid: 18442 @@ -101317,12 +100322,16 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-72.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18443 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-72.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLawyer entities: - uid: 12853 @@ -101330,6 +100339,8 @@ entities: - type: Transform pos: 49.5,-53.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLibrary entities: - uid: 16204 @@ -101338,6 +100349,8 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMail entities: - uid: 5369 @@ -101345,6 +100358,8 @@ entities: - type: Transform pos: 16.5,-99.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMaterials entities: - uid: 19071 @@ -101352,6 +100367,8 @@ entities: - type: Transform pos: -32.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMedical entities: - uid: 8046 @@ -101360,21 +100377,29 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17923 components: - type: Transform pos: 11.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18314 components: - type: Transform pos: 18.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19638 components: - type: Transform pos: 7.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMorgue entities: - uid: 9303 @@ -101382,11 +100407,15 @@ entities: - type: Transform pos: 30.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14731 components: - type: Transform pos: 27.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNews entities: - uid: 2923 @@ -101395,6 +100424,8 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignPrison entities: - uid: 12852 @@ -101402,6 +100433,8 @@ entities: - type: Transform pos: 64.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRadiation entities: - uid: 18444 @@ -101410,12 +100443,16 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18447 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-82.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRadiationMed entities: - uid: 10796 @@ -101424,45 +100461,61 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16756 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-88.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16757 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-88.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17544 components: - type: Transform pos: -23.5,-89.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18445 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-72.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18446 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-72.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19128 components: - type: Transform pos: -10.5,-76.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19258 components: - type: Transform pos: -12.5,-78.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRND entities: - uid: 19073 @@ -101470,6 +100523,8 @@ entities: - type: Transform pos: -2.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRobo entities: - uid: 2221 @@ -101477,6 +100532,8 @@ entities: - type: Transform pos: -12.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSalvage entities: - uid: 6923 @@ -101484,23 +100541,31 @@ entities: - type: Transform pos: 46.5,-97.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16207 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-104.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16208 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-100.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19731 components: - type: Transform pos: 53.5,-104.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignScience entities: - uid: 6645 @@ -101508,12 +100573,16 @@ entities: - type: Transform pos: -8.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18197 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-74.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecurearea entities: - uid: 3107 @@ -101522,22 +100591,30 @@ entities: rot: 3.141592653589793 rad pos: 74.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3783 components: - type: Transform pos: 77.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7961 components: - type: Transform pos: 75.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10775 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecureMed entities: - uid: 6707 @@ -101545,36 +100622,48 @@ entities: - type: Transform pos: 31.5,-88.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6709 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-90.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15694 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15696 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18910 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-84.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18911 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-86.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecureMedRed entities: - uid: 5972 @@ -101582,23 +100671,31 @@ entities: - type: Transform pos: -64.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5973 components: - type: Transform pos: -62.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8052 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8053 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecureSmall entities: - uid: 3559 @@ -101606,53 +100703,55 @@ entities: - type: Transform pos: 53.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7151 components: - type: Transform pos: 51.5,-22.5 parent: 2 - - uid: 11713 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-20.5 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 11730 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11731 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17981 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18145 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-55.5 parent: 2 - - uid: 18361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-20.5 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 18362 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecureSmallRed entities: - uid: 18912 @@ -101661,12 +100760,16 @@ entities: rot: 3.141592653589793 rad pos: 38.50035,-87.62597 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18913 components: - type: Transform rot: 3.141592653589793 rad pos: 36.500515,-82.37051 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecurity entities: - uid: 3616 @@ -101675,23 +100778,31 @@ entities: rot: 1.5707963267948966 rad pos: 60.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3620 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15670 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18041 components: - type: Transform pos: 64.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignShipDock entities: - uid: 19640 @@ -101700,38 +100811,57 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19641 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignShock entities: + - uid: 3003 + components: + - type: Transform + pos: -8.5,-41.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 11726 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11727 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11728 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11729 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSpace entities: - uid: 6957 @@ -101739,41 +100869,57 @@ entities: - type: Transform pos: 22.5,-100.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8658 components: - type: Transform pos: 81.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13331 components: - type: Transform pos: 84.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19276 components: - type: Transform pos: 31.5,-86.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19277 components: - type: Transform pos: 38.5,-82.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19278 components: - type: Transform pos: 29.5,-84.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19279 components: - type: Transform pos: 36.5,-87.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19280 components: - type: Transform pos: 84.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSurgery entities: - uid: 14675 @@ -101782,6 +100928,8 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignToolStorage entities: - uid: 5613 @@ -101790,6 +100938,8 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,-53.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignVault entities: - uid: 19066 @@ -101797,6 +100947,8 @@ entities: - type: Transform pos: 8.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignVirology entities: - uid: 7615 @@ -101805,12 +100957,16 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8787 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SingularityGenerator entities: - uid: 5744 @@ -101968,6 +101124,13 @@ entities: - type: Transform pos: -12.5,-63.5 parent: 2 +- proto: SmokingPipeFilledCannabis + entities: + - uid: 11711 + components: + - type: Transform + pos: -20.534903,-42.4654 + parent: 2 - proto: SnapPopBox entities: - uid: 17566 @@ -102774,6 +101937,28 @@ entities: - type: Transform pos: -8.5,-48.5 parent: 2 +- proto: SpawnPointLatejoin + entities: + - uid: 14218 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - uid: 14219 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 14220 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 14221 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 - proto: SpawnPointLawyer entities: - uid: 3459 @@ -103160,6 +102345,14 @@ entities: - type: Transform pos: 1.3780347,-62.383446 parent: 2 +- proto: SprayPainter + entities: + - uid: 14149 + components: + - type: Transform + rot: 5.934119456780721 rad + pos: 7.4473543,-9.529352 + parent: 2 - proto: StairDark entities: - uid: 4632 @@ -103432,142 +102625,133 @@ entities: - type: Transform pos: 66.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5854 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-86.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6270 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6959 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-80.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6960 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-92.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7096 components: - type: Transform pos: 52.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13197 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13960 + components: + - type: Transform + pos: -9.5,-29.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 14154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-44.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 14818 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14820 components: - type: Transform pos: -26.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14821 components: - type: Transform pos: 4.5,-4.5 parent: 2 - - uid: 14827 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-34.5 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 14828 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-56.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14830 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-71.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17803 components: - type: Transform pos: 4.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18203 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18834 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SteelBench entities: - - uid: 5649 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-40.5 - parent: 2 - - uid: 5650 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-40.5 - parent: 2 - - uid: 5651 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-40.5 - parent: 2 - - uid: 5652 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-40.5 - parent: 2 - - uid: 5653 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-41.5 - parent: 2 - - uid: 5654 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-41.5 - parent: 2 - - uid: 5655 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-41.5 - parent: 2 - - uid: 5656 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-41.5 - parent: 2 - uid: 7781 components: - type: Transform @@ -103612,11 +102796,11 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,-37.5 parent: 2 - - uid: 15513 + - uid: 9307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-35.5 + rot: 3.141592653589793 rad + pos: -24.5,-32.5 parent: 2 - proto: StoolBar entities: @@ -103710,13 +102894,6 @@ entities: - type: Transform pos: 72.37239,-40.623806 parent: 2 - - uid: 19378 - components: - - type: Transform - pos: 9.691935,-47.56793 - parent: 2 - - type: Battery - startingCharge: 0 - proto: SubstationBasic entities: - uid: 2711 @@ -104542,6 +103719,17 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Medical/Genpop Hallway + - uid: 13950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-34.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: AME West - uid: 16546 components: - type: Transform @@ -104812,17 +104000,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: AME Hall, North - - uid: 18742 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-35.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: AME Hall, West - uid: 18743 components: - type: Transform @@ -105788,6 +104965,12 @@ entities: - type: Transform pos: 30.5,-16.5 parent: 2 + - uid: 4690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-19.5 + parent: 2 - uid: 4855 components: - type: Transform @@ -106193,6 +105376,12 @@ entities: - type: Transform pos: 20.5,-17.5 parent: 2 + - uid: 11398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-19.5 + parent: 2 - uid: 11772 components: - type: Transform @@ -106278,11 +105467,6 @@ entities: - type: Transform pos: 1.5,-62.5 parent: 2 - - uid: 17931 - components: - - type: Transform - pos: 58.5,-20.5 - parent: 2 - uid: 18148 components: - type: Transform @@ -107362,10 +106546,28 @@ entities: - type: Transform pos: 42.5,-34.5 parent: 2 - - uid: 3438 + - uid: 1720 components: - type: Transform - pos: -25.5,-32.5 + rot: -1.5707963267948966 rad + pos: -24.5,-39.5 + parent: 2 + - uid: 1722 + components: + - type: Transform + pos: -31.5,-58.5 + parent: 2 + - uid: 2316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-42.5 + parent: 2 + - uid: 4677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-40.5 parent: 2 - uid: 5082 components: @@ -107397,6 +106599,12 @@ entities: - type: Transform pos: -15.5,-18.5 parent: 2 + - uid: 7148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-39.5 + parent: 2 - uid: 7429 components: - type: Transform @@ -107471,30 +106679,23 @@ entities: - type: Transform pos: -42.5,-79.5 parent: 2 - - uid: 11398 + - uid: 11712 components: - type: Transform - pos: -25.5,-31.5 + rot: -1.5707963267948966 rad + pos: -20.5,-42.5 parent: 2 - - uid: 12420 + - uid: 11713 components: - type: Transform - pos: -23.5,-39.5 + rot: -1.5707963267948966 rad + pos: -20.5,-40.5 parent: 2 - - uid: 13338 + - uid: 11717 components: - type: Transform - pos: -24.5,-39.5 - parent: 2 - - uid: 13997 - components: - - type: Transform - pos: -25.5,-30.5 - parent: 2 - - uid: 14011 - components: - - type: Transform - pos: -25.5,-29.5 + rot: -1.5707963267948966 rad + pos: -18.5,-40.5 parent: 2 - uid: 14013 components: @@ -107526,6 +106727,11 @@ entities: - type: Transform pos: -33.5,-25.5 parent: 2 + - uid: 14111 + components: + - type: Transform + pos: -25.5,-29.5 + parent: 2 - uid: 14119 components: - type: Transform @@ -107604,11 +106810,6 @@ entities: - type: Transform pos: -32.5,-29.5 parent: 2 - - uid: 16435 - components: - - type: Transform - pos: -25.5,-39.5 - parent: 2 - uid: 16438 components: - type: Transform @@ -107639,11 +106840,6 @@ entities: - type: Transform pos: -40.5,-80.5 parent: 2 - - uid: 17088 - components: - - type: Transform - pos: 9.5,-44.5 - parent: 2 - uid: 17143 components: - type: Transform @@ -108135,11 +107331,6 @@ entities: - type: Transform pos: -22.379463,-51.43902 parent: 2 - - uid: 5912 - components: - - type: Transform - pos: 6.3929605,-3.2707329 - parent: 2 - uid: 5913 components: - type: Transform @@ -108207,13 +107398,6 @@ entities: - type: Transform pos: 91.23651,-82.45368 parent: 2 -- proto: ToyFigurineChaplain - entities: - - uid: 19391 - components: - - type: Transform - pos: -18.517744,-31.41124 - parent: 2 - proto: ToyFigurineFootsoldier entities: - uid: 16126 @@ -108254,13 +107438,6 @@ entities: - type: Transform pos: 52.988304,-98.97241 parent: 2 -- proto: ToyFigurineScientist - entities: - - uid: 15611 - components: - - type: Transform - pos: -22.517565,-35.42746 - parent: 2 - proto: ToyHammer entities: - uid: 15275 @@ -108273,7 +107450,7 @@ entities: - uid: 5148 components: - type: Transform - pos: 9.85424,-44.367374 + pos: 11.488949,-44.128864 parent: 2 - uid: 17381 components: @@ -108606,42 +107783,6 @@ entities: - Forward - - Middle - Off - - uid: 18264 - components: - - type: Transform - pos: 60.5,-20.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 18358: - - - Left - - On - - - Right - - On - - - Middle - - Off - 6123: - - - Left - - Open - - - Right - - Open - - - Middle - - Close - - - Left - - AutoClose - - - Right - - AutoClose - 4205: - - - Left - - Open - - - Right - - Open - - - Middle - - Close - - - Left - - AutoClose - - - Right - - AutoClose - proto: UnfinishedMachineFrame entities: - uid: 8057 @@ -108780,21 +107921,11 @@ entities: - type: Transform pos: 34.5,-46.5 parent: 2 - - uid: 17443 - components: - - type: Transform - pos: -14.5,-31.5 - parent: 2 - uid: 17444 components: - type: Transform pos: -47.5,-55.5 parent: 2 - - uid: 17822 - components: - - type: Transform - pos: 20.5,-48.5 - parent: 2 - proto: VendingMachineClothing entities: - uid: 6158 @@ -109089,18 +108220,24 @@ entities: - type: Transform pos: 14.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5936 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6254 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: VendingMachineWinter entities: - uid: 6159 @@ -109138,6 +108275,8 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallmountTelevision entities: - uid: 15276 @@ -109145,6 +108284,8 @@ entities: - type: Transform pos: 50.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallReinforced entities: - uid: 43 @@ -111027,6 +110168,11 @@ entities: - type: Transform pos: 22.5,-10.5 parent: 2 + - uid: 11725 + components: + - type: Transform + pos: -35.5,-9.5 + parent: 2 - uid: 11800 components: - type: Transform @@ -111088,6 +110234,22 @@ entities: - type: Transform pos: 43.5,-15.5 parent: 2 + - uid: 14124 + components: + - type: Transform + pos: -37.5,-46.5 + parent: 2 + - uid: 14128 + components: + - type: Transform + pos: -37.5,-44.5 + parent: 2 + - uid: 14132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-8.5 + parent: 2 - uid: 14271 components: - type: Transform @@ -111555,11 +110717,6 @@ entities: - type: Transform pos: -33.5,-8.5 parent: 2 - - uid: 389 - components: - - type: Transform - pos: -35.5,-8.5 - parent: 2 - uid: 393 components: - type: Transform @@ -112663,26 +111820,6 @@ entities: - type: Transform pos: -33.5,-39.5 parent: 2 - - uid: 1336 - components: - - type: Transform - pos: -33.5,-40.5 - parent: 2 - - uid: 1337 - components: - - type: Transform - pos: -32.5,-40.5 - parent: 2 - - uid: 1338 - components: - - type: Transform - pos: -31.5,-40.5 - parent: 2 - - uid: 1339 - components: - - type: Transform - pos: -30.5,-40.5 - parent: 2 - uid: 1363 components: - type: Transform @@ -112923,11 +112060,6 @@ entities: - type: Transform pos: -44.5,-12.5 parent: 2 - - uid: 1445 - components: - - type: Transform - pos: -14.5,-30.5 - parent: 2 - uid: 1504 components: - type: Transform @@ -113418,45 +112550,10 @@ entities: - type: Transform pos: -57.5,-30.5 parent: 2 - - uid: 1709 + - uid: 1710 components: - type: Transform - pos: -30.5,-43.5 - parent: 2 - - uid: 1716 - components: - - type: Transform - pos: -31.5,-43.5 - parent: 2 - - uid: 1717 - components: - - type: Transform - pos: -32.5,-43.5 - parent: 2 - - uid: 1718 - components: - - type: Transform - pos: -33.5,-43.5 - parent: 2 - - uid: 1719 - components: - - type: Transform - pos: -33.5,-47.5 - parent: 2 - - uid: 1720 - components: - - type: Transform - pos: -32.5,-47.5 - parent: 2 - - uid: 1721 - components: - - type: Transform - pos: -31.5,-47.5 - parent: 2 - - uid: 1722 - components: - - type: Transform - pos: -30.5,-47.5 + pos: -16.5,-28.5 parent: 2 - uid: 1723 components: @@ -114948,11 +114045,6 @@ entities: - type: Transform pos: 55.5,-58.5 parent: 2 - - uid: 2289 - components: - - type: Transform - pos: -15.5,-33.5 - parent: 2 - uid: 2295 components: - type: Transform @@ -114988,21 +114080,6 @@ entities: - type: Transform pos: -10.5,-67.5 parent: 2 - - uid: 2303 - components: - - type: Transform - pos: -15.5,-31.5 - parent: 2 - - uid: 2304 - components: - - type: Transform - pos: -15.5,-35.5 - parent: 2 - - uid: 2305 - components: - - type: Transform - pos: -15.5,-29.5 - parent: 2 - uid: 2307 components: - type: Transform @@ -115523,11 +114600,6 @@ entities: - type: Transform pos: 9.5,-81.5 parent: 2 - - uid: 2836 - components: - - type: Transform - pos: -15.5,-34.5 - parent: 2 - uid: 2845 components: - type: Transform @@ -115558,11 +114630,6 @@ entities: - type: Transform pos: 41.5,-78.5 parent: 2 - - uid: 2886 - components: - - type: Transform - pos: -15.5,-36.5 - parent: 2 - uid: 2931 components: - type: Transform @@ -115728,11 +114795,6 @@ entities: - type: Transform pos: 65.5,-74.5 parent: 2 - - uid: 3007 - components: - - type: Transform - pos: -15.5,-30.5 - parent: 2 - uid: 3010 components: - type: Transform @@ -119009,21 +118071,51 @@ entities: - type: Transform pos: -8.5,-26.5 parent: 2 + - uid: 11916 + components: + - type: Transform + pos: -33.5,-40.5 + parent: 2 + - uid: 11917 + components: + - type: Transform + pos: -32.5,-40.5 + parent: 2 + - uid: 11918 + components: + - type: Transform + pos: -31.5,-40.5 + parent: 2 - uid: 11945 components: - type: Transform pos: 44.5,-73.5 parent: 2 + - uid: 11947 + components: + - type: Transform + pos: -30.5,-40.5 + parent: 2 - uid: 11981 components: - type: Transform pos: 49.5,-32.5 parent: 2 + - uid: 12420 + components: + - type: Transform + pos: -30.5,-43.5 + parent: 2 - uid: 12709 components: - type: Transform pos: -24.5,-15.5 parent: 2 + - uid: 12786 + components: + - type: Transform + pos: -31.5,-43.5 + parent: 2 - uid: 12799 components: - type: Transform @@ -119034,6 +118126,16 @@ entities: - type: Transform pos: -23.5,-19.5 parent: 2 + - uid: 12915 + components: + - type: Transform + pos: -32.5,-43.5 + parent: 2 + - uid: 12916 + components: + - type: Transform + pos: -33.5,-43.5 + parent: 2 - uid: 12929 components: - type: Transform @@ -119049,11 +118151,31 @@ entities: - type: Transform pos: 73.5,-39.5 parent: 2 + - uid: 13208 + components: + - type: Transform + pos: -33.5,-47.5 + parent: 2 - uid: 13254 components: - type: Transform pos: 73.5,-38.5 parent: 2 + - uid: 13330 + components: + - type: Transform + pos: -32.5,-47.5 + parent: 2 + - uid: 13338 + components: + - type: Transform + pos: -31.5,-47.5 + parent: 2 + - uid: 13390 + components: + - type: Transform + pos: -30.5,-47.5 + parent: 2 - uid: 13393 components: - type: Transform @@ -119114,6 +118236,36 @@ entities: - type: Transform pos: 72.5,-37.5 parent: 2 + - uid: 13964 + components: + - type: Transform + pos: -34.5,-51.5 + parent: 2 + - uid: 13971 + components: + - type: Transform + pos: -33.5,-51.5 + parent: 2 + - uid: 13972 + components: + - type: Transform + pos: -30.5,-50.5 + parent: 2 + - uid: 13973 + components: + - type: Transform + pos: -31.5,-50.5 + parent: 2 + - uid: 13974 + components: + - type: Transform + pos: -32.5,-50.5 + parent: 2 + - uid: 13980 + components: + - type: Transform + pos: -33.5,-50.5 + parent: 2 - uid: 14010 components: - type: Transform @@ -120659,11 +119811,6 @@ entities: - type: Transform pos: -1.5,-42.5 parent: 2 - - uid: 965 - components: - - type: Transform - pos: -0.5,-42.5 - parent: 2 - uid: 966 components: - type: Transform @@ -121785,35 +120932,11 @@ entities: - type: Transform pos: -55.5,-65.5 parent: 2 - - uid: 1740 - components: - - type: Transform - pos: -34.5,-51.5 - parent: 2 - uid: 1741 components: - type: Transform - pos: -33.5,-51.5 - parent: 2 - - uid: 1742 - components: - - type: Transform - pos: -33.5,-50.5 - parent: 2 - - uid: 1743 - components: - - type: Transform - pos: -32.5,-50.5 - parent: 2 - - uid: 1744 - components: - - type: Transform - pos: -31.5,-50.5 - parent: 2 - - uid: 1745 - components: - - type: Transform - pos: -30.5,-50.5 + rot: 3.141592653589793 rad + pos: -14.5,-33.5 parent: 2 - uid: 1807 components: @@ -122057,6 +121180,12 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-19.5 parent: 2 + - uid: 2343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-36.5 + parent: 2 - uid: 2380 components: - type: Transform @@ -122782,6 +121911,12 @@ entities: - type: Transform pos: 71.5,-25.5 parent: 2 + - uid: 3948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-36.5 + parent: 2 - uid: 3951 components: - type: Transform @@ -123411,11 +122546,6 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 - - uid: 7097 - components: - - type: Transform - pos: 3.5,-60.5 - parent: 2 - uid: 7115 components: - type: Transform @@ -123509,6 +122639,12 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,-36.5 parent: 2 + - uid: 7568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-31.5 + parent: 2 - uid: 7578 components: - type: Transform @@ -123738,11 +122874,6 @@ entities: - type: Transform pos: 54.5,-47.5 parent: 2 - - uid: 8704 - components: - - type: Transform - pos: -31.5,-54.5 - parent: 2 - uid: 8813 components: - type: Transform @@ -124028,6 +123159,11 @@ entities: - type: Transform pos: 36.5,-30.5 parent: 2 + - uid: 11982 + components: + - type: Transform + pos: -14.5,-30.5 + parent: 2 - uid: 12408 components: - type: Transform @@ -124200,12 +123336,35 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,-33.5 parent: 2 + - uid: 13947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-34.5 + parent: 2 + - uid: 13952 + components: + - type: Transform + pos: -15.5,-29.5 + parent: 2 + - uid: 13961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-35.5 + parent: 2 - uid: 14046 components: - type: Transform rot: 1.5707963267948966 rad pos: 77.5,-38.5 parent: 2 + - uid: 14072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-54.5 + parent: 2 - uid: 14093 components: - type: Transform @@ -124586,11 +123745,6 @@ entities: - type: Transform pos: 61.5,-15.5 parent: 2 - - uid: 7260 - components: - - type: Transform - pos: 66.5,-27.5 - parent: 2 - uid: 8231 components: - type: Transform @@ -124616,6 +123770,8 @@ entities: rot: 3.141592653589793 rad pos: 37.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningN2 entities: - uid: 7812 @@ -124624,6 +123780,8 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningO2 entities: - uid: 7811 @@ -124632,6 +123790,8 @@ entities: rot: 3.141592653589793 rad pos: 33.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningPlasma entities: - uid: 7815 @@ -124640,6 +123800,8 @@ entities: rot: 3.141592653589793 rad pos: 41.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningWaste entities: - uid: 7814 @@ -124648,12 +123810,16 @@ entities: rot: 3.141592653589793 rad pos: 39.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7816 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WaterCooler entities: - uid: 3191 @@ -124917,6 +124083,16 @@ entities: parent: 2 - proto: WeaponTurretXeno entities: + - uid: 1718 + components: + - type: Transform + pos: 41.5,-21.5 + parent: 2 + - uid: 10741 + components: + - type: Transform + pos: 52.5,-21.5 + parent: 2 - uid: 12956 components: - type: Transform @@ -125038,6 +124214,18 @@ entities: parent: 2 - proto: Windoor entities: + - uid: 4706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-59.5 + parent: 2 + - uid: 5690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-55.5 + parent: 2 - uid: 6205 components: - type: Transform @@ -125303,18 +124491,6 @@ entities: rot: 3.141592653589793 rad pos: 59.5,-40.5 parent: 2 - - uid: 9896 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-42.5 - parent: 2 - - uid: 9897 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-43.5 - parent: 2 - proto: WindoorSecureAtmosphericsLocked entities: - uid: 8009 @@ -125345,6 +124521,12 @@ entities: parent: 2 - proto: WindoorSecureEngineeringLocked entities: + - uid: 4657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-53.5 + parent: 2 - uid: 4865 components: - type: Transform @@ -125504,12 +124686,6 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,-29.5 parent: 2 - - uid: 4205 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-21.5 - parent: 2 - uid: 4377 components: - type: Transform @@ -125540,12 +124716,6 @@ entities: rot: -1.5707963267948966 rad pos: 57.5,-27.5 parent: 2 - - uid: 6123 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-21.5 - parent: 2 - uid: 7067 components: - type: Transform @@ -125570,6 +124740,18 @@ entities: rot: -1.5707963267948966 rad pos: 61.5,-27.5 parent: 2 + - uid: 14133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-42.5 + parent: 2 + - uid: 14134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-43.5 + parent: 2 - uid: 19647 components: - type: Transform @@ -125717,12 +124899,73 @@ entities: rot: 3.141592653589793 rad pos: 76.5,-62.5 parent: 2 + - uid: 4569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-52.5 + parent: 2 + - uid: 4570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-51.5 + parent: 2 - uid: 4610 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-31.5 parent: 2 + - uid: 4654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-55.5 + parent: 2 + - uid: 4655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-54.5 + parent: 2 + - uid: 4656 + components: + - type: Transform + pos: 26.5,-54.5 + parent: 2 + - uid: 4658 + components: + - type: Transform + pos: 24.5,-55.5 + parent: 2 + - uid: 4659 + components: + - type: Transform + pos: 23.5,-55.5 + parent: 2 + - uid: 4660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-52.5 + parent: 2 + - uid: 4661 + components: + - type: Transform + pos: 25.5,-55.5 + parent: 2 + - uid: 4662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-51.5 + parent: 2 + - uid: 4663 + components: + - type: Transform + pos: 22.5,-54.5 + parent: 2 - uid: 4866 components: - type: Transform @@ -125751,6 +124994,18 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-85.5 parent: 2 + - uid: 7070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-51.5 + parent: 2 + - uid: 7097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-52.5 + parent: 2 - uid: 7272 components: - type: Transform @@ -125761,6 +125016,48 @@ entities: - type: Transform pos: 33.5,-72.5 parent: 2 + - uid: 7668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-51.5 + parent: 2 + - uid: 7710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-51.5 + parent: 2 + - uid: 7758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-53.5 + parent: 2 + - uid: 7943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-54.5 + parent: 2 + - uid: 7944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-52.5 + parent: 2 + - uid: 8037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-51.5 + parent: 2 + - uid: 8367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-55.5 + parent: 2 - uid: 8826 components: - type: Transform @@ -125806,6 +125103,29 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,-15.5 parent: 2 + - uid: 14135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-36.5 + parent: 2 + - uid: 14136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-34.5 + parent: 2 + - uid: 14137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-37.5 + parent: 2 + - uid: 14145 + components: + - type: Transform + pos: -6.5,-33.5 + parent: 2 - uid: 16394 components: - type: Transform @@ -125833,35 +125153,6 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,-72.5 parent: 2 - - uid: 19483 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-36.5 - parent: 2 - - uid: 19484 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-34.5 - parent: 2 - - uid: 19485 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-37.5 - parent: 2 - - uid: 19486 - components: - - type: Transform - pos: -9.5,-33.5 - parent: 2 - - uid: 19488 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-35.5 - parent: 2 - uid: 19535 components: - type: Transform @@ -125941,6 +125232,11 @@ entities: - type: Transform pos: 51.5,-64.5 parent: 2 + - uid: 585 + components: + - type: Transform + pos: -30.5,-45.5 + parent: 2 - uid: 760 components: - type: Transform @@ -126064,6 +125360,16 @@ entities: - type: Transform pos: -16.5,-10.5 parent: 2 + - uid: 1685 + components: + - type: Transform + pos: 49.5,-22.5 + parent: 2 + - uid: 1686 + components: + - type: Transform + pos: 50.5,-22.5 + parent: 2 - uid: 1804 components: - type: Transform @@ -126214,31 +125520,11 @@ entities: - type: Transform pos: 17.5,-47.5 parent: 2 - - uid: 2316 - components: - - type: Transform - pos: 26.5,-46.5 - parent: 2 - - uid: 2317 - components: - - type: Transform - pos: 26.5,-42.5 - parent: 2 - uid: 2318 components: - type: Transform pos: 16.5,-47.5 parent: 2 - - uid: 2319 - components: - - type: Transform - pos: 27.5,-47.5 - parent: 2 - - uid: 2321 - components: - - type: Transform - pos: 26.5,-47.5 - parent: 2 - uid: 2322 components: - type: Transform @@ -126249,36 +125535,6 @@ entities: - type: Transform pos: 15.5,-47.5 parent: 2 - - uid: 2324 - components: - - type: Transform - pos: -30.5,-36.5 - parent: 2 - - uid: 2340 - components: - - type: Transform - pos: -31.5,-37.5 - parent: 2 - - uid: 2341 - components: - - type: Transform - pos: -31.5,-35.5 - parent: 2 - - uid: 2342 - components: - - type: Transform - pos: -32.5,-36.5 - parent: 2 - - uid: 2343 - components: - - type: Transform - pos: -36.5,-9.5 - parent: 2 - - uid: 2344 - components: - - type: Transform - pos: -35.5,-9.5 - parent: 2 - uid: 2345 components: - type: Transform @@ -126329,6 +125585,11 @@ entities: - type: Transform pos: -56.5,-30.5 parent: 2 + - uid: 2378 + components: + - type: Transform + pos: 47.5,-22.5 + parent: 2 - uid: 2389 components: - type: Transform @@ -126374,6 +125635,11 @@ entities: - type: Transform pos: -25.5,-44.5 parent: 2 + - uid: 2649 + components: + - type: Transform + pos: 42.5,-22.5 + parent: 2 - uid: 2673 components: - type: Transform @@ -126387,23 +125653,53 @@ entities: - uid: 2704 components: - type: Transform - pos: -32.5,-44.5 + pos: 40.5,-22.5 parent: 2 - uid: 2709 components: - type: Transform - pos: -32.5,-45.5 + pos: 48.5,-22.5 parent: 2 - uid: 2726 components: - type: Transform - pos: -32.5,-46.5 + pos: 43.5,-22.5 parent: 2 - uid: 2727 components: - type: Transform pos: 19.5,-37.5 parent: 2 + - uid: 2836 + components: + - type: Transform + pos: 44.5,-22.5 + parent: 2 + - uid: 2843 + components: + - type: Transform + pos: 45.5,-22.5 + parent: 2 + - uid: 2851 + components: + - type: Transform + pos: 46.5,-22.5 + parent: 2 + - uid: 2886 + components: + - type: Transform + pos: 54.5,-22.5 + parent: 2 + - uid: 2887 + components: + - type: Transform + pos: 56.5,-22.5 + parent: 2 + - uid: 2968 + components: + - type: Transform + pos: 55.5,-22.5 + parent: 2 - uid: 3105 components: - type: Transform @@ -126669,21 +125965,6 @@ entities: - type: Transform pos: -8.5,-80.5 parent: 2 - - uid: 4383 - components: - - type: Transform - pos: 26.5,-45.5 - parent: 2 - - uid: 4384 - components: - - type: Transform - pos: 26.5,-40.5 - parent: 2 - - uid: 4385 - components: - - type: Transform - pos: 26.5,-41.5 - parent: 2 - uid: 4386 components: - type: Transform @@ -126704,26 +125985,6 @@ entities: - type: Transform pos: -5.5,-18.5 parent: 2 - - uid: 4393 - components: - - type: Transform - pos: -31.5,-53.5 - parent: 2 - - uid: 4394 - components: - - type: Transform - pos: -31.5,-55.5 - parent: 2 - - uid: 4395 - components: - - type: Transform - pos: -32.5,-54.5 - parent: 2 - - uid: 4396 - components: - - type: Transform - pos: -30.5,-54.5 - parent: 2 - uid: 4397 components: - type: Transform @@ -127029,21 +126290,6 @@ entities: - type: Transform pos: 39.5,-14.5 parent: 2 - - uid: 4556 - components: - - type: Transform - pos: -30.5,-46.5 - parent: 2 - - uid: 4569 - components: - - type: Transform - pos: -30.5,-45.5 - parent: 2 - - uid: 4570 - components: - - type: Transform - pos: -30.5,-44.5 - parent: 2 - uid: 4571 components: - type: Transform @@ -127094,46 +126340,6 @@ entities: - type: Transform pos: -32.5,-8.5 parent: 2 - - uid: 4700 - components: - - type: Transform - pos: -36.5,-8.5 - parent: 2 - - uid: 4701 - components: - - type: Transform - pos: -40.5,-9.5 - parent: 2 - - uid: 4702 - components: - - type: Transform - pos: -36.5,-7.5 - parent: 2 - - uid: 4703 - components: - - type: Transform - pos: -38.5,-9.5 - parent: 2 - - uid: 4704 - components: - - type: Transform - pos: -38.5,-7.5 - parent: 2 - - uid: 4706 - components: - - type: Transform - pos: -38.5,-8.5 - parent: 2 - - uid: 4715 - components: - - type: Transform - pos: -40.5,-7.5 - parent: 2 - - uid: 4723 - components: - - type: Transform - pos: -40.5,-8.5 - parent: 2 - uid: 4761 components: - type: Transform @@ -127149,81 +126355,6 @@ entities: - type: Transform pos: 21.5,-75.5 parent: 2 - - uid: 4850 - components: - - type: Transform - pos: -41.5,-43.5 - parent: 2 - - uid: 4891 - components: - - type: Transform - pos: -41.5,-44.5 - parent: 2 - - uid: 4892 - components: - - type: Transform - pos: -41.5,-45.5 - parent: 2 - - uid: 4923 - components: - - type: Transform - pos: -41.5,-46.5 - parent: 2 - - uid: 4924 - components: - - type: Transform - pos: -41.5,-47.5 - parent: 2 - - uid: 4927 - components: - - type: Transform - pos: -40.5,-47.5 - parent: 2 - - uid: 4928 - components: - - type: Transform - pos: -39.5,-47.5 - parent: 2 - - uid: 4929 - components: - - type: Transform - pos: -38.5,-47.5 - parent: 2 - - uid: 4930 - components: - - type: Transform - pos: -37.5,-47.5 - parent: 2 - - uid: 4931 - components: - - type: Transform - pos: -37.5,-44.5 - parent: 2 - - uid: 4932 - components: - - type: Transform - pos: -37.5,-46.5 - parent: 2 - - uid: 4933 - components: - - type: Transform - pos: -37.5,-43.5 - parent: 2 - - uid: 4934 - components: - - type: Transform - pos: -38.5,-43.5 - parent: 2 - - uid: 4935 - components: - - type: Transform - pos: -39.5,-43.5 - parent: 2 - - uid: 4936 - components: - - type: Transform - pos: -40.5,-43.5 - parent: 2 - uid: 4937 components: - type: Transform @@ -127694,6 +126825,11 @@ entities: - type: Transform pos: -17.5,-73.5 parent: 2 + - uid: 11716 + components: + - type: Transform + pos: -30.5,-46.5 + parent: 2 - uid: 11872 components: - type: Transform @@ -127714,6 +126850,21 @@ entities: - type: Transform pos: 51.5,-60.5 parent: 2 + - uid: 13888 + components: + - type: Transform + pos: -14.5,-32.5 + parent: 2 + - uid: 13963 + components: + - type: Transform + pos: -0.5,-42.5 + parent: 2 + - uid: 13981 + components: + - type: Transform + pos: -30.5,-44.5 + parent: 2 - uid: 14115 components: - type: Transform diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index 0b29fe144d..fb11cf4f70 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 264.0.0 + engineVersion: 266.0.0 forkId: "" forkVersion: "" - time: 07/22/2025 16:14:30 - entityCount: 23140 + time: 08/29/2025 15:07:57 + entityCount: 23830 maps: - 5350 grids: @@ -85,51 +85,51 @@ entities: chunks: -1,0: ind: -1,0 - tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAwB+AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAACAF0AAAAAAwBdAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAADAH4AAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAXQAAAAAAAB8AAAAAAwB+AAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAMAYAAAAAABAGAAAAAAAQB+AAAAAAAAXQAAAAADAB8AAAAAAQBdAAAAAAEAHwAAAAABAF0AAAAAAAAfAAAAAAIAXQAAAAABAB8AAAAAAABdAAAAAAAAHwAAAAADAGAAAAAAAgBgAAAAAAMAYAAAAAAAAGAAAAAAAQBgAAAAAAIAfgAAAAAAAB8AAAAAAgBdAAAAAAEAHwAAAAACAF0AAAAAAgAfAAAAAAEAXQAAAAADAB8AAAAAAwBdAAAAAAIAHwAAAAAAAF0AAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAwBgAAAAAAAAYAAAAAAAAH4AAAAAAABdAAAAAAMAHwAAAAACAF0AAAAAAwAfAAAAAAMAXQAAAAACAB8AAAAAAQBdAAAAAAIAHwAAAAABAF0AAAAAAQAfAAAAAAMAYAAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAAAAGAAAAAAAwB+AAAAAAAAHwAAAAAAAF0AAAAAAwAfAAAAAAEAXQAAAAACAB8AAAAAAgBdAAAAAAIAHwAAAAAAAF0AAAAAAgAfAAAAAAAAXQAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAADAGAAAAAAAABgAAAAAAEAfgAAAAAAAF0AAAAAAAAfAAAAAAAAXQAAAAACAB8AAAAAAgBdAAAAAAIAHwAAAAADAF0AAAAAAgAfAAAAAAIAXQAAAAACAB8AAAAAAgBgAAAAAAEAYAAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAAAAH4AAAAAAAAfAAAAAAIAXQAAAAACAB8AAAAAAwBdAAAAAAEAHwAAAAAAAF0AAAAAAgAfAAAAAAMAXQAAAAABAB8AAAAAAQBdAAAAAAMAfgAAAAAAAH4AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAAAHwAAAAABAC4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAMAHwAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAAAAH4AAAAAAAB6AAAAAAIAegAAAAACAHoAAAAAAQB6AAAAAAIAegAAAAADAHoAAAAAAwAuAAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAABAB8AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAEAegAAAAABAHoAAAAAAAB6AAAAAAIAegAAAAACAHoAAAAAAQB6AAAAAAAALgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAADAB8AAAAAAgAfAAAAAAIAHwAAAAABAA== + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAgB+AAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAACAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAgBdAAAAAAEAfgAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAABAH4AAAAAAABgAAAAAAIAYAAAAAAAAGAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAXQAAAAAAAB8AAAAAAgB+AAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAIAYAAAAAADAGAAAAAAAQB+AAAAAAAAXQAAAAADAB8AAAAAAwBdAAAAAAMAHwAAAAABAF0AAAAAAAAfAAAAAAMAXQAAAAAAAB8AAAAAAQBdAAAAAAAAHwAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAACAGAAAAAAAQBgAAAAAAEAfgAAAAAAAB8AAAAAAABdAAAAAAEAHwAAAAABAF0AAAAAAwAfAAAAAAEAXQAAAAACAB8AAAAAAwBdAAAAAAIAHwAAAAADAF0AAAAAAgBgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAAAAH4AAAAAAABdAAAAAAMAHwAAAAADAF0AAAAAAgAfAAAAAAIAXQAAAAACAB8AAAAAAgBdAAAAAAIAHwAAAAABAF0AAAAAAgAfAAAAAAEAYAAAAAAAAGAAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAAB+AAAAAAAAHwAAAAADAF0AAAAAAwAfAAAAAAMAXQAAAAADAB8AAAAAAwBdAAAAAAAAHwAAAAACAF0AAAAAAgAfAAAAAAEAXQAAAAABAGAAAAAAAgBgAAAAAAMAYAAAAAACAGAAAAAAAgBgAAAAAAMAfgAAAAAAAF0AAAAAAwAfAAAAAAIAXQAAAAADAB8AAAAAAQBdAAAAAAEAHwAAAAADAF0AAAAAAAAfAAAAAAEAXQAAAAACAB8AAAAAAgBgAAAAAAMAYAAAAAACAGAAAAAAAQBgAAAAAAMAYAAAAAAAAH4AAAAAAAAfAAAAAAAAXQAAAAACAB8AAAAAAwBdAAAAAAAAHwAAAAADAF0AAAAAAAAfAAAAAAEAXQAAAAABAB8AAAAAAgBdAAAAAAIAfgAAAAAAAH4AAAAAAAAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAfgAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAgAfAAAAAAMAHwAAAAABAC4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAMAHwAAAAADAH4AAAAAAAB6AAAAAAEAegAAAAABAHoAAAAAAwB6AAAAAAIAegAAAAACAHoAAAAAAwAuAAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAEAegAAAAAAAHoAAAAAAwB6AAAAAAEAegAAAAACAHoAAAAAAgB6AAAAAAMALgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAABAA== version: 7 0,0: ind: 0,0 - tiles: XQAAAAACAF0AAAAAAwB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAgB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAACAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAgB+AAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAADAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAB8AAAAAAQBdAAAAAAEAHwAAAAADAF0AAAAAAQAfAAAAAAIAXQAAAAABAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAABdAAAAAAMAHwAAAAABAF0AAAAAAQAfAAAAAAIAXQAAAAAAAB8AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAHwAAAAADAF0AAAAAAAAfAAAAAAEAXQAAAAABAB8AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAABAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAHwAAAAAAAF0AAAAAAAAfAAAAAAMAfgAAAAAAAB8AAAAAAwBdAAAAAAEAHwAAAAACAH4AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwAfAAAAAAIAXQAAAAADAH4AAAAAAABdAAAAAAIAHwAAAAABAF0AAAAAAwB+AAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAMAfgAAAAAAAHAAAAAAAwBwAAAAAAMAcAAAAAAAAB8AAAAAAQAfAAAAAAMAXQAAAAADAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAACAH4AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAwAfAAAAAAMAHwAAAAAAAH4AAAAAAAAfAAAAAAMAfgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAAB+AAAAAAAAcAAAAAAAAB8AAAAAAABwAAAAAAIAHwAAAAADAHoAAAAAAwB+AAAAAAAAGwAAAAAAABsAAAAAAABDAAAAAAAAQwAAAAAAAEMAAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAAAfAAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAAAfgAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAEMAAAAAAABDAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAACAH4AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAADAH4AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAgB+AAAAAAAAbQAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAIAHwAAAAAAAA== + tiles: XQAAAAACAF0AAAAAAQB+AAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAQBdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAACAF0AAAAAAQB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAQB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAACAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAB8AAAAAAQBdAAAAAAEAHwAAAAAAAF0AAAAAAQAfAAAAAAAAXQAAAAACAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQBdAAAAAAEAHwAAAAAAAF0AAAAAAAAfAAAAAAAAXQAAAAABAB8AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAHwAAAAAAAF0AAAAAAgAfAAAAAAAAXQAAAAABAB8AAAAAAgBdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAMAXQAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAHwAAAAAAAF0AAAAAAgAfAAAAAAEAfgAAAAAAAB8AAAAAAwBdAAAAAAAAHwAAAAADAH4AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAQB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwAfAAAAAAAAXQAAAAADAH4AAAAAAABdAAAAAAMAHwAAAAACAF0AAAAAAwB+AAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAIAfgAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAADAB8AAAAAAgAfAAAAAAEAXQAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAADAH4AAAAAAAAfAAAAAAMAHwAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAADAH4AAAAAAAAfAAAAAAIAfgAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAACAH4AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAwB+AAAAAAAAcAAAAAACAB8AAAAAAQBwAAAAAAAAHwAAAAACAHoAAAAAAAB+AAAAAAAAGwAAAAAAABsAAAAAAABDAAAAAAAAQwAAAAAAAEMAAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAIAfgAAAAAAAH4AAAAAAAAfAAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAAAfgAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAEMAAAAAAABDAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAACAH4AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAAAHwAAAAACAH4AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAQB+AAAAAAAAbQAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAAAHwAAAAABAA== version: 7 -1,-1: ind: -1,-1 - tiles: cAAAAAAAAHAAAAAAAgBwAAAAAAAAcAAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAABwAAAAAAIAcAAAAAAAAHAAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAAAAHAAAAAAAwBwAAAAAAEAcAAAAAAAAHAAAAAAAAB+AAAAAAAAcAAAAAABAHAAAAAAAgBwAAAAAAEAcAAAAAADAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAgBwAAAAAAMAcAAAAAACAHAAAAAAAgBwAAAAAAEAfgAAAAAAAHAAAAAAAQBwAAAAAAAAcAAAAAAAAHAAAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAAAcAAAAAABAHAAAAAAAABwAAAAAAIAcAAAAAABAHAAAAAAAgBwAAAAAAEAcAAAAAADAHAAAAAAAwBwAAAAAAAAcAAAAAADAHAAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAABAHAAAAAAAgBwAAAAAAMAcAAAAAADAHAAAAAAAABwAAAAAAAAcAAAAAACAHAAAAAAAQBwAAAAAAAAcAAAAAACAHAAAAAAAQBwAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAHAAAAAAAgBwAAAAAAMAcAAAAAADAHAAAAAAAABwAAAAAAIAcAAAAAACAHAAAAAAAABwAAAAAAIAcAAAAAABAHAAAAAAAABwAAAAAAEAcAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAEAcAAAAAAAAH4AAAAAAABwAAAAAAMAcAAAAAAAAHAAAAAAAwBwAAAAAAIAcAAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAcAAAAAAAAHAAAAAAAgB+AAAAAAAAcAAAAAAAAHAAAAAAAgB+AAAAAAAAcAAAAAADAHAAAAAAAwBwAAAAAAAAcAAAAAACAHAAAAAAAwB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAACAHAAAAAAAABwAAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAIAfgAAAAAAAHAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAAAcAAAAAADAHAAAAAAAABwAAAAAAIAcAAAAAACAHAAAAAAAgBwAAAAAAEAcAAAAAACAHAAAAAAAQBwAAAAAAIAcAAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAAAAHAAAAAAAgBwAAAAAAMAcAAAAAADAHAAAAAAAABwAAAAAAMAcAAAAAAAAHAAAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAABAH4AAAAAAABwAAAAAAEAcAAAAAACAHAAAAAAAABwAAAAAAAAcAAAAAACAHAAAAAAAgBwAAAAAAMAcAAAAAADAHAAAAAAAwBwAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAwB+AAAAAAAAcAAAAAADAHAAAAAAAwBwAAAAAAEAcAAAAAAAAHAAAAAAAwBwAAAAAAAAcAAAAAADAHAAAAAAAABwAAAAAAMAcAAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAHAAAAAAAwBwAAAAAAAAcAAAAAADAHAAAAAAAABwAAAAAAIAcAAAAAAAAHAAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAEAfgAAAAAAAA== + tiles: cAAAAAADAHAAAAAAAABwAAAAAAMAcAAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAABwAAAAAAMAcAAAAAAAAHAAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAMAcAAAAAADAHAAAAAAAAB+AAAAAAAAcAAAAAACAHAAAAAAAABwAAAAAAEAcAAAAAABAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAwBwAAAAAAEAcAAAAAABAHAAAAAAAgBwAAAAAAAAfgAAAAAAAHAAAAAAAABwAAAAAAEAcAAAAAACAHAAAAAAAgBPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAIAcAAAAAAAAHAAAAAAAgBwAAAAAAEAcAAAAAACAHAAAAAAAABwAAAAAAMAcAAAAAABAHAAAAAAAgBwAAAAAAAAcAAAAAABAHAAAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAAAAHAAAAAAAQBwAAAAAAEAcAAAAAABAHAAAAAAAgBwAAAAAAMAcAAAAAAAAHAAAAAAAABwAAAAAAIAcAAAAAADAHAAAAAAAABwAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAHAAAAAAAABwAAAAAAMAcAAAAAAAAHAAAAAAAQBwAAAAAAAAcAAAAAADAHAAAAAAAABwAAAAAAEAcAAAAAACAHAAAAAAAgBwAAAAAAAAcAAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAIAcAAAAAABAH4AAAAAAABwAAAAAAEAcAAAAAACAHAAAAAAAQBwAAAAAAIAcAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAcAAAAAAAAHAAAAAAAQB+AAAAAAAAcAAAAAABAHAAAAAAAgB+AAAAAAAAcAAAAAACAHAAAAAAAwBwAAAAAAAAcAAAAAADAHAAAAAAAgB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAHAAAAAAAwBwAAAAAAAAcAAAAAABAHAAAAAAAQBwAAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAIAfgAAAAAAAHAAAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAMAcAAAAAAAAHAAAAAAAgBwAAAAAAMAcAAAAAABAHAAAAAAAQBwAAAAAAMAcAAAAAAAAHAAAAAAAwBwAAAAAAAAcAAAAAACAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAABAHAAAAAAAgBwAAAAAAMAcAAAAAAAAHAAAAAAAQBwAAAAAAEAcAAAAAACAHAAAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAMAXQAAAAAAAH4AAAAAAABwAAAAAAMAcAAAAAAAAHAAAAAAAgBwAAAAAAEAcAAAAAADAHAAAAAAAABwAAAAAAMAcAAAAAACAHAAAAAAAgBwAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAgB+AAAAAAAAcAAAAAADAHAAAAAAAwBwAAAAAAMAcAAAAAAAAHAAAAAAAgBwAAAAAAAAcAAAAAAAAHAAAAAAAQBwAAAAAAIAcAAAAAACAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAHAAAAAAAABwAAAAAAMAcAAAAAABAHAAAAAAAQBwAAAAAAAAcAAAAAADAHAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAEAfgAAAAAAAA== version: 7 0,-1: ind: 0,-1 - tiles: fgAAAAAAAH4AAAAAAABsAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAMAegAAAAABAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAQAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAB6AAAAAAIAegAAAAABAHoAAAAAAQB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAIAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAegAAAAABAHoAAAAAAwB6AAAAAAEAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAABAB8AAAAAAQB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAfgAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAADMAAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAAB6AAAAAAIAegAAAAACAHoAAAAAAgAmAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAABAB8AAAAAAABdAAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAMAegAAAAABAHoAAAAAAQB6AAAAAAMAJgAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAgAfAAAAAAMAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAADAHoAAAAAAAB6AAAAAAAAegAAAAACACYAAAAAAwBdAAAAAAAAXQAAAAADAF0AAAAAAQB+AAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAEAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAAAAH4AAAAAAAB6AAAAAAMAegAAAAADAHoAAAAAAQAzAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAEAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAIAHwAAAAAAAB8AAAAAAQB+AAAAAAAAegAAAAADAHoAAAAAAgB6AAAAAAMAMwAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAABAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAgBdAAAAAAMAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAgB6AAAAAAEAegAAAAABAH4AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAgB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAQAOAAAAAAMADgAAAAAAAA4AAAAAAAAzAAAAAAAAJgAAAAACADMAAAAAAAAzAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAIAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAABAH4AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAwB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAIAfgAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAABAB8AAAAAAAAfAAAAAAEAHwAAAAADAH4AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAAB+AAAAAAAAfgAAAAAAAA== + tiles: fgAAAAAAAH4AAAAAAABsAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAHoAAAAAAQB6AAAAAAMAegAAAAACAH4AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAwAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAB6AAAAAAAAegAAAAADAHoAAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAMAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAegAAAAABAHoAAAAAAAB6AAAAAAIAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAADAB8AAAAAAQB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAfgAAAAAAAHoAAAAAAwB6AAAAAAIAegAAAAACADMAAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAAB6AAAAAAAAegAAAAACAHoAAAAAAAAmAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAADAB8AAAAAAQBdAAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAMAegAAAAADAHoAAAAAAAB6AAAAAAAAJgAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAQAfAAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAAAAHoAAAAAAgB6AAAAAAIAegAAAAACACYAAAAAAgBdAAAAAAEAXQAAAAABAF0AAAAAAgB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAABAH4AAAAAAAB6AAAAAAIAegAAAAADAHoAAAAAAQAzAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAACAF0AAAAAAwBdAAAAAAEAHwAAAAABAB8AAAAAAgB+AAAAAAAAegAAAAACAHoAAAAAAwB6AAAAAAEAMwAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAABAH4AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAIAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAwB6AAAAAAAAegAAAAACAH4AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAwB+AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAQAOAAAAAAEADgAAAAACAA4AAAAAAgAzAAAAAAAAJgAAAAABADMAAAAAAAAzAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAMAfgAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAADAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAIAXQAAAAACAH4AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAQB+AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAEAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAMAXQAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAABAH4AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAQB+AAAAAAAAfgAAAAAAAA== version: 7 -2,0: ind: -2,0 - tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAQBdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAAAfgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAF0AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAMAfgAAAAAAAGAAAAAAAgBgAAAAAAEAHwAAAAAAAB8AAAAAAwB+AAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAACAF0AAAAAAwBgAAAAAAAAYAAAAAACACQAAAAAAAAfAAAAAAEAfgAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAH4AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAgB+AAAAAAAAYAAAAAAAAGAAAAAAAwAkAAAAAAAAHwAAAAADAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGAAAAAAAgBgAAAAAAMAJAAAAAACAB8AAAAAAgB+AAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAH4AAAAAAABgAAAAAAMAYAAAAAADAB8AAAAAAwAfAAAAAAEAfgAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAIAYAAAAAAAAGAAAAAAAgAfAAAAAAMAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAAAAGAAAAAAAABgAAAAAAAAHwAAAAABAB8AAAAAAgB+AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAEAXQAAAAACAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAEAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAJgAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAB8AAAAAAgA8AAAAAAAAPAAAAAAAAH4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAABdAAAAAAEAfgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAF0AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAEAfgAAAAAAAGAAAAAAAABgAAAAAAMAHwAAAAADAB8AAAAAAAB+AAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAQBgAAAAAAEAYAAAAAABACQAAAAAAwAfAAAAAAMAfgAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAIAXQAAAAACAH4AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAgB+AAAAAAAAYAAAAAABAGAAAAAAAgAkAAAAAAAAHwAAAAABAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAACAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGAAAAAAAABgAAAAAAEAJAAAAAADAB8AAAAAAQB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAAAAH4AAAAAAABgAAAAAAEAYAAAAAADAB8AAAAAAgAfAAAAAAMAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAEAYAAAAAACAGAAAAAAAQAfAAAAAAMAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAADAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAABAGAAAAAAAgBgAAAAAAEAHwAAAAABAB8AAAAAAQB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAEAfgAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAJgAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAB8AAAAAAQA8AAAAAAAAPAAAAAAAAH4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== version: 7 0,1: ind: 0,1 - tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAADAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAABAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAwAfAAAAAAIAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAB8AAAAAAwB+AAAAAAAAXQAAAAAAAF0AAAAAAgAfAAAAAAAAXQAAAAACAF0AAAAAAwB+AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAEAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAACAH4AAAAAAAAfAAAAAAIAfgAAAAAAAF0AAAAAAwAfAAAAAAIAHwAAAAADAB8AAAAAAwBdAAAAAAEAfgAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAADAH4AAAAAAABdAAAAAAAAHwAAAAABAF0AAAAAAABdAAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAMAHwAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAACAH4AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAQB+AAAAAAAAXQAAAAACAB8AAAAAAABdAAAAAAEAfgAAAAAAAB8AAAAAAgB+AAAAAAAAXQAAAAADAF0AAAAAAAAfAAAAAAEAXQAAAAAAAF0AAAAAAgB+AAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAIAXQAAAAADAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAEAXQAAAAACAF0AAAAAAwBdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAABAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAQB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAegAAAAACAHoAAAAAAQB6AAAAAAEAegAAAAADAHoAAAAAAgB6AAAAAAMAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAIAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAA== + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAMAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAADAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAgAfAAAAAAEAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAB8AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAQAfAAAAAAEAXQAAAAACAF0AAAAAAwB+AAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAEAfgAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAABAH4AAAAAAAAfAAAAAAAAfgAAAAAAAF0AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAgBdAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAAAAH4AAAAAAABdAAAAAAIAHwAAAAACAF0AAAAAAABdAAAAAAEAHwAAAAACAB8AAAAAAQAfAAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAIAHwAAAAADAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAwB+AAAAAAAAXQAAAAABAB8AAAAAAABdAAAAAAAAfgAAAAAAAB8AAAAAAQB+AAAAAAAAXQAAAAADAF0AAAAAAwAfAAAAAAAAXQAAAAACAF0AAAAAAwB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAIAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAgBdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAABAH4AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAADAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAwB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAegAAAAAAAHoAAAAAAgB6AAAAAAEAegAAAAACAHoAAAAAAwB6AAAAAAIAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAgBdAAAAAAIAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAA== version: 7 -1,1: ind: -1,1 - tiles: LgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAAAAH4AAAAAAAB6AAAAAAEAegAAAAACAHoAAAAAAAAfAAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAC4AAAAAAAB+AAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAegAAAAABAHoAAAAAAAB6AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAHoAAAAAAQB6AAAAAAMAegAAAAADAHoAAAAAAQBsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAACAB8AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAF0AAAAAAABdAAAAAAIAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAwAAAAAAQAMAAAAAAEADAAAAAADAAwAAAAAAwAMAAAAAAIADAAAAAAAAAwAAAAAAgB+AAAAAAAAfgAAAAAAAB8AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAwB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAIAHwAAAAACAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAACAH4AAAAAAAB+AAAAAAAAXQAAAAADAB8AAAAAAAAfAAAAAAIAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAgB+AAAAAAAAXQAAAAADAF0AAAAAAwAfAAAAAAEAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAMAHwAAAAADAB8AAAAAAwAfAAAAAAAAHwAAAAACAH4AAAAAAAAfAAAAAAAAHwAAAAADAH4AAAAAAAAfAAAAAAEAegAAAAACAA== + tiles: LgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAABAH4AAAAAAAB6AAAAAAMAegAAAAACAHoAAAAAAQAfAAAAAAIAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAC4AAAAAAAB+AAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAHoAAAAAAwB6AAAAAAEAegAAAAAAAHoAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAADAB8AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAF0AAAAAAgBdAAAAAAIAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAwAAAAAAwAMAAAAAAIADAAAAAADAAwAAAAAAwAMAAAAAAMADAAAAAAAAAwAAAAAAwB+AAAAAAAAfgAAAAAAAB8AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAQB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAACAF0AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAMAHwAAAAABAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAACAH4AAAAAAAB+AAAAAAAAXQAAAAACAB8AAAAAAwAfAAAAAAIAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAgB+AAAAAAAAXQAAAAADAF0AAAAAAQAfAAAAAAEAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAgB+AAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAMAHwAAAAADAH4AAAAAAAAfAAAAAAAAHwAAAAABAH4AAAAAAAAfAAAAAAMAegAAAAABAA== version: 7 -2,1: ind: -2,1 - tiles: fgAAAAAAAGwAAAAAAAB+AAAAAAAAPAAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAwAfAAAAAAIAPAAAAAAAAH4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAIAegAAAAABAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAACAHoAAAAAAgB+AAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAABAH4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAgB6AAAAAAMAfgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAQB+AAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAOAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAAuAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAABAH4AAAAAAAB+AAAAAAAAegAAAAABAHoAAAAAAgB6AAAAAAEAegAAAAACAHoAAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAMAegAAAAACAHoAAAAAAQB6AAAAAAAAfgAAAAAAAA== + tiles: fgAAAAAAAGwAAAAAAAB+AAAAAAAAPAAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAACAB8AAAAAAwAfAAAAAAAAPAAAAAAAAH4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAEAegAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAAAAHoAAAAAAQB+AAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAH4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAwB6AAAAAAEAfgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAQB+AAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAOAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAAuAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAMAXQAAAAACAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAQBdAAAAAAIAXQAAAAADAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAQBdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAACAHoAAAAAAwB6AAAAAAEAegAAAAACAHoAAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAwB6AAAAAAMAegAAAAAAAHoAAAAAAAB6AAAAAAEAfgAAAAAAAA== version: 7 -3,0: ind: -3,0 - tiles: AAAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAACAH4AAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAIAfgAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAQAAAAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAEAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAgBdAAAAAAIAAAAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAH4AAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAEAXQAAAAABAH4AAAAAAAAfAAAAAAMAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAwBdAAAAAAEAXQAAAAACAF0AAAAAAwB+AAAAAAAAHwAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAIAHwAAAAADAB8AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAABAB8AAAAAAAAfAAAAAAEAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAADAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAgB+AAAAAAAAHwAAAAABAF0AAAAAAABtAAAAAAAAfgAAAAAAAF0AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAwBdAAAAAAAAfgAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAEAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAAB+AAAAAAAAHwAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAwBdAAAAAAIAfgAAAAAAAB8AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAACAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAACAF0AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAgBtAAAAAAAAfgAAAAAAAA== + tiles: AAAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAH4AAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAMAfgAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAQAAAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAEAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAMAAAAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAAAAH4AAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAACAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAACAF0AAAAAAwBdAAAAAAIAXQAAAAAAAH4AAAAAAAAfAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAgB+AAAAAAAAHwAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAIAHwAAAAAAAB8AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAB8AAAAAAAAfAAAAAAEAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAMAXQAAAAABAH4AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAgB+AAAAAAAAHwAAAAABAF0AAAAAAgBtAAAAAAAAfgAAAAAAAF0AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAACAF0AAAAAAgBdAAAAAAEAfgAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAQBdAAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAwB+AAAAAAAAHwAAAAADAF0AAAAAAQBdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAEAfgAAAAAAAB8AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAwBtAAAAAAAAfgAAAAAAAA== version: 7 -3,1: ind: -3,1 - tiles: fgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAEAfgAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAACAH4AAAAAAAAfAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAIAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABtAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAgB+AAAAAAAAHwAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAMAfgAAAAAAAB8AAAAAAwBdAAAAAAIAXQAAAAADAF0AAAAAAAAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAHoAAAAAAQB6AAAAAAAAegAAAAACAHoAAAAAAgB6AAAAAAEAfgAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAADAH4AAAAAAAB6AAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAIAegAAAAADAHoAAAAAAgB6AAAAAAAAegAAAAABAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAQB+AAAAAAAAegAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAIAfgAAAAAAAHoAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAABAB8AAAAAAgAfAAAAAAIAfgAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAAfAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAHwAAAAACAB8AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAABdAAAAAAIAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAHwAAAAABABEAAAAAAAARAAAAAAAAEQAAAAAAAB8AAAAAAgB+AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAAAAB8AAAAAAQAfAAAAAAMAfgAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAEAegAAAAABAHoAAAAAAwB+AAAAAAAAMQAAAAAAADEAAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAEAfgAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAG0AAAAAAAB6AAAAAAEAegAAAAAAAHoAAAAAAQB6AAAAAAMAfgAAAAAAADEAAAAAAAAxAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAABAH4AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAAAAHoAAAAAAQB6AAAAAAIAegAAAAADAH4AAAAAAAAxAAAAAAAAMQAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAAB+AAAAAAAAXQAAAAAAAA== + tiles: fgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAMAXQAAAAAAAH4AAAAAAAAfAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAIAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABtAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAQB+AAAAAAAAHwAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAIAfgAAAAAAAB8AAAAAAwBdAAAAAAEAXQAAAAACAF0AAAAAAwAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAHoAAAAAAAB6AAAAAAEAegAAAAABAHoAAAAAAQB6AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAABAH4AAAAAAAB6AAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAMAegAAAAADAHoAAAAAAQB6AAAAAAEAegAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAQB+AAAAAAAAegAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAEAfgAAAAAAAHoAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAACAB8AAAAAAwAfAAAAAAMAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAAfAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAHwAAAAABAB8AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAHwAAAAADABEAAAAAAAARAAAAAAAAEQAAAAAAAB8AAAAAAwB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAQAfAAAAAAIAfgAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAQB6AAAAAAMAegAAAAAAAHoAAAAAAgB+AAAAAAAAMQAAAAAAADEAAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAAAfgAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB6AAAAAAMAegAAAAAAAHoAAAAAAQB6AAAAAAMAfgAAAAAAADEAAAAAAAAxAAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAADAH4AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAADAHoAAAAAAQB6AAAAAAAAegAAAAAAAH4AAAAAAAAxAAAAAAAAMQAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAQB+AAAAAAAAXQAAAAAAAA== version: 7 -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAABAH4AAAAAAABtAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAADAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAwAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAMAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAABAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAIAXQAAAAADAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAADAH4AAAAAAAAyAAAAAAAAfgAAAAAAADQAAAAAAwB+AAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAADAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAADAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAIAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAADAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAwAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAIAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAADAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAgAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAMAXQAAAAADAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAACAH4AAAAAAAAyAAAAAAMAfgAAAAAAADQAAAAAAQB+AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAQBdAAAAAAMAXQAAAAACAA== version: 7 -3,-1: ind: -3,-1 - tiles: fgAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAgBwAAAAAAEAcAAAAAACAH4AAAAAAAAfAAAAAAEALwAAAAAAAB8AAAAAAQB+AAAAAAAAXQAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAEAfgAAAAAAAB8AAAAAAAAvAAAAAAIAHwAAAAABAH4AAAAAAABdAAAAAAIAfgAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAADAH4AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAQB+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAgB+AAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAMAfgAAAAAAAH4AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAADAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAwB+AAAAAAAAXQAAAAACAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAAAAB8AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAABAH4AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAABAH4AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAQB+AAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAQB+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAIAcAAAAAABAAAAAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAEAfgAAAAAAAF0AAAAAAwBdAAAAAAMAfgAAAAAAAF0AAAAAAgBdAAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAABAH4AAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAABAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAQB+AAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAMAfgAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAABAH4AAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAABwAAAAAAIAAAAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAABAH4AAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAA== + tiles: fgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAwBwAAAAAAAAcAAAAAACAH4AAAAAAAAfAAAAAAEALwAAAAAAAB8AAAAAAwB+AAAAAAAAXQAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAIAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAIAfgAAAAAAAB8AAAAAAgAvAAAAAAIAHwAAAAAAAH4AAAAAAABdAAAAAAMAfgAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAACAH4AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAgB+AAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAgB+AAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAIAfgAAAAAAAH4AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAAAHwAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAwB+AAAAAAAAXQAAAAABAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAAAAB8AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAMAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAABAH4AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAABAH4AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAQBdAAAAAAEAcAAAAAACAAAAAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAIAfgAAAAAAAF0AAAAAAABdAAAAAAIAfgAAAAAAAF0AAAAAAABdAAAAAAIAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAADAH4AAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAACAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAwB+AAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAIAfgAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAADAH4AAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAIAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAgBwAAAAAAMAAAAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAABAH4AAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAA== version: 7 -4,-1: ind: -4,-1 @@ -137,139 +137,139 @@ entities: version: 7 -2,-1: ind: -2,-1 - tiles: fgAAAAAAAHAAAAAAAwBwAAAAAAEAcAAAAAACAH4AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAAB+AAAAAAAAcAAAAAADAHAAAAAAAABwAAAAAAMAcAAAAAACAHAAAAAAAQBwAAAAAAEAcAAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAgBwAAAAAAIAcAAAAAABAH4AAAAAAABwAAAAAAEAcAAAAAABAHAAAAAAAwBdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAACAH4AAAAAAABwAAAAAAMAcAAAAAABAH4AAAAAAAB+AAAAAAAAcAAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAwB+AAAAAAAAcAAAAAAAAHAAAAAAAgBwAAAAAAIAcAAAAAADAHAAAAAAAABwAAAAAAEAcAAAAAACAHAAAAAAAABwAAAAAAMAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAMAfgAAAAAAAHAAAAAAAgBwAAAAAAIAcAAAAAADAHAAAAAAAABwAAAAAAIAcAAAAAABAHAAAAAAAQBwAAAAAAAAcAAAAAABAH4AAAAAAAAfAAAAAAEAHwAAAAABAF0AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAgBwAAAAAAAAcAAAAAABAHAAAAAAAwBwAAAAAAIAcAAAAAADAHAAAAAAAQBwAAAAAAAAcAAAAAADAHAAAAAAAABwAAAAAAMAHwAAAAABAB8AAAAAAwBdAAAAAAIAXQAAAAADAF0AAAAAAQBdAAAAAAAAcAAAAAABAHAAAAAAAABwAAAAAAMAcAAAAAABAHAAAAAAAwBwAAAAAAEAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAADAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAQBwAAAAAAAAcAAAAAADAHAAAAAAAQBwAAAAAAIAcAAAAAABAHAAAAAAAQBwAAAAAAIAcAAAAAACAH4AAAAAAABwAAAAAAIAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAACAH4AAAAAAABwAAAAAAMAcAAAAAADAHAAAAAAAwBwAAAAAAMAcAAAAAACAHAAAAAAAQBwAAAAAAEAcAAAAAABAHAAAAAAAwB+AAAAAAAAcAAAAAACAHAAAAAAAgBwAAAAAAIAcAAAAAADAHAAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAACAHAAAAAAAABwAAAAAAAAfgAAAAAAAHAAAAAAAABwAAAAAAMAcAAAAAACAHAAAAAAAwBwAAAAAAIAHwAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAADAB8AAAAAAgAfAAAAAAAAHwAAAAADAHAAAAAAAQBwAAAAAAIAcAAAAAABAHAAAAAAAgBwAAAAAAIAfgAAAAAAAH4AAAAAAABwAAAAAAMAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAABAH4AAAAAAABwAAAAAAMAcAAAAAADAHAAAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAIAegAAAAAAAHoAAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAMAHwAAAAACAB8AAAAAAwB+AAAAAAAAfgAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAF8AAAAAAgBfAAAAAAIAegAAAAADAHoAAAAAAgB6AAAAAAEAfgAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAQAfAAAAAAMAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAwBfAAAAAAIAXwAAAAAAAHoAAAAAAgB6AAAAAAEAegAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAACAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAEAXwAAAAABAF8AAAAAAQB6AAAAAAAAegAAAAACAHoAAAAAAwB+AAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAADAA== + tiles: fgAAAAAAAHAAAAAAAABwAAAAAAMAcAAAAAABAH4AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAwB+AAAAAAAAcAAAAAADAHAAAAAAAgBwAAAAAAEAcAAAAAAAAHAAAAAAAwBwAAAAAAIAcAAAAAADAH4AAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAgBwAAAAAAMAcAAAAAADAH4AAAAAAABwAAAAAAMAcAAAAAADAHAAAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAADAH4AAAAAAABwAAAAAAAAcAAAAAACAH4AAAAAAAB+AAAAAAAAcAAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAQB+AAAAAAAAcAAAAAADAHAAAAAAAwBwAAAAAAMAcAAAAAACAHAAAAAAAwBwAAAAAAIAcAAAAAAAAHAAAAAAAwBwAAAAAAMAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAIAfgAAAAAAAHAAAAAAAwBwAAAAAAMAcAAAAAAAAHAAAAAAAQBwAAAAAAEAcAAAAAACAHAAAAAAAwBwAAAAAAAAcAAAAAABAH4AAAAAAAAfAAAAAAEAHwAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAQBwAAAAAAEAcAAAAAABAHAAAAAAAwBwAAAAAAEAcAAAAAADAHAAAAAAAwBwAAAAAAMAcAAAAAABAHAAAAAAAQBwAAAAAAIAHwAAAAACAB8AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAAAcAAAAAAAAHAAAAAAAQBwAAAAAAAAcAAAAAABAHAAAAAAAQBwAAAAAAMAcAAAAAACAHAAAAAAAgBwAAAAAAAAcAAAAAABAH4AAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAQBwAAAAAAAAcAAAAAACAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAgBwAAAAAAEAcAAAAAADAH4AAAAAAABwAAAAAAMAcAAAAAABAHAAAAAAAQBwAAAAAAAAcAAAAAACAH4AAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAwBwAAAAAAMAcAAAAAAAAHAAAAAAAwBwAAAAAAAAcAAAAAADAHAAAAAAAgB+AAAAAAAAcAAAAAAAAHAAAAAAAwBwAAAAAAAAcAAAAAACAHAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAMAfgAAAAAAAHAAAAAAAABwAAAAAAIAcAAAAAABAHAAAAAAAQBwAAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAACAB8AAAAAAAAfAAAAAAIAHwAAAAABAHAAAAAAAwBwAAAAAAEAcAAAAAADAHAAAAAAAABwAAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAMAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAMAHwAAAAABAH4AAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAEAegAAAAACAHoAAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAF8AAAAAAgBfAAAAAAEAegAAAAADAHoAAAAAAQB6AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAAAAB8AAAAAAgAfAAAAAAEAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAgBfAAAAAAIAXwAAAAADAHoAAAAAAAB6AAAAAAAAegAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAADAH4AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAEAXwAAAAADAF8AAAAAAQB6AAAAAAIAegAAAAACAHoAAAAAAgB+AAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAwB+AAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAABAA== version: 7 -2,2: ind: -2,2 - tiles: XQAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAwB+AAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAMAegAAAAABACYAAAAAAwB6AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAIAegAAAAAAAHoAAAAAAgB6AAAAAAEAegAAAAADAHoAAAAAAwB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAIAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAegAAAAABAHoAAAAAAwB6AAAAAAEAegAAAAAAAHoAAAAAAgB6AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAADAH4AAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAABAHoAAAAAAwB6AAAAAAAAegAAAAACAH4AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAwB+AAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAQAfAAAAAAMAHwAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAMAfgAAAAAAAHAAAAAAAQBwAAAAAAAAcAAAAAACAFIAAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAABtAAAAAAAAHwAAAAADAB8AAAAAAwAfAAAAAAAAHwAAAAAAACQAAAAAAwAfAAAAAAEAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAADAB8AAAAAAwAkAAAAAAIAHwAAAAABAH4AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAMAfQAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAABAB8AAAAAAQAfAAAAAAMAHwAAAAACAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAMAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAgBtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAA== + tiles: XQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAIAXQAAAAADAF0AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAQB6AAAAAAEAegAAAAACACYAAAAAAAB6AAAAAAEAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAMAegAAAAADAHoAAAAAAAB6AAAAAAMAegAAAAADAHoAAAAAAwB+AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAEAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAegAAAAACAHoAAAAAAAB6AAAAAAEAegAAAAACAHoAAAAAAgB6AAAAAAMAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAADAH4AAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAHoAAAAAAwB6AAAAAAMAegAAAAABAHoAAAAAAwB6AAAAAAMAegAAAAACAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAgB+AAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAwAfAAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAEAHwAAAAABAB8AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAEAfgAAAAAAAHAAAAAAAgBwAAAAAAMAcAAAAAAAAFIAAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAABtAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAADACQAAAAAAAAfAAAAAAMAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAAAAB8AAAAAAgAkAAAAAAEAHwAAAAABAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAACAB8AAAAAAQAfAAAAAAEAHwAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAgB+AAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAMAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAQBtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAA== version: 7 -3,2: ind: -3,2 - tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAAxAAAAAAAAMQAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAAB+AAAAAAAAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAMQAAAAAAADEAAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAEAfgAAAAAAAF0AAAAAAgB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAACAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAADAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAEAJAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAfgAAAAAAAB8AAAAAAQB+AAAAAAAAHwAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAAAAB8AAAAAAAAfAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAHwAAAAAAAB8AAAAAAAB+AAAAAAAAHwAAAAABAF0AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAAAfAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAfAAAAAAAAfgAAAAAAAB8AAAAAAwBdAAAAAAMAHwAAAAADAB8AAAAAAQAfAAAAAAIAXQAAAAACAF0AAAAAAABdAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAH4AAAAAAAAfAAAAAAAAfgAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAEAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAIAXQAAAAADAF0AAAAAAwB+AAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAACAH4AAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAUgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQAvAAAAAAAAawAAAAAAAH4AAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAQBdAAAAAAMALwAAAAAAAGsAAAAAAAB+AAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAIAXQAAAAADAA== + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAAxAAAAAAAAMQAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAMQAAAAAAADEAAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAIAfgAAAAAAAF0AAAAAAgB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAABAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAADAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAEAJAAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAfgAAAAAAAB8AAAAAAAB+AAAAAAAAHwAAAAACAF0AAAAAAABdAAAAAAMAXQAAAAABAB8AAAAAAAAfAAAAAAIAcAAAAAAAAHAAAAAAAABwAAAAAAAAHwAAAAAAAB8AAAAAAAB+AAAAAAAAHwAAAAADAF0AAAAAAwAfAAAAAAMAHwAAAAADAB8AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAQAfAAAAAAEAcAAAAAABAHAAAAAAAABwAAAAAAIAcAAAAAAAAHAAAAAAAAAfAAAAAAMAfgAAAAAAAB8AAAAAAQBdAAAAAAMAHwAAAAACAB8AAAAAAAAfAAAAAAEAXQAAAAACAF0AAAAAAgBdAAAAAAAAcAAAAAACAHAAAAAAAABwAAAAAAAAcAAAAAADAHAAAAAAAgBwAAAAAAEAcAAAAAADAH4AAAAAAAAfAAAAAAIAfgAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAIAfgAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAwB+AAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAACAH4AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAUgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAAAvAAAAAAEAawAAAAAAAH4AAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAgBdAAAAAAMALwAAAAACAGsAAAAAAwB+AAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAAAAA== version: 7 -4,1: ind: -4,1 - tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAMAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAADADEAAAAAAAAxAAAAAAAAMQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAAAAB8AAAAAAwB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAQAxAAAAAAAAMQAAAAAAADEAAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAAAfAAAAAAEAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAIAMQAAAAAAADEAAAAAAAAxAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAIAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAQAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAAB+AAAAAAAANAAAAAACAH4AAAAAAAAxAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAMAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAADAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAwB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAMAHwAAAAADAB8AAAAAAgAfAAAAAAIAHwAAAAABAB8AAAAAAQAfAAAAAAEAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB6AAAAAAEAegAAAAADAHoAAAAAAwB6AAAAAAAAegAAAAADAHoAAAAAAwAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAegAAAAACAHoAAAAAAgB6AAAAAAIAegAAAAAAAHoAAAAAAAB6AAAAAAIAAAAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAHoAAAAAAgB6AAAAAAAAegAAAAABAHoAAAAAAwB6AAAAAAEAegAAAAAAAA== + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAIAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAABAB8AAAAAAwB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAQAfAAAAAAEAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAMAMQAAAAAAADEAAAAAAAAxAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAADAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAQAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAAB+AAAAAAAANAAAAAAAAH4AAAAAAAAxAAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAACAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAQB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAMAHwAAAAABAB8AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAQAfAAAAAAMAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB6AAAAAAIAegAAAAADAHoAAAAAAQB6AAAAAAAAegAAAAABAHoAAAAAAwAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAegAAAAACAHoAAAAAAgB6AAAAAAAAegAAAAACAHoAAAAAAwB6AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAHoAAAAAAgB6AAAAAAEAegAAAAABAHoAAAAAAQB6AAAAAAMAegAAAAAAAA== version: 7 -4,2: ind: -4,2 - tiles: AAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbQAAAAAAAHoAAAAAAQB6AAAAAAIAegAAAAABAHoAAAAAAAB6AAAAAAIAegAAAAABAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAwAfAAAAAAIAHwAAAAADAB8AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAADAF0AAAAAAgAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAB8AAAAAAwB+AAAAAAAAbQAAAAAAAH4AAAAAAABdAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAGQAAAAAAABkAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAH4AAAAAAABkAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAGQAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAZAAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABrAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAawAAAAAAAA== + tiles: AAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbQAAAAAAAHoAAAAAAAB6AAAAAAMAegAAAAACAHoAAAAAAgB6AAAAAAAAegAAAAACAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAMAHwAAAAADAB8AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAMAXQAAAAADAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAMAXQAAAAADAF0AAAAAAgAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAB8AAAAAAQB+AAAAAAAAbQAAAAAAAH4AAAAAAABdAAAAAAIAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAGQAAAAAAgBkAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAABAH4AAAAAAABkAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAACAGQAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAMAZAAAAAABAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABrAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAawAAAAABAA== version: 7 -4,3: ind: -4,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAGsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABrAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAAAAH4AAAAAAABdAAAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAGsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAAAfgAAAAAAAF0AAAAAAABrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAAB+AAAAAAAAXQAAAAAAAGsAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAABrAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAMAAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAAAAH4AAAAAAABdAAAAAAAAawAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAGsAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAABrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAGsAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAABrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAAAawAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAGsAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBrAAAAAAIAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAH4AAAAAAABdAAAAAAEAawAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAAAXQAAAAACAGsAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAAAfgAAAAAAAF0AAAAAAgBrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQB+AAAAAAAAXQAAAAAAAGsAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAACAF0AAAAAAgBrAAAAAAIAfQAAAAAAAH4AAAAAAAB+AAAAAAAAMAAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAADAH4AAAAAAABdAAAAAAAAawAAAAACAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAGsAAAAAAgAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAABrAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAMAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAAAAGsAAAAAAwB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAABrAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAMAawAAAAADAA== version: 7 -3,3: ind: -3,3 - tiles: LwAAAAAAAGsAAAAAAAB+AAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAAAAC8AAAAAAABrAAAAAAAAfgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAgAvAAAAAAAAawAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAIALwAAAAAAAGsAAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAB8AAAAAAwB+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAADAC8AAAAAAABrAAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAAfAAAAAAMAfgAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAADAF0AAAAAAgAvAAAAAAAAawAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAwBdAAAAAAAALwAAAAAAAGsAAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAAAAC8AAAAAAABrAAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAFIAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAvAAAAAAAAawAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAALwAAAAAAAGsAAAAAAABdAAAAAAAAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAC8AAAAAAABrAAAAAAAAXQAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAF0AAAAAAgB+AAAAAAAAXQAAAAAAAFIAAAAAAABSAAAAAAAAfgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAAAvAAAAAAAAawAAAAAAAF0AAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAABSAAAAAAAAUgAAAAAAAC4AAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAALwAAAAAAAGsAAAAAAABdAAAAAAAAXQAAAAAAAC4AAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAABdAAAAAAIAUgAAAAAAAFIAAAAAAAB+AAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAC8AAAAAAABrAAAAAAAAXQAAAAAAAF0AAAAAAAAuAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAvAAAAAAAAawAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAAAGsAAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAA== + tiles: LwAAAAADAGsAAAAAAQB+AAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAAAAC8AAAAAAABrAAAAAAMAfgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAwAvAAAAAAIAawAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAAALwAAAAADAGsAAAAAAQBdAAAAAAEAfgAAAAAAAH4AAAAAAAAfAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAB8AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAACAC8AAAAAAQBrAAAAAAMAXQAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAAfAAAAAAIAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAgAvAAAAAAEAawAAAAABAF0AAAAAAQB+AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAAALwAAAAACAGsAAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAAAAC8AAAAAAQBrAAAAAAIAXQAAAAACAH4AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAFIAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAvAAAAAAIAawAAAAACAF0AAAAAAwB+AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAALwAAAAADAGsAAAAAAgBdAAAAAAMAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAC8AAAAAAwBrAAAAAAMAXQAAAAADAF0AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAAB+AAAAAAAAXQAAAAADAFIAAAAAAABSAAAAAAAAfgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAAAvAAAAAAMAawAAAAABAF0AAAAAAwBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAABSAAAAAAAAUgAAAAAAAC4AAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAALwAAAAABAGsAAAAAAgBdAAAAAAEAXQAAAAADAC4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAABdAAAAAAMAUgAAAAAAAFIAAAAAAAB+AAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAC8AAAAAAwBrAAAAAAMAXQAAAAACAF0AAAAAAgAuAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAvAAAAAAMAawAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAADAGsAAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAgB+AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAA== version: 7 -2,3: ind: -2,3 - tiles: XQAAAAACAF0AAAAAAwBdAAAAAAIAHwAAAAABAH4AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAMAHwAAAAADAB8AAAAAAwB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAADAB8AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAQAfAAAAAAEAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAwAfAAAAAAMAHwAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAIAHwAAAAACAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAIAHwAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAgAfAAAAAAIAHwAAAAADAB8AAAAAAgB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAACAB8AAAAAAgB+AAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAIAegAAAAAAAHoAAAAAAAB6AAAAAAEAegAAAAABAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XQAAAAABAF0AAAAAAgBdAAAAAAEAHwAAAAACAH4AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAACAB8AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAEAHwAAAAAAAB8AAAAAAgAfAAAAAAMAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAwAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAAAfAAAAAAAAHwAAAAABAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAAAHwAAAAABAH4AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAgB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAACAB8AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAEAHwAAAAAAAB8AAAAAAwAfAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAMAegAAAAABAHoAAAAAAAB6AAAAAAIAegAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAFIAAAAAAABSAAAAAAAAUgAAAAAAAFIAAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -3,4: ind: -3,4 - tiles: LwAAAAAAAGsAAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8AAAAAAABrAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAvAAAAAAAAawAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAAAGsAAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: LwAAAAABAGsAAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAgB+AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8AAAAAAgBrAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAvAAAAAAIAawAAAAACAF0AAAAAAgBdAAAAAAMAXQAAAAACAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAAAGsAAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAgB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -4,4: ind: -4,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAGsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAABrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAMAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAADAGsAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAABrAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAAAawAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -1,2: ind: -1,2 - tiles: HwAAAAADAB8AAAAAAQAfAAAAAAMAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAABACQAAAAAAgAfAAAAAAAAegAAAAAAAB8AAAAAAQAfAAAAAAIAfgAAAAAAAEAAAAAAAAB6AAAAAAIAegAAAAADAHoAAAAAAgB6AAAAAAMAegAAAAAAAEAAAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAAB+AAAAAAAAHwAAAAABAHoAAAAAAwAfAAAAAAIAHwAAAAACAH4AAAAAAABAAAAAAAAAegAAAAADAC8AAAAAAQAvAAAAAAMALwAAAAABAHoAAAAAAwBAAAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAEAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAAB+AAAAAAAAQAAAAAAAAHoAAAAAAgB6AAAAAAMAegAAAAACAHoAAAAAAgB6AAAAAAEAQAAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAACAH4AAAAAAAB6AAAAAAMAegAAAAACAB8AAAAAAQAfAAAAAAEAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAADAGwAAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAADAH4AAAAAAAB+AAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAAAHwAAAAADAH4AAAAAAABsAAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAADAB8AAAAAAwAfAAAAAAEAHwAAAAADAB8AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAgAfAAAAAAMAHwAAAAACAB8AAAAAAQB+AAAAAAAAfgAAAAAAAG0AAAAAAAAfAAAAAAIAHwAAAAACACQAAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAwAfAAAAAAMAHwAAAAABAB8AAAAAAgAfAAAAAAEAJAAAAAADAB8AAAAAAQAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAAAAB8AAAAAAgAMAAAAAAMADAAAAAADAAwAAAAAAwAfAAAAAAIAHwAAAAABAB8AAAAAAAAfAAAAAAEAHwAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAwAfAAAAAAIAHwAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAACAB8AAAAAAwAfAAAAAAIAHwAAAAADAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAIAAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAMAHwAAAAABAB8AAAAAAwAkAAAAAAMAHwAAAAACAB8AAAAAAwAfAAAAAAAAHwAAAAADAB8AAAAAAQB+AAAAAAAAAAAAAAAAAH0AAAAAAAACAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAwAfAAAAAAEAHwAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAADAB8AAAAAAgAfAAAAAAEAHwAAAAABAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAIAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAAAfAAAAAAIAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAACAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAgAAAAAAAA== + tiles: HwAAAAABAB8AAAAAAwAfAAAAAAEAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAAAACQAAAAAAgAfAAAAAAMAegAAAAACAB8AAAAAAAAfAAAAAAAAfgAAAAAAAEAAAAAAAAB6AAAAAAIAegAAAAABAHoAAAAAAwB6AAAAAAIAegAAAAADAEAAAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAgB+AAAAAAAAHwAAAAACAHoAAAAAAgAfAAAAAAMAHwAAAAACAH4AAAAAAABAAAAAAAAAegAAAAAAAC8AAAAAAQAvAAAAAAEALwAAAAADAHoAAAAAAQBAAAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAIAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAgB+AAAAAAAAQAAAAAAAAHoAAAAAAAB6AAAAAAIAegAAAAAAAHoAAAAAAAB6AAAAAAMAQAAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAADAH4AAAAAAAB6AAAAAAEAegAAAAACAB8AAAAAAgAfAAAAAAIAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAADAGwAAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAADAH4AAAAAAAB+AAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAMAHwAAAAACAH4AAAAAAABsAAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAwAfAAAAAAEAHwAAAAACAB8AAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAgB+AAAAAAAAfgAAAAAAAG0AAAAAAAAfAAAAAAIAHwAAAAAAACQAAAAAAwAfAAAAAAIAHwAAAAACAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAEAJAAAAAACAB8AAAAAAwAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAQAMAAAAAAEADAAAAAABAAwAAAAAAQAfAAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAEAHwAAAAADAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAwAfAAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAIAAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAADAB8AAAAAAwAkAAAAAAEAHwAAAAABAB8AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAACAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAgAfAAAAAAEAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAACAB8AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAIAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAIAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAACAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAgAAAAAAAA== version: 7 0,2: ind: 0,2 - tiles: egAAAAACAHoAAAAAAQB6AAAAAAIAegAAAAABAHoAAAAAAgB6AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAMAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAEAegAAAAABAHoAAAAAAwB6AAAAAAIAegAAAAADAB8AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAADAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAwB+AAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAegAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAMAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAwBdAAAAAAMAXQAAAAABAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAABAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAwB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAIAHwAAAAABAB8AAAAAAgB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAMAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAB8AAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAfAAAAAAMAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAABAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAAfAAAAAAEAOAAAAAAAAB8AAAAAAwA4AAAAAAAAHwAAAAADAH4AAAAAAABsAAAAAAAAbQAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAACADgAAAAAAAA4AAAAAAAAOAAAAAAAAB8AAAAAAwB+AAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABtAAAAAAAAbAAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAA== + tiles: egAAAAAAAHoAAAAAAQB6AAAAAAIAegAAAAADAHoAAAAAAwB6AAAAAAMAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAMAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAMAegAAAAAAAHoAAAAAAwB6AAAAAAMAegAAAAACAB8AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAACAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAACAB8AAAAAAgB+AAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAEAXQAAAAADAF0AAAAAAgB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAegAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAgBdAAAAAAMAXQAAAAADAF0AAAAAAwB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAADAB8AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAB8AAAAAAQA4AAAAAAAAOAAAAAAAADgAAAAAAAAfAAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAABAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAAfAAAAAAEAOAAAAAAAAB8AAAAAAgA4AAAAAAAAHwAAAAADAH4AAAAAAABsAAAAAAAAbQAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAADADgAAAAAAAA4AAAAAAAAOAAAAAAAAB8AAAAAAgB+AAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABtAAAAAAAAbAAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAA== version: 7 -1,3: ind: -1,3 - tiles: AAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAQAAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAEAAAAAAAAAfAAAAAAMAHwAAAAABAA== + tiles: AAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAQAAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAEAAAAAAAAAfAAAAAAMAHwAAAAADAA== version: 7 1,1: ind: 1,1 - tiles: HwAAAAABAB8AAAAAAgAfAAAAAAIAfgAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAAAAB8AAAAAAAB+AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAEAegAAAAACAHoAAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAcAAAAAABAHAAAAAAAwBwAAAAAAIAcAAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAEAHwAAAAADAB8AAAAAAQAfAAAAAAIAHwAAAAABAB8AAAAAAgAfAAAAAAMAfgAAAAAAAHAAAAAAAgBwAAAAAAIAcAAAAAACAHAAAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAACAB8AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAwAfAAAAAAMAHwAAAAABAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAQAfAAAAAAMAHwAAAAABAB8AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAQAfAAAAAAAAHwAAAAACAB8AAAAAAgBdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAQBdAAAAAAIAfgAAAAAAACQAAAAAAgAkAAAAAAEAJAAAAAAAAF0AAAAAAQBdAAAAAAIAHwAAAAAAAB8AAAAAAgAfAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAMAXQAAAAACAH4AAAAAAAAkAAAAAAIAJAAAAAABACQAAAAAAABdAAAAAAMAXQAAAAACAB8AAAAAAgAfAAAAAAIAHwAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAAB+AAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAIAXQAAAAACAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAEAfgAAAAAAAC4AAAAAAAAuAAAAAAAAEAAAAAAAABAAAAAAAAB+AAAAAAAAbAAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAADAHAAAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAwB+AAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAEAAAAAAAAH4AAAAAAAAQAAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAABAAAAAAAAB+AAAAAAAAEAAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAbQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAAAAH4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAQB+AAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== + tiles: HwAAAAADAB8AAAAAAQAfAAAAAAIAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAACAB8AAAAAAQB+AAAAAAAAegAAAAADAHoAAAAAAwB6AAAAAAEAegAAAAABAHoAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAcAAAAAAAAHAAAAAAAwBwAAAAAAEAcAAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAQBdAAAAAAMAHwAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAABAB8AAAAAAAAfAAAAAAMAfgAAAAAAAHAAAAAAAQBwAAAAAAMAcAAAAAABAHAAAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAABAB8AAAAAAwAfAAAAAAIAHwAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAgAfAAAAAAEAHwAAAAACAB8AAAAAAgAfAAAAAAEAHwAAAAACAB8AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAgBdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAABdAAAAAAIAfgAAAAAAACQAAAAAAAAkAAAAAAEAJAAAAAACAF0AAAAAAABdAAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAADAH4AAAAAAAAkAAAAAAIAJAAAAAAAACQAAAAAAABdAAAAAAAAXQAAAAADAB8AAAAAAwAfAAAAAAIAHwAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAwB+AAAAAAAAJAAAAAAAACQAAAAAAwAkAAAAAAMAXQAAAAABAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAIAfgAAAAAAAC4AAAAAAAAuAAAAAAAAEAAAAAAAABAAAAAAAAB+AAAAAAAAbAAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAABAHAAAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAAB+AAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAEAAAAAAAAH4AAAAAAAAQAAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAQB+AAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAABAAAAAAAAB+AAAAAAAAEAAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAEAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAbQAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAADAH4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAQB+AAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAA== version: 7 1,2: ind: 1,2 - tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAQB+AAAAAAAAfgAAAAAAAHAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAIAXQAAAAACAH4AAAAAAABnAAAAAAAAZwAAAAACAGcAAAAAAwBAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAwB+AAAAAAAAZwAAAAACAGcAAAAAAQBnAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAIAfgAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAADAHoAAAAAAgB6AAAAAAEAegAAAAABAHoAAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAwB6AAAAAAAAegAAAAADAHoAAAAAAwB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAwBdAAAAAAEAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAADAHoAAAAAAwB6AAAAAAMAegAAAAADAHoAAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAAAAH4AAAAAAABnAAAAAAAAZwAAAAADAGcAAAAAAgB6AAAAAAMAegAAAAABAHoAAAAAAwB+AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAGwAAAAAAAB+AAAAAAAAPwAAAAAAAD8AAAAAAAA/AAAAAAAAPwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAbQAAAAAAAD8AAAAAAAA/AAAAAAAAPwAAAAAAAD8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAH4AAAAAAAA/AAAAAAAAPwAAAAAAAD8AAAAAAAA/AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAABAH4AAAAAAABnAAAAAAMAZwAAAAAAAGcAAAAAAwBAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAgB+AAAAAAAAZwAAAAADAGcAAAAAAQBnAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAABdAAAAAAEAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAACAHoAAAAAAAB6AAAAAAAAegAAAAACAHoAAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAACAF0AAAAAAwB6AAAAAAAAegAAAAACAHoAAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAMAfgAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAABAHoAAAAAAwB6AAAAAAMAegAAAAADAHoAAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAMAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAACAH4AAAAAAABnAAAAAAIAZwAAAAADAGcAAAAAAQB6AAAAAAAAegAAAAADAHoAAAAAAQB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAGwAAAAAAAB+AAAAAAAAPwAAAAAAAD8AAAAAAAA/AAAAAAAAPwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAbQAAAAAAAD8AAAAAAAA/AAAAAAAAPwAAAAAAAD8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAH4AAAAAAAA/AAAAAAAAPwAAAAAAAD8AAAAAAAA/AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== version: 7 2,2: ind: 2,2 - tiles: fgAAAAAAAE8AAAAAAAB+AAAAAAAAHwAAAAADACYAAAAAAwAmAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAMAJgAAAAABACYAAAAAAgAfAAAAAAMAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAACYAAAAAAwAmAAAAAAIAHwAAAAADAB8AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAgAmAAAAAAIAJgAAAAACAH4AAAAAAABdAAAAAAMAHwAAAAACAH4AAAAAAABnAAAAAAIAZwAAAAAAAH4AAAAAAAAmAAAAAAEAHwAAAAABAB8AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAwAfAAAAAAEAHwAAAAACACYAAAAAAQAfAAAAAAIAHwAAAAAAAF0AAAAAAQB+AAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAIAJgAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAAAAB8AAAAAAQAmAAAAAAMAfgAAAAAAAF0AAAAAAAAfAAAAAAMAfgAAAAAAAF0AAAAAAQBdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAXQAAAAACAH4AAAAAAABdAAAAAAIAXQAAAAABAH4AAAAAAAAfAAAAAAIAegAAAAABAHoAAAAAAgB6AAAAAAMAegAAAAACAHoAAAAAAgB6AAAAAAAAegAAAAAAAHoAAAAAAwB+AAAAAAAAXQAAAAABAB8AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwAfAAAAAAIAHwAAAAADAHoAAAAAAgB6AAAAAAIAegAAAAADAHoAAAAAAAB6AAAAAAMAegAAAAAAAHoAAAAAAQB6AAAAAAAAHwAAAAACAB8AAAAAAQBdAAAAAAEAfgAAAAAAAGcAAAAAAwBnAAAAAAIAfgAAAAAAAB8AAAAAAgB6AAAAAAAAegAAAAABAHoAAAAAAQB6AAAAAAEAegAAAAABAHoAAAAAAwB6AAAAAAIAegAAAAAAAH4AAAAAAABdAAAAAAMAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAegAAAAABAHoAAAAAAQB6AAAAAAAAegAAAAADAHoAAAAAAwB6AAAAAAAAegAAAAAAAHoAAAAAAwB+AAAAAAAAfgAAAAAAAF0AAAAAAAB+AAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAHwAAAAAAAHoAAAAAAwB6AAAAAAMAegAAAAABAHoAAAAAAAB6AAAAAAEAegAAAAACAHoAAAAAAAAfAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAEAfgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAACAH4AAAAAAAB+AAAAAAAAegAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAAAAH4AAAAAAAB6AAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAgB6AAAAAAEAegAAAAACAH4AAAAAAAB6AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB6AAAAAAAAfgAAAAAAAHoAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAA== + tiles: fgAAAAAAAE8AAAAAAAB+AAAAAAAAHwAAAAABACYAAAAAAgAmAAAAAAIAJgAAAAABACYAAAAAAAAmAAAAAAMAJgAAAAACACYAAAAAAAAfAAAAAAEAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAACYAAAAAAAAmAAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAIAHwAAAAADAB8AAAAAAQAmAAAAAAIAJgAAAAABAH4AAAAAAABdAAAAAAIAHwAAAAAAAH4AAAAAAABnAAAAAAMAZwAAAAADAH4AAAAAAAAmAAAAAAMAHwAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAADAB8AAAAAAQAfAAAAAAAAHwAAAAACACYAAAAAAQAfAAAAAAIAHwAAAAACAF0AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAEAJgAAAAACAB8AAAAAAgAfAAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAwAmAAAAAAIAfgAAAAAAAF0AAAAAAAAfAAAAAAMAfgAAAAAAAF0AAAAAAgBdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAXQAAAAACAH4AAAAAAABdAAAAAAEAXQAAAAAAAH4AAAAAAAAfAAAAAAAAegAAAAADAHoAAAAAAQB6AAAAAAAAegAAAAACAHoAAAAAAgB6AAAAAAIAegAAAAAAAHoAAAAAAgB+AAAAAAAAXQAAAAABAB8AAAAAAwB+AAAAAAAAXQAAAAABAF0AAAAAAQAfAAAAAAIAHwAAAAACAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAgB6AAAAAAAAegAAAAACAHoAAAAAAwB6AAAAAAEAHwAAAAAAAB8AAAAAAwBdAAAAAAAAfgAAAAAAAGcAAAAAAABnAAAAAAAAfgAAAAAAAB8AAAAAAQB6AAAAAAEAegAAAAACAHoAAAAAAwB6AAAAAAMAegAAAAAAAHoAAAAAAQB6AAAAAAAAegAAAAABAH4AAAAAAABdAAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAegAAAAACAHoAAAAAAwB6AAAAAAEAegAAAAADAHoAAAAAAgB6AAAAAAEAegAAAAACAHoAAAAAAQB+AAAAAAAAfgAAAAAAAF0AAAAAAwB+AAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAHwAAAAABAHoAAAAAAAB6AAAAAAEAegAAAAADAHoAAAAAAgB6AAAAAAAAegAAAAADAHoAAAAAAwAfAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAIAfgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAADAH4AAAAAAAB+AAAAAAAAegAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAACAH4AAAAAAAB6AAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAwB6AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAwB6AAAAAAMAegAAAAAAAH4AAAAAAAB6AAAAAAIAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB6AAAAAAAAfgAAAAAAAHoAAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAA== version: 7 2,1: ind: 2,1 - tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAB8AAAAAAAAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAH4AAAAAAABkAAAAAAAAZAAAAAAAAH4AAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAZAAAAAAAAGQAAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGQAAAAAAABsAAAAAAAAfgAAAAAAAF0AAAAAAwB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAB+AAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAACsAAAAAAAArAAAAAAAAKwAAAAAAACsAAAAAAAArAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAAArAAAAAAAAKwAAAAAAACsAAAAAAAArAAAAAAAAKwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAKwAAAAAAACsAAAAAAAArAAAAAAAAKwAAAAAAACsAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAABAB8AAAAAAgAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAH4AAAAAAABkAAAAAAMAZAAAAAABAH4AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAZAAAAAAAAGQAAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGQAAAAAAABsAAAAAAAAfgAAAAAAAF0AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAACAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAB+AAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAACsAAAAAAAArAAAAAAAAKwAAAAAAACsAAAAAAAArAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAAArAAAAAAAAKwAAAAAAACsAAAAAAAArAAAAAAAAKwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAAKwAAAAAAACsAAAAAAAArAAAAAAAAKwAAAAAAACsAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== version: 7 1,0: ind: 1,0 - tiles: XQAAAAADAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAIAfgAAAAAAAHoAAAAAAwB6AAAAAAIAegAAAAABAHoAAAAAAABdAAAAAAIAfgAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAADAH4AAAAAAAB6AAAAAAMAegAAAAABAHoAAAAAAQB6AAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAgB+AAAAAAAAegAAAAADAHoAAAAAAwB6AAAAAAMAegAAAAAAAF0AAAAAAwB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAIAcAAAAAACAHAAAAAAAwBwAAAAAAEAcAAAAAAAAHAAAAAAAQBwAAAAAAIAHwAAAAADAB8AAAAAAgBsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAADAHAAAAAAAQBwAAAAAAIAcAAAAAAAAHAAAAAAAQBwAAAAAAMAcAAAAAADAB8AAAAAAgAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAgBwAAAAAAEAcAAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAAAAHAAAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAMAHwAAAAABAB8AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAAAfAAAAAAAAcAAAAAADAHAAAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAABwAAAAAAIAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAwAfAAAAAAIAHwAAAAADAHAAAAAAAgBwAAAAAAMAcAAAAAABAHAAAAAAAQBwAAAAAAMAcAAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAABAB8AAAAAAwAfAAAAAAMAHwAAAAADAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAH4AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAAAfAAAAAAAAfgAAAAAAAHoAAAAAAgB6AAAAAAAAegAAAAACAHoAAAAAAAB6AAAAAAMAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAMAHwAAAAAAAH4AAAAAAAB6AAAAAAEAegAAAAABAHoAAAAAAgB6AAAAAAMAegAAAAACAH4AAAAAAAARAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAACAB8AAAAAAwAfAAAAAAEAHwAAAAACAB8AAAAAAgB+AAAAAAAAegAAAAABAHoAAAAAAQB6AAAAAAAAegAAAAADAHoAAAAAAwB+AAAAAAAAEQAAAAAAAA== + tiles: XQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAIAfgAAAAAAAHoAAAAAAAB6AAAAAAMAegAAAAACAHoAAAAAAQBdAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAH4AAAAAAAB6AAAAAAIAegAAAAABAHoAAAAAAwB6AAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAMAXQAAAAADAF0AAAAAAQBdAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAQB+AAAAAAAAegAAAAABAHoAAAAAAAB6AAAAAAEAegAAAAADAF0AAAAAAwB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAEAcAAAAAAAAHAAAAAAAgBwAAAAAAIAcAAAAAABAHAAAAAAAABwAAAAAAIAHwAAAAACAB8AAAAAAgBsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAADAHAAAAAAAQBwAAAAAAIAcAAAAAAAAHAAAAAAAgBwAAAAAAMAcAAAAAABAB8AAAAAAAAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAgBwAAAAAAAAcAAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAACAHAAAAAAAQB+AAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAAAcAAAAAABAHAAAAAAAQBdAAAAAAMAXQAAAAADAF0AAAAAAABwAAAAAAMAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAMAHwAAAAACAHAAAAAAAgBwAAAAAAAAcAAAAAADAHAAAAAAAgBwAAAAAAAAcAAAAAACAH4AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAgAfAAAAAAIAHwAAAAACAB8AAAAAAQAfAAAAAAAAHwAAAAABAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAH4AAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAgAfAAAAAAMAfgAAAAAAAHoAAAAAAAB6AAAAAAIAegAAAAABAHoAAAAAAwB6AAAAAAMAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAQAfAAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAIAHwAAAAAAAH4AAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAgB6AAAAAAIAegAAAAADAH4AAAAAAAARAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAACAB8AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAAB+AAAAAAAAegAAAAAAAHoAAAAAAgB6AAAAAAAAegAAAAAAAHoAAAAAAgB+AAAAAAAAEQAAAAAAAA== version: 7 1,-1: ind: 1,-1 - tiles: fQAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAAAfAAAAAAMAHwAAAAADAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAABAH4AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAABAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAMAfgAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAABAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAQB+AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAQB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAEAbQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAADAF0AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAIAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAACAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAgBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAfgAAAAAAAA== + tiles: fQAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAIAHwAAAAACAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAMAfgAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAACAH4AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAABAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAQBdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAIAfgAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAADAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAADAF0AAAAAAgB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAEAbQAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAMAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAIAXQAAAAACAF0AAAAAAQBdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAMAXQAAAAADAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAACAF0AAAAAAQBdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAfgAAAAAAAA== version: 7 -1,-2: ind: -1,-2 - tiles: HwAAAAACAH4AAAAAAABdAAAAAAMAEQAAAAAAAF0AAAAAAAARAAAAAAAAXQAAAAAAABEAAAAAAABdAAAAAAEAEQAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAB8AAAAAAABdAAAAAAMAXQAAAAABABEAAAAAAABdAAAAAAMAEQAAAAAAAF0AAAAAAQARAAAAAAAAXQAAAAADABEAAAAAAABdAAAAAAIAfgAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAAAAF0AAAAAAwAfAAAAAAMAfgAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAAAHwAAAAAAAH4AAAAAAABdAAAAAAAAEQAAAAAAAF0AAAAAAgARAAAAAAAAXQAAAAAAABEAAAAAAABdAAAAAAMAEQAAAAAAAF0AAAAAAgB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAABAH4AAAAAAAB+AAAAAAAAXQAAAAACABEAAAAAAABdAAAAAAAAEQAAAAAAAF0AAAAAAQARAAAAAAAAXQAAAAACABEAAAAAAABdAAAAAAEAfgAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAwBsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAQB+AAAAAAAAcAAAAAACAHAAAAAAAwBwAAAAAAEAcAAAAAACAH4AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAAAfgAAAAAAAHAAAAAAAwBwAAAAAAEAcAAAAAACAHAAAAAAAQB+AAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAABAH4AAAAAAABwAAAAAAAAcAAAAAABAHAAAAAAAQBwAAAAAAEAfgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAIAcAAAAAAAAHAAAAAAAQBwAAAAAAAAcAAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAEAXQAAAAAAAHAAAAAAAQBwAAAAAAMAcAAAAAABAHAAAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAACAF0AAAAAAQB+AAAAAAAAfgAAAAAAAHAAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAQBwAAAAAAAAcAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAA== + tiles: HwAAAAACAH4AAAAAAABdAAAAAAMAEQAAAAAAAF0AAAAAAAARAAAAAAAAXQAAAAAAABEAAAAAAABdAAAAAAMAEQAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQBdAAAAAAMAXQAAAAAAABEAAAAAAABdAAAAAAAAEQAAAAAAAF0AAAAAAgARAAAAAAAAXQAAAAADABEAAAAAAABdAAAAAAIAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAgAfAAAAAAMAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAEAHwAAAAACAH4AAAAAAABdAAAAAAEAEQAAAAAAAF0AAAAAAQARAAAAAAAAXQAAAAADABEAAAAAAABdAAAAAAMAEQAAAAAAAF0AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADABEAAAAAAABdAAAAAAMAEQAAAAAAAF0AAAAAAwARAAAAAAAAXQAAAAAAABEAAAAAAABdAAAAAAIAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAQBsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAQB+AAAAAAAAcAAAAAACAHAAAAAAAgBwAAAAAAMAcAAAAAAAAH4AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAIAfgAAAAAAAHAAAAAAAQBwAAAAAAAAcAAAAAAAAHAAAAAAAQB+AAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAAAAH4AAAAAAABwAAAAAAIAcAAAAAABAHAAAAAAAgBwAAAAAAEAfgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAEAcAAAAAABAHAAAAAAAwBwAAAAAAMAcAAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAACAHAAAAAAAgBwAAAAAAIAcAAAAAAAAHAAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAgB+AAAAAAAAfgAAAAAAAHAAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAABwAAAAAAMAcAAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAA== version: 7 -2,-2: ind: -2,-2 - tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAAAAH4AAAAAAAB6AAAAAAIAegAAAAABAHoAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAACAHAAAAAAAwBwAAAAAAEAfgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAACAH4AAAAAAABwAAAAAAEAcAAAAAACAHAAAAAAAgB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAwBwAAAAAAEAcAAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAIAcAAAAAADAHAAAAAAAQBwAAAAAAIADAAAAAABAHAAAAAAAgBwAAAAAAAAcAAAAAABAH4AAAAAAABwAAAAAAIAcAAAAAABAHAAAAAAAAB+AAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAHAAAAAAAQBwAAAAAAIAcAAAAAABAAwAAAAAAgBwAAAAAAAAcAAAAAACAHAAAAAAAgB+AAAAAAAAcAAAAAADAHAAAAAAAABwAAAAAAEAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAABwAAAAAAIAcAAAAAABAHAAAAAAAABwAAAAAAEAcAAAAAADAHAAAAAAAwBwAAAAAAEAfgAAAAAAAHAAAAAAAwBwAAAAAAEAcAAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAACAHAAAAAAAwBwAAAAAAEADAAAAAACAHAAAAAAAABwAAAAAAIAcAAAAAACAH4AAAAAAABwAAAAAAMAcAAAAAABAHAAAAAAAQB+AAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAHAAAAAAAABwAAAAAAIAcAAAAAADAAwAAAAAAgBwAAAAAAMAcAAAAAACAHAAAAAAAQBwAAAAAAEAcAAAAAACAHAAAAAAAgBwAAAAAAAAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAABwAAAAAAAAcAAAAAABAHAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAQBwAAAAAAEAcAAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAADAB8AAAAAAQAfAAAAAAMAcAAAAAADAHAAAAAAAgBwAAAAAAIAfgAAAAAAAHAAAAAAAwBwAAAAAAIAcAAAAAABAA== + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAwB6AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAAAAH4AAAAAAAB6AAAAAAAAegAAAAACAHoAAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAABAHAAAAAAAQBwAAAAAAEAfgAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAABAH4AAAAAAABwAAAAAAEAcAAAAAABAHAAAAAAAQB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAwBwAAAAAAIAcAAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAAAcAAAAAADAHAAAAAAAABwAAAAAAEADAAAAAABAHAAAAAAAwBwAAAAAAAAcAAAAAABAH4AAAAAAABwAAAAAAAAcAAAAAABAHAAAAAAAQB+AAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAHAAAAAAAABwAAAAAAEAcAAAAAABAAwAAAAAAQBwAAAAAAAAcAAAAAADAHAAAAAAAgB+AAAAAAAAcAAAAAACAHAAAAAAAgBwAAAAAAEAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAABwAAAAAAMAcAAAAAAAAHAAAAAAAgBwAAAAAAIAcAAAAAADAHAAAAAAAQBwAAAAAAEAfgAAAAAAAHAAAAAAAABwAAAAAAIAcAAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAABAHAAAAAAAQBwAAAAAAAADAAAAAABAHAAAAAAAQBwAAAAAAAAcAAAAAADAH4AAAAAAABwAAAAAAMAcAAAAAABAHAAAAAAAAB+AAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAHAAAAAAAwBwAAAAAAMAcAAAAAADAAwAAAAAAABwAAAAAAIAcAAAAAABAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAgBwAAAAAAIAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAABwAAAAAAAAcAAAAAABAHAAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAwBwAAAAAAAAcAAAAAACAB8AAAAAAgAfAAAAAAMAHwAAAAAAAB8AAAAAAgAfAAAAAAIAcAAAAAACAHAAAAAAAwBwAAAAAAMAfgAAAAAAAHAAAAAAAgBwAAAAAAAAcAAAAAACAA== version: 7 -3,-2: ind: -3,-2 - tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAADAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAwAfAAAAAAIAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAAAAHoAAAAAAwB6AAAAAAEAfgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAEAegAAAAADAH4AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAEAegAAAAACAHoAAAAAAwB+AAAAAAAAHwAAAAADAC8AAAAAAgAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAQBwAAAAAAEAcAAAAAAAAH4AAAAAAAAfAAAAAAMALwAAAAADAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAEAcAAAAAADAHAAAAAAAgB+AAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAACAHAAAAAAAwBwAAAAAAMAfgAAAAAAAB8AAAAAAwAvAAAAAAIAHwAAAAACAG0AAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAgBwAAAAAAEAcAAAAAAAAA== + tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAwAfAAAAAAEAHwAAAAADAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAIAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAABAHoAAAAAAgB6AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAwB6AAAAAAMAegAAAAABAH4AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAEAegAAAAABAHoAAAAAAgB+AAAAAAAAHwAAAAABAC8AAAAAAwAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAABwAAAAAAMAcAAAAAADAH4AAAAAAAAfAAAAAAAALwAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAAAcAAAAAADAHAAAAAAAgB+AAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAABAHAAAAAAAABwAAAAAAIAfgAAAAAAAB8AAAAAAwAvAAAAAAIAHwAAAAABAG0AAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAQBwAAAAAAIAcAAAAAABAA== version: 7 0,-2: ind: 0,-2 - tiles: fgAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAwB+AAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAADAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAACAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAQB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAACAF0AAAAAAwB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAIAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAACAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAQB+AAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAwB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAwBdAAAAAAAAbAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAADAGwAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAAAfAAAAAAIAfgAAAAAAAF0AAAAAAgBdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAEAHwAAAAADAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAABAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAHoAAAAAAQB6AAAAAAMAegAAAAABAH4AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAgAfAAAAAAAAfgAAAAAAAA== + tiles: fgAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAADAF0AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAABAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAgB+AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAEAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAgB+AAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAIAXQAAAAADAF0AAAAAAwB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAMAbAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAMAXQAAAAABAGwAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAwAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAADAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAQAfAAAAAAEAfgAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAAAAF0AAAAAAgBdAAAAAAAAHwAAAAACAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAABAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAIAegAAAAACAH4AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAQAfAAAAAAMAfgAAAAAAAA== version: 7 1,-2: ind: 1,-2 - tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAABAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABPAAAAAAAAHwAAAAADAB8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAQAfAAAAAAIAHwAAAAABAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAB8AAAAAAQAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAAfAAAAAAAAHwAAAAABAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAACAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABPAAAAAAAAHwAAAAACAB8AAAAAAQBPAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAABAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAB8AAAAAAQAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAAfAAAAAAAAHwAAAAACAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 2,-1: ind: 2,-1 - tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAQB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAgBdAAAAAAMAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAADAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAwBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAwBdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAEAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAwB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAgBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAwBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAACAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAQBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAEAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 0,-3: ind: 0,-3 - tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAQAfAAAAAAIAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAMAXQAAAAADAF0AAAAAAgBtAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAXQAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAADAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAB8AAAAAAwB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAwAfAAAAAAEAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAEAXQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAB8AAAAAAQBdAAAAAAIAXQAAAAADAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB9AAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAEAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAAAXQAAAAACAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAAAAB8AAAAAAQAfAAAAAAMAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAABAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAADAF0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAADAF0AAAAAAABdAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAXQAAAAABAB8AAAAAAgAfAAAAAAEAHwAAAAABAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAAAAAAAAAAF0AAAAAAABdAAAAAAEAXQAAAAADAB8AAAAAAgB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAwAfAAAAAAIAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB9AAAAAAAAXQAAAAADAF0AAAAAAgBdAAAAAAMAXQAAAAABAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAB8AAAAAAgBdAAAAAAIAXQAAAAABAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAAAAF0AAAAAAwB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAABAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAACAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== version: 7 1,-3: ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAA== version: 7 -1,-3: ind: -1,-3 - tiles: XQAAAAACAH4AAAAAAABdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAMAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAF0AAAAAAQBdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAABdAAAAAAAAXQAAAAADAB8AAAAAAgB+AAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgB+AAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAMAHwAAAAADAH4AAAAAAABdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAABdAAAAAAIAXQAAAAADAH4AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAwBdAAAAAAMAXQAAAAADAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAEAXQAAAAADAF0AAAAAAwBdAAAAAAEAHwAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAADAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAABAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAQBdAAAAAAMAXQAAAAADAF0AAAAAAgB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAMAXQAAAAABAF0AAAAAAgBdAAAAAAMAXQAAAAACAF0AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAgBdAAAAAAEAHwAAAAABAB8AAAAAAQAfAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAAAfgAAAAAAAE8AAAAAAAB+AAAAAAAAHwAAAAADAF0AAAAAAgAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQBdAAAAAAMAHwAAAAACAH4AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAgAfAAAAAAEAHwAAAAABAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAH4AAAAAAAAfAAAAAAAAXQAAAAACAB8AAAAAAgB+AAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAABAB8AAAAAAQB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAIAfgAAAAAAAE8AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAwAfAAAAAAMAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAABAB8AAAAAAQAfAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwAfAAAAAAMAHwAAAAADAH4AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAQAfAAAAAAAAHwAAAAABAH4AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAgBdAAAAAAMAHwAAAAACAH4AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAEAfgAAAAAAAA== + tiles: XQAAAAABAH4AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgBdAAAAAAIAXQAAAAADAB8AAAAAAwB+AAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwB+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAMAHwAAAAABAH4AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAIAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAIAXQAAAAADAH4AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAH4AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAIAHwAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAEAHwAAAAACAB8AAAAAAQAfAAAAAAAAHwAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAQB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAEAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAgAfAAAAAAIAHwAAAAADAB8AAAAAAQBdAAAAAAIAHwAAAAACAB8AAAAAAQAfAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAIAfgAAAAAAAE8AAAAAAAB+AAAAAAAAHwAAAAAAAF0AAAAAAwAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQBdAAAAAAAAHwAAAAADAH4AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAQAfAAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAH4AAAAAAAB+AAAAAAAATwAAAAAAAH4AAAAAAAAfAAAAAAAAXQAAAAAAAB8AAAAAAQB+AAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAEAHwAAAAADAB8AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAEAfgAAAAAAAE8AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAAAfAAAAAAIAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAADAB8AAAAAAAAfAAAAAAMAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgAfAAAAAAAAHwAAAAADAH4AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAEAHwAAAAACAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAMAHwAAAAACAH4AAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAAAfgAAAAAAAA== version: 7 -2,-3: ind: -2,-3 - tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAHwAAAAABAGYAAAAAAwBmAAAAAAEAZgAAAAADAB8AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAMAXQAAAAAAAH4AAAAAAABtAAAAAAAAXQAAAAADAH4AAAAAAABdAAAAAAIAfgAAAAAAAB8AAAAAAwAfAAAAAAMAZgAAAAABAB8AAAAAAgAfAAAAAAAAfgAAAAAAAB8AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGYAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAgBdAAAAAAMAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAADAF0AAAAAAwBdAAAAAAMAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAB8AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAwBdAAAAAAEAXQAAAAADAF0AAAAAAgBdAAAAAAIAXQAAAAABAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAAfAAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABtAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAwBdAAAAAAIAXQAAAAADAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAB8AAAAAAgBdAAAAAAMAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAAfAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAwAfAAAAAAIAXQAAAAAAAF0AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAfgAAAAAAAGQAAAAAAABkAAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAfgAAAAAAAGQAAAAAAAB+AAAAAAAAZAAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAAAAGQAAAAAAABkAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAACAHoAAAAAAgB+AAAAAAAAegAAAAABAHoAAAAAAwB+AAAAAAAAegAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAIAegAAAAAAAHoAAAAAAAB+AAAAAAAAegAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAAAAA== + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAHwAAAAAAAGYAAAAAAwBmAAAAAAMAZgAAAAAAAB8AAAAAAQB+AAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAIAXQAAAAABAH4AAAAAAABtAAAAAAAAXQAAAAAAAH4AAAAAAABdAAAAAAIAfgAAAAAAAB8AAAAAAQAfAAAAAAMAZgAAAAABAB8AAAAAAwAfAAAAAAEAfgAAAAAAAB8AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGYAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAgBdAAAAAAMAHwAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAADAF0AAAAAAgBdAAAAAAAAXQAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAB8AAAAAAgBdAAAAAAMAXQAAAAADAF0AAAAAAwBdAAAAAAIAXQAAAAADAF0AAAAAAgBdAAAAAAEAXQAAAAACAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAAfAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAQBdAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABtAAAAAAAAXQAAAAADAF0AAAAAAwBdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAABAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAB8AAAAAAwBdAAAAAAAAXQAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAAAAF0AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAAfAAAAAAEAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAABAF0AAAAAAQAfAAAAAAMAXQAAAAAAAF0AAAAAAQBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAMAfgAAAAAAAH4AAAAAAABkAAAAAAMAfgAAAAAAAGQAAAAAAwBkAAAAAAMAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAfgAAAAAAAGQAAAAAAgB+AAAAAAAAZAAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAZAAAAAADAGQAAAAAAwBkAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAABAHoAAAAAAgB+AAAAAAAAegAAAAADAHoAAAAAAgB+AAAAAAAAegAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAIAegAAAAADAHoAAAAAAgB+AAAAAAAAegAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAABAA== version: 7 -2,-4: ind: -2,-4 - tiles: AAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAADAF0AAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAF0AAAAAAwBdAAAAAAIAHwAAAAADAB8AAAAAAgAfAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAXQAAAAACAB8AAAAAAAAfAAAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwAfAAAAAAEAHwAAAAACAB8AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAHwAAAAADAB8AAAAAAgAfAAAAAAMAfQAAAAAAAH4AAAAAAABsAAAAAAAAbQAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAwBdAAAAAAIAXQAAAAAAAH0AAAAAAAB+AAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAQAfAAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAIAXQAAAAACAB8AAAAAAAB9AAAAAAAAfgAAAAAAAGwAAAAAAABtAAAAAAAAbAAAAAAAAGwAAAAAAAAfAAAAAAMAZgAAAAACAGYAAAAAAgBmAAAAAAEAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAGYAAAAAAgBmAAAAAAAAZgAAAAACAB8AAAAAAAB+AAAAAAAAHwAAAAABAF0AAAAAAABdAAAAAAEAXQAAAAACAA== + tiles: AAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAF0AAAAAAwBdAAAAAAAAXQAAAAADAF0AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAF0AAAAAAABdAAAAAAIAHwAAAAABAB8AAAAAAQAfAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAXQAAAAADAB8AAAAAAwAfAAAAAAIAHwAAAAADAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAIAHwAAAAABAB8AAAAAAAAfAAAAAAIAfQAAAAAAAH4AAAAAAABsAAAAAAAAbQAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAAAAH0AAAAAAAB+AAAAAAAAbQAAAAAAAG0AAAAAAABtAAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAEAfgAAAAAAAB8AAAAAAwAfAAAAAAAAXQAAAAADAB8AAAAAAwB9AAAAAAAAfgAAAAAAAGwAAAAAAABtAAAAAAAAbAAAAAAAAGwAAAAAAAAfAAAAAAMAZgAAAAACAGYAAAAAAgBmAAAAAAIAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAGYAAAAAAwBmAAAAAAAAZgAAAAADAB8AAAAAAgB+AAAAAAAAHwAAAAABAF0AAAAAAwBdAAAAAAAAXQAAAAACAA== version: 7 -1,-4: ind: -1,-4 - tiles: fQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAABAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAB8AAAAAAwB+AAAAAAAAHwAAAAADAB8AAAAAAwAfAAAAAAMAHwAAAAACAB8AAAAAAQAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAADAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADAH4AAAAAAAAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAB+AAAAAAAAHwAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAQAfAAAAAAMAHwAAAAADAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAQB+AAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAMAXQAAAAACAF0AAAAAAQB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAH4AAAAAAABdAAAAAAEAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAABdAAAAAAIAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + tiles: fQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAF0AAAAAAwAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAACAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAABdAAAAAAIAXQAAAAABAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAB8AAAAAAQB+AAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAgAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAfgAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAACAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQB+AAAAAAAAHwAAAAABAH4AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAADAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAEAXQAAAAACAF0AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAH4AAAAAAABdAAAAAAIAfgAAAAAAAF0AAAAAAgBdAAAAAAIAXQAAAAADAF0AAAAAAQBdAAAAAAMAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== version: 7 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: fQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAA== version: 7 -1,-5: ind: -1,-5 - tiles: AAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -2,4: ind: -2,4 @@ -277,7 +277,7 @@ entities: version: 7 2,0: ind: 2,0 - tiles: fgAAAAAAAHoAAAAAAwB6AAAAAAAAegAAAAABAHoAAAAAAgB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG0AAAAAAAB+AAAAAAAAegAAAAABAHoAAAAAAgB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAEAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAEAfgAAAAAAAHoAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAB8AAAAAAQAfAAAAAAEAfgAAAAAAAHAAAAAAAgBwAAAAAAEAcAAAAAACAHAAAAAAAwBwAAAAAAAAcAAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAfAAAAAAEAHwAAAAACAHAAAAAAAgBwAAAAAAEAcAAAAAAAAHAAAAAAAgBwAAAAAAMAcAAAAAAAAHAAAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAHwAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAABwAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAIAcAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAfAAAAAAIAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAHwAAAAACAB8AAAAAAgB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAfAAAAAAIAEQAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAHwAAAAACABEAAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + tiles: fgAAAAAAAHoAAAAAAgB6AAAAAAIAegAAAAACAHoAAAAAAwB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG0AAAAAAAB+AAAAAAAAegAAAAADAHoAAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAEAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAIAfgAAAAAAAHoAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAB8AAAAAAQAfAAAAAAAAfgAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAwBwAAAAAAMAcAAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAfAAAAAAAAHwAAAAABAHAAAAAAAQBwAAAAAAEAcAAAAAADAHAAAAAAAgBwAAAAAAIAcAAAAAAAAHAAAAAAAQB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAHwAAAAABAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAgBwAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAMAcAAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAfAAAAAAEAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAHwAAAAAAAB8AAAAAAgB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAH4AAAAAAABdAAAAAAIAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAB8AAAAAAgB+AAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAfAAAAAAMAEQAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAHwAAAAABABEAAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== version: 7 2,-3: ind: 2,-3 @@ -289,15 +289,15 @@ entities: version: 7 2,-4: ind: 2,-4 - tiles: BwAAAAADAH8AAAAAAAAHAAAAAAoABwAAAAAAAH8AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAgAHAAAAAAAABwAAAAAAAH8AAAAAAAAHAAAAAAwABwAAAAAAAAcAAAAAAAB/AAAAAAAABwAAAAAAAH8AAAAAAAB/AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAFAAkAAAAAAAAJAAAAAAAABwAAAAAAAAcAAAAAAAB/AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfwAAAAAAAAcAAAAAAQAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAH8AAAAAAAAJAAAAAAAABwAAAAAAAAcAAAAAAAB/AAAAAAAAfwAAAAAAAH8AAAAAAAB/AAAAAAAABwAAAAADAH8AAAAAAAAHAAAAAAcAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB/AAAAAAAABwAAAAAAAH8AAAAAAAB/AAAAAAAAfwAAAAAAAH8AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAgABwAAAAAAAAcAAAAABQAHAAAAAAAABwAAAAAAAAcAAAAACQAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAQABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAH8AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB/AAAAAAAAfwAAAAAAAH8AAAAAAAB/AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAIAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAFAAcAAAAAAAAHAAAAAAgABwAAAAAAAAcAAAAAAAAHAAAAAAAAfwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAgABwAAAAAAAH8AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAB/AAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB/AAAAAAAAfwAAAAAAAH8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BwAAAAAAAH8AAAAAAAAHAAAAAAAABwAAAAAAAH8AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAH8AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAACgB/AAAAAAAABwAAAAAIAH8AAAAAAAB/AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAGAAkAAAAAAAAJAAAAAAAABwAAAAAAAAcAAAAAAAB/AAAAAAAABwAAAAAAAAcAAAAACQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAALAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAkAfwAAAAAAAAcAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAH8AAAAAAAAJAAAAAAAABwAAAAAAAAcAAAAACQB/AAAAAAAAfwAAAAAAAH8AAAAAAAB/AAAAAAAABwAAAAADAH8AAAAAAAAHAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB/AAAAAAAABwAAAAAAAH8AAAAAAAB/AAAAAAAAfwAAAAAAAH8AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAUABwAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAACQAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAoABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAH8AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAcABwAAAAAKAAcAAAAAAAAHAAAAAAQABwAAAAAAAAcAAAAAAAB/AAAAAAAAfwAAAAAAAH8AAAAAAAB/AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAQAHAAAAAAAAfwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAJAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAIABwAAAAAAAH8AAAAAAAAHAAAAAAAABwAAAAAGAAcAAAAAAAAHAAAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAB/AAAAAAAABwAAAAAAAAcAAAAABgB+AAAAAAAABwAAAAAAAAcAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB/AAAAAAAAfwAAAAAAAH8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 1,3: ind: 1,3 - tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAADAHoAAAAAAQB+AAAAAAAAZAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAgB6AAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAMAegAAAAADAH4AAAAAAABkAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAMAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAADAHoAAAAAAAB+AAAAAAAAZAAAAAABAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAIAegAAAAABAH4AAAAAAABkAAAAAAMAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 0,3: ind: 0,3 - tiles: fQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAEAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAAAAHoAAAAAAwB6AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB6AAAAAAMAegAAAAAAAHoAAAAAAQB6AAAAAAAAegAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAegAAAAAAAHoAAAAAAwB6AAAAAAMAegAAAAADAHoAAAAAAQB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAHoAAAAAAQB6AAAAAAAAegAAAAACAH4AAAAAAAB6AAAAAAEAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAABAH4AAAAAAAAfAAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAgB+AAAAAAAAHwAAAAACAB8AAAAAAQB+AAAAAAAAQAAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAEAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + tiles: fQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAADAHoAAAAAAQB6AAAAAAMAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB6AAAAAAAAegAAAAACAHoAAAAAAgB6AAAAAAIAegAAAAABAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAegAAAAABAHoAAAAAAgB6AAAAAAIAegAAAAADAHoAAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAHoAAAAAAgB6AAAAAAIAegAAAAABAH4AAAAAAAB6AAAAAAIAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAQB+AAAAAAAAHwAAAAADAB8AAAAAAAB+AAAAAAAAQAAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAEAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== version: 7 3,2: ind: 3,2 @@ -305,11 +305,11 @@ entities: version: 7 3,1: ind: 3,1 - tiles: bQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABkAAAAAAAAZAAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGQAAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAGQAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAA== + tiles: bQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABkAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABkAAAAAAEAZAAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGQAAAAAAwB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAGQAAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAA== version: 7 4,1: ind: 4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAC8AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAC8AAAAAAQB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,2: ind: 4,2 @@ -333,47 +333,47 @@ entities: version: 7 -4,-2: ind: -4,-2 - tiles: BwAAAAAGAAsAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAACAALAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAGAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAHAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAADAAcAAAAAAAAHAAAAAAwAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAFAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAAB+AAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgAfAAAAAAEAHwAAAAACAF0AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAMAfgAAAAAAAE4AAAAAAQBOAAAAAAIATgAAAAABAE4AAAAAAgBOAAAAAAMATgAAAAABAE4AAAAAAgBdAAAAAAMAHwAAAAACAB8AAAAAAwBdAAAAAAMAfgAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAQAfAAAAAAIAHwAAAAABAB8AAAAAAwAfAAAAAAEAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAABAF0AAAAAAwBdAAAAAAMAHwAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAACAB8AAAAAAgB+AAAAAAAATgAAAAAAAE4AAAAAAgBOAAAAAAIATgAAAAADAE4AAAAAAQBOAAAAAAMATgAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAABAB8AAAAAAwB+AAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAA== + tiles: BwAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAwAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAABAALAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAwABwAAAAAAAAcAAAAAAAAHAAAAAAYAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAHAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAMABwAAAAAEAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAHAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAQALAAAAAAAABwAAAAAAAAcAAAAAAQB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAQB+AAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgAfAAAAAAEAHwAAAAADAF0AAAAAAgB+AAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAMAfgAAAAAAAE4AAAAAAQBOAAAAAAAATgAAAAABAE4AAAAAAwBOAAAAAAIATgAAAAABAE4AAAAAAgBdAAAAAAMAHwAAAAADAB8AAAAAAgBdAAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAgAfAAAAAAIAHwAAAAABAB8AAAAAAwAfAAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAEAHwAAAAACAF0AAAAAAQBdAAAAAAEAHwAAAAABAB8AAAAAAQAfAAAAAAIAHwAAAAABAB8AAAAAAAB+AAAAAAAATgAAAAAAAE4AAAAAAABOAAAAAAIATgAAAAADAE4AAAAAAwBOAAAAAAAATgAAAAACAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAwB+AAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAA== version: 7 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAFAAcAAAAAAAAHAAAAAAkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAABgAHAAAAAAAABwAAAAAAAAcAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAMAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAAcAAAAABAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAMAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -5,-3: ind: -5,-3 - tiles: HwAAAAACAB8AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAAAAB8AAAAAAwAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAEAHwAAAAACAB8AAAAAAQALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAEAHwAAAAABAB8AAAAAAwAfAAAAAAIAHwAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAACAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAACAH4AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAIAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAFAAcAAAAAAgB+AAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAMAHwAAAAADAB8AAAAAAwB+AAAAAAAAHwAAAAAAAH4AAAAAAAB/AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAIAfgAAAAAAAB8AAAAAAQAfAAAAAAAAfgAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAAAfwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAH4AAAAAAAAfAAAAAAEAHwAAAAADAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH8AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAgBAAAAAAAAAQAAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAABQAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAAAQAAAAAAAAEAAAAAAAAAfAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAwABwAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAABgAHAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAEAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAwAHAAAAAAAABwAAAAAKAAcAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAACAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAcABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAcABwAAAAAAAA== + tiles: HwAAAAABAB8AAAAAAQAfAAAAAAIAHwAAAAADAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAACAB8AAAAAAwAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAwALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAADAB8AAAAAAgAfAAAAAAMAHwAAAAABAB8AAAAAAQAfAAAAAAMAHwAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAgAfAAAAAAMAHwAAAAAAAB8AAAAAAgAfAAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAAAHwAAAAAAAB8AAAAAAAB+AAAAAAAAHwAAAAACAH4AAAAAAAB/AAAAAAAABwAAAAAAAAcAAAAACwAHAAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAMAfgAAAAAAAB8AAAAAAQAfAAAAAAMAfgAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAAAfwAAAAAAAAcAAAAABgAHAAAAAAAABwAAAAAMAH4AAAAAAAB+AAAAAAAAHwAAAAABAH4AAAAAAAAfAAAAAAEAHwAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH8AAAAAAAAHAAAAAAgABwAAAAAAAAcAAAAAAAAHAAAAAAcAfgAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAADAB8AAAAAAgBAAAAAAAAAQAAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAIAQAAAAAAAAEAAAAAAAAAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAABgAHAAAAAAcABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAACgAHAAAAAAAABwAAAAALAAcAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAKAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAUAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAIAA== version: 7 -4,-3: ind: -4,-3 - tiles: fgAAAAAAAB8AAAAAAwAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAHAAsAAAAAAAAHAAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAMAHwAAAAACAH4AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAMAfgAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAHAH4AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAMAHwAAAAABAB8AAAAAAQAfAAAAAAMAHwAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAABAH4AAAAAAAAHAAAAAAIACwAAAAAAAAcAAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAMAHwAAAAAAAB8AAAAAAgAfAAAAAAEAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAABAH4AAAAAAAB+AAAAAAAABwAAAAAAAAsAAAAAAAAHAAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAAB+AAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAQAfAAAAAAMAfgAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAEAHwAAAAAAAB8AAAAAAgAfAAAAAAMAfgAAAAAAAH4AAAAAAAAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAAAHwAAAAABAB8AAAAAAQB+AAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAMAfgAAAAAAAAcAAAAAAQALAAAAAAAACwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAMAHwAAAAAAAB8AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAAHAAAAAAAACwAAAAAAAAsAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAACAB8AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAcABwAAAAAAAAsAAAAAAAAHAAAAAAgABwAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAwB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAABQB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAMAAsAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAgAHAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: fgAAAAAAAB8AAAAAAwAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAsAAAAAAAAHAAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAACAH4AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAgAfAAAAAAAAfgAAAAAAAAcAAAAAAQALAAAAAAAABwAAAAAJAH4AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAABAB8AAAAAAgAfAAAAAAIAHwAAAAAAAH4AAAAAAAAHAAAAAAAACwAAAAAAAAcAAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAABAB8AAAAAAwAfAAAAAAMAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAACAH4AAAAAAAB+AAAAAAAABwAAAAAAAAsAAAAAAAAHAAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAADAB8AAAAAAQAfAAAAAAMAHwAAAAAAAB8AAAAAAgB+AAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAQAfAAAAAAIAHwAAAAADAB8AAAAAAwAfAAAAAAAAfgAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAHAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAACQB+AAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAEAHwAAAAAAAB8AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAACAB8AAAAAAgAfAAAAAAEAHwAAAAAAAB8AAAAAAgB+AAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAAAfgAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAgAfAAAAAAEAfgAAAAAAAH4AAAAAAAAHAAAAAAAACwAAAAAAAAsAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAABAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAgB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAKAAcAAAAAAAAHAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAMAAcAAAAAAwAHAAAAAAgAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAQAHAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAcABwAAAAAAAAcAAAAABwAHAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -4,-4: ind: -4,-4 - tiles: egAAAAABAHoAAAAAAAB6AAAAAAAAegAAAAABAHoAAAAAAQB6AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAHoAAAAAAQB6AAAAAAAAegAAAAAAAHoAAAAAAwB6AAAAAAMAegAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAegAAAAAAAHoAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAJgAAAAAAACYAAAAAAgAmAAAAAAIAJgAAAAABACYAAAAAAQAmAAAAAAAAJgAAAAAAACYAAAAAAAAiAAAAAAMAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGoAAAAAAwBqAAAAAAMAagAAAAABAGoAAAAAAwBqAAAAAAMAagAAAAACAGoAAAAAAgBlAAAAAAMAJwAAAAADAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAGAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAawAAAAACACcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATAAAAAABAEwAAAAAAwBMAAAAAAIATAAAAAABAEwAAAAAAgBMAAAAAAEAfgAAAAAAAGsAAAAAAQAnAAAAAAEAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAAuAAAAAAAAfgAAAAAAAEwAAAAAAgAqAAAAAAIATAAAAAADAEwAAAAAAQBMAAAAAAIATAAAAAACAH4AAAAAAABrAAAAAAMAJwAAAAADAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAABMAAAAAAMAKgAAAAADAEwAAAAAAABMAAAAAAMATAAAAAACAEwAAAAAAQB+AAAAAAAAawAAAAABACcAAAAAAAB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAC4AAAAAAAB+AAAAAAAAKgAAAAADACoAAAAAAgAqAAAAAAMAKgAAAAAAACoAAAAAAgAqAAAAAAMAHwAAAAACAGsAAAAAAAAnAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAEwAAAAAAQBMAAAAAAMAKgAAAAACAEwAAAAAAABMAAAAAAMATAAAAAACAH4AAAAAAABrAAAAAAAAJwAAAAADAH4AAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAALgAAAAAAAH4AAAAAAABMAAAAAAEATAAAAAAAAEwAAAAAAQBMAAAAAAEATAAAAAABAEwAAAAAAAB+AAAAAAAAawAAAAACACcAAAAAAQBAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAATAAAAAACAEwAAAAAAQBMAAAAAAEATAAAAAABAEwAAAAAAABMAAAAAAAAfgAAAAAAAGsAAAAAAAAnAAAAAAAAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAAuAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABrAAAAAAEAJwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABqAAAAAAIAagAAAAAAAGoAAAAAAQBqAAAAAAEAagAAAAABAGoAAAAAAQBqAAAAAAAAZQAAAAABACcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAB+AAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAIAJgAAAAAAACYAAAAAAAAmAAAAAAIAJgAAAAABACYAAAAAAQAiAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAsAAAAAAAAHAAAAAAAAfgAAAAAAAA== + tiles: egAAAAAAAHoAAAAAAQB6AAAAAAMAegAAAAABAHoAAAAAAAB6AAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAHoAAAAAAgB6AAAAAAAAegAAAAABAHoAAAAAAQB6AAAAAAAAegAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAegAAAAAAAHoAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAJgAAAAADACYAAAAAAAAmAAAAAAIAJgAAAAACACYAAAAAAQAmAAAAAAEAJgAAAAACACYAAAAAAAAiAAAAAAIAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGoAAAAAAABqAAAAAAEAagAAAAABAGoAAAAAAQBqAAAAAAAAagAAAAAAAGoAAAAAAgBlAAAAAAEAJwAAAAABAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAGAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAawAAAAACACcAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATAAAAAACAEwAAAAAAQBMAAAAAAMATAAAAAACAEwAAAAAAgBMAAAAAAMAfgAAAAAAAGsAAAAAAgAnAAAAAAMAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAAuAAAAAAAAfgAAAAAAAEwAAAAAAgAqAAAAAAAATAAAAAADAEwAAAAAAABMAAAAAAAATAAAAAACAH4AAAAAAABrAAAAAAMAJwAAAAADAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAABMAAAAAAEAKgAAAAABAEwAAAAAAQBMAAAAAAAATAAAAAADAEwAAAAAAgB+AAAAAAAAawAAAAABACcAAAAAAQB+AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfgAAAAAAAC4AAAAAAAB+AAAAAAAAKgAAAAACACoAAAAAAQAqAAAAAAAAKgAAAAADACoAAAAAAQAqAAAAAAMAHwAAAAACAGsAAAAAAQAnAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAEwAAAAAAwBMAAAAAAMAKgAAAAAAAEwAAAAAAQBMAAAAAAIATAAAAAAAAH4AAAAAAABrAAAAAAEAJwAAAAADAH4AAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB+AAAAAAAALgAAAAAAAH4AAAAAAABMAAAAAAIATAAAAAACAEwAAAAAAgBMAAAAAAAATAAAAAABAEwAAAAAAgB+AAAAAAAAawAAAAACACcAAAAAAQBAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAALgAAAAAAAC4AAAAAAAB+AAAAAAAATAAAAAABAEwAAAAAAwBMAAAAAAAATAAAAAABAEwAAAAAAQBMAAAAAAMAfgAAAAAAAGsAAAAAAQAnAAAAAAMAfgAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAH4AAAAAAAAuAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABrAAAAAAMAJwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABqAAAAAAEAagAAAAADAGoAAAAAAQBqAAAAAAEAagAAAAACAGoAAAAAAABqAAAAAAAAZQAAAAABACcAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAB+AAAAAAAAJgAAAAADACYAAAAAAAAmAAAAAAEAJgAAAAABACYAAAAAAAAmAAAAAAIAJgAAAAACACYAAAAAAgAiAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAACAAsAAAAAAAAHAAAAAAAAfgAAAAAAAA== version: 7 -3,-3: ind: -3,-3 - tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAIAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAgB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAMAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAADAA== + tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAIAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAADAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAQB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAMAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAABAA== version: 7 -5,-4: ind: -5,-4 - tiles: fgAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAgAfAAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAMAfgAAAAAAAHoAAAAAAAB6AAAAAAIAfgAAAAAAAHoAAAAAAwB6AAAAAAMAegAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAACAB8AAAAAAQAfAAAAAAMAHwAAAAABAH4AAAAAAAB6AAAAAAMAegAAAAACAHoAAAAAAwB6AAAAAAEAegAAAAABAHoAAAAAAgB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAMAHwAAAAADAB8AAAAAAgAfAAAAAAIAHwAAAAABAB8AAAAAAQAfAAAAAAIAJwAAAAAAACcAAAAAAQAiAAAAAAAAJgAAAAABACYAAAAAAgAmAAAAAAMAJgAAAAABAB8AAAAAAwB+AAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAIAHwAAAAADAB8AAAAAAAAfAAAAAAEAHwAAAAAAACcAAAAAAAAnAAAAAAEAJwAAAAAAAGUAAAAAAABqAAAAAAIAagAAAAACAGoAAAAAAwAfAAAAAAIAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAADAB8AAAAAAgAfAAAAAAIAHwAAAAABAH4AAAAAAAAnAAAAAAAAJwAAAAACACcAAAAAAABrAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAnAAAAAAMAawAAAAACAH4AAAAAAABMAAAAAAAATAAAAAACAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAfgAAAAAAAHoAAAAAAQB6AAAAAAMAegAAAAABAHoAAAAAAwB+AAAAAAAAJwAAAAACAGsAAAAAAgB+AAAAAAAATAAAAAACAEwAAAAAAQA+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAIAXQAAAAACAH4AAAAAAAB6AAAAAAAAegAAAAABAHoAAAAAAQB6AAAAAAEAfgAAAAAAACcAAAAAAgBrAAAAAAEAfgAAAAAAAEwAAAAAAwBMAAAAAAEAfgAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAQAfAAAAAAAAegAAAAADAHoAAAAAAgB6AAAAAAIAegAAAAAAAB8AAAAAAgAnAAAAAAAAawAAAAACAB8AAAAAAAAqAAAAAAMAKgAAAAABADwAAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAMAfgAAAAAAAHoAAAAAAQB6AAAAAAMAegAAAAAAAHoAAAAAAQB+AAAAAAAAJwAAAAADAGsAAAAAAQB+AAAAAAAATAAAAAAAAEwAAAAAAgA8AAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAMAXQAAAAADAH4AAAAAAAB6AAAAAAIAegAAAAACAHoAAAAAAgB6AAAAAAEAfgAAAAAAACcAAAAAAQBrAAAAAAMAfgAAAAAAAEwAAAAAAABMAAAAAAMAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAB+AAAAAAAAegAAAAACAHoAAAAAAwB6AAAAAAMAegAAAAADAH4AAAAAAAAnAAAAAAMAawAAAAADAH4AAAAAAABMAAAAAAEATAAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAJwAAAAADAGsAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAACcAAAAAAQBlAAAAAAMAagAAAAAAAGoAAAAAAQBqAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAiAAAAAAIAJgAAAAABACYAAAAAAAAmAAAAAAAAJgAAAAAAAA== + tiles: fgAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAMAfgAAAAAAAHoAAAAAAQB6AAAAAAAAegAAAAADAH4AAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAwAfAAAAAAMAHwAAAAADAH4AAAAAAAB6AAAAAAIAegAAAAABAHoAAAAAAwB6AAAAAAAAegAAAAACAHoAAAAAAgB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAABAB8AAAAAAgAfAAAAAAMAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAEAHwAAAAABAB8AAAAAAAAfAAAAAAEAHwAAAAADAB8AAAAAAQAfAAAAAAMAJwAAAAABACcAAAAAAQAiAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAACAB8AAAAAAQB+AAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAACAB8AAAAAAQAfAAAAAAAAHwAAAAADACcAAAAAAgAnAAAAAAMAJwAAAAACAGUAAAAAAABqAAAAAAEAagAAAAACAGoAAAAAAQAfAAAAAAMAfgAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAADAB8AAAAAAAAfAAAAAAIAHwAAAAAAAH4AAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAgBrAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAnAAAAAAAAawAAAAAAAH4AAAAAAABMAAAAAAAATAAAAAACAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAfgAAAAAAAHoAAAAAAwB6AAAAAAMAegAAAAACAHoAAAAAAgB+AAAAAAAAJwAAAAABAGsAAAAAAAB+AAAAAAAATAAAAAACAEwAAAAAAgA+AAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAMAXQAAAAABAH4AAAAAAAB6AAAAAAAAegAAAAACAHoAAAAAAwB6AAAAAAEAfgAAAAAAACcAAAAAAABrAAAAAAAAfgAAAAAAAEwAAAAAAgBMAAAAAAEAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAAAAF0AAAAAAwAfAAAAAAAAegAAAAADAHoAAAAAAAB6AAAAAAAAegAAAAABAB8AAAAAAQAnAAAAAAIAawAAAAADAB8AAAAAAgAqAAAAAAAAKgAAAAABADwAAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAwBdAAAAAAMAfgAAAAAAAHoAAAAAAAB6AAAAAAEAegAAAAADAHoAAAAAAgB+AAAAAAAAJwAAAAABAGsAAAAAAQB+AAAAAAAATAAAAAACAEwAAAAAAgA8AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAADAH4AAAAAAAB6AAAAAAMAegAAAAADAHoAAAAAAwB6AAAAAAIAfgAAAAAAACcAAAAAAwBrAAAAAAIAfgAAAAAAAEwAAAAAAABMAAAAAAIAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAB+AAAAAAAAegAAAAACAHoAAAAAAwB6AAAAAAIAegAAAAADAH4AAAAAAAAnAAAAAAEAawAAAAABAH4AAAAAAABMAAAAAAIATAAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAJwAAAAACAGsAAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAACcAAAAAAQBlAAAAAAAAagAAAAAAAGoAAAAAAQBqAAAAAAAAHwAAAAADAB8AAAAAAwAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAiAAAAAAIAJgAAAAABACYAAAAAAQAmAAAAAAAAJgAAAAADAA== version: 7 -6,-4: ind: -6,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAABAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAAAAA== version: 7 -6,-3: ind: -6,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAEAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAABAB8AAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAAAAB8AAAAAAQAfAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAEAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAEAHwAAAAABAB8AAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAABAB8AAAAAAgAfAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAQAfAAAAAAMAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAAAAB8AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQAfAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -5,-5: ind: -5,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAQAfAAAAAAEAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAIAegAAAAAAAHoAAAAAAwB6AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAwAfAAAAAAMAHwAAAAADAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAwB6AAAAAAAAegAAAAACAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAADAB8AAAAAAwAfAAAAAAMAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB6AAAAAAEAegAAAAAAAHoAAAAAAwB6AAAAAAEAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAIAHwAAAAACAB8AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAACAA== version: 7 -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAIABwAAAAAFAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAHAAAAAAEABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAACgAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAQB6AAAAAAIAegAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB6AAAAAAIAegAAAAAAAHoAAAAAAgB6AAAAAAAAegAAAAABAHoAAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAABAHoAAAAAAAB6AAAAAAMAegAAAAADAHoAAAAAAwB6AAAAAAMAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAgB6AAAAAAIAegAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAB6AAAAAAIAegAAAAADAHoAAAAAAAB6AAAAAAMAegAAAAAAAHoAAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAADAHoAAAAAAwB6AAAAAAIAegAAAAABAHoAAAAAAAB6AAAAAAMAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAA== version: 7 -6,-5: ind: -6,-5 @@ -385,19 +385,19 @@ entities: version: 7 0,4: ind: 0,4 - tiles: HwAAAAAAAEAAAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAABAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAfAAAAAAAAQAAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAQBdAAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAIAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAADAHAAAAAAAABwAAAAAAMATwAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAcAAAAAACAHAAAAAAAQB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: HwAAAAAAAEAAAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAABAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAfAAAAAAEAQAAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAgBdAAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAEAXQAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAIAcAAAAAACAHAAAAAAAwBwAAAAAAMATwAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAcAAAAAACAHAAAAAAAgB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -1,4: ind: -1,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAEAAAAAAAAAfAAAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABAAAAAAAAAHwAAAAAAAB8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAQAAAAAAAAB8AAAAAAgAfAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAB8AAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAAfAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAB8AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAAfAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAHAAAAAAAwBwAAAAAAMAcAAAAAABAHAAAAAAAABwAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAQBwAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAEAAAAAAAAAfAAAAAAIAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABAAAAAAAAAHwAAAAADAB8AAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAQAAAAAAAAB8AAAAAAQAfAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAB8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAAfAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAB8AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAAfAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG0AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAHAAAAAAAwBwAAAAAAEAcAAAAAABAHAAAAAAAgBwAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAwBwAAAAAAEAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAA== version: 7 -1,5: ind: -1,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAwARAAAAAAAAEQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAIAEQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAABABEAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAQARAAAAAAAAcAAAAAABAHAAAAAAAABwAAAAAAMAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAAAEQAAAAAAAH4AAAAAAAB+AAAAAAAAEQAAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAADABEAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAgARAAAAAAAAEQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAAAcAAAAAACABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAABAHAAAAAAAABwAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAAARAAAAAAAAEQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAAAEQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAAAABEAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAQARAAAAAAAAcAAAAAADAHAAAAAAAQBwAAAAAAMAcAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAMAEQAAAAAAAH4AAAAAAAB+AAAAAAAAEQAAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAAAABEAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAAARAAAAAAAAEQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAABwAAAAAAEAcAAAAAADABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAHAAAAAAAQBwAAAAAAAAcAAAAAAAAHAAAAAAAwBwAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 0,5: ind: 0,5 - tiles: fgAAAAAAAH4AAAAAAAARAAAAAAAAEQAAAAAAAHAAAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAABEAAAAAAABwAAAAAAIAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAARAAAAAAAAcAAAAAADAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAACAHAAAAAAAgBwAAAAAAAAEQAAAAAAAHAAAAAAAwB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAB+AAAAAAAAfgAAAAAAABEAAAAAAABwAAAAAAEAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAARAAAAAAAAcAAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAARAAAAAAAAEQAAAAAAAHAAAAAAAgB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAHAAAAAAAwBwAAAAAAEAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAMAcAAAAAAAAHAAAAAAAABwAAAAAAIATwAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: fgAAAAAAAH4AAAAAAAARAAAAAAAAEQAAAAAAAHAAAAAAAgB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAABEAAAAAAABwAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAARAAAAAAAAcAAAAAABAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAwBwAAAAAAIAEQAAAAAAAHAAAAAAAwB+AAAAAAAAfgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAB+AAAAAAAAfgAAAAAAABEAAAAAAABwAAAAAAEAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAARAAAAAAAAcAAAAAACAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAARAAAAAAAAEQAAAAAAAHAAAAAAAwB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAHAAAAAAAwBwAAAAAAIAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAIAcAAAAAAAAHAAAAAAAgBwAAAAAAEATwAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 2,3: ind: 2,3 @@ -405,7 +405,7 @@ entities: version: 7 2,-5: ind: 2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAwAHAAAAAAcABwAAAAAAAAcAAAAAAAAHAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAEABwAAAAACAAcAAAAAAAAHAAAAAAoABwAAAAAAAAcAAAAABAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAEAAcAAAAAAAAHAAAAAAAABwAAAAAGAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAACQAHAAAAAAAABwAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAwAHAAAAAAQABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAsABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAALAAcAAAAAAAAHAAAAAAsABwAAAAAGAAcAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAKAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAsABwAAAAAAAAcAAAAABQAHAAAAAAAABwAAAAADAH4AAAAAAAB+AAAAAAAAfwAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAJAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAfwAAAAAAAH8AAAAAAAB/AAAAAAAAfwAAAAAAAAcAAAAAAAAHAAAAAAAAfwAAAAAAAH8AAAAAAAB/AAAAAAAAfwAAAAAAAAcAAAAABQB/AAAAAAAAfwAAAAAAAH8AAAAAAAB/AAAAAAAAfgAAAAAAAH4AAAAAAAB/AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAABQAHAAAAAAAABwAAAAAAAH8AAAAAAAAHAAAAAAsAfwAAAAAAAAcAAAAAAAAHAAAAAAAAfwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAkAAAAAAAAHAAAAAAMABwAAAAAAAAcAAAAAAAB/AAAAAAAABwAAAAAHAH8AAAAAAAAHAAAAAAAABwAAAAAAAH8AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAJAAAAAAAABwAAAAAAAH8AAAAAAAAHAAAAAAAAfwAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAABAAHAAAAAAAABwAAAAADAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAcABwAAAAAAAAcAAAAABAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAABAAHAAAAAAAABwAAAAAAAAcAAAAACwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAGAAcAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAADAAcAAAAACwAHAAAAAAAABwAAAAAAAAcAAAAACwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAACwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAACwAHAAAAAAAABwAAAAAKAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAgABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAACAAcAAAAAAAAHAAAAAAIABwAAAAAIAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAcAAAAACgAHAAAAAAAABwAAAAABAAcAAAAAAAAHAAAAAAMABwAAAAAAAAcAAAAADAAHAAAAAAAABwAAAAAHAAcAAAAAAAAHAAAAAAAABwAAAAAAAH4AAAAAAAB+AAAAAAAAfwAAAAAAAH4AAAAAAAB+AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAwABwAAAAAAAAcAAAAAAAAHAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB+AAAAAAAAfwAAAAAAAH8AAAAAAAB/AAAAAAAAfwAAAAAAAAcAAAAAAAAHAAAAAAEAfwAAAAAAAH8AAAAAAAB/AAAAAAAAfwAAAAAAAAcAAAAAAAB/AAAAAAAAfwAAAAAAAH8AAAAAAAB/AAAAAAAAfgAAAAAAAH4AAAAAAAB/AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAH8AAAAAAAAHAAAAAAAAfwAAAAAAAAcAAAAAAAAHAAAAAAAAfwAAAAAAAAcAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAHAAAAAAAABwAAAAAAAAkAAAAAAAAHAAAAAAAABwAAAAABAAcAAAAAAAB/AAAAAAAABwAAAAABAH8AAAAAAAAHAAAAAAAABwAAAAAGAH8AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAACAAHAAAAAAAABwAAAAAKAAcAAAAAAAAJAAAAAAAABwAAAAAAAH8AAAAAAAAHAAAAAAAAfwAAAAAAAA== version: 7 1,-5: ind: 1,-5 @@ -439,6 +439,10 @@ entities: ind: 3,3 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 + 0,-5: + ind: 0,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -501,8 +505,6 @@ entities: 2374: 20,-32 2375: 20,-34 2376: 20,-36 - 3203: -3,-53 - 3204: 3.4070768,-49.001 - node: color: '#FFFFFFFF' id: Arrows @@ -527,10 +529,14 @@ entities: - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' - id: Bot + id: ArrowsGreyscale decals: - 3205: -5,-57 - 3206: -3,-57 + 3386: 16,-32 + - node: + color: '#FFFFFFFF' + id: ArrowsGreyscale + decals: + 3387: 21,-37 - node: color: '#FFFFFFFF' id: Bot @@ -643,9 +649,6 @@ entities: 2860: 2,-44 2861: 3,-44 2862: 4,-44 - 2974: 4,-51 - 2978: -4,-48 - 2979: -3,-48 3010: 12,14 3114: -21,-15 3176: -35,56 @@ -674,6 +677,8 @@ entities: id: BotGreyscale decals: 2133: -22,-1 + 3380: -2,-54 + 3381: 0,-54 - node: color: '#FFFFFFFF' id: BotLeft @@ -685,11 +690,19 @@ entities: 2446: -44,19 2447: -42,19 2448: -40,19 + - node: + color: '#FFFFFFFF' + id: BotLeftGreyscale + decals: + 3376: -4,-54 + 3377: 1,-54 - node: color: '#FFFFFFFF' id: BotRightGreyscale decals: 2357: -24,-5 + 3378: -3,-54 + 3379: 2,-54 - node: color: '#FFFFFFFF' id: Box @@ -697,10 +710,10 @@ entities: 2265: 39,9 2837: -14,-38 2838: -12,-38 - 2972: -5,-54 - 2976: 4,-49 3113: 20,-3 3148: -13,-50 + 3384: 3,-49 + 3385: 4,-49 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -708,6 +721,55 @@ entities: decals: 3096: 24,-6 3097: 30,-6 + - node: + angle: -3.141592653589793 rad + color: '#3AB3DAFF' + id: BoxGreyscale + decals: + 3390: -19,-75 + 3391: -17,-75 + 3392: -11,-69 + 3393: -11,-67 + 3394: -25,-67 + 3395: -25,-69 + 3396: -17,-61 + 3397: -19,-61 + 3398: -19,-67 + 3399: -17,-67 + 3400: -17,-69 + 3401: -19,-69 + - node: + color: '#3AB3DAFF' + id: BoxGreyscale + decals: + 3375: -3,-50 + - node: + angle: -3.141592653589793 rad + color: '#8932B8FF' + id: BoxGreyscale + decals: + 3402: -25,-72 + 3403: -22,-75 + 3404: -14,-75 + 3405: -11,-72 + 3406: -11,-64 + 3407: -14,-61 + 3408: -22,-61 + 3410: -25,-64 + 3411: -22,-64 + 3412: -14,-64 + 3413: -14,-72 + 3414: -22,-72 + - node: + color: '#B02E26FF' + id: BoxGreyscale + decals: + 3374: 1,-50 + - node: + color: '#FFFFFFFF' + id: BoxGreyscale + decals: + 3363: 4,-51 - node: color: '#FFFFFFFF' id: BrickTileDarkBox @@ -1911,12 +1973,6 @@ entities: id: CheckerNWSE decals: 1019: 3,-28 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: Delivery - decals: - 3207: -4,-57 - node: color: '#FFFFFFFF' id: Delivery @@ -4511,6 +4567,7 @@ entities: 3146: -1,-42 3170: 29,42 3190: -43,51 + 3359: 4,-55 - node: color: '#334E6DC8' id: WarnLineGreyscaleE @@ -4801,11 +4858,7 @@ entities: 2876: 0,-48 2877: 1,-48 2878: 2,-48 - 2879: 3,-48 - 2880: 4,-48 2941: -18,-53 - 2980: -4,-48 - 2981: -3,-48 3014: 14,10 3034: 4,87 3035: -6,87 @@ -4832,6 +4885,10 @@ entities: 3094: 19,-4 3109: 10,-19 3110: -5,-12 + 3357: -3,-48 + 3358: -4,-48 + 3382: 3,-48 + 3383: 4,-48 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -5734,11 +5791,13 @@ entities: -5,9: 0: 61687 -5,10: - 0: 62239 + 0: 13087 2: 1024 + 3: 49152 -5,11: - 0: 2955 + 0: 771 2: 17476 + 3: 2184 -5,12: 2: 4369 -4,9: @@ -5747,7 +5806,8 @@ entities: 0: 61183 -4,11: 2: 48 - 0: 11144 + 3: 8960 + 0: 2184 -13,8: 0: 62719 -12,9: @@ -5761,8 +5821,7 @@ entities: -12,11: 0: 47915 -13,11: - 0: 43691 - 3: 16 + 0: 47291 -12,12: 0: 29627 -11,9: @@ -5839,12 +5898,12 @@ entities: -14,10: 0: 62719 -14,11: - 0: 51420 + 0: 17628 2: 4096 -14,12: - 0: 45836 + 0: 45828 -13,12: - 0: 55434 + 0: 55487 -16,12: 2: 61440 -17,12: @@ -5860,7 +5919,7 @@ entities: 2: 3136 -15,15: 2: 1792 - 0: 2048 + 3: 2048 -15,13: 0: 14 -15,14: @@ -5892,30 +5951,34 @@ entities: -12,16: 0: 65535 -11,15: - 0: 7197 + 0: 4125 + 3: 3072 -11,13: 0: 61166 -11,14: 0: 52238 -11,16: - 0: 4561 + 0: 4369 + 3: 192 2: 34816 -10,13: 0: 30583 -10,14: 0: 63239 -10,15: - 0: 3847 + 0: 7 + 3: 3840 2: 61440 -10,16: 2: 8929 - 0: 16 + 3: 16 -9,13: 0: 8191 -9,14: 0: 65535 -9,15: - 0: 4367 + 0: 15 + 3: 4352 2: 57344 -9,16: 2: 241 @@ -5942,9 +6005,9 @@ entities: 2: 28672 -5,13: 2: 1 - 0: 3840 + 3: 3840 -4,13: - 0: 3840 + 3: 3840 -12,17: 0: 255 2: 53248 @@ -5966,7 +6029,7 @@ entities: -14,18: 2: 140 -4,12: - 0: 14 + 3: 14 2: 3584 -3,9: 0: 62703 @@ -5975,16 +6038,17 @@ entities: -3,11: 0: 4095 -3,12: - 0: 15 + 3: 15 2: 3856 -2,9: 0: 65163 -2,10: 0: 65535 -2,11: - 0: 35763 + 0: 819 + 3: 34944 -2,12: - 0: 34959 + 3: 34959 2: 18256 -1,9: 0: 40433 @@ -5994,26 +6058,28 @@ entities: -1,11: 2: 56828 -1,12: - 0: 34959 + 3: 34959 2: 30032 0,10: 2: 4896 0: 34944 0,11: 2: 20785 - 0: 35848 + 0: 8 + 3: 35840 0,9: 2: 1536 0,12: 2: 30039 - 0: 34952 + 3: 34952 1,9: 0: 65288 2: 2 1,10: 0: 65520 1,11: - 0: 3855 + 0: 15 + 3: 3840 2: 61440 1,12: 2: 4369 @@ -6041,28 +6107,28 @@ entities: 4,11: 0: 65309 -3,13: - 0: 3840 + 3: 3840 -3,15: 2: 26848 -3,16: 2: 25122 -2,13: - 0: 36744 + 3: 36744 2: 16452 -2,15: 2: 1652 - 0: 8 + 3: 8 -2,16: 0: 12151 -2,14: 2: 17476 - 0: 34952 + 3: 34952 -1,13: 2: 20565 - 0: 36744 + 3: 36744 -1,14: 2: 6005 - 0: 51336 + 3: 51336 -1,15: 2: 1 0: 64392 @@ -6070,13 +6136,14 @@ entities: 0: 36847 0,13: 2: 20565 - 0: 36744 + 3: 36744 0,14: 2: 18293 - 0: 39048 + 3: 39048 0,15: - 0: 30216 + 0: 30208 2: 4 + 3: 8 5,4: 0: 65519 5,5: @@ -6199,7 +6266,7 @@ entities: 2: 232 12,11: 2: 4096 - 5: 2 + 3: 2 8,3: 0: 13211 2: 32768 @@ -6425,8 +6492,7 @@ entities: 2,-6: 0: 61679 2,-9: - 0: 61440 - 2: 226 + 0: 65520 3,-8: 0: 56719 3,-7: @@ -6434,8 +6500,7 @@ entities: 3,-6: 0: 14527 3,-9: - 0: 61440 - 2: 248 + 0: 65520 4,-8: 0: 65535 4,-7: @@ -6443,7 +6508,7 @@ entities: 4,-6: 0: 40959 4,-9: - 0: 65262 + 0: 65534 5,-8: 0: 13107 2: 34952 @@ -6458,18 +6523,18 @@ entities: 2: 34952 6,-6: 2: 61440 - 6: 224 + 5: 224 6,-5: 0: 112 2: 2184 6,-8: 4: 224 - 5: 57344 + 3: 57344 6,-7: - 5: 224 - 7: 57344 + 3: 224 + 6: 57344 6,-9: - 5: 57568 + 3: 57568 7,-5: 2: 4080 7,-8: @@ -6519,46 +6584,50 @@ entities: -1,-10: 0: 10111 1,-12: - 0: 29969 - 2: 204 + 0: 4369 + 2: 17612 1,-11: 0: 1 - 2: 28352 + 2: 28364 1,-13: 0: 4369 - 2: 52428 + 2: 17612 1,-10: 2: 230 0: 57344 2,-12: - 2: 16319 + 2: 65331 2,-11: - 2: 17907 + 2: 305 + 3: 34816 2,-10: - 2: 8766 - 0: 34816 + 2: 60978 + 3: 8 2,-13: - 2: 65535 + 2: 13107 3,-12: - 2: 258 + 2: 61696 3,-11: - 2: 17520 + 3: 13056 + 2: 32900 3,-10: - 2: 34959 - 0: 13056 - 3,-13: - 2: 12835 + 3: 3 + 2: 65416 + 4,-12: + 2: 4096 + 4,-11: + 2: 7953 + 3: 8192 4,-10: 2: 17 - 0: 59566 - 4,-11: - 2: 7936 - 0: 8192 + 3: 34 + 0: 59532 5,-11: 2: 20224 - 0: 8192 + 3: 8192 5,-10: - 0: 12323 + 0: 12289 + 3: 34 2: 35012 6,-10: 2: 8928 @@ -6653,93 +6722,104 @@ entities: 2: 76 -7,-16: 2: 56788 - 0: 8 + 3: 8 -7,-15: 2: 28953 - 0: 196 + 3: 196 -7,-14: 2: 870 -7,-17: - 2: 56797 + 2: 56669 + 3: 128 -6,-16: 2: 13387 - 0: 49156 + 3: 49156 -6,-15: 2: 15 - 0: 45552 + 3: 240 + 0: 45312 -6,-14: 0: 16527 2: 8704 -6,-17: - 2: 17487 + 2: 17607 -5,-16: 2: 1103 - 0: 61440 + 3: 61440 -5,-15: 2: 15 - 0: 61680 + 3: 240 + 0: 61440 -5,-14: 0: 65535 -5,-17: - 2: 17483 - 0: 4 + 2: 43610 + 3: 164 -4,-16: 2: 33867 - 0: 28676 + 3: 28676 -4,-15: 2: 15 - 0: 45296 + 3: 240 + 0: 45056 -4,-14: 0: 53695 -4,-17: - 2: 17487 + 2: 17532 -3,-16: - 2: 13925 - 0: 16386 + 2: 12901 + 3: 17410 -3,-15: 2: 3 - 0: 61812 + 3: 116 + 0: 61696 -3,-14: 0: 61695 -3,-17: - 2: 58983 + 2: 58951 + 3: 32 -2,-16: - 2: 64886 + 2: 56830 -2,-15: - 2: 31 - 0: 56320 + 2: 19677 + 0: 4096 + 3: 32768 -2,-14: - 0: 56349 + 0: 56529 -2,-17: 2: 29015 -1,-16: - 2: 61696 + 2: 32527 -1,-15: - 2: 143 - 0: 62208 + 2: 53111 + 3: 12288 -1,-14: - 0: 65419 + 0: 65520 0,-16: - 2: 61440 - 0,-15: 2: 15 - 0: 65024 + 3: 57344 + 0,-15: + 2: 4096 + 3: 57582 0,-14: - 0: 65294 + 0: 65520 1,-16: - 2: 28672 + 2: 61109 1,-15: - 2: 52431 - 0: 4352 + 2: 63086 1,-14: - 0: 4353 - 2: 52428 + 0: 5492 + 2: 16384 + 1,-17: + 2: 42496 + 2,-16: + 2: 46369 2,-15: - 2: 4368 + 2: 4500 2,-14: - 2: 63985 - 3,-14: - 2: 8208 + 2: 12561 + 3,-15: + 2: 17 -8,-19: 2: 50240 -8,-18: @@ -6751,37 +6831,39 @@ entities: -7,-19: 2: 56797 -7,-18: - 2: 56820 - 0: 8 + 2: 24052 + 3: 32776 -6,-20: 2: 3055 -6,-19: 2: 17599 - 0: 64 + 3: 64 -6,-18: - 2: 17483 - 0: 4 + 2: 50251 + 3: 4 -5,-20: 2: 3918 -5,-19: - 2: 17663 + 2: 17503 + 3: 160 -5,-18: - 2: 17487 + 2: 23215 + 3: 40960 -4,-20: 2: 7150 -4,-19: 2: 17599 - 0: 64 + 3: 64 -4,-18: - 2: 17483 - 0: 4 + 2: 29771 + 3: 4 -3,-20: 2: 3971 -3,-19: 2: 58999 -3,-18: - 2: 58981 - 0: 2 + 2: 50789 + 3: 8194 -2,-20: 2: 13104 -2,-19: @@ -6865,7 +6947,8 @@ entities: 4,15: 0: 3003 3,15: - 0: 7389 + 0: 3293 + 3: 4096 4,16: 2: 244 5,13: @@ -6878,7 +6961,7 @@ entities: 0: 3895 1,13: 2: 4113 - 0: 3840 + 3: 3840 1,14: 2: 4369 1,15: @@ -6886,11 +6969,13 @@ entities: 1,16: 0: 10103 2,13: - 0: 35712 + 3: 768 2: 8224 + 0: 34944 2,15: - 0: 61576 + 3: 61440 2: 546 + 0: 136 2,14: 2: 8738 0: 34952 @@ -6900,31 +6985,31 @@ entities: 2: 242 14,9: 2: 39304 - 0: 17476 + 3: 17476 14,10: 2: 249 14,8: - 0: 17476 + 3: 17476 2: 34952 14,7: 2: 36744 - 0: 4 + 3: 4 15,8: - 0: 21845 + 3: 21845 2: 34952 15,9: - 0: 21845 + 3: 21845 2: 34952 15,10: 2: 248 15,7: 2: 36744 - 0: 5 + 3: 5 16,8: - 0: 21845 + 3: 21845 2: 34952 16,9: - 0: 21845 + 3: 21845 2: 34952 16,10: 2: 248 @@ -6947,68 +7032,68 @@ entities: 2: 61440 14,5: 2: 35225 - 0: 17472 + 3: 17472 14,6: - 0: 17476 + 3: 17476 2: 34952 15,4: 2: 61440 15,5: - 0: 21840 + 3: 21840 2: 34952 15,6: - 0: 21845 + 3: 21845 2: 34952 16,4: 2: 61440 16,5: - 0: 21840 + 3: 21840 2: 34952 16,6: - 0: 21845 + 3: 21845 2: 34952 16,7: - 0: 5 + 3: 5 2: 36744 17,4: 2: 61440 17,5: - 0: 21840 + 3: 21840 2: 34952 17,6: - 0: 21845 + 3: 21845 2: 34952 17,7: - 0: 5 + 3: 5 2: 36744 18,4: 2: 28672 18,5: - 0: 4368 + 3: 4368 2: 17476 18,6: - 0: 4369 + 3: 4369 2: 17476 18,7: - 0: 2049 + 3: 2049 2: 34700 17,8: 2: 34952 - 0: 21845 + 3: 21845 19,7: 2: 8995 18,8: 2: 17484 - 0: 4369 + 3: 4369 19,8: 2: 3 17,9: - 0: 21845 + 3: 21845 2: 34952 17,10: 2: 248 18,9: - 0: 4369 + 3: 4369 2: 17476 18,10: 2: 116 @@ -7017,18 +7102,18 @@ entities: -21,10: 2: 65351 -20,11: - 0: 43680 + 3: 43680 2: 17476 -20,12: - 0: 43690 + 3: 43690 2: 17476 -19,10: 2: 65280 -19,11: - 0: 43680 + 3: 43680 2: 17476 -19,12: - 0: 43690 + 3: 43690 2: 17476 -18,10: 2: 30464 @@ -7039,27 +7124,27 @@ entities: 2: 8750 -20,13: 2: 17652 - 0: 43530 + 3: 43530 -21,13: 2: 17652 - 0: 43530 + 3: 43530 -20,15: 2: 62532 - 0: 170 + 3: 170 -21,15: 2: 62532 - 0: 170 + 3: 170 -20,14: - 0: 43690 + 3: 43690 2: 17476 -19,13: 2: 17652 - 0: 43530 + 3: 43530 -19,15: 2: 62532 - 0: 170 + 3: 170 -19,14: - 0: 43690 + 3: 43690 2: 17476 -18,13: 2: 8754 @@ -7079,34 +7164,34 @@ entities: -23,12: 2: 34952 -22,11: - 0: 43680 + 3: 43680 2: 17476 -22,12: - 0: 43690 + 3: 43690 2: 17476 -21,11: - 0: 43680 + 3: 43680 2: 17476 -21,12: - 0: 43690 + 3: 43690 2: 17476 -23,13: 2: 34952 -22,13: 2: 17652 - 0: 43530 + 3: 43530 -23,14: 2: 34952 -23,15: 2: 34952 -22,15: 2: 62532 - 0: 170 + 3: 170 -22,14: - 0: 43690 + 3: 43690 2: 17476 -21,14: - 0: 43690 + 3: 43690 2: 17476 -16,-8: 0: 65535 @@ -7393,8 +7478,9 @@ entities: -10,-13: 2: 3976 -1,17: - 0: 39064 + 0: 34952 2: 257 + 3: 4112 -1,18: 0: 61320 2: 1 @@ -7407,7 +7493,7 @@ entities: 0: 65480 0,17: 2: 1028 - 0: 16448 + 3: 16448 0,20: 0: 63628 1,18: @@ -7549,10 +7635,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.14975 + temperature: 293.15 moles: - - 20.078888 - - 75.53487 + - 0 + - 0 - 0 - 0 - 0 @@ -7578,21 +7664,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -7668,11 +7739,15 @@ entities: - 23142 - 2099 - 2029 + - type: Fixtures + fixtures: {} - uid: 1990 components: - type: Transform pos: -43.5,50.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 2333 components: - type: Transform @@ -7699,6 +7774,8 @@ entities: - 448 - 2334 - 2718 + - type: Fixtures + fixtures: {} - uid: 2454 components: - type: Transform @@ -7709,6 +7786,8 @@ entities: devices: - 3228 - 3229 + - type: Fixtures + fixtures: {} - uid: 2851 components: - type: Transform @@ -7718,6 +7797,8 @@ entities: devices: - 12619 - 12611 + - type: Fixtures + fixtures: {} - uid: 3167 components: - type: Transform @@ -7728,6 +7809,8 @@ entities: devices: - 9046 - 12603 + - type: Fixtures + fixtures: {} - uid: 6224 components: - type: Transform @@ -7758,6 +7841,8 @@ entities: - 22086 - 3421 - 3422 + - type: Fixtures + fixtures: {} - uid: 7927 components: - type: Transform @@ -7768,6 +7853,8 @@ entities: devices: - 8033 - 7572 + - type: Fixtures + fixtures: {} - uid: 8252 components: - type: Transform @@ -7779,6 +7866,8 @@ entities: - 7424 - 22718 - 7134 + - type: Fixtures + fixtures: {} - uid: 8254 components: - type: Transform @@ -7792,6 +7881,8 @@ entities: - 7156 - 7571 - 7569 + - type: Fixtures + fixtures: {} - uid: 8267 components: - type: Transform @@ -7809,6 +7900,8 @@ entities: - 7137 - 7131 - 7130 + - type: Fixtures + fixtures: {} - uid: 9029 components: - type: Transform @@ -7819,6 +7912,8 @@ entities: devices: - 8100 - 7567 + - type: Fixtures + fixtures: {} - uid: 9409 components: - type: Transform @@ -7830,12 +7925,16 @@ entities: - 8454 - 19771 - 19770 + - type: Fixtures + fixtures: {} - uid: 9477 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-40.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 9483 components: - type: Transform @@ -7846,6 +7945,8 @@ entities: - 7443 - 7098 - 11281 + - type: Fixtures + fixtures: {} - uid: 9671 components: - type: Transform @@ -7858,6 +7959,8 @@ entities: - 7116 - 9686 - 9864 + - type: Fixtures + fixtures: {} - uid: 9996 components: - type: Transform @@ -7867,8 +7970,10 @@ entities: devices: - 11134 - 9793 - - 9994 + - 21211 - 19806 + - type: Fixtures + fixtures: {} - uid: 10010 components: - type: Transform @@ -7888,6 +7993,22 @@ entities: - 11192 - 9774 - 4353 + - type: Fixtures + fixtures: {} + - uid: 10905 + components: + - type: MetaData + name: Atmos Burn Chamber Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-35.5 + parent: 30 + - type: DeviceList + devices: + - 14529 + - 10909 + - type: Fixtures + fixtures: {} - uid: 13470 components: - type: Transform @@ -7903,6 +8024,8 @@ entities: - 22439 - 22440 - 22061 + - type: Fixtures + fixtures: {} - uid: 13957 components: - type: Transform @@ -7924,6 +8047,8 @@ entities: - 10000 - 7099 - 7100 + - type: Fixtures + fixtures: {} - uid: 13958 components: - type: Transform @@ -7941,6 +8066,8 @@ entities: - 9884 - 7226 - 19562 + - type: Fixtures + fixtures: {} - uid: 13966 components: - type: Transform @@ -7952,6 +8079,8 @@ entities: - 10042 - 9903 - 11011 + - type: Fixtures + fixtures: {} - uid: 14365 components: - type: Transform @@ -7973,6 +8102,8 @@ entities: - 22702 - 18074 - 18214 + - type: Fixtures + fixtures: {} - uid: 17960 components: - type: Transform @@ -7985,6 +8116,8 @@ entities: - 18435 - 18436 - 18437 + - type: Fixtures + fixtures: {} - uid: 18082 components: - type: Transform @@ -7995,6 +8128,8 @@ entities: devices: - 3077 - 3076 + - type: Fixtures + fixtures: {} - uid: 19145 components: - type: Transform @@ -8006,6 +8141,8 @@ entities: - 6935 - 6920 - 22554 + - type: Fixtures + fixtures: {} - uid: 19570 components: - type: Transform @@ -8018,6 +8155,8 @@ entities: - 9995 - 8311 - 9839 + - type: Fixtures + fixtures: {} - uid: 20325 components: - type: Transform @@ -8033,6 +8172,8 @@ entities: - 18442 - 18439 - 17228 + - type: Fixtures + fixtures: {} - uid: 21747 components: - type: Transform @@ -8049,6 +8190,8 @@ entities: - 21749 - 11178 - 11179 + - type: Fixtures + fixtures: {} - uid: 21755 components: - type: Transform @@ -8056,13 +8199,14 @@ entities: parent: 30 - type: DeviceList devices: - - 21756 - 22855 - 22854 - 9301 - 9300 - 4241 - 9769 + - type: Fixtures + fixtures: {} - uid: 21760 components: - type: Transform @@ -8073,6 +8217,8 @@ entities: devices: - 11214 - 21761 + - type: Fixtures + fixtures: {} - uid: 21762 components: - type: Transform @@ -8089,6 +8235,8 @@ entities: - 12039 - 16096 - 11714 + - type: Fixtures + fixtures: {} - uid: 21771 components: - type: Transform @@ -8108,6 +8256,8 @@ entities: - 21772 - 11201 - 11200 + - type: Fixtures + fixtures: {} - uid: 21774 components: - type: Transform @@ -8125,6 +8275,8 @@ entities: - 21773 - 11211 - 11210 + - type: Fixtures + fixtures: {} - uid: 21777 components: - type: Transform @@ -8145,6 +8297,8 @@ entities: - 11220 - 11219 - 20335 + - type: Fixtures + fixtures: {} - uid: 21781 components: - type: Transform @@ -8162,6 +8316,8 @@ entities: - 8468 - 11221 - 11222 + - type: Fixtures + fixtures: {} - uid: 21783 components: - type: Transform @@ -8180,6 +8336,8 @@ entities: - 11939 - 14540 - 11991 + - type: Fixtures + fixtures: {} - uid: 21785 components: - type: Transform @@ -8201,6 +8359,8 @@ entities: - 12060 - 11922 - 22816 + - type: Fixtures + fixtures: {} - uid: 21789 components: - type: Transform @@ -8213,6 +8373,8 @@ entities: - 12043 - 12044 - 12010 + - type: Fixtures + fixtures: {} - uid: 21791 components: - type: Transform @@ -8225,6 +8387,8 @@ entities: - 21792 - 11985 - 11981 + - type: Fixtures + fixtures: {} - uid: 21796 components: - type: Transform @@ -8241,6 +8405,8 @@ entities: - 21794 - 11218 - 11217 + - type: Fixtures + fixtures: {} - uid: 21797 components: - type: Transform @@ -8273,6 +8439,8 @@ entities: - 3407 - 3409 - 3410 + - type: Fixtures + fixtures: {} - uid: 21801 components: - type: Transform @@ -8295,6 +8463,8 @@ entities: - 22744 - 22739 - 22740 + - type: Fixtures + fixtures: {} - uid: 21814 components: - type: Transform @@ -8305,6 +8475,8 @@ entities: - 21813 - 8223 - 8224 + - type: Fixtures + fixtures: {} - uid: 21835 components: - type: Transform @@ -8315,6 +8487,8 @@ entities: - 6911 - 21836 - 6900 + - type: Fixtures + fixtures: {} - uid: 21840 components: - type: Transform @@ -8326,6 +8500,8 @@ entities: - 21839 - 18730 - 18732 + - type: Fixtures + fixtures: {} - uid: 21841 components: - type: Transform @@ -8339,6 +8515,8 @@ entities: - 18758 - 18759 - 21843 + - type: Fixtures + fixtures: {} - uid: 21846 components: - type: Transform @@ -8350,6 +8528,8 @@ entities: - 18519 - 18662 - 21847 + - type: Fixtures + fixtures: {} - uid: 21849 components: - type: Transform @@ -8360,6 +8540,8 @@ entities: - 18655 - 18520 - 21848 + - type: Fixtures + fixtures: {} - uid: 21850 components: - type: Transform @@ -8373,6 +8555,8 @@ entities: - 21851 - 18524 - 18629 + - type: Fixtures + fixtures: {} - uid: 21855 components: - type: Transform @@ -8386,6 +8570,8 @@ entities: - 21854 - 20351 - 20352 + - type: Fixtures + fixtures: {} - uid: 21856 components: - type: Transform @@ -8399,6 +8585,8 @@ entities: - 20348 - 18451 - 18450 + - type: Fixtures + fixtures: {} - uid: 21863 components: - type: Transform @@ -8414,6 +8602,8 @@ entities: - 3147 - 3136 - 3135 + - type: Fixtures + fixtures: {} - uid: 21868 components: - type: Transform @@ -8433,6 +8623,8 @@ entities: - 3100 - 3111 - 3112 + - type: Fixtures + fixtures: {} - uid: 21872 components: - type: Transform @@ -8451,6 +8643,8 @@ entities: - 3267 - 3253 - 3254 + - type: Fixtures + fixtures: {} - uid: 21874 components: - type: Transform @@ -8471,6 +8665,8 @@ entities: - 1102 - 3069 - 3068 + - type: Fixtures + fixtures: {} - uid: 21878 components: - type: Transform @@ -8486,6 +8682,8 @@ entities: - 3323 - 3318 - 3324 + - type: Fixtures + fixtures: {} - uid: 21879 components: - type: Transform @@ -8506,6 +8704,8 @@ entities: - 3327 - 3326 - 3325 + - type: Fixtures + fixtures: {} - uid: 21883 components: - type: Transform @@ -8526,6 +8726,8 @@ entities: - 21882 - 3067 - 3066 + - type: Fixtures + fixtures: {} - uid: 21886 components: - type: Transform @@ -8546,6 +8748,8 @@ entities: - 21885 - 3065 - 3064 + - type: Fixtures + fixtures: {} - uid: 21888 components: - type: Transform @@ -8568,6 +8772,8 @@ entities: - 21890 - 22764 - 22763 + - type: Fixtures + fixtures: {} - uid: 21897 components: - type: Transform @@ -8581,6 +8787,8 @@ entities: - 21896 - 2493 - 2492 + - type: Fixtures + fixtures: {} - uid: 21899 components: - type: Transform @@ -8592,6 +8800,8 @@ entities: - 21900 - 2490 - 2491 + - type: Fixtures + fixtures: {} - uid: 21901 components: - type: Transform @@ -8602,6 +8812,8 @@ entities: - 21902 - 2483 - 2482 + - type: Fixtures + fixtures: {} - uid: 21903 components: - type: Transform @@ -8623,6 +8835,8 @@ entities: - 21895 - 2523 - 2525 + - type: Fixtures + fixtures: {} - uid: 21917 components: - type: Transform @@ -8639,6 +8853,8 @@ entities: - 2526 - 2524 - 2030 + - type: Fixtures + fixtures: {} - uid: 21921 components: - type: Transform @@ -8648,6 +8864,8 @@ entities: devices: - 21920 - 2593 + - type: Fixtures + fixtures: {} - uid: 21922 components: - type: Transform @@ -8659,6 +8877,8 @@ entities: - 21923 - 2573 - 2574 + - type: Fixtures + fixtures: {} - uid: 21924 components: - type: Transform @@ -8670,6 +8890,8 @@ entities: - 3041 - 3042 - 21925 + - type: Fixtures + fixtures: {} - uid: 21928 components: - type: Transform @@ -8686,6 +8908,8 @@ entities: - 6104 - 6109 - 6108 + - type: Fixtures + fixtures: {} - uid: 21930 components: - type: Transform @@ -8704,6 +8928,8 @@ entities: - 6092 - 6113 - 6112 + - type: Fixtures + fixtures: {} - uid: 21932 components: - type: Transform @@ -8715,6 +8941,8 @@ entities: - 6122 - 21933 - 6123 + - type: Fixtures + fixtures: {} - uid: 21939 components: - type: Transform @@ -8726,6 +8954,8 @@ entities: - 6222 - 21940 - 21674 + - type: Fixtures + fixtures: {} - uid: 21941 components: - type: Transform @@ -8741,6 +8971,8 @@ entities: - 5650 - 6204 - 6205 + - type: Fixtures + fixtures: {} - uid: 21944 components: - type: Transform @@ -8752,6 +8984,8 @@ entities: - 21945 - 6213 - 6214 + - type: Fixtures + fixtures: {} - uid: 21946 components: - type: Transform @@ -8762,6 +8996,8 @@ entities: - 21947 - 6266 - 6246 + - type: Fixtures + fixtures: {} - uid: 22028 components: - type: Transform @@ -8785,6 +9021,8 @@ entities: - 6537 - 6536 - 12587 + - type: Fixtures + fixtures: {} - uid: 22030 components: - type: Transform @@ -8802,6 +9040,8 @@ entities: - 12539 - 12538 - 11275 + - type: Fixtures + fixtures: {} - uid: 22035 components: - type: Transform @@ -8819,6 +9059,8 @@ entities: - 22676 - 12482 - 22036 + - type: Fixtures + fixtures: {} - uid: 22038 components: - type: Transform @@ -8841,6 +9083,8 @@ entities: - 22039 - 12537 - 12536 + - type: Fixtures + fixtures: {} - uid: 22043 components: - type: Transform @@ -8854,6 +9098,8 @@ entities: - 22695 - 13798 - 13789 + - type: Fixtures + fixtures: {} - uid: 22045 components: - type: Transform @@ -8867,6 +9113,8 @@ entities: - 21553 - 22046 - 22044 + - type: Fixtures + fixtures: {} - uid: 22047 components: - type: Transform @@ -8878,6 +9126,8 @@ entities: - 22046 - 21549 - 21545 + - type: Fixtures + fixtures: {} - uid: 22048 components: - type: Transform @@ -8895,6 +9145,8 @@ entities: - 13004 - 13084 - 22050 + - type: Fixtures + fixtures: {} - uid: 22052 components: - type: Transform @@ -8908,6 +9160,8 @@ entities: - 22053 - 12959 - 12813 + - type: Fixtures + fixtures: {} - uid: 22057 components: - type: Transform @@ -8918,6 +9172,8 @@ entities: - 22058 - 13360 - 12824 + - type: Fixtures + fixtures: {} - uid: 22062 components: - type: Transform @@ -8933,6 +9189,8 @@ entities: - 22864 - 22870 - 22869 + - type: Fixtures + fixtures: {} - uid: 22065 components: - type: Transform @@ -8952,6 +9210,8 @@ entities: - 22066 - 11223 - 11224 + - type: Fixtures + fixtures: {} - uid: 22067 components: - type: Transform @@ -8969,6 +9229,8 @@ entities: - 12620 - 13335 - 13336 + - type: Fixtures + fixtures: {} - uid: 22070 components: - type: Transform @@ -8979,6 +9241,8 @@ entities: - 13080 - 22071 - 13006 + - type: Fixtures + fixtures: {} - uid: 22073 components: - type: Transform @@ -8991,6 +9255,8 @@ entities: - 22072 - 3358 - 14510 + - type: Fixtures + fixtures: {} - uid: 22075 components: - type: Transform @@ -9008,6 +9274,8 @@ entities: - 22077 - 3400 - 3401 + - type: Fixtures + fixtures: {} - uid: 22078 components: - type: Transform @@ -9018,6 +9286,8 @@ entities: - 3482 - 22079 - 3479 + - type: Fixtures + fixtures: {} - uid: 22081 components: - type: Transform @@ -9036,6 +9306,8 @@ entities: - 651 - 3485 - 3486 + - type: Fixtures + fixtures: {} - uid: 22083 components: - type: Transform @@ -9047,6 +9319,8 @@ entities: - 22084 - 3484 - 3481 + - type: Fixtures + fixtures: {} - uid: 22286 components: - type: Transform @@ -9057,6 +9331,8 @@ entities: devices: - 3480 - 3483 + - type: Fixtures + fixtures: {} - uid: 22553 components: - type: Transform @@ -9067,6 +9343,8 @@ entities: devices: - 9713 - 22726 + - type: Fixtures + fixtures: {} - uid: 22555 components: - type: Transform @@ -9077,6 +9355,8 @@ entities: devices: - 7115 - 7119 + - type: Fixtures + fixtures: {} - uid: 22672 components: - type: Transform @@ -9089,6 +9369,8 @@ entities: - 22694 - 22673 - 22674 + - type: Fixtures + fixtures: {} - uid: 22696 components: - type: Transform @@ -9099,6 +9381,8 @@ entities: devices: - 12583 - 22697 + - type: Fixtures + fixtures: {} - uid: 22703 components: - type: Transform @@ -9108,6 +9392,8 @@ entities: devices: - 13079 - 13005 + - type: Fixtures + fixtures: {} - uid: 22705 components: - type: Transform @@ -9118,6 +9404,8 @@ entities: devices: - 3469 - 3398 + - type: Fixtures + fixtures: {} - uid: 22714 components: - type: Transform @@ -9127,6 +9415,8 @@ entities: devices: - 22706 - 22707 + - type: Fixtures + fixtures: {} - uid: 22715 components: - type: Transform @@ -9137,6 +9427,8 @@ entities: devices: - 11209 - 11208 + - type: Fixtures + fixtures: {} - uid: 22716 components: - type: Transform @@ -9149,6 +9441,8 @@ entities: - 7377 - 7373 - 21809 + - type: Fixtures + fixtures: {} - uid: 22717 components: - type: Transform @@ -9158,6 +9452,8 @@ entities: devices: - 7407 - 6939 + - type: Fixtures + fixtures: {} - uid: 22725 components: - type: Transform @@ -9167,6 +9463,8 @@ entities: devices: - 22719 - 8316 + - type: Fixtures + fixtures: {} - uid: 22730 components: - type: Transform @@ -9176,6 +9474,8 @@ entities: devices: - 22727 - 13790 + - type: Fixtures + fixtures: {} - uid: 22738 components: - type: Transform @@ -9186,6 +9486,8 @@ entities: devices: - 22731 - 22732 + - type: Fixtures + fixtures: {} - uid: 22745 components: - type: Transform @@ -9196,6 +9498,8 @@ entities: devices: - 3376 - 3377 + - type: Fixtures + fixtures: {} - uid: 22746 components: - type: Transform @@ -9206,6 +9510,8 @@ entities: devices: - 3253 - 3254 + - type: Fixtures + fixtures: {} - uid: 22757 components: - type: Transform @@ -9216,6 +9522,8 @@ entities: devices: - 22748 - 22747 + - type: Fixtures + fixtures: {} - uid: 22758 components: - type: Transform @@ -9226,6 +9534,8 @@ entities: devices: - 6239 - 6265 + - type: Fixtures + fixtures: {} - uid: 22759 components: - type: Transform @@ -9236,6 +9546,8 @@ entities: devices: - 6245 - 6268 + - type: Fixtures + fixtures: {} - uid: 22760 components: - type: Transform @@ -9245,6 +9557,8 @@ entities: devices: - 2742 - 2743 + - type: Fixtures + fixtures: {} - uid: 22775 components: - type: Transform @@ -9262,12 +9576,16 @@ entities: - 21893 - 21894 - 21895 + - type: Fixtures + fixtures: {} - uid: 22790 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,50.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 22812 components: - type: Transform @@ -9278,6 +9596,8 @@ entities: devices: - 22798 - 22797 + - type: Fixtures + fixtures: {} - uid: 22813 components: - type: Transform @@ -9292,6 +9612,8 @@ entities: - 11868 - 12230 - 22814 + - type: Fixtures + fixtures: {} - uid: 22817 components: - type: Transform @@ -9301,6 +9623,8 @@ entities: devices: - 10233 - 18547 + - type: Fixtures + fixtures: {} - uid: 22818 components: - type: Transform @@ -9310,6 +9634,8 @@ entities: devices: - 18744 - 18753 + - type: Fixtures + fixtures: {} - uid: 22819 components: - type: Transform @@ -9319,6 +9645,8 @@ entities: devices: - 18745 - 18754 + - type: Fixtures + fixtures: {} - uid: 22820 components: - type: Transform @@ -9331,6 +9659,8 @@ entities: - 18630 - 18523 - 18668 + - type: Fixtures + fixtures: {} - uid: 22821 components: - type: Transform @@ -9341,6 +9671,8 @@ entities: devices: - 8297 - 9897 + - type: Fixtures + fixtures: {} - uid: 22822 components: - type: Transform @@ -9353,6 +9685,8 @@ entities: - 8335 - 11280 - 9839 + - type: Fixtures + fixtures: {} - uid: 22825 components: - type: Transform @@ -9363,6 +9697,8 @@ entities: devices: - 11026 - 10752 + - type: Fixtures + fixtures: {} - uid: 22826 components: - type: Transform @@ -9372,6 +9708,8 @@ entities: devices: - 10043 - 10022 + - type: Fixtures + fixtures: {} - uid: 22827 components: - type: Transform @@ -9382,6 +9720,8 @@ entities: devices: - 9899 - 9908 + - type: Fixtures + fixtures: {} - uid: 22838 components: - type: Transform @@ -9397,6 +9737,8 @@ entities: - 9306 - 9304 - 9305 + - type: Fixtures + fixtures: {} - uid: 22839 components: - type: Transform @@ -9408,6 +9750,8 @@ entities: - 22831 - 22830 - 11282 + - type: Fixtures + fixtures: {} - uid: 22840 components: - type: Transform @@ -9425,6 +9769,8 @@ entities: - 9304 - 9306 - 9999 + - type: Fixtures + fixtures: {} - uid: 22853 components: - type: Transform @@ -9435,6 +9781,8 @@ entities: devices: - 22841 - 22842 + - type: Fixtures + fixtures: {} - uid: 22862 components: - type: Transform @@ -9447,6 +9795,8 @@ entities: - 15441 - 15619 - 22863 + - type: Fixtures + fixtures: {} - uid: 22868 components: - type: Transform @@ -9459,6 +9809,8 @@ entities: - 22061 - 13391 - 12858 + - type: Fixtures + fixtures: {} - uid: 22872 components: - type: Transform @@ -9468,6 +9820,8 @@ entities: - type: DeviceList devices: - 13469 + - type: Fixtures + fixtures: {} - uid: 22873 components: - type: Transform @@ -9476,6 +9830,8 @@ entities: - type: DeviceList devices: - 22024 + - type: Fixtures + fixtures: {} - uid: 22874 components: - type: Transform @@ -9485,6 +9841,19 @@ entities: - type: DeviceList devices: - 22023 + - type: Fixtures + fixtures: {} + - uid: 23312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-55.5 + parent: 30 + - type: DeviceList + devices: + - 21653 + - type: Fixtures + fixtures: {} - proto: AirAlarmElectronics entities: - uid: 15214 @@ -9559,7 +9928,6 @@ entities: - uid: 1901 components: - type: Transform - rot: 3.141592653589793 rad pos: -44.5,60.5 parent: 30 - uid: 6298 @@ -10121,7 +10489,6 @@ entities: - uid: 5850 components: - type: Transform - rot: 3.141592653589793 rad pos: -53.5,46.5 parent: 30 - uid: 6384 @@ -10266,6 +10633,18 @@ entities: 1695: - - DoorStatus - DoorBolt + - uid: 9182 + components: + - type: Transform + pos: 6.5,-55.5 + parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9505: + - - DoorStatus + - DoorBolt - uid: 9501 components: - type: Transform @@ -10278,6 +10657,33 @@ entities: 10789: - - DoorStatus - DoorBolt + - uid: 9505 + components: + - type: Transform + pos: 5.5,-54.5 + parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9182: + - - DoorStatus + - DoorBolt + 9509: + - - DoorStatus + - DoorBolt + - uid: 9509 + components: + - type: Transform + pos: 6.5,-53.5 + parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9505: + - - DoorStatus + - DoorBolt - uid: 9879 components: - type: Transform @@ -10446,34 +10852,6 @@ entities: parent: 30 - proto: AirlockExternalGlassEngineeringLocked entities: - - uid: 9342 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-44.5 - parent: 30 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 10559: - - - DoorStatus - - DoorBolt - - uid: 10559 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-45.5 - parent: 30 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 9342: - - - DoorStatus - - DoorBolt - lastSignals: - DoorStatus: True - uid: 20059 components: - type: Transform @@ -10518,54 +10896,6 @@ entities: 5390: - - DoorStatus - DoorBolt - - uid: 9654 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-54.5 - parent: 30 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 9655: - - - DoorStatus - - DoorBolt - 9675: - - - DoorStatus - - DoorBolt - - uid: 9655 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-56.5 - parent: 30 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 9654: - - - DoorStatus - - DoorBolt - 9675: - - - DoorStatus - - DoorBolt - - uid: 9675 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-56.5 - parent: 30 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 9654: - - - DoorStatus - - DoorBolt - 9655: - - - DoorStatus - - DoorBolt - uid: 15334 components: - type: Transform @@ -11550,7 +11880,7 @@ entities: pos: 34.5,45.5 parent: 30 - type: Door - secondsUntilStateChange: -19680.645 + secondsUntilStateChange: -25488.797 state: Opening - type: DeviceLinkSource lastSignals: @@ -12108,7 +12438,6 @@ entities: - uid: 1710 components: - type: Transform - rot: 1.5707963267948966 rad pos: -47.5,56.5 parent: 30 - type: DeviceNetwork @@ -12130,7 +12459,6 @@ entities: - uid: 2718 components: - type: Transform - rot: 3.141592653589793 rad pos: -47.5,41.5 parent: 30 - type: DeviceNetwork @@ -12148,7 +12476,6 @@ entities: - uid: 4529 components: - type: Transform - rot: 1.5707963267948966 rad pos: -47.5,66.5 parent: 30 - type: DeviceNetwork @@ -12157,7 +12484,6 @@ entities: - uid: 4667 components: - type: Transform - rot: 1.5707963267948966 rad pos: -51.5,56.5 parent: 30 - type: DeviceNetwork @@ -12166,7 +12492,6 @@ entities: - uid: 4669 components: - type: Transform - rot: 1.5707963267948966 rad pos: -51.5,52.5 parent: 30 - type: DeviceNetwork @@ -12220,14 +12545,6 @@ entities: deviceLists: - 8262 - 8254 - - uid: 9994 - components: - - type: Transform - pos: 0.5,-48.5 - parent: 30 - - type: DeviceNetwork - deviceLists: - - 9996 - uid: 9995 components: - type: Transform @@ -12255,6 +12572,14 @@ entities: deviceLists: - 13957 - 13959 + - uid: 14529 + components: + - type: Transform + pos: 12.5,-40.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 10905 - uid: 17227 components: - type: Transform @@ -12287,16 +12612,27 @@ entities: - type: Transform pos: -56.5,-23.5 parent: 30 + - uid: 21211 + components: + - type: Transform + pos: -0.5,-48.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 9996 + - uid: 21653 + components: + - type: Transform + pos: 2.5,-58.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 23312 - uid: 21749 components: - type: Transform pos: -2.5,-25.5 parent: 30 - - uid: 21756 - components: - - type: Transform - pos: 12.5,-36.5 - parent: 30 - uid: 21761 components: - type: Transform @@ -12848,6 +13184,8 @@ entities: - type: Transform pos: -26.5,14.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 407 components: - type: MetaData @@ -12856,6 +13194,8 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,13.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 409 components: - type: MetaData @@ -12865,6 +13205,8 @@ entities: parent: 30 - type: Battery startingCharge: 12000 + - type: Fixtures + fixtures: {} - uid: 411 components: - type: MetaData @@ -12872,6 +13214,8 @@ entities: - type: Transform pos: -26.5,21.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 412 components: - type: MetaData @@ -12879,6 +13223,8 @@ entities: - type: Transform pos: -30.5,11.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 1462 components: - type: MetaData @@ -12887,6 +13233,8 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,32.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 1537 components: - type: MetaData @@ -12895,6 +13243,8 @@ entities: rot: -1.5707963267948966 rad pos: -48.5,20.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 1539 components: - type: MetaData @@ -12902,6 +13252,8 @@ entities: - type: Transform pos: -37.5,16.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 1653 components: - type: MetaData @@ -12910,6 +13262,8 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,32.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 1830 components: - type: MetaData @@ -12918,6 +13272,8 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,51.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 1894 components: - type: MetaData @@ -12926,6 +13282,8 @@ entities: rot: 3.141592653589793 rad pos: -37.5,50.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 2286 components: - type: MetaData @@ -12934,6 +13292,8 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,41.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 3119 components: - type: MetaData @@ -12942,6 +13302,8 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,-0.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 3522 components: - type: MetaData @@ -12950,6 +13312,8 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,53.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 3617 components: - type: MetaData @@ -12957,6 +13321,8 @@ entities: - type: Transform pos: -50.5,11.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 5051 components: - type: MetaData @@ -12965,6 +13331,8 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,40.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 5482 components: - type: MetaData @@ -12973,6 +13341,8 @@ entities: rot: 3.141592653589793 rad pos: 32.5,44.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 5561 components: - type: MetaData @@ -12981,6 +13351,8 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,42.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 5861 components: - type: MetaData @@ -12989,6 +13361,8 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,45.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 5862 components: - type: MetaData @@ -12998,6 +13372,8 @@ entities: parent: 30 - type: Battery startingCharge: 12000 + - type: Fixtures + fixtures: {} - uid: 6605 components: - type: MetaData @@ -13005,6 +13381,8 @@ entities: - type: Transform pos: 19.5,28.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 6993 components: - type: MetaData @@ -13013,6 +13391,8 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-6.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 7079 components: - type: MetaData @@ -13021,6 +13401,8 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,-11.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 7122 components: - type: MetaData @@ -13029,6 +13411,8 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,-4.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 7278 components: - type: MetaData @@ -13036,6 +13420,8 @@ entities: - type: Transform pos: -21.5,-6.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 7433 components: - type: MetaData @@ -13044,6 +13430,8 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-15.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 7600 components: - type: MetaData @@ -13052,6 +13440,8 @@ entities: rot: 3.141592653589793 rad pos: -31.5,-14.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 7610 components: - type: MetaData @@ -13059,12 +13449,16 @@ entities: - type: Transform pos: -15.5,-3.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 7614 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-0.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 7824 components: - type: MetaData @@ -13072,6 +13466,8 @@ entities: - type: Transform pos: -13.5,-7.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 7873 components: - type: MetaData @@ -13079,6 +13475,8 @@ entities: - type: Transform pos: -15.5,-17.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 8011 components: - type: MetaData @@ -13087,6 +13485,8 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,-19.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 8056 components: - type: MetaData @@ -13095,6 +13495,8 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-19.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 8087 components: - type: MetaData @@ -13103,6 +13505,8 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-23.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 8363 components: - type: MetaData @@ -13111,6 +13515,8 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-16.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 9130 components: - type: MetaData @@ -13120,6 +13526,8 @@ entities: parent: 30 - type: Battery startingCharge: 12000 + - type: Fixtures + fixtures: {} - uid: 9131 components: - type: MetaData @@ -13128,6 +13536,8 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-12.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 9272 components: - type: MetaData @@ -13135,6 +13545,8 @@ entities: - type: Transform pos: 0.5,-31.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 9628 components: - type: MetaData @@ -13143,22 +13555,30 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-2.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 9934 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-30.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 10538 components: - type: Transform pos: -24.5,-38.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 10590 components: - type: Transform pos: -20.5,-53.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 10791 components: - type: MetaData @@ -13167,11 +13587,15 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-7.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 11014 components: - type: Transform pos: -10.5,-37.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 11808 components: - type: MetaData @@ -13179,6 +13603,8 @@ entities: - type: Transform pos: 33.5,-0.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 12381 components: - type: MetaData @@ -13186,6 +13612,8 @@ entities: - type: Transform pos: 24.5,41.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 12911 components: - type: MetaData @@ -13194,6 +13622,8 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,10.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 13096 components: - type: MetaData @@ -13201,6 +13631,8 @@ entities: - type: Transform pos: 32.5,16.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 13098 components: - type: MetaData @@ -13208,6 +13640,8 @@ entities: - type: Transform pos: 20.5,24.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 13444 components: - type: MetaData @@ -13215,12 +13649,16 @@ entities: - type: Transform pos: 15.5,55.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 14364 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,13.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 14541 components: - type: MetaData @@ -13228,6 +13666,8 @@ entities: - type: Transform pos: 48.5,20.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 17938 components: - type: MetaData @@ -13235,6 +13675,8 @@ entities: - type: Transform pos: -59.5,-25.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 17939 components: - type: MetaData @@ -13243,6 +13685,8 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,-22.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 17940 components: - type: MetaData @@ -13250,6 +13694,8 @@ entities: - type: Transform pos: -65.5,-47.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 17941 components: - type: MetaData @@ -13257,34 +13703,46 @@ entities: - type: Transform pos: -76.5,-42.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20045 components: - type: Transform pos: 0.5,85.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20226 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,66.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20227 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,75.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20367 components: - type: Transform pos: 1.5,-42.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20828 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,66.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 21015 components: - type: MetaData @@ -13292,6 +13750,8 @@ entities: - type: Transform pos: -55.5,-61.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 22213 components: - type: MetaData @@ -13299,6 +13759,8 @@ entities: - type: Transform pos: -79.5,-57.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 22259 components: - type: MetaData @@ -13307,6 +13769,8 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,10.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: APCElectronics entities: - uid: 15969 @@ -13323,6 +13787,8 @@ entities: - type: Transform pos: 23.5,-0.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: AppleSeeds entities: - uid: 19555 @@ -14080,6 +14546,76 @@ entities: parent: 30 - proto: AtmosFixBlockerMarker entities: + - uid: 905 + components: + - type: Transform + pos: 11.5,-41.5 + parent: 30 + - uid: 9641 + components: + - type: Transform + pos: 11.5,-39.5 + parent: 30 + - uid: 10424 + components: + - type: Transform + pos: 11.5,-40.5 + parent: 30 + - uid: 10555 + components: + - type: Transform + pos: 12.5,-40.5 + parent: 30 + - uid: 10914 + components: + - type: Transform + pos: 17.5,-39.5 + parent: 30 + - uid: 11124 + components: + - type: Transform + pos: 21.5,-38.5 + parent: 30 + - uid: 11130 + components: + - type: Transform + pos: 13.5,-40.5 + parent: 30 + - uid: 11131 + components: + - type: Transform + pos: 13.5,-39.5 + parent: 30 + - uid: 15191 + components: + - type: Transform + pos: 17.5,-38.5 + parent: 30 + - uid: 15247 + components: + - type: Transform + pos: 13.5,-41.5 + parent: 30 + - uid: 15277 + components: + - type: Transform + pos: 17.5,-40.5 + parent: 30 + - uid: 15349 + components: + - type: Transform + pos: 12.5,-41.5 + parent: 30 + - uid: 15985 + components: + - type: Transform + pos: 21.5,-40.5 + parent: 30 + - uid: 16000 + components: + - type: Transform + pos: 21.5,-39.5 + parent: 30 - uid: 16997 components: - type: Transform @@ -14140,11 +14676,2266 @@ entities: - type: Transform pos: 27.5,-34.5 parent: 30 + - uid: 20632 + components: + - type: Transform + pos: 12.5,-39.5 + parent: 30 + - uid: 21399 + components: + - type: Transform + pos: -21.5,-74.5 + parent: 30 - uid: 22584 components: - type: Transform pos: 49.5,44.5 parent: 30 + - uid: 22789 + components: + - type: Transform + pos: -25.5,-58.5 + parent: 30 + - uid: 22792 + components: + - type: Transform + pos: -25.5,-59.5 + parent: 30 + - uid: 22793 + components: + - type: Transform + pos: -24.5,-58.5 + parent: 30 + - uid: 22794 + components: + - type: Transform + pos: -23.5,-58.5 + parent: 30 + - uid: 22795 + components: + - type: Transform + pos: -22.5,-58.5 + parent: 30 + - uid: 22796 + components: + - type: Transform + pos: -21.5,-58.5 + parent: 30 + - uid: 22938 + components: + - type: Transform + pos: -20.5,-58.5 + parent: 30 + - uid: 22971 + components: + - type: Transform + pos: -19.5,-58.5 + parent: 30 + - uid: 23166 + components: + - type: Transform + pos: -18.5,-58.5 + parent: 30 + - uid: 23170 + components: + - type: Transform + pos: -17.5,-58.5 + parent: 30 + - uid: 23171 + components: + - type: Transform + pos: -16.5,-58.5 + parent: 30 + - uid: 23172 + components: + - type: Transform + pos: -15.5,-58.5 + parent: 30 + - uid: 23223 + components: + - type: Transform + pos: -14.5,-58.5 + parent: 30 + - uid: 23224 + components: + - type: Transform + pos: -13.5,-58.5 + parent: 30 + - uid: 23225 + components: + - type: Transform + pos: -12.5,-58.5 + parent: 30 + - uid: 23226 + components: + - type: Transform + pos: -11.5,-58.5 + parent: 30 + - uid: 23227 + components: + - type: Transform + pos: -10.5,-58.5 + parent: 30 + - uid: 23228 + components: + - type: Transform + pos: -9.5,-58.5 + parent: 30 + - uid: 23229 + components: + - type: Transform + pos: -9.5,-59.5 + parent: 30 + - uid: 23230 + components: + - type: Transform + pos: -9.5,-60.5 + parent: 30 + - uid: 23234 + components: + - type: Transform + pos: -21.5,-71.5 + parent: 30 + - uid: 23235 + components: + - type: Transform + pos: -13.5,-71.5 + parent: 30 + - uid: 23236 + components: + - type: Transform + pos: -24.5,-71.5 + parent: 30 + - uid: 23237 + components: + - type: Transform + pos: -13.5,-74.5 + parent: 30 + - uid: 23239 + components: + - type: Transform + pos: -10.5,-71.5 + parent: 30 + - uid: 23240 + components: + - type: Transform + pos: -17.5,-67.5 + parent: 30 + - uid: 23241 + components: + - type: Transform + pos: -13.5,-63.5 + parent: 30 + - uid: 23242 + components: + - type: Transform + pos: -10.5,-63.5 + parent: 30 + - uid: 23243 + components: + - type: Transform + pos: -21.5,-63.5 + parent: 30 + - uid: 23244 + components: + - type: Transform + pos: -24.5,-63.5 + parent: 30 + - uid: 23246 + components: + - type: Transform + pos: -21.5,-60.5 + parent: 30 + - uid: 23247 + components: + - type: Transform + pos: -20.5,-60.5 + parent: 30 + - uid: 23248 + components: + - type: Transform + pos: -19.5,-60.5 + parent: 30 + - uid: 23249 + components: + - type: Transform + pos: -18.5,-60.5 + parent: 30 + - uid: 23250 + components: + - type: Transform + pos: -17.5,-60.5 + parent: 30 + - uid: 23251 + components: + - type: Transform + pos: -16.5,-60.5 + parent: 30 + - uid: 23252 + components: + - type: Transform + pos: -14.5,-60.5 + parent: 30 + - uid: 23253 + components: + - type: Transform + pos: -13.5,-60.5 + parent: 30 + - uid: 23254 + components: + - type: Transform + pos: -15.5,-60.5 + parent: 30 + - uid: 23255 + components: + - type: Transform + pos: 1.5,-58.5 + parent: 30 + - uid: 23256 + components: + - type: Transform + pos: 1.5,-59.5 + parent: 30 + - uid: 23257 + components: + - type: Transform + pos: 1.5,-60.5 + parent: 30 + - uid: 23258 + components: + - type: Transform + pos: 2.5,-58.5 + parent: 30 + - uid: 23259 + components: + - type: Transform + pos: 2.5,-59.5 + parent: 30 + - uid: 23260 + components: + - type: Transform + pos: 2.5,-60.5 + parent: 30 + - uid: 23261 + components: + - type: Transform + pos: 3.5,-58.5 + parent: 30 + - uid: 23262 + components: + - type: Transform + pos: 3.5,-59.5 + parent: 30 + - uid: 23263 + components: + - type: Transform + pos: 3.5,-60.5 + parent: 30 + - uid: 23264 + components: + - type: Transform + pos: 3.5,-56.5 + parent: 30 + - uid: 23265 + components: + - type: Transform + pos: 2.5,-56.5 + parent: 30 + - uid: 23266 + components: + - type: Transform + pos: 1.5,-56.5 + parent: 30 + - uid: 23267 + components: + - type: Transform + pos: -2.5,-56.5 + parent: 30 + - uid: 23268 + components: + - type: Transform + pos: -3.5,-56.5 + parent: 30 + - uid: 23269 + components: + - type: Transform + pos: -4.5,-56.5 + parent: 30 + - uid: 23383 + components: + - type: Transform + pos: -24.5,-68.5 + parent: 30 + - uid: 23384 + components: + - type: Transform + pos: 7.5,46.5 + parent: 30 + - uid: 23392 + components: + - type: Transform + pos: -9.5,-61.5 + parent: 30 + - uid: 23397 + components: + - type: Transform + pos: -18.5,-68.5 + parent: 30 + - uid: 23398 + components: + - type: Transform + pos: -18.5,-66.5 + parent: 30 + - uid: 23399 + components: + - type: Transform + pos: -16.5,-66.5 + parent: 30 + - uid: 23400 + components: + - type: Transform + pos: -16.5,-68.5 + parent: 30 + - uid: 23401 + components: + - type: Transform + pos: -24.5,-66.5 + parent: 30 + - uid: 23402 + components: + - type: Transform + pos: 3.5,47.5 + parent: 30 + - uid: 23403 + components: + - type: Transform + pos: -10.5,-66.5 + parent: 30 + - uid: 23404 + components: + - type: Transform + pos: -10.5,-68.5 + parent: 30 + - uid: 23405 + components: + - type: Transform + pos: -16.5,-74.5 + parent: 30 + - uid: 23406 + components: + - type: Transform + pos: -18.5,-74.5 + parent: 30 + - uid: 23409 + components: + - type: Transform + pos: 6.5,46.5 + parent: 30 + - uid: 23410 + components: + - type: Transform + pos: 5.5,46.5 + parent: 30 + - uid: 23411 + components: + - type: Transform + pos: 4.5,46.5 + parent: 30 + - uid: 23412 + components: + - type: Transform + pos: 2.5,46.5 + parent: 30 + - uid: 23413 + components: + - type: Transform + pos: 3.5,46.5 + parent: 30 + - uid: 23414 + components: + - type: Transform + pos: 3.5,48.5 + parent: 30 + - uid: 23415 + components: + - type: Transform + pos: 3.5,49.5 + parent: 30 + - uid: 23416 + components: + - type: Transform + pos: 3.5,50.5 + parent: 30 + - uid: 23417 + components: + - type: Transform + pos: 3.5,51.5 + parent: 30 + - uid: 23418 + components: + - type: Transform + pos: 3.5,52.5 + parent: 30 + - uid: 23419 + components: + - type: Transform + pos: 3.5,53.5 + parent: 30 + - uid: 23420 + components: + - type: Transform + pos: -56.5,62.5 + parent: 30 + - uid: 23421 + components: + - type: Transform + pos: 9.5,54.5 + parent: 30 + - uid: 23422 + components: + - type: Transform + pos: 8.5,54.5 + parent: 30 + - uid: 23423 + components: + - type: Transform + pos: 7.5,54.5 + parent: 30 + - uid: 23424 + components: + - type: Transform + pos: 6.5,54.5 + parent: 30 + - uid: 23425 + components: + - type: Transform + pos: 5.5,54.5 + parent: 30 + - uid: 23426 + components: + - type: Transform + pos: 4.5,54.5 + parent: 30 + - uid: 23427 + components: + - type: Transform + pos: 3.5,54.5 + parent: 30 + - uid: 23428 + components: + - type: Transform + pos: 2.5,54.5 + parent: 30 + - uid: 23429 + components: + - type: Transform + pos: 1.5,54.5 + parent: 30 + - uid: 23430 + components: + - type: Transform + pos: 0.5,54.5 + parent: 30 + - uid: 23431 + components: + - type: Transform + pos: -0.5,54.5 + parent: 30 + - uid: 23432 + components: + - type: Transform + pos: -1.5,54.5 + parent: 30 + - uid: 23433 + components: + - type: Transform + pos: -2.5,54.5 + parent: 30 + - uid: 23434 + components: + - type: Transform + pos: -4.5,54.5 + parent: 30 + - uid: 23435 + components: + - type: Transform + pos: -3.5,54.5 + parent: 30 + - uid: 23436 + components: + - type: Transform + pos: 3.5,55.5 + parent: 30 + - uid: 23437 + components: + - type: Transform + pos: 3.5,56.5 + parent: 30 + - uid: 23438 + components: + - type: Transform + pos: 3.5,57.5 + parent: 30 + - uid: 23439 + components: + - type: Transform + pos: 3.5,59.5 + parent: 30 + - uid: 23440 + components: + - type: Transform + pos: 3.5,60.5 + parent: 30 + - uid: 23441 + components: + - type: Transform + pos: 3.5,58.5 + parent: 30 + - uid: 23442 + components: + - type: Transform + pos: -4.5,60.5 + parent: 30 + - uid: 23443 + components: + - type: Transform + pos: -4.5,59.5 + parent: 30 + - uid: 23444 + components: + - type: Transform + pos: -4.5,58.5 + parent: 30 + - uid: 23445 + components: + - type: Transform + pos: -4.5,57.5 + parent: 30 + - uid: 23446 + components: + - type: Transform + pos: -4.5,56.5 + parent: 30 + - uid: 23447 + components: + - type: Transform + pos: -4.5,55.5 + parent: 30 + - uid: 23448 + components: + - type: Transform + pos: -0.5,55.5 + parent: 30 + - uid: 23449 + components: + - type: Transform + pos: -0.5,56.5 + parent: 30 + - uid: 23450 + components: + - type: Transform + pos: -0.5,57.5 + parent: 30 + - uid: 23451 + components: + - type: Transform + pos: -0.5,58.5 + parent: 30 + - uid: 23452 + components: + - type: Transform + pos: -0.5,59.5 + parent: 30 + - uid: 23453 + components: + - type: Transform + pos: 0.5,59.5 + parent: 30 + - uid: 23454 + components: + - type: Transform + pos: -1.5,59.5 + parent: 30 + - uid: 23455 + components: + - type: Transform + pos: -0.5,53.5 + parent: 30 + - uid: 23456 + components: + - type: Transform + pos: -0.5,52.5 + parent: 30 + - uid: 23457 + components: + - type: Transform + pos: -0.5,51.5 + parent: 30 + - uid: 23458 + components: + - type: Transform + pos: -0.5,50.5 + parent: 30 + - uid: 23459 + components: + - type: Transform + pos: -0.5,49.5 + parent: 30 + - uid: 23460 + components: + - type: Transform + pos: -0.5,48.5 + parent: 30 + - uid: 23461 + components: + - type: Transform + pos: -1.5,48.5 + parent: 30 + - uid: 23462 + components: + - type: Transform + pos: -2.5,48.5 + parent: 30 + - uid: 23463 + components: + - type: Transform + pos: -3.5,48.5 + parent: 30 + - uid: 23464 + components: + - type: Transform + pos: -4.5,48.5 + parent: 30 + - uid: 23465 + components: + - type: Transform + pos: -5.5,48.5 + parent: 30 + - uid: 23466 + components: + - type: Transform + pos: -6.5,48.5 + parent: 30 + - uid: 23467 + components: + - type: Transform + pos: -7.5,48.5 + parent: 30 + - uid: 23468 + components: + - type: Transform + pos: -8.5,48.5 + parent: 30 + - uid: 23469 + components: + - type: Transform + pos: -9.5,48.5 + parent: 30 + - uid: 23470 + components: + - type: Transform + pos: -10.5,48.5 + parent: 30 + - uid: 23471 + components: + - type: Transform + pos: -12.5,48.5 + parent: 30 + - uid: 23472 + components: + - type: Transform + pos: -13.5,48.5 + parent: 30 + - uid: 23473 + components: + - type: Transform + pos: -14.5,48.5 + parent: 30 + - uid: 23474 + components: + - type: Transform + pos: -11.5,48.5 + parent: 30 + - uid: 23475 + components: + - type: Transform + pos: -14.5,47.5 + parent: 30 + - uid: 23476 + components: + - type: Transform + pos: -14.5,46.5 + parent: 30 + - uid: 23477 + components: + - type: Transform + pos: -15.5,46.5 + parent: 30 + - uid: 23478 + components: + - type: Transform + pos: -16.5,46.5 + parent: 30 + - uid: 23479 + components: + - type: Transform + pos: -16.5,45.5 + parent: 30 + - uid: 23480 + components: + - type: Transform + pos: -16.5,44.5 + parent: 30 + - uid: 23481 + components: + - type: Transform + pos: -16.5,43.5 + parent: 30 + - uid: 23482 + components: + - type: Transform + pos: -17.5,43.5 + parent: 30 + - uid: 23483 + components: + - type: Transform + pos: -4.5,53.5 + parent: 30 + - uid: 23484 + components: + - type: Transform + pos: -4.5,52.5 + parent: 30 + - uid: 23485 + components: + - type: Transform + pos: -4.5,51.5 + parent: 30 + - uid: 23486 + components: + - type: Transform + pos: -4.5,50.5 + parent: 30 + - uid: 23487 + components: + - type: Transform + pos: -4.5,49.5 + parent: 30 + - uid: 23488 + components: + - type: Transform + pos: -4.5,47.5 + parent: 30 + - uid: 23489 + components: + - type: Transform + pos: -4.5,45.5 + parent: 30 + - uid: 23490 + components: + - type: Transform + pos: -4.5,46.5 + parent: 30 + - uid: 23491 + components: + - type: Transform + pos: -39.5,65.5 + parent: 30 + - uid: 23492 + components: + - type: Transform + pos: -40.5,65.5 + parent: 30 + - uid: 23493 + components: + - type: Transform + pos: -41.5,65.5 + parent: 30 + - uid: 23494 + components: + - type: Transform + pos: -69.5,43.5 + parent: 30 + - uid: 23495 + components: + - type: Transform + pos: -72.5,45.5 + parent: 30 + - uid: 23496 + components: + - type: Transform + pos: -72.5,46.5 + parent: 30 + - uid: 23497 + components: + - type: Transform + pos: -72.5,47.5 + parent: 30 + - uid: 23498 + components: + - type: Transform + pos: -72.5,48.5 + parent: 30 + - uid: 23499 + components: + - type: Transform + pos: -72.5,49.5 + parent: 30 + - uid: 23500 + components: + - type: Transform + pos: -72.5,50.5 + parent: 30 + - uid: 23501 + components: + - type: Transform + pos: -72.5,51.5 + parent: 30 + - uid: 23502 + components: + - type: Transform + pos: -72.5,52.5 + parent: 30 + - uid: 23503 + components: + - type: Transform + pos: -74.5,52.5 + parent: 30 + - uid: 23504 + components: + - type: Transform + pos: -74.5,51.5 + parent: 30 + - uid: 23505 + components: + - type: Transform + pos: -74.5,50.5 + parent: 30 + - uid: 23506 + components: + - type: Transform + pos: -74.5,49.5 + parent: 30 + - uid: 23507 + components: + - type: Transform + pos: -74.5,48.5 + parent: 30 + - uid: 23508 + components: + - type: Transform + pos: -74.5,47.5 + parent: 30 + - uid: 23509 + components: + - type: Transform + pos: -74.5,46.5 + parent: 30 + - uid: 23510 + components: + - type: Transform + pos: -74.5,45.5 + parent: 30 + - uid: 23511 + components: + - type: Transform + pos: -76.5,45.5 + parent: 30 + - uid: 23512 + components: + - type: Transform + pos: -76.5,46.5 + parent: 30 + - uid: 23513 + components: + - type: Transform + pos: -76.5,47.5 + parent: 30 + - uid: 23514 + components: + - type: Transform + pos: -76.5,48.5 + parent: 30 + - uid: 23515 + components: + - type: Transform + pos: -76.5,49.5 + parent: 30 + - uid: 23516 + components: + - type: Transform + pos: -76.5,50.5 + parent: 30 + - uid: 23517 + components: + - type: Transform + pos: -76.5,51.5 + parent: 30 + - uid: 23518 + components: + - type: Transform + pos: -76.5,52.5 + parent: 30 + - uid: 23519 + components: + - type: Transform + pos: -78.5,52.5 + parent: 30 + - uid: 23520 + components: + - type: Transform + pos: -78.5,51.5 + parent: 30 + - uid: 23521 + components: + - type: Transform + pos: -78.5,50.5 + parent: 30 + - uid: 23522 + components: + - type: Transform + pos: -78.5,49.5 + parent: 30 + - uid: 23523 + components: + - type: Transform + pos: -78.5,48.5 + parent: 30 + - uid: 23524 + components: + - type: Transform + pos: -78.5,47.5 + parent: 30 + - uid: 23525 + components: + - type: Transform + pos: -78.5,46.5 + parent: 30 + - uid: 23526 + components: + - type: Transform + pos: -78.5,45.5 + parent: 30 + - uid: 23527 + components: + - type: Transform + pos: -80.5,45.5 + parent: 30 + - uid: 23528 + components: + - type: Transform + pos: -80.5,46.5 + parent: 30 + - uid: 23529 + components: + - type: Transform + pos: -80.5,47.5 + parent: 30 + - uid: 23530 + components: + - type: Transform + pos: -80.5,48.5 + parent: 30 + - uid: 23531 + components: + - type: Transform + pos: -80.5,49.5 + parent: 30 + - uid: 23532 + components: + - type: Transform + pos: -80.5,50.5 + parent: 30 + - uid: 23533 + components: + - type: Transform + pos: -80.5,51.5 + parent: 30 + - uid: 23534 + components: + - type: Transform + pos: -80.5,52.5 + parent: 30 + - uid: 23535 + components: + - type: Transform + pos: -82.5,52.5 + parent: 30 + - uid: 23536 + components: + - type: Transform + pos: -82.5,51.5 + parent: 30 + - uid: 23537 + components: + - type: Transform + pos: -82.5,50.5 + parent: 30 + - uid: 23538 + components: + - type: Transform + pos: -82.5,49.5 + parent: 30 + - uid: 23539 + components: + - type: Transform + pos: -82.5,46.5 + parent: 30 + - uid: 23540 + components: + - type: Transform + pos: -82.5,47.5 + parent: 30 + - uid: 23541 + components: + - type: Transform + pos: -82.5,45.5 + parent: 30 + - uid: 23542 + components: + - type: Transform + pos: -82.5,48.5 + parent: 30 + - uid: 23543 + components: + - type: Transform + pos: -84.5,45.5 + parent: 30 + - uid: 23544 + components: + - type: Transform + pos: -84.5,46.5 + parent: 30 + - uid: 23545 + components: + - type: Transform + pos: -84.5,47.5 + parent: 30 + - uid: 23546 + components: + - type: Transform + pos: -84.5,48.5 + parent: 30 + - uid: 23547 + components: + - type: Transform + pos: -84.5,49.5 + parent: 30 + - uid: 23548 + components: + - type: Transform + pos: -84.5,51.5 + parent: 30 + - uid: 23549 + components: + - type: Transform + pos: -84.5,52.5 + parent: 30 + - uid: 23550 + components: + - type: Transform + pos: -84.5,50.5 + parent: 30 + - uid: 23551 + components: + - type: Transform + pos: -86.5,52.5 + parent: 30 + - uid: 23552 + components: + - type: Transform + pos: -86.5,51.5 + parent: 30 + - uid: 23553 + components: + - type: Transform + pos: -86.5,50.5 + parent: 30 + - uid: 23554 + components: + - type: Transform + pos: -86.5,49.5 + parent: 30 + - uid: 23555 + components: + - type: Transform + pos: -86.5,48.5 + parent: 30 + - uid: 23556 + components: + - type: Transform + pos: -86.5,47.5 + parent: 30 + - uid: 23557 + components: + - type: Transform + pos: -86.5,46.5 + parent: 30 + - uid: 23558 + components: + - type: Transform + pos: -86.5,45.5 + parent: 30 + - uid: 23559 + components: + - type: Transform + pos: -86.5,54.5 + parent: 30 + - uid: 23560 + components: + - type: Transform + pos: -86.5,55.5 + parent: 30 + - uid: 23561 + components: + - type: Transform + pos: -86.5,56.5 + parent: 30 + - uid: 23562 + components: + - type: Transform + pos: -86.5,57.5 + parent: 30 + - uid: 23563 + components: + - type: Transform + pos: -86.5,58.5 + parent: 30 + - uid: 23564 + components: + - type: Transform + pos: -86.5,59.5 + parent: 30 + - uid: 23565 + components: + - type: Transform + pos: -86.5,60.5 + parent: 30 + - uid: 23566 + components: + - type: Transform + pos: -86.5,61.5 + parent: 30 + - uid: 23567 + components: + - type: Transform + pos: -84.5,61.5 + parent: 30 + - uid: 23568 + components: + - type: Transform + pos: -84.5,60.5 + parent: 30 + - uid: 23569 + components: + - type: Transform + pos: -84.5,59.5 + parent: 30 + - uid: 23570 + components: + - type: Transform + pos: -84.5,58.5 + parent: 30 + - uid: 23571 + components: + - type: Transform + pos: -84.5,57.5 + parent: 30 + - uid: 23572 + components: + - type: Transform + pos: -84.5,56.5 + parent: 30 + - uid: 23573 + components: + - type: Transform + pos: -84.5,55.5 + parent: 30 + - uid: 23574 + components: + - type: Transform + pos: -84.5,54.5 + parent: 30 + - uid: 23575 + components: + - type: Transform + pos: -82.5,54.5 + parent: 30 + - uid: 23576 + components: + - type: Transform + pos: -82.5,55.5 + parent: 30 + - uid: 23577 + components: + - type: Transform + pos: -82.5,56.5 + parent: 30 + - uid: 23578 + components: + - type: Transform + pos: -82.5,57.5 + parent: 30 + - uid: 23579 + components: + - type: Transform + pos: -82.5,58.5 + parent: 30 + - uid: 23580 + components: + - type: Transform + pos: -82.5,59.5 + parent: 30 + - uid: 23581 + components: + - type: Transform + pos: -82.5,60.5 + parent: 30 + - uid: 23582 + components: + - type: Transform + pos: -82.5,61.5 + parent: 30 + - uid: 23583 + components: + - type: Transform + pos: -80.5,61.5 + parent: 30 + - uid: 23584 + components: + - type: Transform + pos: -80.5,60.5 + parent: 30 + - uid: 23585 + components: + - type: Transform + pos: -80.5,59.5 + parent: 30 + - uid: 23586 + components: + - type: Transform + pos: -80.5,58.5 + parent: 30 + - uid: 23587 + components: + - type: Transform + pos: -80.5,57.5 + parent: 30 + - uid: 23588 + components: + - type: Transform + pos: -80.5,56.5 + parent: 30 + - uid: 23589 + components: + - type: Transform + pos: -80.5,55.5 + parent: 30 + - uid: 23590 + components: + - type: Transform + pos: -80.5,54.5 + parent: 30 + - uid: 23591 + components: + - type: Transform + pos: -78.5,54.5 + parent: 30 + - uid: 23592 + components: + - type: Transform + pos: -78.5,55.5 + parent: 30 + - uid: 23593 + components: + - type: Transform + pos: -78.5,56.5 + parent: 30 + - uid: 23594 + components: + - type: Transform + pos: -78.5,57.5 + parent: 30 + - uid: 23595 + components: + - type: Transform + pos: -78.5,58.5 + parent: 30 + - uid: 23596 + components: + - type: Transform + pos: -78.5,59.5 + parent: 30 + - uid: 23597 + components: + - type: Transform + pos: -78.5,60.5 + parent: 30 + - uid: 23598 + components: + - type: Transform + pos: -78.5,61.5 + parent: 30 + - uid: 23599 + components: + - type: Transform + pos: -76.5,61.5 + parent: 30 + - uid: 23600 + components: + - type: Transform + pos: -76.5,60.5 + parent: 30 + - uid: 23601 + components: + - type: Transform + pos: -76.5,59.5 + parent: 30 + - uid: 23602 + components: + - type: Transform + pos: -76.5,58.5 + parent: 30 + - uid: 23603 + components: + - type: Transform + pos: -76.5,57.5 + parent: 30 + - uid: 23604 + components: + - type: Transform + pos: -76.5,56.5 + parent: 30 + - uid: 23605 + components: + - type: Transform + pos: -76.5,55.5 + parent: 30 + - uid: 23606 + components: + - type: Transform + pos: -76.5,54.5 + parent: 30 + - uid: 23607 + components: + - type: Transform + pos: -74.5,54.5 + parent: 30 + - uid: 23608 + components: + - type: Transform + pos: -74.5,55.5 + parent: 30 + - uid: 23609 + components: + - type: Transform + pos: -74.5,56.5 + parent: 30 + - uid: 23610 + components: + - type: Transform + pos: -74.5,57.5 + parent: 30 + - uid: 23611 + components: + - type: Transform + pos: -74.5,58.5 + parent: 30 + - uid: 23612 + components: + - type: Transform + pos: -74.5,59.5 + parent: 30 + - uid: 23613 + components: + - type: Transform + pos: -74.5,60.5 + parent: 30 + - uid: 23614 + components: + - type: Transform + pos: -74.5,61.5 + parent: 30 + - uid: 23615 + components: + - type: Transform + pos: -72.5,61.5 + parent: 30 + - uid: 23616 + components: + - type: Transform + pos: -72.5,60.5 + parent: 30 + - uid: 23617 + components: + - type: Transform + pos: -72.5,59.5 + parent: 30 + - uid: 23618 + components: + - type: Transform + pos: -72.5,58.5 + parent: 30 + - uid: 23619 + components: + - type: Transform + pos: -72.5,57.5 + parent: 30 + - uid: 23620 + components: + - type: Transform + pos: -72.5,56.5 + parent: 30 + - uid: 23621 + components: + - type: Transform + pos: -72.5,55.5 + parent: 30 + - uid: 23622 + components: + - type: Transform + pos: -72.5,54.5 + parent: 30 + - uid: 23623 + components: + - type: Transform + pos: -70.5,43.5 + parent: 30 + - uid: 23624 + components: + - type: Transform + pos: 60.5,21.5 + parent: 30 + - uid: 23625 + components: + - type: Transform + pos: 60.5,22.5 + parent: 30 + - uid: 23626 + components: + - type: Transform + pos: 60.5,23.5 + parent: 30 + - uid: 23627 + components: + - type: Transform + pos: 60.5,24.5 + parent: 30 + - uid: 23628 + components: + - type: Transform + pos: 60.5,25.5 + parent: 30 + - uid: 23629 + components: + - type: Transform + pos: 60.5,26.5 + parent: 30 + - uid: 23630 + components: + - type: Transform + pos: 60.5,27.5 + parent: 30 + - uid: 23631 + components: + - type: Transform + pos: 60.5,28.5 + parent: 30 + - uid: 23632 + components: + - type: Transform + pos: 58.5,28.5 + parent: 30 + - uid: 23633 + components: + - type: Transform + pos: 58.5,27.5 + parent: 30 + - uid: 23634 + components: + - type: Transform + pos: 58.5,26.5 + parent: 30 + - uid: 23635 + components: + - type: Transform + pos: 58.5,25.5 + parent: 30 + - uid: 23636 + components: + - type: Transform + pos: 58.5,24.5 + parent: 30 + - uid: 23637 + components: + - type: Transform + pos: 58.5,23.5 + parent: 30 + - uid: 23638 + components: + - type: Transform + pos: 58.5,22.5 + parent: 30 + - uid: 23639 + components: + - type: Transform + pos: 58.5,21.5 + parent: 30 + - uid: 23640 + components: + - type: Transform + pos: 62.5,21.5 + parent: 30 + - uid: 23641 + components: + - type: Transform + pos: 62.5,22.5 + parent: 30 + - uid: 23642 + components: + - type: Transform + pos: 62.5,23.5 + parent: 30 + - uid: 23643 + components: + - type: Transform + pos: 62.5,24.5 + parent: 30 + - uid: 23644 + components: + - type: Transform + pos: 62.5,25.5 + parent: 30 + - uid: 23645 + components: + - type: Transform + pos: 62.5,26.5 + parent: 30 + - uid: 23646 + components: + - type: Transform + pos: 62.5,27.5 + parent: 30 + - uid: 23647 + components: + - type: Transform + pos: 62.5,28.5 + parent: 30 + - uid: 23648 + components: + - type: Transform + pos: 64.5,28.5 + parent: 30 + - uid: 23649 + components: + - type: Transform + pos: 64.5,27.5 + parent: 30 + - uid: 23650 + components: + - type: Transform + pos: 64.5,26.5 + parent: 30 + - uid: 23651 + components: + - type: Transform + pos: 64.5,25.5 + parent: 30 + - uid: 23652 + components: + - type: Transform + pos: 64.5,24.5 + parent: 30 + - uid: 23653 + components: + - type: Transform + pos: 64.5,23.5 + parent: 30 + - uid: 23654 + components: + - type: Transform + pos: 64.5,22.5 + parent: 30 + - uid: 23655 + components: + - type: Transform + pos: 64.5,21.5 + parent: 30 + - uid: 23656 + components: + - type: Transform + pos: 60.5,32.5 + parent: 30 + - uid: 23657 + components: + - type: Transform + pos: 66.5,21.5 + parent: 30 + - uid: 23658 + components: + - type: Transform + pos: 66.5,22.5 + parent: 30 + - uid: 23659 + components: + - type: Transform + pos: 66.5,23.5 + parent: 30 + - uid: 23660 + components: + - type: Transform + pos: 66.5,24.5 + parent: 30 + - uid: 23661 + components: + - type: Transform + pos: 66.5,25.5 + parent: 30 + - uid: 23662 + components: + - type: Transform + pos: 66.5,26.5 + parent: 30 + - uid: 23663 + components: + - type: Transform + pos: 66.5,27.5 + parent: 30 + - uid: 23664 + components: + - type: Transform + pos: 66.5,28.5 + parent: 30 + - uid: 23665 + components: + - type: Transform + pos: 68.5,28.5 + parent: 30 + - uid: 23666 + components: + - type: Transform + pos: 68.5,27.5 + parent: 30 + - uid: 23667 + components: + - type: Transform + pos: 68.5,26.5 + parent: 30 + - uid: 23668 + components: + - type: Transform + pos: 68.5,25.5 + parent: 30 + - uid: 23669 + components: + - type: Transform + pos: 68.5,24.5 + parent: 30 + - uid: 23670 + components: + - type: Transform + pos: 68.5,23.5 + parent: 30 + - uid: 23671 + components: + - type: Transform + pos: 68.5,22.5 + parent: 30 + - uid: 23672 + components: + - type: Transform + pos: 68.5,21.5 + parent: 30 + - uid: 23673 + components: + - type: Transform + pos: 70.5,21.5 + parent: 30 + - uid: 23674 + components: + - type: Transform + pos: 70.5,22.5 + parent: 30 + - uid: 23675 + components: + - type: Transform + pos: 70.5,23.5 + parent: 30 + - uid: 23676 + components: + - type: Transform + pos: 70.5,24.5 + parent: 30 + - uid: 23677 + components: + - type: Transform + pos: 70.5,25.5 + parent: 30 + - uid: 23678 + components: + - type: Transform + pos: 70.5,26.5 + parent: 30 + - uid: 23679 + components: + - type: Transform + pos: 70.5,27.5 + parent: 30 + - uid: 23680 + components: + - type: Transform + pos: 70.5,28.5 + parent: 30 + - uid: 23681 + components: + - type: Transform + pos: 72.5,28.5 + parent: 30 + - uid: 23682 + components: + - type: Transform + pos: 72.5,27.5 + parent: 30 + - uid: 23683 + components: + - type: Transform + pos: 72.5,26.5 + parent: 30 + - uid: 23684 + components: + - type: Transform + pos: 72.5,25.5 + parent: 30 + - uid: 23685 + components: + - type: Transform + pos: 72.5,24.5 + parent: 30 + - uid: 23686 + components: + - type: Transform + pos: 72.5,23.5 + parent: 30 + - uid: 23687 + components: + - type: Transform + pos: 72.5,22.5 + parent: 30 + - uid: 23688 + components: + - type: Transform + pos: 72.5,21.5 + parent: 30 + - uid: 23689 + components: + - type: Transform + pos: 75.5,30.5 + parent: 30 + - uid: 23690 + components: + - type: Transform + pos: 72.5,32.5 + parent: 30 + - uid: 23691 + components: + - type: Transform + pos: 72.5,33.5 + parent: 30 + - uid: 23692 + components: + - type: Transform + pos: 72.5,34.5 + parent: 30 + - uid: 23693 + components: + - type: Transform + pos: 72.5,35.5 + parent: 30 + - uid: 23694 + components: + - type: Transform + pos: 72.5,36.5 + parent: 30 + - uid: 23695 + components: + - type: Transform + pos: 72.5,37.5 + parent: 30 + - uid: 23696 + components: + - type: Transform + pos: 72.5,38.5 + parent: 30 + - uid: 23697 + components: + - type: Transform + pos: 72.5,39.5 + parent: 30 + - uid: 23698 + components: + - type: Transform + pos: 70.5,39.5 + parent: 30 + - uid: 23699 + components: + - type: Transform + pos: 70.5,38.5 + parent: 30 + - uid: 23700 + components: + - type: Transform + pos: 70.5,37.5 + parent: 30 + - uid: 23701 + components: + - type: Transform + pos: 70.5,36.5 + parent: 30 + - uid: 23702 + components: + - type: Transform + pos: 70.5,35.5 + parent: 30 + - uid: 23703 + components: + - type: Transform + pos: 70.5,34.5 + parent: 30 + - uid: 23704 + components: + - type: Transform + pos: 70.5,33.5 + parent: 30 + - uid: 23705 + components: + - type: Transform + pos: 70.5,32.5 + parent: 30 + - uid: 23706 + components: + - type: Transform + pos: 68.5,32.5 + parent: 30 + - uid: 23707 + components: + - type: Transform + pos: 68.5,33.5 + parent: 30 + - uid: 23708 + components: + - type: Transform + pos: 68.5,34.5 + parent: 30 + - uid: 23709 + components: + - type: Transform + pos: 68.5,35.5 + parent: 30 + - uid: 23710 + components: + - type: Transform + pos: 68.5,36.5 + parent: 30 + - uid: 23711 + components: + - type: Transform + pos: 68.5,37.5 + parent: 30 + - uid: 23712 + components: + - type: Transform + pos: 68.5,38.5 + parent: 30 + - uid: 23713 + components: + - type: Transform + pos: 68.5,39.5 + parent: 30 + - uid: 23714 + components: + - type: Transform + pos: 66.5,39.5 + parent: 30 + - uid: 23715 + components: + - type: Transform + pos: 66.5,38.5 + parent: 30 + - uid: 23716 + components: + - type: Transform + pos: 66.5,37.5 + parent: 30 + - uid: 23717 + components: + - type: Transform + pos: 66.5,36.5 + parent: 30 + - uid: 23718 + components: + - type: Transform + pos: 66.5,35.5 + parent: 30 + - uid: 23719 + components: + - type: Transform + pos: 66.5,34.5 + parent: 30 + - uid: 23720 + components: + - type: Transform + pos: 66.5,33.5 + parent: 30 + - uid: 23721 + components: + - type: Transform + pos: 66.5,32.5 + parent: 30 + - uid: 23722 + components: + - type: Transform + pos: 64.5,32.5 + parent: 30 + - uid: 23723 + components: + - type: Transform + pos: 64.5,33.5 + parent: 30 + - uid: 23724 + components: + - type: Transform + pos: 64.5,34.5 + parent: 30 + - uid: 23725 + components: + - type: Transform + pos: 64.5,35.5 + parent: 30 + - uid: 23726 + components: + - type: Transform + pos: 64.5,36.5 + parent: 30 + - uid: 23727 + components: + - type: Transform + pos: 64.5,37.5 + parent: 30 + - uid: 23728 + components: + - type: Transform + pos: 64.5,38.5 + parent: 30 + - uid: 23729 + components: + - type: Transform + pos: 64.5,39.5 + parent: 30 + - uid: 23730 + components: + - type: Transform + pos: 62.5,39.5 + parent: 30 + - uid: 23731 + components: + - type: Transform + pos: 62.5,38.5 + parent: 30 + - uid: 23732 + components: + - type: Transform + pos: 62.5,37.5 + parent: 30 + - uid: 23733 + components: + - type: Transform + pos: 62.5,36.5 + parent: 30 + - uid: 23734 + components: + - type: Transform + pos: 62.5,35.5 + parent: 30 + - uid: 23735 + components: + - type: Transform + pos: 62.5,34.5 + parent: 30 + - uid: 23736 + components: + - type: Transform + pos: 62.5,33.5 + parent: 30 + - uid: 23737 + components: + - type: Transform + pos: 62.5,32.5 + parent: 30 + - uid: 23738 + components: + - type: Transform + pos: 60.5,33.5 + parent: 30 + - uid: 23739 + components: + - type: Transform + pos: 60.5,34.5 + parent: 30 + - uid: 23740 + components: + - type: Transform + pos: 60.5,35.5 + parent: 30 + - uid: 23741 + components: + - type: Transform + pos: 60.5,36.5 + parent: 30 + - uid: 23742 + components: + - type: Transform + pos: 60.5,37.5 + parent: 30 + - uid: 23743 + components: + - type: Transform + pos: 60.5,38.5 + parent: 30 + - uid: 23744 + components: + - type: Transform + pos: 60.5,39.5 + parent: 30 + - uid: 23745 + components: + - type: Transform + pos: 58.5,39.5 + parent: 30 + - uid: 23746 + components: + - type: Transform + pos: 58.5,38.5 + parent: 30 + - uid: 23747 + components: + - type: Transform + pos: 58.5,37.5 + parent: 30 + - uid: 23748 + components: + - type: Transform + pos: 58.5,35.5 + parent: 30 + - uid: 23749 + components: + - type: Transform + pos: 58.5,34.5 + parent: 30 + - uid: 23750 + components: + - type: Transform + pos: 58.5,33.5 + parent: 30 + - uid: 23751 + components: + - type: Transform + pos: 58.5,32.5 + parent: 30 + - uid: 23752 + components: + - type: Transform + pos: 58.5,36.5 + parent: 30 + - uid: 23753 + components: + - type: Transform + pos: 55.5,30.5 + parent: 30 + - uid: 23754 + components: + - type: Transform + pos: 56.5,30.5 + parent: 30 + - uid: 23755 + components: + - type: Transform + pos: 8.5,63.5 + parent: 30 + - uid: 23756 + components: + - type: Transform + pos: 57.5,30.5 + parent: 30 + - uid: 23757 + components: + - type: Transform + pos: 9.5,63.5 + parent: 30 + - uid: 23758 + components: + - type: Transform + pos: 10.5,63.5 + parent: 30 + - uid: 23759 + components: + - type: Transform + pos: 11.5,63.5 + parent: 30 + - uid: 23760 + components: + - type: Transform + pos: 12.5,63.5 + parent: 30 + - uid: 23761 + components: + - type: Transform + pos: -5.5,54.5 + parent: 30 + - uid: 23762 + components: + - type: Transform + pos: -3.5,69.5 + parent: 30 + - uid: 23763 + components: + - type: Transform + pos: -3.5,71.5 + parent: 30 + - uid: 23764 + components: + - type: Transform + pos: 2.5,71.5 + parent: 30 + - uid: 23765 + components: + - type: Transform + pos: 2.5,69.5 + parent: 30 + - uid: 23778 + components: + - type: Transform + pos: -6.5,54.5 + parent: 30 + - uid: 23779 + components: + - type: Transform + pos: -7.5,54.5 + parent: 30 + - uid: 23780 + components: + - type: Transform + pos: -8.5,54.5 + parent: 30 + - uid: 23781 + components: + - type: Transform + pos: -9.5,54.5 + parent: 30 + - uid: 23782 + components: + - type: Transform + pos: -10.5,54.5 + parent: 30 + - uid: 23783 + components: + - type: Transform + pos: -11.5,54.5 + parent: 30 + - uid: 23784 + components: + - type: Transform + pos: -12.5,54.5 + parent: 30 + - uid: 23785 + components: + - type: Transform + pos: -13.5,54.5 + parent: 30 + - uid: 23786 + components: + - type: Transform + pos: -14.5,54.5 + parent: 30 + - uid: 23787 + components: + - type: Transform + pos: -15.5,54.5 + parent: 30 + - uid: 23788 + components: + - type: Transform + pos: -16.5,54.5 + parent: 30 + - uid: 23789 + components: + - type: Transform + pos: -17.5,54.5 + parent: 30 + - uid: 23790 + components: + - type: Transform + pos: -19.5,54.5 + parent: 30 + - uid: 23791 + components: + - type: Transform + pos: -18.5,54.5 + parent: 30 + - uid: 23793 + components: + - type: Transform + pos: -35.5,62.5 + parent: 30 + - uid: 23794 + components: + - type: Transform + pos: -35.5,63.5 + parent: 30 + - uid: 23796 + components: + - type: Transform + pos: -36.5,62.5 + parent: 30 + - uid: 23797 + components: + - type: Transform + pos: -37.5,62.5 + parent: 30 + - uid: 23798 + components: + - type: Transform + pos: -38.5,62.5 + parent: 30 + - uid: 23799 + components: + - type: Transform + pos: -39.5,62.5 + parent: 30 + - uid: 23800 + components: + - type: Transform + pos: -40.5,62.5 + parent: 30 + - uid: 23801 + components: + - type: Transform + pos: -41.5,62.5 + parent: 30 + - uid: 23802 + components: + - type: Transform + pos: -35.5,64.5 + parent: 30 + - uid: 23803 + components: + - type: Transform + pos: -35.5,65.5 + parent: 30 + - uid: 23822 + components: + - type: Transform + pos: -21.5,-52.5 + parent: 30 - proto: AtmosFixFreezerMarker entities: - uid: 9178 @@ -14455,6 +17246,8 @@ entities: parent: 30 - type: BarSign current: TheDrunkCarp + - type: Fixtures + fixtures: {} - uid: 14984 components: - type: MetaData @@ -14465,6 +17258,8 @@ entities: parent: 30 - type: BarSign current: TheBirdCage + - type: Fixtures + fixtures: {} - proto: BarSignSpacebucks entities: - uid: 342 @@ -14472,6 +17267,8 @@ entities: - type: Transform pos: 1.5,-5.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: BaseComputer entities: - uid: 8821 @@ -14909,48 +17706,11 @@ entities: - type: Transform pos: -43.5,16.5 parent: 30 - - uid: 9064 - components: - - type: Transform - pos: -4.5,-58.5 - parent: 30 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 9065 - components: - - type: Transform - pos: -3.5,-58.5 - parent: 30 - - uid: 9068 - components: - - type: Transform - pos: 12.5,-38.5 - parent: 30 - - uid: 9302 - components: - - type: Transform - pos: 2.5,-58.5 - parent: 30 - uid: 9533 components: - type: Transform pos: -16.5,-38.5 parent: 30 - - uid: 9678 - components: - - type: Transform - pos: -2.5,-58.5 - parent: 30 - - uid: 9690 - components: - - type: Transform - pos: 1.5,-58.5 - parent: 30 - - uid: 9691 - components: - - type: Transform - pos: 3.5,-58.5 - parent: 30 - uid: 11015 components: - type: Transform @@ -15021,6 +17781,19 @@ entities: - type: Transform pos: 37.5,14.5 parent: 30 +- proto: BlastDoorEngineering + entities: + - uid: 16827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-40.5 + parent: 30 + - uid: 17119 + components: + - type: Transform + pos: 4.5,-59.5 + parent: 30 - proto: BlastDoorOpen entities: - uid: 2189 @@ -15417,10 +18190,10 @@ entities: parent: 30 - proto: BoxFlare entities: - - uid: 23240 + - uid: 8989 components: - type: Transform - pos: 0.5552447,-53.26765 + pos: 4.499839,-53.342823 parent: 30 - proto: BoxFlashbang entities: @@ -15570,6 +18343,8 @@ entities: - type: Transform pos: -38.5,-32.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: BoxLatexGloves entities: - uid: 7595 @@ -15683,6 +18458,8 @@ entities: rot: -1.5707963267948966 rad pos: -37.5,41.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: Brutepack entities: - uid: 7890 @@ -15726,12 +18503,38 @@ entities: parent: 30 - proto: ButtonFrameCaution entities: + - uid: 9023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-35.5 + parent: 30 + - uid: 9028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-39.5 + parent: 30 - uid: 12380 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-47.5 parent: 30 + - uid: 22283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-57.5 + parent: 30 + - uid: 23820 + components: + - type: MetaData + name: Radiation Shields + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-52.5 + parent: 30 - proto: ButtonFrameCautionSecurity entities: - uid: 3527 @@ -15740,18 +18543,6 @@ entities: rot: 3.141592653589793 rad pos: -39.5,50.5 parent: 30 - - uid: 9062 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-54.5 - parent: 30 - - uid: 9215 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-54.5 - parent: 30 - uid: 23167 components: - type: Transform @@ -22296,6 +25087,31 @@ entities: - type: Transform pos: 31.5,-6.5 parent: 30 + - uid: 8537 + components: + - type: Transform + pos: -5.5,-48.5 + parent: 30 + - uid: 8568 + components: + - type: Transform + pos: 16.5,-36.5 + parent: 30 + - uid: 8570 + components: + - type: Transform + pos: 8.5,-35.5 + parent: 30 + - uid: 8572 + components: + - type: Transform + pos: 13.5,-35.5 + parent: 30 + - uid: 8573 + components: + - type: Transform + pos: 15.5,-35.5 + parent: 30 - uid: 8640 components: - type: Transform @@ -22316,6 +25132,26 @@ entities: - type: Transform pos: 27.5,-21.5 parent: 30 + - uid: 8784 + components: + - type: Transform + pos: 14.5,-35.5 + parent: 30 + - uid: 8785 + components: + - type: Transform + pos: 9.5,-35.5 + parent: 30 + - uid: 8786 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 30 + - uid: 8787 + components: + - type: Transform + pos: 10.5,-35.5 + parent: 30 - uid: 8800 components: - type: Transform @@ -22361,11 +25197,86 @@ entities: - type: Transform pos: -23.5,-49.5 parent: 30 + - uid: 8986 + components: + - type: Transform + pos: 5.5,-51.5 + parent: 30 + - uid: 8987 + components: + - type: Transform + pos: 4.5,-53.5 + parent: 30 + - uid: 8988 + components: + - type: Transform + pos: 4.5,-51.5 + parent: 30 + - uid: 8990 + components: + - type: Transform + pos: 4.5,-55.5 + parent: 30 + - uid: 8991 + components: + - type: Transform + pos: 3.5,-55.5 + parent: 30 + - uid: 8992 + components: + - type: Transform + pos: 4.5,-54.5 + parent: 30 + - uid: 8993 + components: + - type: Transform + pos: 2.5,-55.5 + parent: 30 + - uid: 8994 + components: + - type: Transform + pos: 4.5,-52.5 + parent: 30 + - uid: 8995 + components: + - type: Transform + pos: 5.5,-50.5 + parent: 30 + - uid: 8998 + components: + - type: Transform + pos: 5.5,-49.5 + parent: 30 + - uid: 9017 + components: + - type: Transform + pos: 4.5,-49.5 + parent: 30 - uid: 9047 components: - type: Transform pos: -24.5,-40.5 parent: 30 + - uid: 9064 + components: + - type: Transform + pos: -10.5,-61.5 + parent: 30 + - uid: 9070 + components: + - type: Transform + pos: -23.5,-59.5 + parent: 30 + - uid: 9324 + components: + - type: Transform + pos: -23.5,-60.5 + parent: 30 + - uid: 9328 + components: + - type: Transform + pos: -24.5,-60.5 + parent: 30 - uid: 9406 components: - type: Transform @@ -22426,6 +25337,11 @@ entities: - type: Transform pos: -36.5,-6.5 parent: 30 + - uid: 9680 + components: + - type: Transform + pos: 4.5,-48.5 + parent: 30 - uid: 9698 components: - type: Transform @@ -22546,6 +25462,11 @@ entities: - type: Transform pos: -59.5,-8.5 parent: 30 + - uid: 10134 + components: + - type: Transform + pos: -5.5,-53.5 + parent: 30 - uid: 10163 components: - type: Transform @@ -22616,6 +25537,36 @@ entities: - type: Transform pos: -25.5,-49.5 parent: 30 + - uid: 10309 + components: + - type: Transform + pos: -5.5,-55.5 + parent: 30 + - uid: 10406 + components: + - type: Transform + pos: -50.5,64.5 + parent: 30 + - uid: 10407 + components: + - type: Transform + pos: -50.5,65.5 + parent: 30 + - uid: 10408 + components: + - type: Transform + pos: -50.5,66.5 + parent: 30 + - uid: 10412 + components: + - type: Transform + pos: -5.5,-54.5 + parent: 30 + - uid: 10418 + components: + - type: Transform + pos: 1.5,-55.5 + parent: 30 - uid: 10444 components: - type: Transform @@ -23486,76 +26437,6 @@ entities: - type: Transform pos: 8.5,-36.5 parent: 30 - - uid: 10903 - components: - - type: Transform - pos: 8.5,-35.5 - parent: 30 - - uid: 10904 - components: - - type: Transform - pos: 8.5,-34.5 - parent: 30 - - uid: 10905 - components: - - type: Transform - pos: 8.5,-33.5 - parent: 30 - - uid: 10906 - components: - - type: Transform - pos: 9.5,-33.5 - parent: 30 - - uid: 10907 - components: - - type: Transform - pos: 10.5,-33.5 - parent: 30 - - uid: 10908 - components: - - type: Transform - pos: 11.5,-33.5 - parent: 30 - - uid: 10909 - components: - - type: Transform - pos: 12.5,-33.5 - parent: 30 - - uid: 10910 - components: - - type: Transform - pos: 13.5,-33.5 - parent: 30 - - uid: 10911 - components: - - type: Transform - pos: 14.5,-33.5 - parent: 30 - - uid: 10912 - components: - - type: Transform - pos: 15.5,-33.5 - parent: 30 - - uid: 10913 - components: - - type: Transform - pos: 16.5,-33.5 - parent: 30 - - uid: 10914 - components: - - type: Transform - pos: 16.5,-34.5 - parent: 30 - - uid: 10915 - components: - - type: Transform - pos: 16.5,-35.5 - parent: 30 - - uid: 10916 - components: - - type: Transform - pos: 16.5,-36.5 - parent: 30 - uid: 10917 components: - type: Transform @@ -25606,6 +28487,11 @@ entities: - type: Transform pos: 31.5,31.5 parent: 30 + - uid: 12450 + components: + - type: Transform + pos: 16.5,-35.5 + parent: 30 - uid: 12668 components: - type: Transform @@ -26476,6 +29362,16 @@ entities: - type: Transform pos: 24.5,-10.5 parent: 30 + - uid: 13954 + components: + - type: Transform + pos: -11.5,-59.5 + parent: 30 + - uid: 14527 + components: + - type: Transform + pos: -4.5,-48.5 + parent: 30 - uid: 14555 components: - type: Transform @@ -30086,6 +32982,11 @@ entities: - type: Transform pos: -29.5,-34.5 parent: 30 + - uid: 19628 + components: + - type: Transform + pos: 11.5,-35.5 + parent: 30 - uid: 19796 components: - type: Transform @@ -30821,26 +33722,6 @@ entities: - type: Transform pos: 4.5,-44.5 parent: 30 - - uid: 20415 - components: - - type: Transform - pos: 5.5,-44.5 - parent: 30 - - uid: 20416 - components: - - type: Transform - pos: 6.5,-44.5 - parent: 30 - - uid: 20417 - components: - - type: Transform - pos: 6.5,-45.5 - parent: 30 - - uid: 20418 - components: - - type: Transform - pos: 6.5,-46.5 - parent: 30 - uid: 20419 components: - type: Transform @@ -30886,76 +33767,6 @@ entities: - type: Transform pos: -3.5,-48.5 parent: 30 - - uid: 20428 - components: - - type: Transform - pos: -3.5,-49.5 - parent: 30 - - uid: 20429 - components: - - type: Transform - pos: -3.5,-50.5 - parent: 30 - - uid: 20430 - components: - - type: Transform - pos: -3.5,-51.5 - parent: 30 - - uid: 20431 - components: - - type: Transform - pos: -3.5,-52.5 - parent: 30 - - uid: 20440 - components: - - type: Transform - pos: -2.5,-52.5 - parent: 30 - - uid: 20450 - components: - - type: Transform - pos: -1.5,-52.5 - parent: 30 - - uid: 20462 - components: - - type: Transform - pos: -0.5,-52.5 - parent: 30 - - uid: 20463 - components: - - type: Transform - pos: 0.5,-52.5 - parent: 30 - - uid: 20464 - components: - - type: Transform - pos: 1.5,-52.5 - parent: 30 - - uid: 20465 - components: - - type: Transform - pos: 2.5,-52.5 - parent: 30 - - uid: 20466 - components: - - type: Transform - pos: 3.5,-52.5 - parent: 30 - - uid: 20467 - components: - - type: Transform - pos: 3.5,-51.5 - parent: 30 - - uid: 20468 - components: - - type: Transform - pos: 3.5,-50.5 - parent: 30 - - uid: 20469 - components: - - type: Transform - pos: 3.5,-49.5 - parent: 30 - uid: 20470 components: - type: Transform @@ -31036,50 +33847,15 @@ entities: - type: Transform pos: 1.5,-48.5 parent: 30 - - uid: 20527 + - uid: 20561 components: - type: Transform - pos: -0.5,-55.5 - parent: 30 - - uid: 20528 - components: - - type: Transform - pos: -0.5,-56.5 - parent: 30 - - uid: 20538 - components: - - type: Transform - pos: -0.5,-54.5 - parent: 30 - - uid: 20539 - components: - - type: Transform - pos: -0.5,-53.5 - parent: 30 - - uid: 20544 - components: - - type: Transform - pos: 0.5,-56.5 - parent: 30 - - uid: 20545 - components: - - type: Transform - pos: 1.5,-56.5 + pos: -5.5,-51.5 parent: 30 - uid: 20562 components: - type: Transform - pos: 2.5,-56.5 - parent: 30 - - uid: 20569 - components: - - type: Transform - pos: 3.5,-56.5 - parent: 30 - - uid: 20570 - components: - - type: Transform - pos: -1.5,-56.5 + pos: -5.5,-52.5 parent: 30 - uid: 20582 components: @@ -31101,26 +33877,6 @@ entities: - type: Transform pos: -59.5,4.5 parent: 30 - - uid: 20590 - components: - - type: Transform - pos: -2.5,-56.5 - parent: 30 - - uid: 20591 - components: - - type: Transform - pos: -3.5,-56.5 - parent: 30 - - uid: 20613 - components: - - type: Transform - pos: -4.5,-56.5 - parent: 30 - - uid: 20617 - components: - - type: Transform - pos: 4.5,-52.5 - parent: 30 - uid: 20618 components: - type: Transform @@ -31136,6 +33892,21 @@ entities: - type: Transform pos: -2.5,-33.5 parent: 30 + - uid: 20645 + components: + - type: Transform + pos: -5.5,-50.5 + parent: 30 + - uid: 20648 + components: + - type: Transform + pos: -5.5,-49.5 + parent: 30 + - uid: 20665 + components: + - type: Transform + pos: -5.5,-56.5 + parent: 30 - uid: 20722 components: - type: Transform @@ -31856,6 +34627,301 @@ entities: - type: Transform pos: 42.5,48.5 parent: 30 + - uid: 23295 + components: + - type: Transform + pos: 5.5,-54.5 + parent: 30 + - uid: 23296 + components: + - type: Transform + pos: 6.5,-54.5 + parent: 30 + - uid: 23297 + components: + - type: Transform + pos: 6.5,-55.5 + parent: 30 + - uid: 23298 + components: + - type: Transform + pos: 6.5,-56.5 + parent: 30 + - uid: 23299 + components: + - type: Transform + pos: 6.5,-57.5 + parent: 30 + - uid: 23300 + components: + - type: Transform + pos: 6.5,-58.5 + parent: 30 + - uid: 23301 + components: + - type: Transform + pos: 6.5,-59.5 + parent: 30 + - uid: 23302 + components: + - type: Transform + pos: 5.5,-59.5 + parent: 30 + - uid: 23303 + components: + - type: Transform + pos: 2.5,-59.5 + parent: 30 + - uid: 23304 + components: + - type: Transform + pos: 3.5,-59.5 + parent: 30 + - uid: 23305 + components: + - type: Transform + pos: 4.5,-59.5 + parent: 30 + - uid: 23306 + components: + - type: Transform + pos: 0.5,-55.5 + parent: 30 + - uid: 23307 + components: + - type: Transform + pos: -0.5,-55.5 + parent: 30 + - uid: 23308 + components: + - type: Transform + pos: -1.5,-55.5 + parent: 30 + - uid: 23309 + components: + - type: Transform + pos: -2.5,-55.5 + parent: 30 + - uid: 23310 + components: + - type: Transform + pos: -3.5,-55.5 + parent: 30 + - uid: 23313 + components: + - type: Transform + pos: -5.5,-58.5 + parent: 30 + - uid: 23314 + components: + - type: Transform + pos: -5.5,-57.5 + parent: 30 + - uid: 23315 + components: + - type: Transform + pos: -4.5,-55.5 + parent: 30 + - uid: 23336 + components: + - type: Transform + pos: -24.5,-61.5 + parent: 30 + - uid: 23337 + components: + - type: Transform + pos: -24.5,-62.5 + parent: 30 + - uid: 23338 + components: + - type: Transform + pos: -24.5,-63.5 + parent: 30 + - uid: 23339 + components: + - type: Transform + pos: -24.5,-64.5 + parent: 30 + - uid: 23340 + components: + - type: Transform + pos: -24.5,-65.5 + parent: 30 + - uid: 23341 + components: + - type: Transform + pos: -24.5,-66.5 + parent: 30 + - uid: 23342 + components: + - type: Transform + pos: -24.5,-68.5 + parent: 30 + - uid: 23343 + components: + - type: Transform + pos: -24.5,-69.5 + parent: 30 + - uid: 23344 + components: + - type: Transform + pos: -24.5,-70.5 + parent: 30 + - uid: 23345 + components: + - type: Transform + pos: -24.5,-71.5 + parent: 30 + - uid: 23346 + components: + - type: Transform + pos: -24.5,-72.5 + parent: 30 + - uid: 23347 + components: + - type: Transform + pos: -24.5,-73.5 + parent: 30 + - uid: 23348 + components: + - type: Transform + pos: -24.5,-74.5 + parent: 30 + - uid: 23349 + components: + - type: Transform + pos: -24.5,-67.5 + parent: 30 + - uid: 23350 + components: + - type: Transform + pos: -22.5,-60.5 + parent: 30 + - uid: 23351 + components: + - type: Transform + pos: -21.5,-60.5 + parent: 30 + - uid: 23352 + components: + - type: Transform + pos: -20.5,-60.5 + parent: 30 + - uid: 23353 + components: + - type: Transform + pos: -19.5,-60.5 + parent: 30 + - uid: 23354 + components: + - type: Transform + pos: -18.5,-60.5 + parent: 30 + - uid: 23355 + components: + - type: Transform + pos: -17.5,-60.5 + parent: 30 + - uid: 23356 + components: + - type: Transform + pos: -16.5,-60.5 + parent: 30 + - uid: 23357 + components: + - type: Transform + pos: -15.5,-60.5 + parent: 30 + - uid: 23358 + components: + - type: Transform + pos: -14.5,-60.5 + parent: 30 + - uid: 23359 + components: + - type: Transform + pos: -13.5,-60.5 + parent: 30 + - uid: 23360 + components: + - type: Transform + pos: -12.5,-60.5 + parent: 30 + - uid: 23361 + components: + - type: Transform + pos: -11.5,-60.5 + parent: 30 + - uid: 23362 + components: + - type: Transform + pos: -10.5,-60.5 + parent: 30 + - uid: 23363 + components: + - type: Transform + pos: -10.5,-62.5 + parent: 30 + - uid: 23364 + components: + - type: Transform + pos: -10.5,-63.5 + parent: 30 + - uid: 23365 + components: + - type: Transform + pos: -10.5,-64.5 + parent: 30 + - uid: 23366 + components: + - type: Transform + pos: -10.5,-65.5 + parent: 30 + - uid: 23367 + components: + - type: Transform + pos: -10.5,-67.5 + parent: 30 + - uid: 23368 + components: + - type: Transform + pos: -10.5,-68.5 + parent: 30 + - uid: 23369 + components: + - type: Transform + pos: -10.5,-69.5 + parent: 30 + - uid: 23370 + components: + - type: Transform + pos: -10.5,-70.5 + parent: 30 + - uid: 23371 + components: + - type: Transform + pos: -10.5,-71.5 + parent: 30 + - uid: 23372 + components: + - type: Transform + pos: -10.5,-72.5 + parent: 30 + - uid: 23373 + components: + - type: Transform + pos: -10.5,-73.5 + parent: 30 + - uid: 23374 + components: + - type: Transform + pos: -10.5,-74.5 + parent: 30 + - uid: 23375 + components: + - type: Transform + pos: -10.5,-66.5 + parent: 30 - proto: CableApcStack entities: - uid: 1637 @@ -40879,6 +43945,11 @@ entities: - type: Transform pos: -23.5,-57.5 parent: 30 + - uid: 10166 + components: + - type: Transform + pos: -18.5,-74.5 + parent: 30 - uid: 10168 components: - type: Transform @@ -40929,6 +44000,11 @@ entities: - type: Transform pos: -53.5,-61.5 parent: 30 + - uid: 10212 + components: + - type: Transform + pos: -19.5,-74.5 + parent: 30 - uid: 10441 components: - type: Transform @@ -41204,16 +44280,6 @@ entities: - type: Transform pos: -22.5,-55.5 parent: 30 - - uid: 11334 - components: - - type: Transform - pos: -23.5,-59.5 - parent: 30 - - uid: 11344 - components: - - type: Transform - pos: -23.5,-60.5 - parent: 30 - uid: 11464 components: - type: Transform @@ -43834,16 +46900,6 @@ entities: - type: Transform pos: -24.5,-65.5 parent: 30 - - uid: 22386 - components: - - type: Transform - pos: -24.5,-66.5 - parent: 30 - - uid: 22387 - components: - - type: Transform - pos: -24.5,-67.5 - parent: 30 - uid: 22388 components: - type: Transform @@ -45859,6 +48915,11 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,23.5 parent: 30 + - uid: 833 + components: + - type: Transform + pos: -2.5,-56.5 + parent: 30 - uid: 869 components: - type: Transform @@ -46233,11 +49294,63 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-43.5 parent: 30 + - uid: 8535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-56.5 + parent: 30 - uid: 8538 components: - type: Transform pos: 23.5,-35.5 parent: 30 + - uid: 8981 + components: + - type: Transform + pos: 4.5,-51.5 + parent: 30 + - uid: 9002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-59.5 + parent: 30 + - uid: 9006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-52.5 + parent: 30 + - uid: 9038 + components: + - type: Transform + pos: 17.5,-39.5 + parent: 30 + - uid: 9062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-58.5 + parent: 30 + - uid: 9063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-59.5 + parent: 30 + - uid: 9164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-53.5 + parent: 30 + - uid: 9174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-52.5 + parent: 30 - uid: 9203 components: - type: Transform @@ -46447,6 +49560,17 @@ entities: - type: Transform pos: -11.5,-56.5 parent: 30 + - uid: 10903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-37.5 + parent: 30 + - uid: 10915 + components: + - type: Transform + pos: -4.5,-56.5 + parent: 30 - uid: 11121 components: - type: Transform @@ -46569,26 +49693,6 @@ entities: - type: Transform pos: 23.5,-21.5 parent: 30 - - uid: 11328 - components: - - type: Transform - pos: 9.5,-36.5 - parent: 30 - - uid: 11329 - components: - - type: Transform - pos: 15.5,-36.5 - parent: 30 - - uid: 11330 - components: - - type: Transform - pos: 15.5,-37.5 - parent: 30 - - uid: 11331 - components: - - type: Transform - pos: 9.5,-37.5 - parent: 30 - uid: 11419 components: - type: Transform @@ -46685,6 +49789,11 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-43.5 parent: 30 + - uid: 13952 + components: + - type: Transform + pos: -3.5,-56.5 + parent: 30 - uid: 14848 components: - type: Transform @@ -46965,12 +50074,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,7.5 parent: 30 - - uid: 15247 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-44.5 - parent: 30 - uid: 15256 components: - type: Transform @@ -48242,6 +51345,18 @@ entities: - type: Transform pos: -62.5,15.5 parent: 30 + - uid: 16829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-37.5 + parent: 30 + - uid: 16831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-37.5 + parent: 30 - uid: 16900 components: - type: Transform @@ -48357,6 +51472,18 @@ entities: - type: Transform pos: -64.5,21.5 parent: 30 + - uid: 17071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-40.5 + parent: 30 + - uid: 17072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-40.5 + parent: 30 - uid: 17080 components: - type: Transform @@ -48770,6 +51897,18 @@ entities: - type: Transform pos: 0.5,59.5 parent: 30 + - uid: 20545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-56.5 + parent: 30 + - uid: 20570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-57.5 + parent: 30 - uid: 20586 components: - type: Transform @@ -48790,11 +51929,48 @@ entities: - type: Transform pos: -59.5,4.5 parent: 30 + - uid: 20590 + components: + - type: Transform + pos: 1.5,-56.5 + parent: 30 + - uid: 20617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-51.5 + parent: 30 + - uid: 20642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-56.5 + parent: 30 + - uid: 20646 + components: + - type: Transform + pos: 4.5,-52.5 + parent: 30 + - uid: 20653 + components: + - type: Transform + pos: 3.5,-56.5 + parent: 30 - uid: 20654 components: - type: Transform pos: -22.5,39.5 parent: 30 + - uid: 20655 + components: + - type: Transform + pos: 2.5,-56.5 + parent: 30 + - uid: 20656 + components: + - type: Transform + pos: 4.5,-53.5 + parent: 30 - uid: 21002 components: - type: Transform @@ -48835,6 +52011,12 @@ entities: - type: Transform pos: -6.5,72.5 parent: 30 + - uid: 21168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-54.5 + parent: 30 - uid: 21181 components: - type: Transform @@ -48980,11 +52162,6 @@ entities: - type: Transform pos: 17.5,-40.5 parent: 30 - - uid: 22378 - components: - - type: Transform - pos: 17.5,-39.5 - parent: 30 - uid: 22379 components: - type: Transform @@ -49034,18 +52211,6 @@ entities: rot: 3.141592653589793 rad pos: 42.5,49.5 parent: 30 - - uid: 23223 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-56.5 - parent: 30 - - uid: 23224 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-55.5 - parent: 30 - uid: 23231 components: - type: Transform @@ -51127,6 +54292,8 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,7.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: ClosetBombFilled entities: - uid: 2072 @@ -52700,7 +55867,7 @@ entities: - uid: 9370 components: - type: Transform - pos: -2.4337187,-46.09784 + pos: -2.466465,-46.213737 parent: 30 - uid: 9440 components: @@ -52729,7 +55896,7 @@ entities: - uid: 9397 components: - type: Transform - pos: -2.5034692,-46.307095 + pos: -2.5081527,-46.443066 parent: 30 - uid: 9441 components: @@ -53490,7 +56657,7 @@ entities: - uid: 4895 components: - type: Transform - pos: -19.595419,-50.39677 + pos: -19.773016,-50.50543 parent: 30 - proto: ClothingShoesBootsPerformer entities: @@ -55591,6 +58758,18 @@ entities: rot: 1.5707963267948966 rad pos: -74.382675,-63.392025 parent: 30 +- proto: DecalSpawnerBurns + entities: + - uid: 9071 + components: + - type: Transform + pos: 12.5,-40.5 + parent: 30 + - uid: 9994 + components: + - type: Transform + pos: 2.5,-59.5 + parent: 30 - proto: DefaultStationBeaconAI entities: - uid: 20686 @@ -56032,35 +59211,47 @@ entities: rot: 3.141592653589793 rad pos: -41.5,38.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 4490 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,40.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 6956 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-14.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 6970 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-7.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 7871 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,-20.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 8023 components: - type: Transform pos: -32.5,-8.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: DeployableBarrier entities: - uid: 6585 @@ -63138,6 +66329,28 @@ entities: parent: 30 - proto: Emitter entities: + - uid: 9034 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: -20.5,-75.5 + parent: 30 + - type: Physics + bodyType: Dynamic + - type: PowerConsumer + drawRate: 1 + - uid: 13503 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: -18.5,-75.5 + parent: 30 + - type: Physics + bodyType: Dynamic + - type: PowerConsumer + drawRate: 1 - uid: 18857 components: - type: Transform @@ -63162,17 +66375,17 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-63.5 parent: 30 - - uid: 20706 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-74.5 - parent: 30 - uid: 20707 components: - type: Transform pos: -21.5,-60.5 parent: 30 + - uid: 23407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-58.5 + parent: 30 - proto: EmitterFlatpack entities: - uid: 16130 @@ -63216,131 +66429,183 @@ entities: - type: Transform pos: -12.5,4.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 621 components: - type: Transform pos: -29.5,6.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 622 components: - type: Transform pos: -14.5,14.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 623 components: - type: Transform pos: -14.5,16.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 624 components: - type: Transform pos: -6.5,12.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 625 components: - type: Transform pos: 1.5,12.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 1034 components: - type: Transform pos: -37.5,2.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 1651 components: - type: Transform pos: -33.5,34.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 1652 components: - type: Transform pos: -24.5,34.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 5847 components: - type: Transform pos: -15.5,42.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 5848 components: - type: Transform pos: -16.5,36.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 5849 components: - type: Transform pos: -5.5,36.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 5851 components: - type: Transform pos: -36.5,54.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 5852 components: - type: Transform pos: -32.5,41.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 6513 components: - type: Transform pos: 20.5,29.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 9076 components: - type: Transform pos: 14.5,-30.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 9077 components: - type: Transform pos: 14.5,-26.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 9310 components: - type: Transform pos: 15.5,-13.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 9434 components: - type: Transform pos: -26.5,-42.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 9614 components: - type: Transform pos: -4.5,-27.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 15868 components: - type: Transform pos: 20.5,61.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 16204 components: - type: Transform pos: 47.5,39.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 16944 components: - type: Transform pos: -51.5,14.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 16945 components: - type: Transform pos: -51.5,22.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 17685 components: - type: Transform pos: 19.5,16.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 21381 components: - type: Transform pos: 22.5,-9.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: FaxMachineBase entities: - uid: 5493 @@ -63537,6 +66802,8 @@ entities: - 2342 - 4696 - 4697 + - type: Fixtures + fixtures: {} - uid: 829 components: - type: Transform @@ -63551,6 +66818,8 @@ entities: - 4241 - 9782 - 9618 + - type: Fixtures + fixtures: {} - uid: 4354 components: - type: Transform @@ -63567,12 +66836,16 @@ entities: - 13644 - 17059 - 17625 + - type: Fixtures + fixtures: {} - uid: 8248 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-13.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 8249 components: - type: Transform @@ -63586,12 +66859,16 @@ entities: - 7960 - 7007 - 7200 + - type: Fixtures + fixtures: {} - uid: 8259 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-4.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 8262 components: - type: Transform @@ -63604,6 +66881,8 @@ entities: - 8288 - 7155 - 7156 + - type: Fixtures + fixtures: {} - uid: 9712 components: - type: Transform @@ -63614,6 +66893,8 @@ entities: devices: - 7960 - 7116 + - type: Fixtures + fixtures: {} - uid: 13959 components: - type: Transform @@ -63635,6 +66916,8 @@ entities: - 19771 - 11281 - 11003 + - type: Fixtures + fixtures: {} - uid: 13964 components: - type: Transform @@ -63650,6 +66933,8 @@ entities: - 19768 - 11007 - 9993 + - type: Fixtures + fixtures: {} - uid: 13965 components: - type: Transform @@ -63661,6 +66946,8 @@ entities: - 11280 - 9839 - 9995 + - type: Fixtures + fixtures: {} - uid: 17226 components: - type: Transform @@ -63673,6 +66960,8 @@ entities: - 15117 - 15116 - 13644 + - type: Fixtures + fixtures: {} - uid: 19597 components: - type: Transform @@ -63689,6 +66978,8 @@ entities: - 9304 - 9305 - 9306 + - type: Fixtures + fixtures: {} - uid: 21748 components: - type: Transform @@ -63703,6 +66994,8 @@ entities: - 8626 - 7731 - 21749 + - type: Fixtures + fixtures: {} - uid: 21769 components: - type: Transform @@ -63717,6 +67010,8 @@ entities: - 11762 - 11803 - 12039 + - type: Fixtures + fixtures: {} - uid: 21770 components: - type: Transform @@ -63734,6 +67029,8 @@ entities: - 8365 - 8364 - 21772 + - type: Fixtures + fixtures: {} - uid: 21775 components: - type: Transform @@ -63749,6 +67046,8 @@ entities: - 8369 - 8367 - 21773 + - type: Fixtures + fixtures: {} - uid: 21776 components: - type: Transform @@ -63767,6 +67066,8 @@ entities: - 8467 - 8468 - 21778 + - type: Fixtures + fixtures: {} - uid: 21779 components: - type: Transform @@ -63782,6 +67083,8 @@ entities: - 6619 - 8467 - 8468 + - type: Fixtures + fixtures: {} - uid: 21784 components: - type: Transform @@ -63796,6 +67099,8 @@ entities: - 11774 - 11705 - 21782 + - type: Fixtures + fixtures: {} - uid: 21786 components: - type: Transform @@ -63809,6 +67114,8 @@ entities: - 11774 - 954 - 21787 + - type: Fixtures + fixtures: {} - uid: 21793 components: - type: Transform @@ -63819,6 +67126,8 @@ entities: - 8473 - 8474 - 21792 + - type: Fixtures + fixtures: {} - uid: 21795 components: - type: Transform @@ -63832,6 +67141,8 @@ entities: - 24 - 23 - 21794 + - type: Fixtures + fixtures: {} - uid: 21798 components: - type: Transform @@ -63860,6 +67171,8 @@ entities: - 601 - 600 - 21799 + - type: Fixtures + fixtures: {} - uid: 21800 components: - type: Transform @@ -63888,11 +67201,15 @@ entities: - 601 - 600 - 21799 + - type: Fixtures + fixtures: {} - uid: 21802 components: - type: Transform pos: -7.5,-0.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 21852 components: - type: Transform @@ -63903,6 +67220,8 @@ entities: - 20349 - 20350 - 21851 + - type: Fixtures + fixtures: {} - uid: 21853 components: - type: Transform @@ -63913,6 +67232,8 @@ entities: - 21854 - 20351 - 20352 + - type: Fixtures + fixtures: {} - uid: 21857 components: - type: Transform @@ -63924,6 +67245,8 @@ entities: - 21859 - 20347 - 20348 + - type: Fixtures + fixtures: {} - uid: 21858 components: - type: Transform @@ -63934,6 +67257,8 @@ entities: - 21859 - 20347 - 20348 + - type: Fixtures + fixtures: {} - uid: 21866 components: - type: Transform @@ -63949,6 +67274,8 @@ entities: - 1410 - 21867 - 10401 + - type: Fixtures + fixtures: {} - uid: 21871 components: - type: Transform @@ -63963,6 +67290,8 @@ entities: - 1412 - 1413 - 21870 + - type: Fixtures + fixtures: {} - uid: 21873 components: - type: Transform @@ -63980,6 +67309,8 @@ entities: - 1104 - 1103 - 1102 + - type: Fixtures + fixtures: {} - uid: 21876 components: - type: Transform @@ -63992,6 +67323,8 @@ entities: - 1405 - 1406 - 1407 + - type: Fixtures + fixtures: {} - uid: 21880 components: - type: Transform @@ -64008,6 +67341,8 @@ entities: - 31 - 29 - 28 + - type: Fixtures + fixtures: {} - uid: 21884 components: - type: Transform @@ -64026,6 +67361,8 @@ entities: - 1412 - 1413 - 21882 + - type: Fixtures + fixtures: {} - uid: 21887 components: - type: Transform @@ -64044,6 +67381,8 @@ entities: - 20384 - 20383 - 21885 + - type: Fixtures + fixtures: {} - uid: 21889 components: - type: Transform @@ -64062,6 +67401,8 @@ entities: - 20385 - 20383 - 21890 + - type: Fixtures + fixtures: {} - uid: 21898 components: - type: Transform @@ -64074,6 +67415,8 @@ entities: - 2745 - 2744 - 21896 + - type: Fixtures + fixtures: {} - uid: 21904 components: - type: Transform @@ -64094,6 +67437,8 @@ entities: - 21893 - 21894 - 21895 + - type: Fixtures + fixtures: {} - uid: 21918 components: - type: Transform @@ -64106,6 +67451,8 @@ entities: - 20387 - 20388 - 21919 + - type: Fixtures + fixtures: {} - uid: 21927 components: - type: Transform @@ -64120,6 +67467,8 @@ entities: - 6102 - 6103 - 6104 + - type: Fixtures + fixtures: {} - uid: 21929 components: - type: Transform @@ -64137,6 +67486,8 @@ entities: - 6094 - 6093 - 6092 + - type: Fixtures + fixtures: {} - uid: 21935 components: - type: Transform @@ -64148,6 +67499,8 @@ entities: - 21938 - 5649 - 5650 + - type: Fixtures + fixtures: {} - uid: 21936 components: - type: Transform @@ -64159,6 +67512,8 @@ entities: - 5651 - 5652 - 21937 + - type: Fixtures + fixtures: {} - uid: 21942 components: - type: Transform @@ -64172,6 +67527,8 @@ entities: - 5652 - 5649 - 5650 + - type: Fixtures + fixtures: {} - uid: 22031 components: - type: Transform @@ -64187,6 +67544,8 @@ entities: - 6537 - 6538 - 11275 + - type: Fixtures + fixtures: {} - uid: 22033 components: - type: Transform @@ -64198,6 +67557,8 @@ entities: - 22032 - 5441 - 923 + - type: Fixtures + fixtures: {} - uid: 22034 components: - type: Transform @@ -64213,6 +67574,8 @@ entities: - 1538 - 5441 - 923 + - type: Fixtures + fixtures: {} - uid: 22037 components: - type: Transform @@ -64234,6 +67597,8 @@ entities: - 6540 - 6541 - 22039 + - type: Fixtures + fixtures: {} - uid: 22040 components: - type: Transform @@ -64245,6 +67610,8 @@ entities: - 6536 - 6537 - 6538 + - type: Fixtures + fixtures: {} - uid: 22049 components: - type: Transform @@ -64261,6 +67628,8 @@ entities: - 20952 - 20953 - 20954 + - type: Fixtures + fixtures: {} - uid: 22051 components: - type: Transform @@ -64273,6 +67642,8 @@ entities: - 20953 - 20954 - 22053 + - type: Fixtures + fixtures: {} - uid: 22055 components: - type: Transform @@ -64286,6 +67657,8 @@ entities: - 12666 - 12858 - 13391 + - type: Fixtures + fixtures: {} - uid: 22060 components: - type: Transform @@ -64296,6 +67669,8 @@ entities: - 12858 - 13391 - 22061 + - type: Fixtures + fixtures: {} - uid: 22064 components: - type: Transform @@ -64313,6 +67688,8 @@ entities: - 12626 - 12624 - 22066 + - type: Fixtures + fixtures: {} - uid: 22068 components: - type: Transform @@ -64328,6 +67705,8 @@ entities: - 12622 - 12621 - 12620 + - type: Fixtures + fixtures: {} - uid: 22074 components: - type: Transform @@ -64339,6 +67718,8 @@ entities: - 21456 - 22072 - 9948 + - type: Fixtures + fixtures: {} - uid: 22076 components: - type: Transform @@ -64355,6 +67736,8 @@ entities: - 20377 - 22077 - 9948 + - type: Fixtures + fixtures: {} - uid: 22080 components: - type: Transform @@ -64371,6 +67754,8 @@ entities: - 649 - 650 - 651 + - type: Fixtures + fixtures: {} - uid: 22085 components: - type: Transform @@ -64400,6 +67785,8 @@ entities: - 601 - 600 - 22086 + - type: Fixtures + fixtures: {} - proto: FireAxeCabinetFilled entities: - uid: 5846 @@ -64407,11 +67794,15 @@ entities: - type: Transform pos: -3.5,42.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 9078 components: - type: Transform pos: 13.5,-30.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: FireExtinguisher entities: - uid: 691 @@ -64803,11 +68194,6 @@ entities: - type: Transform pos: -34.59227,-40.321156 parent: 30 - - uid: 19628 - components: - - type: Transform - pos: -34.389145,-40.446156 - parent: 30 - proto: FirelockGlass entities: - uid: 2 @@ -66864,7 +70250,7 @@ entities: - uid: 9369 components: - type: Transform - pos: -2.4162815,-45.696774 + pos: -2.3021066,-45.404835 parent: 30 - uid: 9443 components: @@ -66931,24 +70317,16 @@ entities: parent: 30 - proto: GasMixerFlipped entities: - - uid: 9464 + - uid: 11013 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-48.5 + pos: 3.5,-49.5 parent: 30 - type: AtmosPipeColor color: '#947507FF' - proto: GasOutletInjector entities: - - uid: 1976 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-56.5 - parent: 30 - - type: AtmosPipeColor - color: '#947507FF' - uid: 8693 components: - type: Transform @@ -66991,6 +70369,20 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-26.5 parent: 30 + - uid: 10912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-40.5 + parent: 30 + - uid: 20896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-59.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasPassiveVent entities: - uid: 368 @@ -67011,6 +70403,8 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-38.5 parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 8694 components: - type: Transform @@ -67046,26 +70440,6 @@ entities: - type: Transform pos: 27.5,-34.5 parent: 30 - - uid: 9018 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-36.5 - parent: 30 - - uid: 9019 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-36.5 - parent: 30 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 9218 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-56.5 - parent: 30 - uid: 12869 components: - type: Transform @@ -67076,12 +70450,39 @@ entities: - type: Transform pos: 38.5,12.5 parent: 30 + - uid: 20468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-39.5 + parent: 30 - uid: 21275 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-20.5 parent: 30 + - uid: 21654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 21916 + components: + - type: Transform + pos: 5.5,-57.5 + parent: 30 + - uid: 23285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-56.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasPipeBend entities: - uid: 64 @@ -67090,6 +70491,14 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,-62.5 parent: 30 + - uid: 194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-58.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 939 components: - type: Transform @@ -67317,6 +70726,14 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 4893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-58.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 6148 components: - type: Transform @@ -67571,12 +70988,22 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 8540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-51.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 8576 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-38.5 parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 8707 components: - type: Transform @@ -67619,22 +71046,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,-35.5 parent: 30 - - uid: 8784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-23.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8786 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-21.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 8868 components: - type: Transform @@ -67665,14 +71076,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8933 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-57.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 8944 components: - type: Transform @@ -67695,14 +71098,13 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9023 + - uid: 9013 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-36.5 + pos: 2.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#947507FF' + color: '#FF1212FF' - uid: 9051 components: - type: Transform @@ -67710,19 +71112,19 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9063 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-48.5 - parent: 30 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 9216 + - uid: 9069 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-49.5 + pos: -3.5,-48.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 9074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-23.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' @@ -67733,6 +71135,22 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 9293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-41.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 9302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-21.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 9428 components: - type: Transform @@ -67748,21 +71166,28 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9653 + - uid: 9510 components: - type: Transform - pos: 8.5,-42.5 + rot: 1.5707963267948966 rad + pos: 5.5,-31.5 parent: 30 - type: AtmosPipeColor color: '#947507FF' - - uid: 9681 + - uid: 9511 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-42.5 + pos: 6.5,-41.5 parent: 30 - type: AtmosPipeColor color: '#947507FF' + - uid: 9683 + components: + - type: Transform + pos: -1.5,-48.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 9750 components: - type: Transform @@ -67798,26 +71223,10 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-46.5 - parent: 30 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 9790 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-55.5 + pos: 0.5,-48.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9813 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-46.5 - parent: 30 - - type: AtmosPipeColor - color: '#947507FF' - uid: 9892 components: - type: Transform @@ -67865,14 +71274,22 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 11130 + - uid: 10975 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-50.5 + rot: -1.5707963267948966 rad + pos: 4.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#947507FF' + - uid: 10977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-50.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' - uid: 11167 components: - type: Transform @@ -67881,14 +71298,13 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 11272 + - uid: 11649 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-49.5 + pos: 1.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#FF1212FF' - uid: 11668 components: - type: Transform @@ -67934,6 +71350,14 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 12038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-52.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 12488 components: - type: Transform @@ -68356,44 +71780,77 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 20642 + - uid: 20666 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-51.5 + pos: -3.5,-57.5 parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 20645 - components: - - type: Transform - pos: 7.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 20663 + - uid: 20675 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-51.5 + pos: -2.5,-57.5 parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 20671 - components: - - type: Transform - pos: -1.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 20672 + - uid: 20894 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-48.5 + pos: 2.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 20895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 20897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-54.5 parent: 30 - type: AtmosPipeColor color: '#947507FF' + - uid: 20899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-54.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 21162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-51.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-58.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 21259 + components: + - type: Transform + pos: -4.5,-58.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 21262 components: - type: Transform @@ -68417,6 +71874,37 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 21281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-59.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 21314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-59.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 21356 + components: + - type: Transform + pos: -1.5,-57.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 21913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#3AB334FF' - uid: 21986 components: - type: Transform @@ -68478,30 +71966,45 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 23226 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-57.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 23228 + - uid: 23245 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-53.5 + pos: -5.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 23229 + color: '#03FCD3FF' + - uid: 23270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-59.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23272 + components: + - type: Transform + pos: -1.5,-59.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23273 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-53.5 + pos: -1.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#03FCD3FF' - proto: GasPipeFourway entities: - uid: 2101 @@ -68772,6 +72275,19 @@ entities: color: '#FF1212FF' - proto: GasPipeSensor entities: + - uid: 8999 + components: + - type: MetaData + name: gas pipe sensor (TEG Supply) + - type: Transform + pos: 3.5,-54.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' + - type: Label + currentLabel: TEG Supply + - type: NameModifier + baseName: gas pipe sensor - uid: 10653 components: - type: MetaData @@ -68786,19 +72302,6 @@ entities: currentLabel: Cryogenics - type: NameModifier baseName: gas pipe sensor - - uid: 11093 - components: - - type: MetaData - name: gas pipe sensor (TEG Mix) - - type: Transform - pos: 6.5,-41.5 - parent: 30 - - type: AtmosPipeColor - color: '#947507FF' - - type: Label - currentLabel: TEG Mix - - type: NameModifier - baseName: gas pipe sensor - proto: GasPipeSensorDistribution entities: - uid: 11070 @@ -68811,20 +72314,19 @@ entities: color: '#0335FCFF' - proto: GasPipeSensorTEGCold entities: - - uid: 11124 + - uid: 8539 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-51.5 + pos: -1.5,-51.5 parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' - proto: GasPipeSensorTEGHot entities: - - uid: 4425 + - uid: 9295 components: - type: Transform - pos: -1.5,-52.5 + pos: 0.5,-49.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' @@ -70190,6 +73692,12 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 2688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-36.5 + parent: 30 - uid: 2703 components: - type: Transform @@ -74313,6 +77821,11 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 4799 + components: + - type: Transform + pos: 13.5,-37.5 + parent: 30 - uid: 4808 components: - type: Transform @@ -76615,6 +80128,8 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-37.5 parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 8544 components: - type: Transform @@ -76629,6 +80144,8 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-38.5 parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 8714 components: - type: Transform @@ -77005,22 +80522,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8785 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-22.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8787 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-21.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 8788 components: - type: Transform @@ -77835,48 +81336,27 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9015 + - uid: 8984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-36.5 + pos: 6.5,-45.5 parent: 30 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 8985 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-36.5 - parent: 30 - - uid: 9017 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-36.5 - parent: 30 - - uid: 9020 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-36.5 + pos: -3.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#947507FF' - - uid: 9021 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-36.5 - parent: 30 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 9022 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-36.5 - parent: 30 - - type: AtmosPipeColor - color: '#947507FF' + color: '#03FCD3FF' - uid: 9035 components: - type: Transform @@ -77893,6 +81373,13 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 9037 + components: + - type: Transform + pos: 6.5,-43.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9039 components: - type: Transform @@ -77916,18 +81403,38 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9075 + - uid: 9072 components: - type: Transform - pos: 6.5,-37.5 + pos: 0.5,-51.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9073 + components: + - type: Transform + pos: 17.5,-22.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9159 + components: + - type: Transform + pos: 6.5,-42.5 parent: 30 - type: AtmosPipeColor color: '#947507FF' - - uid: 9217 + - uid: 9213 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-55.5 + pos: 3.5,-51.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 9216 + components: + - type: Transform + pos: 3.5,-56.5 parent: 30 - type: AtmosPipeColor color: '#947507FF' @@ -77938,30 +81445,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9293 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9294 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9320 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-48.5 - parent: 30 - - type: AtmosPipeColor - color: '#947507FF' - uid: 9341 components: - type: Transform @@ -77970,13 +81453,29 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9353 + - uid: 9348 components: - type: Transform - pos: -4.5,-52.5 + rot: 1.5707963267948966 rad + pos: 1.5,-48.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 9353 + components: + - type: Transform + pos: 6.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 9373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-50.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9416 components: - type: Transform @@ -78070,6 +81569,18 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 9504 + components: + - type: Transform + pos: 6.5,-46.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 9508 + components: + - type: Transform + pos: 13.5,-38.5 + parent: 30 - uid: 9564 components: - type: Transform @@ -78140,6 +81651,36 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 9642 + components: + - type: Transform + pos: 1.5,-54.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-48.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 9651 + components: + - type: Transform + pos: 2.5,-54.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-31.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9670 components: - type: Transform @@ -78148,14 +81689,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9683 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-47.5 - parent: 30 - - type: AtmosPipeColor - color: '#947507FF' - uid: 9685 components: - type: Transform @@ -78183,11 +81716,10 @@ entities: - uid: 9701 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-42.5 + pos: -3.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#947507FF' + color: '#03FCD3FF' - uid: 9729 components: - type: Transform @@ -78519,14 +82051,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9788 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-44.5 - parent: 30 - - type: AtmosPipeColor - color: '#947507FF' - uid: 9794 components: - type: Transform @@ -78567,14 +82091,13 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9818 + - uid: 9813 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-56.5 + pos: 6.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - uid: 9834 components: - type: Transform @@ -78729,14 +82252,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9966 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-54.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 9979 components: - type: Transform @@ -78800,18 +82315,10 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10128 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-45.5 - parent: 30 - - type: AtmosPipeColor - color: '#947507FF' - uid: 10129 components: - type: Transform - pos: 6.5,-38.5 + pos: 6.5,-47.5 parent: 30 - type: AtmosPipeColor color: '#947507FF' @@ -78890,13 +82397,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10212 - components: - - type: Transform - pos: 6.5,-40.5 - parent: 30 - - type: AtmosPipeColor - color: '#947507FF' - uid: 10215 components: - type: Transform @@ -79050,13 +82550,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10309 - components: - - type: Transform - pos: -4.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 10397 components: - type: Transform @@ -79109,14 +82602,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 10557 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-43.5 - parent: 30 - - type: AtmosPipeColor - color: '#947507FF' - uid: 10603 components: - type: Transform @@ -79180,21 +82665,29 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10793 - components: - - type: Transform - pos: 6.5,-39.5 - parent: 30 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 11088 + - uid: 10907 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-54.5 + pos: 11.5,-35.5 + parent: 30 + - uid: 10910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-39.5 + parent: 30 + - uid: 10911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-38.5 + parent: 30 + - uid: 10913 + components: + - type: Transform + pos: 13.5,-39.5 parent: 30 - - type: AtmosPipeColor - color: '#947507FF' - uid: 11100 components: - type: Transform @@ -79233,11 +82726,10 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11131 + - uid: 11123 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-46.5 + pos: 3.5,-52.5 parent: 30 - type: AtmosPipeColor color: '#947507FF' @@ -80201,6 +83693,13 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 12085 + components: + - type: Transform + pos: 3.5,-55.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' - uid: 12101 components: - type: Transform @@ -82015,29 +85514,12 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 13503 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 13525 - components: - - type: Transform - pos: -3.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 13526 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-55.5 + pos: 12.5,-37.5 parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13635 components: - type: Transform @@ -82189,6 +85671,13 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 13768 + components: + - type: Transform + pos: 3.5,-57.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13769 components: - type: Transform @@ -82347,14 +85836,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 13956 components: - type: Transform @@ -84806,6 +88287,20 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 19840 + components: + - type: Transform + pos: -1.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 19843 + components: + - type: Transform + pos: 2.5,-52.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 20329 components: - type: Transform @@ -84841,63 +88336,153 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 20643 + - uid: 20416 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-51.5 + pos: 2.5,-50.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 20417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-37.5 + parent: 30 + - uid: 20418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-36.5 + parent: 30 + - uid: 20430 + components: + - type: Transform + pos: -3.5,-50.5 parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 20646 + - uid: 20464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-51.5 + rot: 3.141592653589793 rad + pos: 12.5,-38.5 + parent: 30 + - uid: 20466 + components: + - type: Transform + pos: 13.5,-35.5 + parent: 30 + - uid: 20528 + components: + - type: Transform + pos: 13.5,-36.5 + parent: 30 + - uid: 20544 + components: + - type: Transform + pos: 3.5,-58.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 20651 - components: - - type: Transform - pos: 3.5,-54.5 - parent: 30 - - uid: 20652 - components: - - type: Transform - pos: 2.5,-54.5 - parent: 30 + color: '#947507FF' - uid: 20658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-51.5 + pos: 2.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 20663 + components: + - type: Transform + pos: -3.5,-54.5 parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 20659 + - uid: 20664 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 20661 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-51.5 + pos: -3.5,-55.5 parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 20669 components: - type: Transform - pos: -3.5,-51.5 + pos: -2.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#947507FF' + color: '#03FCD3FF' + - uid: 20671 + components: + - type: Transform + pos: -2.5,-55.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 20672 + components: + - type: Transform + pos: -2.5,-56.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 20676 + components: + - type: Transform + pos: 2.5,-55.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 20677 + components: + - type: Transform + pos: 2.5,-56.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 20678 + components: + - type: Transform + pos: 2.5,-57.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 20679 + components: + - type: Transform + pos: 2.5,-58.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 20681 + components: + - type: Transform + pos: 1.5,-55.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 20682 + components: + - type: Transform + pos: 1.5,-56.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 20683 + components: + - type: Transform + pos: 1.5,-57.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 20706 + components: + - type: Transform + pos: 1.5,-58.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 21264 components: - type: Transform @@ -85007,6 +88592,22 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 21756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 21915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-59.5 + parent: 30 + - type: AtmosPipeColor + color: '#3AB334FF' - uid: 21987 components: - type: Transform @@ -85939,29 +89540,186 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 23225 + - uid: 23277 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-57.5 + pos: -2.5,-58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 23227 + color: '#03FCD3FF' + - uid: 23278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23284 + components: + - type: Transform + pos: -0.5,-55.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23316 + components: + - type: Transform + pos: -3.5,-56.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23317 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-54.5 + pos: 12.5,-35.5 parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 23230 + - uid: 23319 components: - type: Transform - pos: -4.5,-50.5 + rot: -1.5707963267948966 rad + pos: 13.5,-31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' + - uid: 23320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-31.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-31.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-31.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-31.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-31.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-31.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-31.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-32.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-33.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-34.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-35.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-36.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-37.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-38.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-39.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-40.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasPipeTJunction entities: - uid: 336 @@ -87687,6 +91445,21 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 9001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-50.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 9015 + components: + - type: Transform + pos: -0.5,-54.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9085 components: - type: Transform @@ -87695,22 +91468,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9213 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-55.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9295 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-57.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 9444 components: - type: Transform @@ -87905,14 +91662,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10310 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-52.5 - parent: 30 - - type: AtmosPipeColor - color: '#947507FF' - uid: 10388 components: - type: Transform @@ -87953,13 +91702,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 11094 - components: - - type: Transform - pos: 2.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 11180 components: - type: Transform @@ -88839,6 +92581,30 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 20440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-51.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 20680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-52.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 20898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-51.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 22014 components: - type: Transform @@ -88862,21 +92628,16 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 23236 + - uid: 23281 components: - type: Transform - pos: -2.5,-49.5 + rot: -1.5707963267948966 rad + pos: -1.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#03FCD3FF' - proto: GasPort entities: - - uid: 4454 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-51.5 - parent: 30 - uid: 6757 components: - type: Transform @@ -88893,6 +92654,20 @@ entities: parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 9215 + components: + - type: Transform + pos: 4.5,-48.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 9790 + components: + - type: Transform + pos: 3.5,-48.5 + parent: 30 + - type: AtmosPipeColor + color: '#947507FF' - uid: 10390 components: - type: Transform @@ -88972,33 +92747,21 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-8.5 parent: 30 - - uid: 20655 - components: - - type: Transform - pos: -3.5,-47.5 - parent: 30 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 20656 - components: - - type: Transform - pos: -2.5,-47.5 - parent: 30 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 20657 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-50.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 21370 components: - type: Transform pos: -4.5,-11.5 parent: 30 + - uid: 23288 + components: + - type: Transform + pos: 1.5,-49.5 + parent: 30 + - uid: 23289 + components: + - type: Transform + pos: -2.5,-49.5 + parent: 30 - proto: GasPressurePump entities: - uid: 337 @@ -89078,31 +92841,43 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-33.5 parent: 30 - - uid: 9013 + - uid: 9294 components: - type: MetaData - name: mix pump + name: TEG Supply - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-36.5 - parent: 30 - - uid: 9028 - components: - - type: MetaData - name: mix to supermatter loop - - type: Transform - pos: 6.5,-36.5 + pos: 15.5,-31.5 parent: 30 - type: AtmosPipeColor color: '#947507FF' - - uid: 9182 + - uid: 9303 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-48.5 + rot: 1.5707963267948966 rad + pos: 16.5,-23.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-34.5 + parent: 30 + - uid: 10128 + components: + - type: Transform + pos: 3.5,-53.5 parent: 30 - type: AtmosPipeColor color: '#947507FF' + - uid: 10908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-34.5 + parent: 30 - uid: 12922 components: - type: Transform @@ -89114,36 +92889,37 @@ entities: - type: Transform pos: 38.5,10.5 parent: 30 - - uid: 13524 + - uid: 13526 components: - type: Transform - pos: -3.5,-50.5 + pos: 13.5,-34.5 parent: 30 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 23234 + - uid: 23286 components: - type: Transform - pos: -3.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 23235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-50.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 23237 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-50.5 + pos: 1.5,-50.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 23287 + components: + - type: Transform + pos: -2.5,-50.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GasPressureRegulator + entities: + - uid: 21912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-58.5 + parent: 30 + - type: GasPressureRegulator + threshold: 95000 + - type: AtmosPipeColor + color: '#3AB334FF' - proto: GasThermoMachineFreezer entities: - uid: 482 @@ -89158,12 +92934,6 @@ entities: parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 905 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-53.5 - parent: 30 - uid: 7598 components: - type: Transform @@ -89172,23 +92942,11 @@ entities: parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 11013 + - uid: 10904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-52.5 - parent: 30 - - uid: 12038 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-33.5 - parent: 30 - - uid: 12084 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-34.5 + rot: 3.141592653589793 rad + pos: 14.5,-34.5 parent: 30 - uid: 12749 components: @@ -89200,37 +92958,44 @@ entities: - type: Transform pos: 39.5,10.5 parent: 30 + - uid: 16828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-34.5 + parent: 30 + - uid: 21419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-54.5 + parent: 30 - proto: GasThermoMachineHeater entities: - - uid: 9997 + - uid: 13524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-34.5 + parent: 30 + - uid: 21420 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-53.5 parent: 30 - - uid: 12085 +- proto: GasValve + entities: + - uid: 9000 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-35.5 - parent: 30 - - uid: 13960 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-52.5 - parent: 30 -- proto: GasValve - entities: - - uid: 20648 - components: - - type: Transform - pos: -4.5,-53.5 + pos: 4.5,-50.5 parent: 30 - type: GasValve open: False - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - uid: 21274 components: - type: MetaData @@ -89243,6 +93008,24 @@ entities: open: False - type: AtmosPipeColor color: '#FF1212FF' + - uid: 23280 + components: + - type: Transform + pos: -1.5,-53.5 + parent: 30 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23283 + components: + - type: Transform + pos: 0.5,-53.5 + parent: 30 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#947507FF' - proto: GasVentPump entities: - uid: 448 @@ -91944,6 +95727,15 @@ entities: - 22825 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 10909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-40.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 10905 - uid: 11166 components: - type: Transform @@ -92757,27 +96549,33 @@ entities: color: '#FF1212FF' - proto: GasVolumePump entities: - - uid: 9373 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 10044 + - uid: 9655 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-51.5 + pos: 2.5,-53.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 20653 + - uid: 9675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-49.5 + pos: 1.5,-53.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-53.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 20661 + components: + - type: Transform + pos: -3.5,-53.5 parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' @@ -92880,11 +96678,6 @@ entities: - type: Transform pos: -66.5,-52.5 parent: 30 - - uid: 194 - components: - - type: Transform - pos: -4.5,-54.5 - parent: 30 - uid: 317 components: - type: Transform @@ -93165,6 +96958,11 @@ entities: - type: Transform pos: -64.5,14.5 parent: 30 + - uid: 906 + components: + - type: Transform + pos: 1.5,-55.5 + parent: 30 - uid: 921 components: - type: Transform @@ -93740,6 +97538,11 @@ entities: - type: Transform pos: 38.5,49.5 parent: 30 + - uid: 1976 + components: + - type: Transform + pos: 5.5,-50.5 + parent: 30 - uid: 2024 components: - type: Transform @@ -93798,13 +97601,11 @@ entities: - uid: 2217 components: - type: Transform - rot: 3.141592653589793 rad pos: -55.5,64.5 parent: 30 - uid: 2259 components: - type: Transform - rot: 3.141592653589793 rad pos: -47.5,70.5 parent: 30 - uid: 2345 @@ -93820,7 +97621,6 @@ entities: - uid: 2351 components: - type: Transform - rot: 3.141592653589793 rad pos: -55.5,65.5 parent: 30 - uid: 2357 @@ -93831,13 +97631,11 @@ entities: - uid: 2363 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,53.5 parent: 30 - uid: 2386 components: - type: Transform - rot: 1.5707963267948966 rad pos: -55.5,67.5 parent: 30 - uid: 2387 @@ -93893,26 +97691,18 @@ entities: - uid: 2639 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,57.5 parent: 30 - uid: 2673 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,55.5 parent: 30 - uid: 2683 components: - type: Transform - rot: 3.141592653589793 rad pos: -49.5,70.5 parent: 30 - - uid: 2688 - components: - - type: Transform - pos: -38.5,65.5 - parent: 30 - uid: 2690 components: - type: Transform @@ -93926,13 +97716,11 @@ entities: - uid: 2696 components: - type: Transform - rot: -1.5707963267948966 rad pos: -51.5,72.5 parent: 30 - uid: 2697 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,72.5 parent: 30 - uid: 2698 @@ -93953,7 +97741,6 @@ entities: - uid: 3524 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,51.5 parent: 30 - uid: 3712 @@ -93989,7 +97776,6 @@ entities: - uid: 4516 components: - type: Transform - rot: 3.141592653589793 rad pos: -47.5,45.5 parent: 30 - uid: 4601 @@ -94000,7 +97786,6 @@ entities: - uid: 4690 components: - type: Transform - rot: 3.141592653589793 rad pos: -45.5,70.5 parent: 30 - uid: 4789 @@ -94028,11 +97813,6 @@ entities: - type: Transform pos: -38.5,62.5 parent: 30 - - uid: 4799 - components: - - type: Transform - pos: -36.5,62.5 - parent: 30 - uid: 4800 components: - type: Transform @@ -94053,11 +97833,6 @@ entities: - type: Transform pos: -60.5,5.5 parent: 30 - - uid: 4893 - components: - - type: Transform - pos: 1.5,-54.5 - parent: 30 - uid: 5018 components: - type: Transform @@ -94393,11 +98168,6 @@ entities: - type: Transform pos: -6.5,50.5 parent: 30 - - uid: 5792 - components: - - type: Transform - pos: -8.5,50.5 - parent: 30 - uid: 5793 components: - type: Transform @@ -94968,6 +98738,16 @@ entities: - type: Transform pos: 6.5,-37.5 parent: 30 + - uid: 8569 + components: + - type: Transform + pos: 9.5,-35.5 + parent: 30 + - uid: 8571 + components: + - type: Transform + pos: 8.5,-36.5 + parent: 30 - uid: 8577 components: - type: Transform @@ -95113,76 +98893,31 @@ entities: - type: Transform pos: 17.5,-37.5 parent: 30 - - uid: 8998 - components: - - type: Transform - pos: 16.5,-36.5 - parent: 30 - - uid: 8999 - components: - - type: Transform - pos: 16.5,-35.5 - parent: 30 - - uid: 9000 - components: - - type: Transform - pos: 16.5,-34.5 - parent: 30 - - uid: 9001 - components: - - type: Transform - pos: 15.5,-33.5 - parent: 30 - - uid: 9002 - components: - - type: Transform - pos: 14.5,-33.5 - parent: 30 - uid: 9003 components: - type: Transform - pos: 12.5,-33.5 - parent: 30 - - uid: 9004 - components: - - type: Transform - pos: 13.5,-33.5 - parent: 30 - - uid: 9005 - components: - - type: Transform - pos: 11.5,-33.5 - parent: 30 - - uid: 9006 - components: - - type: Transform - pos: 10.5,-33.5 - parent: 30 - - uid: 9007 - components: - - type: Transform - pos: 9.5,-33.5 - parent: 30 - - uid: 9008 - components: - - type: Transform - pos: 8.5,-34.5 + pos: 3.5,-55.5 parent: 30 - uid: 9009 components: - type: Transform - pos: 8.5,-35.5 + pos: 12.5,-42.5 parent: 30 - uid: 9010 components: - type: Transform - pos: 8.5,-36.5 + pos: 2.5,-55.5 parent: 30 - uid: 9011 components: - type: Transform pos: 7.5,-37.5 parent: 30 + - uid: 9022 + components: + - type: Transform + pos: 3.5,-63.5 + parent: 30 - uid: 9030 components: - type: Transform @@ -95193,45 +98928,20 @@ entities: - type: Transform pos: -26.5,-19.5 parent: 30 - - uid: 9034 - components: - - type: Transform - pos: 10.5,-37.5 - parent: 30 - - uid: 9037 - components: - - type: Transform - pos: 10.5,-36.5 - parent: 30 - uid: 9044 components: - type: Transform pos: -39.5,34.5 parent: 30 - - uid: 9070 + - uid: 9075 components: - type: Transform - pos: 14.5,-37.5 + pos: -2.5,-55.5 parent: 30 - - uid: 9071 + - uid: 9103 components: - type: Transform - pos: 14.5,-36.5 - parent: 30 - - uid: 9072 - components: - - type: Transform - pos: 13.5,-35.5 - parent: 30 - - uid: 9073 - components: - - type: Transform - pos: 12.5,-35.5 - parent: 30 - - uid: 9074 - components: - - type: Transform - pos: 11.5,-35.5 + pos: -3.5,-63.5 parent: 30 - uid: 9105 components: @@ -95283,11 +98993,6 @@ entities: - type: Transform pos: -1.5,-31.5 parent: 30 - - uid: 9174 - components: - - type: Transform - pos: -2.5,-54.5 - parent: 30 - uid: 9185 components: - type: Transform @@ -95298,6 +99003,11 @@ entities: - type: Transform pos: 47.5,11.5 parent: 30 + - uid: 9244 + components: + - type: Transform + pos: -4.5,-55.5 + parent: 30 - uid: 9282 components: - type: Transform @@ -95328,31 +99038,11 @@ entities: - type: Transform pos: 4.5,-38.5 parent: 30 - - uid: 9324 - components: - - type: Transform - pos: -3.5,-60.5 - parent: 30 - - uid: 9326 - components: - - type: Transform - pos: -0.5,-60.5 - parent: 30 - - uid: 9328 - components: - - type: Transform - pos: 2.5,-60.5 - parent: 30 - uid: 9329 components: - type: Transform pos: 6.5,-60.5 parent: 30 - - uid: 9348 - components: - - type: Transform - pos: 13.5,-52.5 - parent: 30 - uid: 9362 components: - type: Transform @@ -95368,6 +99058,16 @@ entities: - type: Transform pos: -6.5,-37.5 parent: 30 + - uid: 9367 + components: + - type: Transform + pos: 4.5,-60.5 + parent: 30 + - uid: 9368 + components: + - type: Transform + pos: 3.5,-57.5 + parent: 30 - uid: 9371 components: - type: Transform @@ -95388,15 +99088,15 @@ entities: - type: Transform pos: 8.5,-54.5 parent: 30 - - uid: 9504 + - uid: 9464 components: - type: Transform - pos: 13.5,-49.5 + pos: 1.5,-57.5 parent: 30 - - uid: 9505 + - uid: 9507 components: - type: Transform - pos: 13.5,-47.5 + pos: -3.5,-55.5 parent: 30 - uid: 9572 components: @@ -95443,26 +99143,26 @@ entities: - type: Transform pos: -14.5,-44.5 parent: 30 + - uid: 9643 + components: + - type: Transform + pos: 4.5,-58.5 + parent: 30 - uid: 9645 components: - type: Transform pos: 12.5,-45.5 parent: 30 - - uid: 9649 - components: - - type: Transform - pos: 1.5,-60.5 - parent: 30 - - uid: 9650 - components: - - type: Transform - pos: -2.5,-60.5 - parent: 30 - uid: 9662 components: - type: Transform pos: 12.5,37.5 parent: 30 + - uid: 9679 + components: + - type: Transform + pos: -1.5,-63.5 + parent: 30 - uid: 9719 components: - type: Transform @@ -95533,15 +99233,15 @@ entities: - type: Transform pos: -6.5,-46.5 parent: 30 - - uid: 9973 + - uid: 9997 components: - type: Transform - pos: 11.5,-54.5 + pos: 2.5,-57.5 parent: 30 - - uid: 9975 + - uid: 10004 components: - type: Transform - pos: 10.5,-54.5 + pos: 11.5,-44.5 parent: 30 - uid: 10068 components: @@ -95578,6 +99278,11 @@ entities: - type: Transform pos: -57.5,-10.5 parent: 30 + - uid: 10140 + components: + - type: Transform + pos: 2.5,-63.5 + parent: 30 - uid: 10191 components: - type: Transform @@ -95618,6 +99323,11 @@ entities: - type: Transform pos: 23.5,-16.5 parent: 30 + - uid: 10428 + components: + - type: Transform + pos: -38.5,65.5 + parent: 30 - uid: 10548 components: - type: Transform @@ -95626,17 +99336,17 @@ entities: - uid: 10553 components: - type: Transform - pos: 13.5,-51.5 + pos: -35.5,62.5 parent: 30 - - uid: 10555 + - uid: 10557 components: - type: Transform - pos: 12.5,-54.5 + pos: -8.5,50.5 parent: 30 - uid: 10582 components: - type: Transform - pos: 4.5,-60.5 + pos: 11.5,-35.5 parent: 30 - uid: 10614 components: @@ -95648,10 +99358,15 @@ entities: - type: Transform pos: 10.5,-45.5 parent: 30 + - uid: 10640 + components: + - type: Transform + pos: 15.5,-35.5 + parent: 30 - uid: 10641 components: - type: Transform - pos: -3.5,-61.5 + pos: 13.5,-35.5 parent: 30 - uid: 10649 components: @@ -95678,6 +99393,26 @@ entities: - type: Transform pos: -35.5,-26.5 parent: 30 + - uid: 10793 + components: + - type: Transform + pos: 10.5,-35.5 + parent: 30 + - uid: 10797 + components: + - type: Transform + pos: 14.5,-35.5 + parent: 30 + - uid: 10976 + components: + - type: Transform + pos: 9.5,-51.5 + parent: 30 + - uid: 10978 + components: + - type: Transform + pos: 9.5,-50.5 + parent: 30 - uid: 11024 components: - type: Transform @@ -95783,11 +99518,31 @@ entities: - type: Transform pos: -46.5,-58.5 parent: 30 + - uid: 11067 + components: + - type: Transform + pos: 9.5,-46.5 + parent: 30 - uid: 11085 components: - type: Transform pos: -14.5,-57.5 parent: 30 + - uid: 11088 + components: + - type: Transform + pos: 9.5,-48.5 + parent: 30 + - uid: 11093 + components: + - type: Transform + pos: 9.5,-52.5 + parent: 30 + - uid: 11094 + components: + - type: Transform + pos: 9.5,-47.5 + parent: 30 - uid: 11105 components: - type: Transform @@ -95801,13 +99556,18 @@ entities: - uid: 11136 components: - type: Transform - pos: 3.5,-54.5 + pos: 5.5,-62.5 parent: 30 - uid: 11137 components: - type: Transform pos: -19.5,-57.5 parent: 30 + - uid: 11147 + components: + - type: Transform + pos: 0.5,-63.5 + parent: 30 - uid: 11163 components: - type: Transform @@ -95848,6 +99608,11 @@ entities: - type: Transform pos: -12.5,-79.5 parent: 30 + - uid: 11272 + components: + - type: Transform + pos: 2.5,-61.5 + parent: 30 - uid: 11276 components: - type: Transform @@ -95863,6 +99628,11 @@ entities: - type: Transform pos: -26.5,-78.5 parent: 30 + - uid: 11287 + components: + - type: Transform + pos: 0.5,-60.5 + parent: 30 - uid: 11293 components: - type: Transform @@ -95898,6 +99668,36 @@ entities: - type: Transform pos: -14.5,-31.5 parent: 30 + - uid: 11328 + components: + - type: Transform + pos: 14.5,-44.5 + parent: 30 + - uid: 11329 + components: + - type: Transform + pos: 16.5,-43.5 + parent: 30 + - uid: 11330 + components: + - type: Transform + pos: 15.5,-44.5 + parent: 30 + - uid: 11331 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 30 + - uid: 11334 + components: + - type: Transform + pos: 16.5,-42.5 + parent: 30 + - uid: 11344 + components: + - type: Transform + pos: -12.5,54.5 + parent: 30 - uid: 11580 components: - type: Transform @@ -96023,6 +99823,11 @@ entities: - type: Transform pos: -20.5,-57.5 parent: 30 + - uid: 12595 + components: + - type: Transform + pos: 4.5,-63.5 + parent: 30 - uid: 12650 components: - type: Transform @@ -96108,6 +99913,11 @@ entities: - type: Transform pos: -61.5,-18.5 parent: 30 + - uid: 13087 + components: + - type: Transform + pos: 10.5,-44.5 + parent: 30 - uid: 13097 components: - type: Transform @@ -96323,10 +100133,10 @@ entities: - type: Transform pos: 40.5,36.5 parent: 30 - - uid: 13954 + - uid: 13955 components: - type: Transform - pos: -3.5,-54.5 + pos: 5.5,-51.5 parent: 30 - uid: 13973 components: @@ -96458,6 +100268,11 @@ entities: - type: Transform pos: -38.5,69.5 parent: 30 + - uid: 14952 + components: + - type: Transform + pos: 10.5,-40.5 + parent: 30 - uid: 14970 components: - type: Transform @@ -96478,6 +100293,11 @@ entities: - type: Transform pos: -33.5,65.5 parent: 30 + - uid: 15189 + components: + - type: Transform + pos: 11.5,-38.5 + parent: 30 - uid: 15207 components: - type: Transform @@ -97133,6 +100953,21 @@ entities: - type: Transform pos: -41.5,70.5 parent: 30 + - uid: 17073 + components: + - type: Transform + pos: 16.5,-36.5 + parent: 30 + - uid: 17074 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 30 + - uid: 17118 + components: + - type: Transform + pos: -0.5,-63.5 + parent: 30 - uid: 17263 components: - type: Transform @@ -97578,6 +101413,16 @@ entities: - type: Transform pos: -66.5,-18.5 parent: 30 + - uid: 17784 + components: + - type: Transform + pos: 1.5,-61.5 + parent: 30 + - uid: 17786 + components: + - type: Transform + pos: 3.5,-61.5 + parent: 30 - uid: 17796 components: - type: Transform @@ -98328,6 +102173,16 @@ entities: - type: Transform pos: 8.5,77.5 parent: 30 + - uid: 20429 + components: + - type: Transform + pos: 0.5,-59.5 + parent: 30 + - uid: 20465 + components: + - type: Transform + pos: 13.5,-38.5 + parent: 30 - uid: 20519 components: - type: Transform @@ -98358,6 +102213,11 @@ entities: - type: Transform pos: -36.5,-36.5 parent: 30 + - uid: 20631 + components: + - type: Transform + pos: 5.5,-49.5 + parent: 30 - uid: 20637 components: - type: Transform @@ -98373,15 +102233,15 @@ entities: - type: Transform pos: -6.5,-48.5 parent: 30 - - uid: 20664 + - uid: 20657 components: - type: Transform - pos: 2.5,-54.5 + pos: 0.5,-58.5 parent: 30 - - uid: 20666 + - uid: 20659 components: - type: Transform - pos: 5.5,-51.5 + pos: 13.5,-44.5 parent: 30 - uid: 20667 components: @@ -98403,21 +102263,6 @@ entities: - type: Transform pos: -10.5,15.5 parent: 30 - - uid: 20675 - components: - - type: Transform - pos: 5.5,-50.5 - parent: 30 - - uid: 20676 - components: - - type: Transform - pos: 5.5,-49.5 - parent: 30 - - uid: 20677 - components: - - type: Transform - pos: 5.5,-48.5 - parent: 30 - uid: 20702 components: - type: Transform @@ -98568,31 +102413,6 @@ entities: - type: Transform pos: 22.5,-41.5 parent: 30 - - uid: 21419 - components: - - type: Transform - pos: 14.5,-42.5 - parent: 30 - - uid: 21420 - components: - - type: Transform - pos: 13.5,-42.5 - parent: 30 - - uid: 21421 - components: - - type: Transform - pos: 12.5,-42.5 - parent: 30 - - uid: 21422 - components: - - type: Transform - pos: 11.5,-42.5 - parent: 30 - - uid: 21423 - components: - - type: Transform - pos: 10.5,-42.5 - parent: 30 - uid: 21425 components: - type: Transform @@ -99223,11 +103043,6 @@ entities: - type: Transform pos: -14.5,54.5 parent: 30 - - uid: 22456 - components: - - type: Transform - pos: -12.5,54.5 - parent: 30 - uid: 22457 components: - type: Transform @@ -99278,6 +103093,66 @@ entities: - type: Transform pos: -11.5,54.5 parent: 30 + - uid: 22526 + components: + - type: Transform + pos: 6.5,-63.5 + parent: 30 + - uid: 22527 + components: + - type: Transform + pos: 5.5,-64.5 + parent: 30 + - uid: 22528 + components: + - type: Transform + pos: 5.5,-65.5 + parent: 30 + - uid: 22529 + components: + - type: Transform + pos: 8.5,-63.5 + parent: 30 + - uid: 22530 + components: + - type: Transform + pos: 9.5,-62.5 + parent: 30 + - uid: 22531 + components: + - type: Transform + pos: 8.5,-61.5 + parent: 30 + - uid: 22532 + components: + - type: Transform + pos: 9.5,-60.5 + parent: 30 + - uid: 22533 + components: + - type: Transform + pos: 7.5,-62.5 + parent: 30 + - uid: 22549 + components: + - type: Transform + pos: 10.5,-59.5 + parent: 30 + - uid: 22590 + components: + - type: Transform + pos: 11.5,-60.5 + parent: 30 + - uid: 22591 + components: + - type: Transform + pos: 12.5,-59.5 + parent: 30 + - uid: 22776 + components: + - type: Transform + pos: 11.5,-58.5 + parent: 30 - uid: 22788 components: - type: Transform @@ -99618,6 +103493,76 @@ entities: - type: Transform pos: 40.5,47.5 parent: 30 + - uid: 23282 + components: + - type: Transform + pos: -0.5,-55.5 + parent: 30 + - uid: 23766 + components: + - type: Transform + pos: -5.5,69.5 + parent: 30 + - uid: 23767 + components: + - type: Transform + pos: -5.5,70.5 + parent: 30 + - uid: 23768 + components: + - type: Transform + pos: -5.5,71.5 + parent: 30 + - uid: 23769 + components: + - type: Transform + pos: -1.5,71.5 + parent: 30 + - uid: 23770 + components: + - type: Transform + pos: -1.5,70.5 + parent: 30 + - uid: 23771 + components: + - type: Transform + pos: -1.5,69.5 + parent: 30 + - uid: 23772 + components: + - type: Transform + pos: 0.5,69.5 + parent: 30 + - uid: 23773 + components: + - type: Transform + pos: 0.5,70.5 + parent: 30 + - uid: 23774 + components: + - type: Transform + pos: 0.5,71.5 + parent: 30 + - uid: 23775 + components: + - type: Transform + pos: 4.5,71.5 + parent: 30 + - uid: 23776 + components: + - type: Transform + pos: 4.5,70.5 + parent: 30 + - uid: 23777 + components: + - type: Transform + pos: 4.5,69.5 + parent: 30 + - uid: 23795 + components: + - type: Transform + pos: -36.5,62.5 + parent: 30 - proto: GrilleBroken entities: - uid: 695 @@ -99959,6 +103904,17 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-31.5 parent: 30 + - uid: 20415 + components: + - type: Transform + pos: 12.5,-44.5 + parent: 30 + - uid: 20643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-44.5 + parent: 30 - uid: 20891 components: - type: Transform @@ -99973,6 +103929,40 @@ entities: - type: Transform pos: -34.5,-46.5 parent: 30 + - uid: 21398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-63.5 + parent: 30 + - uid: 21422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-56.5 + parent: 30 + - uid: 21423 + components: + - type: Transform + pos: 8.5,-53.5 + parent: 30 + - uid: 21652 + components: + - type: Transform + pos: 9.5,-45.5 + parent: 30 + - uid: 22781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-64.5 + parent: 30 + - uid: 22791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-61.5 + parent: 30 - uid: 22987 components: - type: Transform @@ -100262,31 +104252,43 @@ entities: parent: 30 - proto: HeatExchanger entities: - - uid: 2177 + - uid: 8536 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-56.5 + pos: 1.5,-59.5 parent: 30 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9159 - components: - - type: Transform - pos: -4.5,-56.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9651 + - uid: 20893 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-56.5 + pos: 2.5,-59.5 parent: 30 - - uid: 20644 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23274 components: - type: Transform - pos: 7.5,-50.5 + rot: 1.5707963267948966 rad + pos: -2.5,-59.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-57.5 parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' @@ -101248,24 +105250,32 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,82.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 17781 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,82.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 17782 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,81.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 22231 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,33.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: IntercomCommand entities: - uid: 21194 @@ -101274,12 +105284,16 @@ entities: rot: 3.141592653589793 rad pos: 0.5,73.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 21195 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,62.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: IntercomCommon entities: - uid: 3637 @@ -101287,46 +105301,62 @@ entities: - type: Transform pos: -45.5,9.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 6448 components: - type: Transform pos: -27.5,28.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 22298 components: - type: Transform pos: 21.5,41.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 22299 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,31.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 22300 components: - type: Transform pos: 49.5,20.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 22301 components: - type: Transform pos: 3.5,9.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 22302 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-43.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: IntercomEngineering entities: - - uid: 22290 + - uid: 9102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-33.5 + rot: 1.5707963267948966 rad + pos: 4.5,-34.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: IntercomMedical entities: - uid: 7346 @@ -101335,12 +105365,16 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-3.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 7501 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-8.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: IntercomScience entities: - uid: 14357 @@ -101349,18 +105383,24 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,17.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 22288 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,8.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 22289 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,23.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: IntercomSecurity entities: - uid: 2546 @@ -101369,17 +105409,23 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,46.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 4377 components: - type: Transform pos: -33.5,38.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 22284 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,49.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: IntercomService entities: - uid: 4386 @@ -101387,17 +105433,23 @@ entities: - type: Transform pos: -23.5,14.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 14492 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,5.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 16175 components: - type: Transform pos: -7.5,15.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: IntercomSupply entities: - uid: 22295 @@ -101406,12 +105458,16 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,-4.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 22296 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-8.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: IronRockMining entities: - uid: 1955 @@ -103191,6 +107247,8 @@ entities: 3180: - - Pressed - Close + - type: Fixtures + fixtures: {} - uid: 2578 components: - type: MetaData @@ -103241,6 +107299,53 @@ entities: - Open - - Pressed - AutoClose + - type: Fixtures + fixtures: {} +- proto: LockableButtonEngineering + entities: + - uid: 9007 + components: + - type: MetaData + name: Blast Door + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-39.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 16827: + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} + - uid: 9690 + components: + - type: MetaData + name: Blast Door + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-35.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 16827: + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} + - uid: 22285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-57.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 17119: + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - proto: LockerAtmosphericsFilled entities: - uid: 9079 @@ -104928,27 +109033,37 @@ entities: - type: Transform pos: -24.5,23.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 6510 components: - type: Transform pos: 29.5,32.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 6511 components: - type: Transform pos: 30.5,32.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 6512 components: - type: Transform pos: 31.5,32.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 22108 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,40.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: MonkeyCube entities: - uid: 499 @@ -105356,6 +109471,11 @@ entities: - type: Transform pos: -9.3813,-38.5809 parent: 30 + - uid: 23311 + components: + - type: Transform + pos: 4.278227,-46.40056 + parent: 30 - proto: NitrousOxideCanister entities: - uid: 7289 @@ -105595,6 +109715,8 @@ entities: - type: Transform pos: -43.5,11.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PaintingCafeTerraceAtNight entities: - uid: 21506 @@ -105602,6 +109724,8 @@ entities: - type: Transform pos: -17.5,33.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PaintingMonkey entities: - uid: 684 @@ -105609,26 +109733,36 @@ entities: - type: Transform pos: -4.5,16.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 17100 components: - type: Transform pos: -56.5,46.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 17653 components: - type: Transform pos: -81.5,-41.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 17955 components: - type: Transform pos: -52.5,-54.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 17956 components: - type: Transform pos: -52.5,-50.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PaintingOldGuitarist entities: - uid: 7484 @@ -105636,11 +109770,15 @@ entities: - type: Transform pos: -27.5,0.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 22103 components: - type: Transform pos: -21.5,47.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PaintingOlympia entities: - uid: 22105 @@ -105648,6 +109786,8 @@ entities: - type: Transform pos: 18.5,59.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PaintingSadClown entities: - uid: 14969 @@ -105655,6 +109795,8 @@ entities: - type: Transform pos: 1.5,15.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PaintingTheGreatWave entities: - uid: 7745 @@ -105662,6 +109804,8 @@ entities: - type: Transform pos: -27.5,38.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PaintingTheScream entities: - uid: 7746 @@ -105669,6 +109813,8 @@ entities: - type: Transform pos: 0.5,34.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PaladinCircuitBoard entities: - uid: 21673 @@ -106038,6 +110184,11 @@ entities: - type: Transform pos: -38.461082,27.525124 parent: 30 + - uid: 10422 + components: + - type: Transform + pos: 4.523404,-52.445957 + parent: 30 - uid: 22306 components: - type: Transform @@ -106335,6 +110486,11 @@ entities: - type: Transform pos: 27.5,-30.5 parent: 30 + - uid: 23823 + components: + - type: Transform + pos: -19.5,-35.5 + parent: 30 - proto: PlasmaReinforcedWindowDirectional entities: - uid: 2028 @@ -106383,6 +110539,18 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,53.5 parent: 30 +- proto: PlasmaTank + entities: + - uid: 23385 + components: + - type: Transform + pos: -19.491625,-50.34907 + parent: 30 + - uid: 23386 + components: + - type: Transform + pos: -19.366564,-50.463734 + parent: 30 - proto: PlasmaWindoorSecureArmoryLocked entities: - uid: 1943 @@ -106530,13 +110698,6 @@ entities: - type: Transform pos: 40.559143,-53.538166 parent: 30 -- proto: PonderingOrb - entities: - - uid: 17036 - components: - - type: Transform - pos: -60.5,57.5 - parent: 30 - proto: PortableFlasher entities: - uid: 2719 @@ -106644,6 +110805,8 @@ entities: - type: Transform pos: 13.5,-28.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterContrabandBeachStarYamamoto entities: - uid: 13074 @@ -106651,6 +110814,8 @@ entities: - type: Transform pos: 28.5,-8.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterContrabandBountyHunters entities: - uid: 6449 @@ -106658,6 +110823,8 @@ entities: - type: Transform pos: -36.5,57.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterContrabandClown entities: - uid: 4445 @@ -106665,11 +110832,15 @@ entities: - type: Transform pos: 5.5,15.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 16148 components: - type: Transform pos: 47.5,26.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterContrabandDonutCorp entities: - uid: 4883 @@ -106677,6 +110848,8 @@ entities: - type: Transform pos: -28.5,54.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterContrabandFreeDrone entities: - uid: 10293 @@ -106684,6 +110857,8 @@ entities: - type: Transform pos: -40.5,28.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterContrabandHackingGuide entities: - uid: 1646 @@ -106691,6 +110866,8 @@ entities: - type: Transform pos: -28.5,34.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterContrabandInterdyne entities: - uid: 12243 @@ -106698,6 +110875,8 @@ entities: - type: Transform pos: -40.5,-25.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterContrabandKosmicheskayaStantsiya entities: - uid: 22087 @@ -106705,6 +110884,8 @@ entities: - type: Transform pos: 27.5,-8.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterContrabandLamarr entities: - uid: 12783 @@ -106712,6 +110893,8 @@ entities: - type: Transform pos: 30.5,16.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterContrabandMissingGloves entities: - uid: 1647 @@ -106719,6 +110902,8 @@ entities: - type: Transform pos: -31.5,34.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterContrabandNuclearDeviceInformational entities: - uid: 21699 @@ -106726,6 +110911,8 @@ entities: - type: Transform pos: 2.5,42.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterContrabandRIPBadger entities: - uid: 9317 @@ -106733,6 +110920,8 @@ entities: - type: Transform pos: 15.5,-15.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterContrabandRouny entities: - uid: 22102 @@ -106740,6 +110929,8 @@ entities: - type: Transform pos: -31.5,14.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterContrabandShamblersJuice entities: - uid: 6640 @@ -106747,11 +110938,15 @@ entities: - type: Transform pos: 0.5,16.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 21355 components: - type: Transform pos: -1.5,-8.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterContrabandSmoke entities: - uid: 16190 @@ -106759,6 +110954,8 @@ entities: - type: Transform pos: 38.5,20.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterContrabandTools entities: - uid: 1650 @@ -106766,6 +110963,8 @@ entities: - type: Transform pos: -29.5,34.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterContrabandUnreadableAnnouncement entities: - uid: 2423 @@ -106773,11 +110972,15 @@ entities: - type: Transform pos: -32.583633,55.742336 parent: 30 + - type: Fixtures + fixtures: {} - uid: 16191 components: - type: Transform pos: 50.5,32.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterContrabandVoteWeh entities: - uid: 19821 @@ -106785,6 +110988,8 @@ entities: - type: Transform pos: 11.5,24.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterContrabandWehWatches entities: - uid: 21073 @@ -106792,6 +110997,8 @@ entities: - type: Transform pos: -29.5,-41.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterLegitAnatomyPoster entities: - uid: 7596 @@ -106799,6 +111006,8 @@ entities: - type: Transform pos: -17.5,-13.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterLegitCarpMount entities: - uid: 14968 @@ -106806,6 +111015,8 @@ entities: - type: Transform pos: 29.5,-8.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterLegitCleanliness entities: - uid: 1387 @@ -106813,16 +111024,22 @@ entities: - type: Transform pos: -33.5,9.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 6863 components: - type: Transform pos: -16.5,-6.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 16174 components: - type: Transform pos: 47.5,22.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterLegitCohibaRobustoAd entities: - uid: 607 @@ -106830,21 +111047,29 @@ entities: - type: Transform pos: 7.5,6.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 16919 components: - type: Transform pos: -43.5,2.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 21354 components: - type: Transform pos: 2.5,-6.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 21554 components: - type: Transform pos: 44.5,32.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterLegitDickGumshue entities: - uid: 2418 @@ -106852,6 +111077,8 @@ entities: - type: Transform pos: -45.5,33.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterLegitEnlist entities: - uid: 2417 @@ -106859,6 +111086,8 @@ entities: - type: Transform pos: -33.5,55.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterLegitGetYourLEGS entities: - uid: 7426 @@ -106866,6 +111095,8 @@ entities: - type: Transform pos: -29.5,0.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterLegitHelpOthers entities: - uid: 1033 @@ -106873,6 +111104,8 @@ entities: - type: Transform pos: -37.5,1.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterLegitHereForYourSafety entities: - uid: 2416 @@ -106880,11 +111113,15 @@ entities: - type: Transform pos: -45.5,47.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 9224 components: - type: Transform pos: -1.5,-17.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterLegitHighClassMartini entities: - uid: 16753 @@ -106892,6 +111129,8 @@ entities: - type: Transform pos: -42.5,23.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterLegitMime entities: - uid: 15203 @@ -106899,6 +111138,8 @@ entities: - type: Transform pos: 6.5,11.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterLegitNanomichiAd entities: - uid: 1648 @@ -106906,6 +111147,8 @@ entities: - type: Transform pos: -23.5,30.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterLegitNanotrasenLogo entities: - uid: 2419 @@ -106913,71 +111156,99 @@ entities: - type: Transform pos: -26.5,53.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 4446 components: - type: Transform pos: -4.5,22.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 5251 components: - type: Transform pos: -22.5,32.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 5252 components: - type: Transform pos: -20.5,38.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 5637 components: - type: Transform pos: 8.5,40.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 5638 components: - type: Transform pos: -13.5,34.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 5639 components: - type: Transform pos: -5.5,34.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 5725 components: - type: Transform pos: 6.5,31.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 5832 components: - type: Transform pos: -13.5,44.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 5833 components: - type: Transform pos: -5.5,44.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20597 components: - type: Transform pos: -55.5,14.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20598 components: - type: Transform pos: -55.5,22.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 21571 components: - type: Transform pos: 34.5,36.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 21572 components: - type: Transform pos: 44.5,36.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterLegitObey entities: - uid: 1649 @@ -106985,11 +111256,15 @@ entities: - type: Transform pos: -25.5,34.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 6450 components: - type: Transform pos: -20.5,53.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterLegitPeriodicTable entities: - uid: 9699 @@ -106997,6 +111272,8 @@ entities: - type: Transform pos: -6.5,-13.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterLegitRenault entities: - uid: 10111 @@ -107004,6 +111281,8 @@ entities: - type: Transform pos: -18.5,29.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyEyeProtection entities: - uid: 9223 @@ -107011,17 +111290,23 @@ entities: - type: Transform pos: -3.5,-17.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 10697 components: - type: Transform pos: -22.5,-38.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 18185 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,9.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyInternals entities: - uid: 4837 @@ -107029,11 +111314,15 @@ entities: - type: Transform pos: -23.5,-38.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 11236 components: - type: Transform pos: 3.5,-35.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothEpi entities: - uid: 9812 @@ -107041,6 +111330,8 @@ entities: - type: Transform pos: -4.5,-5.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothHardhat entities: - uid: 10086 @@ -107048,6 +111339,8 @@ entities: - type: Transform pos: -26.5,-44.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothMeth entities: - uid: 7231 @@ -107055,6 +111348,8 @@ entities: - type: Transform pos: -10.5,-12.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothPiping entities: - uid: 8608 @@ -107063,12 +111358,16 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-21.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 23191 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-38.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyReport entities: - uid: 2412 @@ -107076,11 +111375,15 @@ entities: - type: Transform pos: -36.5,50.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 11433 components: - type: Transform pos: 6.5,-14.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterLegitSecWatch entities: - uid: 22877 @@ -107088,6 +111391,8 @@ entities: - type: Transform pos: -14.5,-50.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterLegitSpaceCops entities: - uid: 2411 @@ -107095,6 +111400,8 @@ entities: - type: Transform pos: -30.5,55.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterLegitUeNo entities: - uid: 1654 @@ -107102,6 +111409,8 @@ entities: - type: Transform pos: -48.5,16.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PosterMapMarathon entities: - uid: 1 @@ -107109,26 +111418,36 @@ entities: - type: Transform pos: -19.5,38.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20433 components: - type: Transform pos: -48.5,11.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20434 components: - type: Transform pos: -46.5,16.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20435 components: - type: Transform pos: -21.5,28.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20436 components: - type: Transform pos: 2.5,5.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: PottedPlant1 entities: - uid: 7175 @@ -107905,12 +112224,6 @@ entities: rot: 3.141592653589793 rad pos: -58.5,-9.5 parent: 30 - - uid: 906 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-52.5 - parent: 30 - uid: 916 components: - type: Transform @@ -108983,12 +113296,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-46.5 parent: 30 - - uid: 9868 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-56.5 - parent: 30 - uid: 10072 components: - type: Transform @@ -109018,12 +113325,6 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-46.5 parent: 30 - - uid: 10798 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-56.5 - parent: 30 - uid: 10799 components: - type: Transform @@ -109092,36 +113393,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10975 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-34.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10976 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-34.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10977 - components: - - type: Transform - pos: 14.5,-39.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10978 - components: - - type: Transform - pos: 10.5,-39.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 10981 components: - type: Transform @@ -109208,14 +113479,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10996 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-33.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 10998 components: - type: Transform @@ -110001,29 +114264,21 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,52.5 parent: 30 + - uid: 23290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-52.5 + parent: 30 +- proto: PoweredlightCyan + entities: + - uid: 2177 + components: + - type: Transform + pos: -1.5,-56.5 + parent: 30 - proto: PoweredlightExterior entities: - - uid: 833 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-52.5 - parent: 30 - - uid: 10166 - components: - - type: Transform - pos: -22.5,-58.5 - parent: 30 - - uid: 10801 - components: - - type: Transform - pos: 7.5,-46.5 - parent: 30 - - uid: 11147 - components: - - type: Transform - pos: -12.5,-58.5 - parent: 30 - uid: 20747 components: - type: Transform @@ -110160,6 +114415,13 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 +- proto: PoweredlightRed + entities: + - uid: 23294 + components: + - type: Transform + pos: 0.5,-56.5 + parent: 30 - proto: PoweredlightSodium entities: - uid: 9448 @@ -110182,6 +114444,30 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 23378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-71.5 + parent: 30 + - uid: 23379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-71.5 + parent: 30 + - uid: 23380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-63.5 + parent: 30 + - uid: 23381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-63.5 + parent: 30 - proto: PoweredSmallLight entities: - uid: 580 @@ -110567,12 +114853,6 @@ entities: rot: 3.141592653589793 rad pos: -10.5,-56.5 parent: 30 - - uid: 10797 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-56.5 - parent: 30 - uid: 10997 components: - type: Transform @@ -111442,11 +115722,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 20665 - components: - - type: Transform - pos: 6.5,-44.5 - parent: 30 - uid: 20673 components: - type: Transform @@ -111482,12 +115757,24 @@ entities: rot: 3.141592653589793 rad pos: -8.5,13.5 parent: 30 + - uid: 21421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-61.5 + parent: 30 - uid: 23214 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,48.5 parent: 30 + - uid: 23293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-57.5 + parent: 30 - proto: PoweredSmallLightEmpty entities: - uid: 15072 @@ -111653,6 +115940,11 @@ entities: - type: Transform pos: -3.5,-16.5 parent: 30 + - uid: 9217 + components: + - type: Transform + pos: 4.5,-52.5 + parent: 30 - uid: 9231 components: - type: Transform @@ -111673,6 +115965,11 @@ entities: - type: Transform pos: -8.5,-43.5 parent: 30 + - uid: 10413 + components: + - type: Transform + pos: 4.5,-53.5 + parent: 30 - uid: 11086 components: - type: Transform @@ -111903,11 +116200,6 @@ entities: rot: 3.141592653589793 rad pos: 41.5,43.5 parent: 30 - - uid: 23239 - components: - - type: Transform - pos: 0.5,-53.5 - parent: 30 - proto: RadiationCollectorFullTank entities: - uid: 9419 @@ -111940,6 +116232,28 @@ entities: - type: Transform pos: -20.5,-60.5 parent: 30 +- proto: RadiationCollectorNoTank + entities: + - uid: 20450 + components: + - type: Transform + pos: -9.5,-54.5 + parent: 30 + - uid: 23388 + components: + - type: Transform + pos: -10.5,-54.5 + parent: 30 + - uid: 23389 + components: + - type: Transform + pos: -11.5,-54.5 + parent: 30 + - uid: 23390 + components: + - type: Transform + pos: -12.5,-54.5 + parent: 30 - proto: RadioHandheld entities: - uid: 11081 @@ -112143,11 +116457,48 @@ entities: - type: Transform pos: 2.5,23.5 parent: 30 + - uid: 9065 + components: + - type: Transform + pos: -34.5,-40.5 + parent: 30 - uid: 9791 components: - type: Transform pos: 3.5,23.5 parent: 30 +- proto: RandomCableMVSpawner + entities: + - uid: 9018 + components: + - type: Transform + pos: -23.5,-59.5 + parent: 30 + - uid: 9019 + components: + - type: Transform + pos: -23.5,-60.5 + parent: 30 + - uid: 9020 + components: + - type: Transform + pos: -24.5,-67.5 + parent: 30 + - uid: 9021 + components: + - type: Transform + pos: -24.5,-66.5 + parent: 30 + - uid: 10310 + components: + - type: Transform + pos: -20.5,-74.5 + parent: 30 + - uid: 13752 + components: + - type: Transform + pos: -17.5,-74.5 + parent: 30 - proto: RandomDrinkGlass entities: - uid: 561 @@ -112956,40 +117307,20 @@ entities: parent: 30 - proto: ReinforcedPlasmaWindow entities: - - uid: 8537 + - uid: 4425 components: - type: Transform - pos: 10.5,-36.5 + pos: 2.5,-57.5 parent: 30 - - uid: 8539 + - uid: 4454 components: - type: Transform - pos: 14.5,-37.5 + pos: 0.5,-58.5 parent: 30 - - uid: 8540 + - uid: 5792 components: - type: Transform - pos: 13.5,-35.5 - parent: 30 - - uid: 8541 - components: - - type: Transform - pos: 11.5,-35.5 - parent: 30 - - uid: 8569 - components: - - type: Transform - pos: 10.5,-37.5 - parent: 30 - - uid: 8572 - components: - - type: Transform - pos: 14.5,-36.5 - parent: 30 - - uid: 8573 - components: - - type: Transform - pos: 12.5,-35.5 + pos: 1.5,-57.5 parent: 30 - uid: 8682 components: @@ -113056,6 +117387,26 @@ entities: - type: Transform pos: 35.5,14.5 parent: 30 + - uid: 15073 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 30 + - uid: 15180 + components: + - type: Transform + pos: 12.5,-42.5 + parent: 30 + - uid: 15188 + components: + - type: Transform + pos: 10.5,-40.5 + parent: 30 + - uid: 15190 + components: + - type: Transform + pos: 13.5,-38.5 + parent: 30 - uid: 16404 components: - type: Transform @@ -113086,35 +117437,50 @@ entities: - type: Transform pos: -39.5,50.5 parent: 30 - - uid: 20678 + - uid: 20467 components: - type: Transform - pos: -2.5,-54.5 + pos: 11.5,-38.5 parent: 30 - - uid: 20679 + - uid: 20538 components: - type: Transform - pos: -3.5,-54.5 + pos: 3.5,-57.5 parent: 30 - - uid: 20680 + - uid: 20539 components: - type: Transform - pos: -4.5,-54.5 + pos: 1.5,-61.5 parent: 30 - - uid: 20681 + - uid: 20569 components: - type: Transform - pos: 1.5,-54.5 + pos: 4.5,-58.5 parent: 30 - - uid: 20682 + - uid: 20591 components: - type: Transform - pos: 2.5,-54.5 + pos: 3.5,-61.5 parent: 30 - - uid: 20683 + - uid: 20613 components: - type: Transform - pos: 3.5,-54.5 + pos: 2.5,-61.5 + parent: 30 + - uid: 20644 + components: + - type: Transform + pos: 0.5,-60.5 + parent: 30 + - uid: 20651 + components: + - type: Transform + pos: 0.5,-59.5 + parent: 30 + - uid: 20652 + components: + - type: Transform + pos: 4.5,-60.5 parent: 30 - proto: ReinforcedWindow entities: @@ -113826,19 +118192,16 @@ entities: - uid: 2201 components: - type: Transform - rot: 1.5707963267948966 rad pos: -49.5,47.5 parent: 30 - uid: 2267 components: - type: Transform - rot: 3.141592653589793 rad pos: -47.5,70.5 parent: 30 - uid: 2269 components: - type: Transform - rot: 3.141592653589793 rad pos: -45.5,70.5 parent: 30 - uid: 2314 @@ -113899,13 +118262,11 @@ entities: - uid: 4491 components: - type: Transform - rot: 3.141592653589793 rad pos: -49.5,70.5 parent: 30 - uid: 4695 components: - type: Transform - rot: 3.141592653589793 rad pos: -47.5,45.5 parent: 30 - uid: 4824 @@ -114738,6 +119099,11 @@ entities: - type: Transform pos: 22.5,-21.5 parent: 30 + - uid: 8567 + components: + - type: Transform + pos: 8.5,-36.5 + parent: 30 - uid: 8601 components: - type: Transform @@ -114758,81 +119124,36 @@ entities: - type: Transform pos: -27.5,-21.5 parent: 30 + - uid: 8933 + components: + - type: Transform + pos: 15.5,-35.5 + parent: 30 + - uid: 8980 + components: + - type: Transform + pos: 14.5,-35.5 + parent: 30 - uid: 8982 components: - type: Transform pos: 7.5,-37.5 parent: 30 - - uid: 8983 - components: - - type: Transform - pos: 8.5,-36.5 - parent: 30 - - uid: 8984 - components: - - type: Transform - pos: 8.5,-35.5 - parent: 30 - - uid: 8985 - components: - - type: Transform - pos: 8.5,-34.5 - parent: 30 - - uid: 8986 - components: - - type: Transform - pos: 9.5,-33.5 - parent: 30 - - uid: 8987 - components: - - type: Transform - pos: 10.5,-33.5 - parent: 30 - - uid: 8988 - components: - - type: Transform - pos: 11.5,-33.5 - parent: 30 - - uid: 8989 - components: - - type: Transform - pos: 12.5,-33.5 - parent: 30 - - uid: 8990 - components: - - type: Transform - pos: 13.5,-33.5 - parent: 30 - - uid: 8991 - components: - - type: Transform - pos: 14.5,-33.5 - parent: 30 - - uid: 8992 - components: - - type: Transform - pos: 15.5,-33.5 - parent: 30 - - uid: 8993 - components: - - type: Transform - pos: 16.5,-34.5 - parent: 30 - - uid: 8994 - components: - - type: Transform - pos: 16.5,-35.5 - parent: 30 - - uid: 8995 - components: - - type: Transform - pos: 16.5,-36.5 - parent: 30 - uid: 8996 components: - type: Transform pos: 17.5,-37.5 parent: 30 + - uid: 9004 + components: + - type: Transform + pos: -3.5,-55.5 + parent: 30 + - uid: 9005 + components: + - type: Transform + pos: -4.5,-55.5 + parent: 30 - uid: 9012 components: - type: Transform @@ -114853,6 +119174,11 @@ entities: - type: Transform pos: 23.5,-14.5 parent: 30 + - uid: 9104 + components: + - type: Transform + pos: 5.5,-49.5 + parent: 30 - uid: 9120 components: - type: Transform @@ -114868,6 +119194,11 @@ entities: - type: Transform pos: -3.5,-31.5 parent: 30 + - uid: 9234 + components: + - type: Transform + pos: 1.5,-55.5 + parent: 30 - uid: 9277 components: - type: Transform @@ -114888,15 +119219,20 @@ entities: - type: Transform pos: -0.5,-32.5 parent: 30 - - uid: 9303 + - uid: 9289 components: - type: Transform - pos: 5.5,-50.5 + pos: 3.5,-55.5 parent: 30 - uid: 9316 components: - type: Transform - pos: 5.5,-51.5 + pos: 13.5,-35.5 + parent: 30 + - uid: 9320 + components: + - type: Transform + pos: 16.5,-36.5 parent: 30 - uid: 9321 components: @@ -114918,6 +119254,11 @@ entities: - type: Transform pos: -16.5,-45.5 parent: 30 + - uid: 9513 + components: + - type: Transform + pos: 5.5,-51.5 + parent: 30 - uid: 9577 components: - type: Transform @@ -114938,15 +119279,15 @@ entities: - type: Transform pos: 4.5,37.5 parent: 30 - - uid: 9679 + - uid: 9681 components: - type: Transform - pos: 5.5,-48.5 + pos: -0.5,-55.5 parent: 30 - - uid: 9680 + - uid: 9691 components: - type: Transform - pos: 5.5,-49.5 + pos: 5.5,-50.5 parent: 30 - uid: 9702 components: @@ -114998,6 +119339,16 @@ entities: - type: Transform pos: -32.5,-7.5 parent: 30 + - uid: 9966 + components: + - type: Transform + pos: -2.5,-55.5 + parent: 30 + - uid: 10044 + components: + - type: Transform + pos: 2.5,-55.5 + parent: 30 - uid: 10053 components: - type: Transform @@ -115056,7 +119407,6 @@ entities: - uid: 10150 components: - type: Transform - rot: 1.5707963267948966 rad pos: -49.5,49.5 parent: 30 - uid: 10152 @@ -115074,6 +119424,16 @@ entities: - type: Transform pos: 23.5,-16.5 parent: 30 + - uid: 10558 + components: + - type: Transform + pos: 10.5,-35.5 + parent: 30 + - uid: 10559 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 30 - uid: 10623 components: - type: Transform @@ -115719,6 +120079,16 @@ entities: - type: Transform pos: -58.5,47.5 parent: 30 + - uid: 17075 + components: + - type: Transform + pos: 11.5,-35.5 + parent: 30 + - uid: 17076 + components: + - type: Transform + pos: 9.5,-35.5 + parent: 30 - uid: 17098 components: - type: Transform @@ -116793,96 +121163,134 @@ entities: - type: Transform pos: -38.5,16.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20593 components: - type: Transform pos: -47.5,16.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20594 components: - type: Transform pos: -43.5,8.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20595 components: - type: Transform pos: -53.5,14.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20596 components: - type: Transform pos: -53.5,22.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20599 components: - type: Transform pos: -37.5,23.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20600 components: - type: Transform pos: -40.5,34.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20601 components: - type: Transform pos: -29.5,28.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20602 components: - type: Transform pos: -18.5,28.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20603 components: - type: Transform pos: 5.5,28.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20604 components: - type: Transform pos: 16.5,28.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20605 components: - type: Transform pos: 7.5,19.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20606 components: - type: Transform pos: -26.5,0.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20607 components: - type: Transform pos: -46.5,-3.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20608 components: - type: Transform pos: -63.5,-26.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20609 components: - type: Transform pos: -43.5,-12.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20610 components: - type: Transform pos: 10.5,-0.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20611 components: - type: Transform pos: 4.5,-21.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20612 components: - type: Transform pos: -0.5,-26.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: Screwdriver entities: - uid: 5667 @@ -117150,6 +121558,11 @@ entities: - type: Transform pos: -38.50112,-3.4785028 parent: 30 + - uid: 9678 + components: + - type: Transform + pos: 2.6266298,-46.493492 + parent: 30 - uid: 9977 components: - type: Transform @@ -117178,7 +121591,7 @@ entities: - uid: 10556 components: - type: Transform - pos: 2.7814693,-46.481953 + pos: 2.803801,-46.483067 parent: 30 - uid: 10761 components: @@ -117722,6 +122135,41 @@ entities: - type: Transform pos: -18.5,-49.5 parent: 30 + - uid: 23813 + components: + - type: Transform + pos: -20.5,-57.5 + parent: 30 + - uid: 23814 + components: + - type: Transform + pos: -19.5,-57.5 + parent: 30 + - uid: 23815 + components: + - type: Transform + pos: -18.5,-57.5 + parent: 30 + - uid: 23816 + components: + - type: Transform + pos: -17.5,-57.5 + parent: 30 + - uid: 23817 + components: + - type: Transform + pos: -16.5,-57.5 + parent: 30 + - uid: 23818 + components: + - type: Transform + pos: -15.5,-57.5 + parent: 30 + - uid: 23819 + components: + - type: Transform + pos: -14.5,-57.5 + parent: 30 - proto: SignAi entities: - uid: 20306 @@ -117729,11 +122177,15 @@ entities: - type: Transform pos: -1.5,60.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20734 components: - type: Transform pos: -18.5,41.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignalButton entities: - uid: 381 @@ -117741,6 +122193,8 @@ entities: - type: Transform pos: -1.5,22.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 384 components: - type: Transform @@ -117766,6 +122220,8 @@ entities: 395: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 544 components: - type: Transform @@ -117779,31 +122235,15 @@ entities: 543: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 723 components: - type: Transform pos: -39.5,9.5 parent: 30 - - uid: 8570 - components: - - type: Transform - pos: 13.5,-38.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 9068: - - - Pressed - - Toggle - - uid: 9038 - components: - - type: Transform - pos: 16.5,-33.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 9068: - - - Pressed - - Toggle + - type: Fixtures + fixtures: {} - uid: 11008 components: - type: Transform @@ -117823,6 +122263,8 @@ entities: 21333: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 11761 components: - type: Transform @@ -117833,6 +122275,8 @@ entities: 11659: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 11933 components: - type: Transform @@ -117843,6 +122287,8 @@ entities: 11682: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 12029 components: - type: Transform @@ -117859,6 +122305,8 @@ entities: 11716: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 12915 components: - type: Transform @@ -117872,6 +122320,8 @@ entities: 13347: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 13741 components: - type: Transform @@ -117909,6 +122359,8 @@ entities: 13732: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 13742 components: - type: Transform @@ -117946,6 +122398,8 @@ entities: 13729: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 20392 components: - type: Transform @@ -117959,6 +122413,8 @@ entities: 5741: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 20393 components: - type: Transform @@ -117972,6 +122428,8 @@ entities: 20394: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 20446 components: - type: Transform @@ -118000,6 +122458,8 @@ entities: 20447: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 21721 components: - type: Transform @@ -118013,6 +122473,8 @@ entities: 21722: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: SignalButtonDirectional entities: - uid: 295 @@ -118029,6 +122491,8 @@ entities: 7402: - - Pressed - Open + - type: Fixtures + fixtures: {} - uid: 1919 components: - type: Transform @@ -118043,12 +122507,16 @@ entities: 988: - - Pressed - Open + - type: Fixtures + fixtures: {} - uid: 2643 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,61.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 3189 components: - type: MetaData @@ -118062,6 +122530,8 @@ entities: 864: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 3204 components: - type: Transform @@ -118087,6 +122557,8 @@ entities: 7992: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 3708 components: - type: Transform @@ -118097,6 +122569,8 @@ entities: 341: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 4731 components: - type: Transform @@ -118120,6 +122594,8 @@ entities: 5078: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 6868 components: - type: Transform @@ -118134,6 +122610,8 @@ entities: 7829: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 6869 components: - type: Transform @@ -118148,6 +122626,8 @@ entities: 6871: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 6992 components: - type: MetaData @@ -118160,6 +122640,8 @@ entities: 6991: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 7440 components: - type: MetaData @@ -118175,6 +122657,8 @@ entities: 7609: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 7673 components: - type: Transform @@ -118201,6 +122685,8 @@ entities: 899: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 7920 components: - type: Transform @@ -118215,6 +122701,8 @@ entities: 7562: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 8607 components: - type: Transform @@ -118226,6 +122714,8 @@ entities: 6882: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 8610 components: - type: Transform @@ -118240,6 +122730,8 @@ entities: 11923: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 8863 components: - type: Transform @@ -118254,6 +122746,8 @@ entities: 11995: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 9184 components: - type: Transform @@ -118270,6 +122764,8 @@ entities: 9188: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 12859 components: - type: MetaData @@ -118282,6 +122778,8 @@ entities: 14249: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 16041 components: - type: Transform @@ -118293,6 +122791,8 @@ entities: 6413: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 16042 components: - type: Transform @@ -118304,6 +122804,8 @@ entities: 6414: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 16116 components: - type: Transform @@ -118315,6 +122817,41 @@ entities: 6415: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} + - uid: 23821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-52.5 + parent: 30 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 23813: + - - Pressed + - Toggle + 23814: + - - Pressed + - Toggle + 23815: + - - Pressed + - Toggle + 23816: + - - Pressed + - Toggle + 23817: + - - Pressed + - Toggle + 23818: + - - Pressed + - Toggle + 23819: + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - proto: SignalSwitch entities: - uid: 11021 @@ -118340,6 +122877,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 23173 components: - type: MetaData @@ -118380,6 +122919,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - proto: SignalSwitchDirectional entities: - uid: 1845 @@ -118444,6 +122985,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 3131 components: - type: Transform @@ -118472,6 +123015,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 5063 components: - type: Transform @@ -118485,52 +123030,8 @@ entities: - Open - - Off - Close - - uid: 9164 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-54.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 9678: - - - On - - Open - - - Off - - Close - 9065: - - - On - - Open - - - Off - - Close - 9064: - - - On - - Open - - - Off - - Close - - uid: 9214 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-54.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 9690: - - - On - - Open - - - Off - - Close - 9302: - - - On - - Open - - - Off - - Close - 9691: - - - On - - Open - - - Off - - Close + - type: Fixtures + fixtures: {} - uid: 12697 components: - type: Transform @@ -118549,6 +123050,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 14525 components: - type: Transform @@ -118567,6 +123070,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 15975 components: - type: Transform @@ -118585,6 +123090,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 20068 components: - type: Transform @@ -118648,6 +123155,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 21706 components: - type: Transform @@ -118670,6 +123179,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 22211 components: - type: Transform @@ -118693,6 +123204,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - proto: SignArmory entities: - uid: 1927 @@ -118700,6 +123213,8 @@ entities: - type: Transform pos: -42.5,50.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignAtmos entities: - uid: 7012 @@ -118707,16 +123222,22 @@ entities: - type: Transform pos: 8.5,-21.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 9082 components: - type: Transform pos: 8.5,-25.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 9083 components: - type: Transform pos: 4.5,-32.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignBar entities: - uid: 1384 @@ -118724,6 +123245,8 @@ entities: - type: Transform pos: -0.5,4.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignBridge entities: - uid: 5253 @@ -118731,11 +123254,15 @@ entities: - type: Transform pos: -16.5,28.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 5606 components: - type: Transform pos: -2.5,28.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignCans entities: - uid: 20624 @@ -118743,11 +123270,15 @@ entities: - type: Transform pos: 18.5,-20.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20627 components: - type: Transform pos: 15.5,-19.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignCargo entities: - uid: 8405 @@ -118755,16 +123286,22 @@ entities: - type: Transform pos: 7.5,0.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 8460 components: - type: Transform pos: 10.5,-8.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 21383 components: - type: Transform pos: 14.5,-0.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignCargoDock entities: - uid: 21586 @@ -118772,6 +123309,8 @@ entities: - type: Transform pos: 38.5,-1.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignChapel entities: - uid: 9179 @@ -118779,11 +123318,15 @@ entities: - type: Transform pos: -47.5,-10.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 17624 components: - type: Transform pos: -63.5,-36.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignChem entities: - uid: 6700 @@ -118791,11 +123334,15 @@ entities: - type: Transform pos: -10.5,-11.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 9032 components: - type: Transform pos: -10.5,-5.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignCryogenicsMed entities: - uid: 22993 @@ -118803,6 +123350,8 @@ entities: - type: Transform pos: 29.5,40.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignDangerMed entities: - uid: 17038 @@ -118810,6 +123359,8 @@ entities: - type: Transform pos: -60.5,59.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBridge entities: - uid: 809 @@ -118818,30 +123369,40 @@ entities: rot: 3.141592653589793 rad pos: 7.500639,16.731457 parent: 30 + - type: Fixtures + fixtures: {} - uid: 813 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,24.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 816 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,14.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 5605 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.501582,28.260015 parent: 30 + - type: Fixtures + fixtures: {} - uid: 6419 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,28.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBrig entities: - uid: 16281 @@ -118850,12 +123411,16 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,45.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 16282 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,45.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignDirectionalChapel entities: - uid: 17792 @@ -118863,23 +123428,31 @@ entities: - type: Transform pos: -43.5,4.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 17793 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,6.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 17795 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-21.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 19436 components: - type: Transform pos: -47.5,-12.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignDirectionalCryo entities: - uid: 15234 @@ -118888,12 +123461,16 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,28.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 15353 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,40.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignDirectionalDorms entities: - uid: 6420 @@ -118902,12 +123479,16 @@ entities: rot: 3.141592653589793 rad pos: 20.504648,28.737268 parent: 30 + - type: Fixtures + fixtures: {} - uid: 6530 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5181293,28.732492 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEng entities: - uid: 606 @@ -118915,38 +123496,52 @@ entities: - type: Transform pos: 7.501919,5.259619 parent: 30 + - type: Fixtures + fixtures: {} - uid: 613 components: - type: Transform pos: -4.4997187,4.2684793 parent: 30 + - type: Fixtures + fixtures: {} - uid: 615 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,4.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 812 components: - type: Transform pos: 7.500639,15.262707 parent: 30 + - type: Fixtures + fixtures: {} - uid: 820 components: - type: Transform pos: -33.503014,13.727922 parent: 30 + - type: Fixtures + fixtures: {} - uid: 822 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,5.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 9191 components: - type: Transform pos: 14.5,-12.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEvac entities: - uid: 618 @@ -118955,53 +123550,71 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,4.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 804 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,24.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 819 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.503014,14.243547 parent: 30 + - type: Fixtures + fixtures: {} - uid: 1338 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,16.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 1381 components: - type: Transform pos: -37.5,28.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 4347 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,4.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 8305 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,12.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 22261 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-20.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 22262 components: - type: Transform rot: 3.141592653589793 rad pos: -47.48893,-21.265512 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignDirectionalGravity entities: - uid: 5604 @@ -119010,6 +123623,8 @@ entities: rot: 3.141592653589793 rad pos: 7.5,28.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignDirectionalHydro entities: - uid: 6422 @@ -119017,23 +123632,31 @@ entities: - type: Transform pos: -33.5,12.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 6423 components: - type: Transform pos: 7.5,14.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 21454 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.477043,6.2596173 parent: 30 + - type: Fixtures + fixtures: {} - uid: 21455 components: - type: Transform rot: 3.141592653589793 rad pos: -22.506641,4.747666 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignDirectionalLibrary entities: - uid: 11016 @@ -119042,6 +123665,8 @@ entities: rot: -1.5707963267948966 rad pos: -47.5224,-21.687305 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignDirectionalMed entities: - uid: 604 @@ -119050,33 +123675,45 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,5.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 811 components: - type: Transform pos: 7.500639,15.731457 parent: 30 + - type: Fixtures + fixtures: {} - uid: 815 components: - type: Transform pos: -33.503014,24.266455 parent: 30 + - type: Fixtures + fixtures: {} - uid: 821 components: - type: Transform pos: -33.503014,13.259172 parent: 30 + - type: Fixtures + fixtures: {} - uid: 824 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.498367,5.2443438 parent: 30 + - type: Fixtures + fixtures: {} - uid: 11589 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-12.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSci entities: - uid: 605 @@ -119085,40 +123722,54 @@ entities: rot: 3.141592653589793 rad pos: 7.5216503,5.7286544 parent: 30 + - type: Fixtures + fixtures: {} - uid: 612 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5139136,4.737153 parent: 30 + - type: Fixtures + fixtures: {} - uid: 617 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.495691,4.7372293 parent: 30 + - type: Fixtures + fixtures: {} - uid: 806 components: - type: Transform pos: 7.4924183,24.273302 parent: 30 + - type: Fixtures + fixtures: {} - uid: 810 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.4788837,16.243462 parent: 30 + - type: Fixtures + fixtures: {} - uid: 817 components: - type: Transform pos: -33.5,13.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 823 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.498367,5.7443438 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSec entities: - uid: 805 @@ -119127,30 +123778,40 @@ entities: rot: -1.5707963267948966 rad pos: 7.4924183,24.742052 parent: 30 + - type: Fixtures + fixtures: {} - uid: 808 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,16.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 814 components: - type: Transform rot: 3.141592653589793 rad pos: -33.503014,24.735205 parent: 30 + - type: Fixtures + fixtures: {} - uid: 818 components: - type: Transform rot: 3.141592653589793 rad pos: -33.503014,14.727922 parent: 30 + - type: Fixtures + fixtures: {} - uid: 1598 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,28.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSolar entities: - uid: 6531 @@ -119159,36 +123820,48 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,19.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 15974 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,25.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 15976 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,25.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 16990 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,31.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 16991 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,42.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 16992 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,38.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSupply entities: - uid: 614 @@ -119196,29 +123869,39 @@ entities: - type: Transform pos: -4.5,4.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 616 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.495691,4.2684793 parent: 30 + - type: Fixtures + fixtures: {} - uid: 807 components: - type: Transform pos: 7.5,15.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 6421 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.489023,28.268518 parent: 30 + - type: Fixtures + fixtures: {} - uid: 9192 components: - type: Transform rot: 3.141592653589793 rad pos: 14.501118,-12.251659 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignDirectionalWash entities: - uid: 6098 @@ -119227,6 +123910,8 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,27.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignDisposalSpace entities: - uid: 14535 @@ -119234,6 +123919,8 @@ entities: - type: Transform pos: 47.5,20.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignElectricalMed entities: - uid: 3194 @@ -119241,37 +123928,51 @@ entities: - type: Transform pos: -46.5,9.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 4451 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,18.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 5671 components: - type: Transform pos: -41.5,20.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 6889 components: - type: Transform pos: -36.5,-1.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 15973 components: - type: Transform pos: 48.5,31.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 16993 components: - type: Transform pos: -62.5,44.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20628 components: - type: Transform pos: -9.5,-42.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignEngine entities: - uid: 20633 @@ -119279,11 +123980,15 @@ entities: - type: Transform pos: -8.5,-42.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20634 components: - type: Transform pos: -13.5,-46.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignEngineering entities: - uid: 9193 @@ -119291,6 +123996,8 @@ entities: - type: Transform pos: 2.5,-31.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignEscapePods entities: - uid: 3699 @@ -119298,11 +124005,15 @@ entities: - type: Transform pos: 26.5,41.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 19435 components: - type: Transform pos: -47.5,-20.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignEVA entities: - uid: 1383 @@ -119310,6 +124021,8 @@ entities: - type: Transform pos: -4.5,24.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignFire entities: - uid: 9264 @@ -119317,23 +124030,22 @@ entities: - type: Transform pos: 23.5,-15.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20621 components: - type: Transform pos: 3.5,-42.5 parent: 30 -- proto: SignFlammableMed - entities: - - uid: 20631 + - type: Fixtures + fixtures: {} + - uid: 23291 components: - type: Transform - pos: 4.5,-54.5 - parent: 30 - - uid: 20632 - components: - - type: Transform - pos: -5.5,-54.5 + pos: 4.5,-55.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignGravity entities: - uid: 5603 @@ -119341,6 +124053,8 @@ entities: - type: Transform pos: 10.5,40.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignHead entities: - uid: 5684 @@ -119348,6 +124062,8 @@ entities: - type: Transform pos: 6.5,28.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignHydro1 entities: - uid: 619 @@ -119355,16 +124071,22 @@ entities: - type: Transform pos: -20.5,13.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 1385 components: - type: Transform pos: -22.5,8.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 1386 components: - type: Transform pos: -29.5,4.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignInterrogation entities: - uid: 1774 @@ -119372,6 +124094,8 @@ entities: - type: Transform pos: -29.5,44.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignKiddiePlaque entities: - uid: 21698 @@ -119379,6 +124103,8 @@ entities: - type: Transform pos: 8.5,44.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignLibrary entities: - uid: 18813 @@ -119386,11 +124112,15 @@ entities: - type: Transform pos: -71.5,-58.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20629 components: - type: Transform pos: -63.5,-61.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignMagneticsMed entities: - uid: 11715 @@ -119398,6 +124128,8 @@ entities: - type: Transform pos: 29.5,-0.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignMail entities: - uid: 21384 @@ -119405,6 +124137,8 @@ entities: - type: Transform pos: 18.5,-0.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignMaterials entities: - uid: 12263 @@ -119412,6 +124146,8 @@ entities: - type: Transform pos: -37.5,26.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignMedical entities: - uid: 6763 @@ -119419,11 +124155,15 @@ entities: - type: Transform pos: -4.5,-0.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 6764 components: - type: Transform pos: -12.5,0.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignMorgue entities: - uid: 6903 @@ -119431,16 +124171,22 @@ entities: - type: Transform pos: -26.5,-4.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 6904 components: - type: Transform pos: -20.5,-4.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 6905 components: - type: Transform pos: -23.5,0.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignNanotrasen1 entities: - uid: 4913 @@ -119448,6 +124194,8 @@ entities: - type: Transform pos: -11.5,30.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignNanotrasen2 entities: - uid: 5259 @@ -119455,6 +124203,8 @@ entities: - type: Transform pos: -10.5,30.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignNanotrasen3 entities: - uid: 5267 @@ -119462,6 +124212,8 @@ entities: - type: Transform pos: -9.5,30.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignNanotrasen4 entities: - uid: 5261 @@ -119469,6 +124221,8 @@ entities: - type: Transform pos: -8.5,30.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignNanotrasen5 entities: - uid: 5268 @@ -119476,6 +124230,8 @@ entities: - type: Transform pos: -7.5,30.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignPlaque entities: - uid: 21700 @@ -119483,11 +124239,15 @@ entities: - type: Transform pos: -30.5,0.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 22520 components: - type: Transform pos: 4.5,45.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignPsychology entities: - uid: 873 @@ -119495,6 +124255,8 @@ entities: - type: Transform pos: -29.5,-4.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignRadiationMed entities: - uid: 5666 @@ -119502,16 +124264,92 @@ entities: - type: Transform pos: 12.5,43.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20622 components: - type: Transform pos: -15.5,-45.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20630 components: - type: Transform pos: -19.5,-45.5 parent: 30 + - type: Fixtures + fixtures: {} + - uid: 23792 + components: + - type: Transform + pos: -7.5,-71.5 + parent: 30 + - type: Fixtures + fixtures: {} + - uid: 23804 + components: + - type: Transform + pos: -26.5,-76.5 + parent: 30 + - type: Fixtures + fixtures: {} + - uid: 23805 + components: + - type: Transform + pos: -8.5,-76.5 + parent: 30 + - type: Fixtures + fixtures: {} + - uid: 23806 + components: + - type: Transform + pos: -21.5,-77.5 + parent: 30 + - type: Fixtures + fixtures: {} + - uid: 23807 + components: + - type: Transform + pos: -13.5,-77.5 + parent: 30 + - type: Fixtures + fixtures: {} + - uid: 23808 + components: + - type: Transform + pos: -7.5,-63.5 + parent: 30 + - type: Fixtures + fixtures: {} + - uid: 23809 + components: + - type: Transform + pos: -27.5,-63.5 + parent: 30 + - type: Fixtures + fixtures: {} + - uid: 23810 + components: + - type: Transform + pos: -27.5,-71.5 + parent: 30 + - type: Fixtures + fixtures: {} + - uid: 23811 + components: + - type: Transform + pos: -21.5,-56.5 + parent: 30 + - type: Fixtures + fixtures: {} + - uid: 23812 + components: + - type: Transform + pos: -13.5,-56.5 + parent: 30 + - type: Fixtures + fixtures: {} - proto: SignRedOne entities: - uid: 16140 @@ -119519,6 +124357,8 @@ entities: - type: Transform pos: 19.5,34.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignRedThree entities: - uid: 16231 @@ -119526,6 +124366,8 @@ entities: - type: Transform pos: 19.5,40.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignRedTwo entities: - uid: 16141 @@ -119533,6 +124375,8 @@ entities: - type: Transform pos: 19.5,37.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignRND entities: - uid: 13372 @@ -119540,6 +124384,8 @@ entities: - type: Transform pos: 24.5,12.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignRobo entities: - uid: 12789 @@ -119547,11 +124393,15 @@ entities: - type: Transform pos: 20.5,17.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20955 components: - type: Transform pos: 16.5,24.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignSalvage entities: - uid: 21585 @@ -119559,6 +124409,8 @@ entities: - type: Transform pos: 22.5,-11.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignScience entities: - uid: 6576 @@ -119566,17 +124418,23 @@ entities: - type: Transform pos: 11.5,19.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 13388 components: - type: Transform pos: 11.5,13.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 17707 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,13.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignSecurearea entities: - uid: 11895 @@ -119584,11 +124442,15 @@ entities: - type: Transform pos: 37.5,-52.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 11896 components: - type: Transform pos: 41.5,-52.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignSecureMed entities: - uid: 3515 @@ -119596,41 +124458,57 @@ entities: - type: Transform pos: -58.5,14.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 3516 components: - type: Transform pos: -58.5,22.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 5665 components: - type: Transform pos: 6.5,40.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 9323 components: - type: Transform pos: 2.5,-36.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 16237 components: - type: Transform pos: 4.5,40.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 19675 components: - type: Transform pos: -27.5,-35.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 19676 components: - type: Transform pos: -21.5,-35.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 22460 components: - type: Transform pos: -20.5,41.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignSecureMedRed entities: - uid: 2408 @@ -119638,6 +124516,8 @@ entities: - type: Transform pos: -39.5,57.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignSecureSmallRed entities: - uid: 2409 @@ -119645,11 +124525,15 @@ entities: - type: Transform pos: -45.5,50.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 8497 components: - type: Transform pos: -40.5,61.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignSecurity entities: - uid: 21685 @@ -119657,6 +124541,8 @@ entities: - type: Transform pos: -37.5,38.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignSmoking entities: - uid: 9125 @@ -119664,16 +124550,22 @@ entities: - type: Transform pos: 21.5,-20.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 9194 components: - type: Transform pos: -0.5,-42.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 10386 components: - type: Transform pos: 17.5,-15.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignSpace entities: - uid: 385 @@ -119681,66 +124573,92 @@ entities: - type: Transform pos: -51.5,6.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 1294 components: - type: Transform pos: -58.5,-7.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 1306 components: - type: Transform pos: -51.5,-7.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 3501 components: - type: Transform pos: -58.5,12.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 3502 components: - type: Transform pos: -58.5,16.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 3503 components: - type: Transform pos: -58.5,20.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 3504 components: - type: Transform pos: -58.5,24.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 10071 components: - type: Transform pos: -58.5,6.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 11863 components: - type: Transform pos: 36.5,-4.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 19506 components: - type: Transform pos: -78.5,-61.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 21118 components: - type: Transform pos: -52.5,-38.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 22509 components: - type: Transform pos: -1.5,61.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 22510 components: - type: Transform pos: 0.5,61.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignTelecomms entities: - uid: 17912 @@ -119748,11 +124666,15 @@ entities: - type: Transform pos: -4.5,-28.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 20635 components: - type: Transform pos: -11.5,-36.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SignToolStorage entities: - uid: 1605 @@ -119760,6 +124682,8 @@ entities: - type: Transform pos: -28.5,28.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: SilverOre entities: - uid: 14497 @@ -122203,6 +127127,18 @@ entities: - type: Transform pos: -38.328262,39.54725 parent: 30 +- proto: SprayPainter + entities: + - uid: 9326 + components: + - type: Transform + pos: 9.666185,-26.444672 + parent: 30 + - uid: 23318 + components: + - type: Transform + pos: -2.5834966,-45.807617 + parent: 30 - proto: Stairs entities: - uid: 8012 @@ -122292,46 +127228,64 @@ entities: - type: Transform pos: -31.5,5.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 4419 components: - type: Transform pos: -49.5,11.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 7005 components: - type: Transform pos: -43.5,-14.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 7820 components: - type: Transform pos: -59.5,-47.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 10973 components: - type: Transform pos: -19.5,28.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 10979 components: - type: Transform pos: 19.5,35.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 10980 components: - type: Transform pos: -0.5,-17.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 12200 components: - type: Transform pos: -28.5,53.5 parent: 30 + - type: Fixtures + fixtures: {} - uid: 12669 components: - type: Transform pos: -18.5,38.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: StatueVenusRed entities: - uid: 1233 @@ -123475,8 +128429,29 @@ entities: - SurveillanceCameraCommand nameSet: True id: Grav Gen + - uid: 23824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,40.5 + parent: 30 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge West - proto: SurveillanceCameraEngineering entities: + - uid: 9214 + components: + - type: Transform + pos: -1.5,-54.5 + parent: 30 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: TEG - South - uid: 9253 components: - type: Transform @@ -123499,6 +128474,17 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Anchor Room + - uid: 13788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-61.5 + parent: 30 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment - North East - uid: 17774 components: - type: Transform @@ -123507,17 +128493,38 @@ entities: parent: 30 - type: SurveillanceCamera id: Telecomms - - uid: 21211 + - uid: 19534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-30.5 + rot: 3.141592653589793 rad + pos: 12.5,-31.5 parent: 30 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Atmos South + id: Atmos - Burn Chamber + - uid: 20428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-27.5 + parent: 30 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos - Locker Room + - uid: 20431 + components: + - type: Transform + pos: -9.5,-56.5 + parent: 30 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment Storage - uid: 21212 components: - type: Transform @@ -123550,17 +128557,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Engineering Lobby - - uid: 21259 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-31.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Mixer - uid: 21260 components: - type: Transform @@ -123572,17 +128568,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos Tanks - - uid: 21281 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-32.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering Entrance - uid: 21282 components: - type: Transform @@ -123603,27 +128588,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Engineering Entrance - - uid: 21314 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-47.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG Room - - uid: 21356 - components: - - type: Transform - pos: -1.5,-53.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG Room - uid: 21361 components: - type: Transform @@ -123710,27 +128674,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Particle Accelerator - - uid: 21398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-58.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Singulo Cage - - uid: 21399 - components: - - type: Transform - pos: -9.5,-56.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Tesla Storage - uid: 21451 components: - type: Transform @@ -123753,6 +128696,50 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Solars NW + - uid: 23292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-56.5 + parent: 30 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: TEG - Burn Chamber + - uid: 23376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-73.5 + parent: 30 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment - South East + - uid: 23377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-74.5 + parent: 30 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment - South West + - uid: 23382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-61.5 + parent: 30 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment - North West - proto: SurveillanceCameraGeneral entities: - uid: 1039 @@ -124181,6 +129168,16 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Main Hall Botany + - uid: 23825 + components: + - type: Transform + pos: -65.5,-60.5 + parent: 30 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Library Hallway - proto: SurveillanceCameraMedical entities: - uid: 8290 @@ -124718,6 +129715,17 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Court Room + - uid: 23387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,61.5 + parent: 30 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Sec Perma - proto: SurveillanceCameraService entities: - uid: 142 @@ -125180,7 +130188,6 @@ entities: - uid: 1980 components: - type: Transform - rot: 3.141592653589793 rad pos: -47.5,59.5 parent: 30 - uid: 2020 @@ -125246,43 +130253,36 @@ entities: - uid: 2231 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,65.5 parent: 30 - uid: 2232 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,64.5 parent: 30 - uid: 2242 components: - type: Transform - rot: -1.5707963267948966 rad pos: -52.5,51.5 parent: 30 - uid: 2321 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,66.5 parent: 30 - uid: 2341 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,67.5 parent: 30 - uid: 2377 components: - type: Transform - rot: 3.141592653589793 rad pos: -47.5,61.5 parent: 30 - uid: 2378 components: - type: Transform - rot: 3.141592653589793 rad pos: -47.5,60.5 parent: 30 - uid: 2379 @@ -125293,19 +130293,16 @@ entities: - uid: 2380 components: - type: Transform - rot: -1.5707963267948966 rad pos: -46.5,65.5 parent: 30 - uid: 2602 components: - type: Transform - rot: -1.5707963267948966 rad pos: -46.5,64.5 parent: 30 - uid: 2665 components: - type: Transform - rot: -1.5707963267948966 rad pos: -48.5,65.5 parent: 30 - uid: 2716 @@ -125316,7 +130313,6 @@ entities: - uid: 2726 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,65.5 parent: 30 - uid: 3130 @@ -125337,19 +130333,16 @@ entities: - uid: 4574 components: - type: Transform - rot: 1.5707963267948966 rad pos: -52.5,55.5 parent: 30 - uid: 4774 components: - type: Transform - rot: 1.5707963267948966 rad pos: -45.5,52.5 parent: 30 - uid: 4777 components: - type: Transform - rot: 1.5707963267948966 rad pos: -45.5,55.5 parent: 30 - uid: 4987 @@ -126204,13 +131197,11 @@ entities: - uid: 2273 components: - type: Transform - rot: 1.5707963267948966 rad pos: -38.5,39.5 parent: 30 - uid: 2278 components: - type: Transform - rot: 1.5707963267948966 rad pos: -39.5,39.5 parent: 30 - uid: 2410 @@ -126231,13 +131222,11 @@ entities: - uid: 4779 components: - type: Transform - rot: 1.5707963267948966 rad pos: -38.5,41.5 parent: 30 - uid: 4803 components: - type: Transform - rot: 1.5707963267948966 rad pos: -38.5,40.5 parent: 30 - uid: 6688 @@ -127670,6 +132659,26 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-54.5 parent: 30 + - uid: 20456 + components: + - type: Transform + pos: -9.5,-58.5 + parent: 30 + - uid: 20462 + components: + - type: Transform + pos: -9.5,-59.5 + parent: 30 + - uid: 20463 + components: + - type: Transform + pos: -25.5,-59.5 + parent: 30 + - uid: 23391 + components: + - type: Transform + pos: -25.5,-58.5 + parent: 30 - proto: TeslaGenerator entities: - uid: 20270 @@ -127679,29 +132688,25 @@ entities: parent: 30 - proto: TeslaGroundingRod entities: - - uid: 10004 + - uid: 23393 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-54.5 + pos: -12.5,-58.5 parent: 30 - - uid: 10140 + - uid: 23394 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-54.5 + pos: -13.5,-58.5 parent: 30 - - uid: 11110 + - uid: 23395 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-54.5 + pos: -21.5,-58.5 parent: 30 - - uid: 13952 + - uid: 23396 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-54.5 + pos: -22.5,-58.5 parent: 30 - proto: TintedWindow entities: @@ -127966,6 +132971,13 @@ entities: - type: Transform pos: -74.90774,-63.969463 parent: 30 +- proto: ToyHammer + entities: + - uid: 12452 + components: + - type: Transform + pos: -60.512253,57.44987 + parent: 30 - proto: ToyIan entities: - uid: 5724 @@ -128951,6 +133963,11 @@ entities: - type: Transform pos: 18.5,-19.5 parent: 30 + - uid: 23408 + components: + - type: Transform + pos: -18.5,-50.5 + parent: 30 - proto: VendingMachineTankDispenserEVA entities: - uid: 798 @@ -129121,6 +134138,8 @@ entities: - type: Transform pos: -42.5,31.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: WallReinforced entities: - uid: 87 @@ -129941,7 +134960,6 @@ entities: - uid: 1716 components: - type: Transform - rot: 1.5707963267948966 rad pos: -54.5,62.5 parent: 30 - uid: 1726 @@ -130302,7 +135320,6 @@ entities: - uid: 1917 components: - type: Transform - rot: 3.141592653589793 rad pos: -44.5,59.5 parent: 30 - uid: 1952 @@ -130418,25 +135435,21 @@ entities: - uid: 2214 components: - type: Transform - rot: 1.5707963267948966 rad pos: -54.5,67.5 parent: 30 - uid: 2215 components: - type: Transform - rot: 1.5707963267948966 rad pos: -54.5,66.5 parent: 30 - uid: 2238 components: - type: Transform - rot: 3.141592653589793 rad pos: -50.5,58.5 parent: 30 - uid: 2240 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,58.5 parent: 30 - uid: 2252 @@ -130522,73 +135535,61 @@ entities: - uid: 2332 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,47.5 parent: 30 - uid: 2339 components: - type: Transform - rot: 1.5707963267948966 rad pos: -54.5,64.5 parent: 30 - uid: 2340 components: - type: Transform - rot: 1.5707963267948966 rad pos: -54.5,63.5 parent: 30 - uid: 2361 components: - type: Transform - rot: 1.5707963267948966 rad pos: -49.5,50.5 parent: 30 - uid: 2362 components: - type: Transform - rot: 1.5707963267948966 rad pos: -44.5,58.5 parent: 30 - uid: 2369 components: - type: Transform - rot: 1.5707963267948966 rad pos: -51.5,50.5 parent: 30 - uid: 2370 components: - type: Transform - rot: 1.5707963267948966 rad pos: -50.5,50.5 parent: 30 - uid: 2373 components: - type: Transform - rot: 3.141592653589793 rad pos: -44.5,62.5 parent: 30 - uid: 2374 components: - type: Transform - rot: 3.141592653589793 rad pos: -44.5,61.5 parent: 30 - uid: 2384 components: - type: Transform - rot: 1.5707963267948966 rad pos: -54.5,68.5 parent: 30 - uid: 2385 components: - type: Transform - rot: 1.5707963267948966 rad pos: -54.5,65.5 parent: 30 - uid: 2405 components: - type: Transform - rot: 3.141592653589793 rad pos: -43.5,62.5 parent: 30 - uid: 2543 @@ -130599,37 +135600,31 @@ entities: - uid: 2612 components: - type: Transform - rot: 1.5707963267948966 rad pos: -52.5,50.5 parent: 30 - uid: 2660 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,46.5 parent: 30 - uid: 2668 components: - type: Transform - rot: 3.141592653589793 rad pos: -50.5,46.5 parent: 30 - uid: 2676 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,46.5 parent: 30 - uid: 2677 components: - type: Transform - rot: -1.5707963267948966 rad pos: -45.5,39.5 parent: 30 - uid: 2678 components: - type: Transform - rot: -1.5707963267948966 rad pos: -45.5,40.5 parent: 30 - uid: 2681 @@ -130640,19 +135635,16 @@ entities: - uid: 2685 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,73.5 parent: 30 - uid: 2701 components: - type: Transform - rot: 1.5707963267948966 rad pos: -44.5,57.5 parent: 30 - uid: 2721 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,60.5 parent: 30 - uid: 2729 @@ -130678,7 +135670,6 @@ entities: - uid: 3182 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,48.5 parent: 30 - uid: 3200 @@ -130689,7 +135680,6 @@ entities: - uid: 3500 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,59.5 parent: 30 - uid: 3506 @@ -130705,13 +135695,11 @@ entities: - uid: 3521 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,62.5 parent: 30 - uid: 3523 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,61.5 parent: 30 - uid: 3530 @@ -130747,7 +135735,6 @@ entities: - uid: 4395 components: - type: Transform - rot: 3.141592653589793 rad pos: -54.5,58.5 parent: 30 - uid: 4411 @@ -130763,19 +135750,16 @@ entities: - uid: 4512 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,65.5 parent: 30 - uid: 4515 components: - type: Transform - rot: -1.5707963267948966 rad pos: -45.5,41.5 parent: 30 - uid: 4525 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,58.5 parent: 30 - uid: 4602 @@ -130786,7 +135770,6 @@ entities: - uid: 4674 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,59.5 parent: 30 - uid: 4677 @@ -130797,49 +135780,41 @@ entities: - uid: 4683 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,68.5 parent: 30 - uid: 4684 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,66.5 parent: 30 - uid: 4685 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,68.5 parent: 30 - uid: 4686 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,69.5 parent: 30 - uid: 4687 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,64.5 parent: 30 - uid: 4691 components: - type: Transform - rot: 3.141592653589793 rad pos: -43.5,70.5 parent: 30 - uid: 4692 components: - type: Transform - rot: 3.141592653589793 rad pos: -43.5,69.5 parent: 30 - uid: 4702 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,67.5 parent: 30 - uid: 4730 @@ -130850,7 +135825,6 @@ entities: - uid: 4776 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,63.5 parent: 30 - uid: 4834 @@ -132888,36 +137862,16 @@ entities: - type: Transform pos: 4.5,-34.5 parent: 30 - - uid: 8535 + - uid: 8541 components: - type: Transform - pos: 14.5,-38.5 - parent: 30 - - uid: 8536 - components: - - type: Transform - pos: 10.5,-35.5 + pos: 8.5,-35.5 parent: 30 - uid: 8542 components: - type: Transform pos: 8.5,-37.5 parent: 30 - - uid: 8567 - components: - - type: Transform - pos: 10.5,-38.5 - parent: 30 - - uid: 8568 - components: - - type: Transform - pos: 14.5,-35.5 - parent: 30 - - uid: 8571 - components: - - type: Transform - pos: 13.5,-38.5 - parent: 30 - uid: 8574 components: - type: Transform @@ -133233,25 +138187,25 @@ entities: - type: Transform pos: -0.5,36.5 parent: 30 - - uid: 8980 + - uid: 8983 components: - type: Transform - pos: 8.5,-33.5 + pos: 5.5,-43.5 parent: 30 - - uid: 8981 + - uid: 9008 components: - type: Transform - pos: 16.5,-33.5 + pos: 11.5,-42.5 parent: 30 - uid: 9027 components: - type: Transform pos: -33.5,-14.5 parent: 30 - - uid: 9069 + - uid: 9068 components: - type: Transform - pos: 11.5,-38.5 + pos: -1.5,-55.5 parent: 30 - uid: 9093 components: @@ -133288,25 +138242,10 @@ entities: - type: Transform pos: 18.5,-12.5 parent: 30 - - uid: 9102 - components: - - type: Transform - pos: 5.5,-57.5 - parent: 30 - - uid: 9103 - components: - - type: Transform - pos: -6.5,-58.5 - parent: 30 - - uid: 9104 - components: - - type: Transform - pos: 5.5,-52.5 - parent: 30 - uid: 9129 components: - type: Transform - pos: -5.5,-58.5 + pos: 7.5,-54.5 parent: 30 - uid: 9132 components: @@ -133433,15 +138372,10 @@ entities: - type: Transform pos: -0.5,-26.5 parent: 30 - - uid: 9234 + - uid: 9218 components: - type: Transform - pos: 5.5,-53.5 - parent: 30 - - uid: 9244 - components: - - type: Transform - pos: 5.5,-54.5 + pos: 4.5,-55.5 parent: 30 - uid: 9255 components: @@ -133511,12 +138445,7 @@ entities: - uid: 9288 components: - type: Transform - pos: 5.5,-58.5 - parent: 30 - - uid: 9289 - components: - - type: Transform - pos: -1.5,-58.5 + pos: 7.5,-55.5 parent: 30 - uid: 9296 components: @@ -133586,7 +138515,7 @@ entities: - uid: 9339 components: - type: Transform - pos: 7.5,-45.5 + pos: 14.5,-39.5 parent: 30 - uid: 9340 components: @@ -133663,16 +138592,6 @@ entities: - type: Transform pos: -16.5,-33.5 parent: 30 - - uid: 9367 - components: - - type: Transform - pos: 4.5,-54.5 - parent: 30 - - uid: 9368 - components: - - type: Transform - pos: -1.5,-54.5 - parent: 30 - uid: 9374 components: - type: Transform @@ -133873,45 +138792,10 @@ entities: - type: Transform pos: -10.5,-53.5 parent: 30 - - uid: 9507 - components: - - type: Transform - pos: 0.5,-55.5 - parent: 30 - - uid: 9508 - components: - - type: Transform - pos: -1.5,-55.5 - parent: 30 - - uid: 9509 - components: - - type: Transform - pos: 0.5,-54.5 - parent: 30 - - uid: 9510 - components: - - type: Transform - pos: -1.5,-57.5 - parent: 30 - - uid: 9511 - components: - - type: Transform - pos: -0.5,-57.5 - parent: 30 - - uid: 9513 - components: - - type: Transform - pos: 0.5,-57.5 - parent: 30 - uid: 9514 components: - type: Transform - pos: 5.5,-55.5 - parent: 30 - - uid: 9515 - components: - - type: Transform - pos: 5.5,-43.5 + pos: 7.5,-53.5 parent: 30 - uid: 9516 components: @@ -133983,20 +138867,15 @@ entities: - type: Transform pos: -8.5,-74.5 parent: 30 - - uid: 9641 + - uid: 9649 components: - type: Transform - pos: 5.5,-56.5 + pos: 0.5,-55.5 parent: 30 - - uid: 9642 + - uid: 9653 components: - type: Transform - pos: 0.5,-58.5 - parent: 30 - - uid: 9643 - components: - - type: Transform - pos: 4.5,-58.5 + pos: 5.5,-53.5 parent: 30 - uid: 9663 components: @@ -134023,11 +138902,21 @@ entities: - type: Transform pos: -39.5,-22.5 parent: 30 + - uid: 9788 + components: + - type: Transform + pos: 5.5,-55.5 + parent: 30 - uid: 9798 components: - type: Transform pos: -53.5,34.5 parent: 30 + - uid: 9818 + components: + - type: Transform + pos: 5.5,-48.5 + parent: 30 - uid: 9822 components: - type: Transform @@ -134043,6 +138932,11 @@ entities: - type: Transform pos: -6.5,-53.5 parent: 30 + - uid: 9868 + components: + - type: Transform + pos: 5.5,-47.5 + parent: 30 - uid: 9877 components: - type: Transform @@ -134058,6 +138952,16 @@ entities: - type: Transform pos: -27.5,-63.5 parent: 30 + - uid: 9973 + components: + - type: Transform + pos: 4.5,-57.5 + parent: 30 + - uid: 9975 + components: + - type: Transform + pos: 16.5,-35.5 + parent: 30 - uid: 9991 components: - type: Transform @@ -134163,11 +139067,6 @@ entities: - type: Transform pos: -8.5,-58.5 parent: 30 - - uid: 10134 - components: - - type: Transform - pos: 7.5,-43.5 - parent: 30 - uid: 10208 components: - type: Transform @@ -134198,15 +139097,10 @@ entities: - type: Transform pos: -30.5,-50.5 parent: 30 - - uid: 10558 + - uid: 10414 components: - type: Transform - pos: 7.5,-44.5 - parent: 30 - - uid: 10640 - components: - - type: Transform - pos: 6.5,-43.5 + pos: 5.5,-52.5 parent: 30 - uid: 10648 components: @@ -134243,6 +139137,26 @@ entities: - type: Transform pos: -19.5,-38.5 parent: 30 + - uid: 10798 + components: + - type: Transform + pos: 10.5,-38.5 + parent: 30 + - uid: 10801 + components: + - type: Transform + pos: 14.5,-42.5 + parent: 30 + - uid: 10906 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 30 + - uid: 10916 + components: + - type: Transform + pos: 0.5,-61.5 + parent: 30 - uid: 10944 components: - type: Transform @@ -134263,6 +139177,11 @@ entities: - type: Transform pos: 25.5,-21.5 parent: 30 + - uid: 10996 + components: + - type: Transform + pos: 4.5,-61.5 + parent: 30 - uid: 11019 components: - type: Transform @@ -134278,20 +139197,15 @@ entities: - type: Transform pos: -14.5,-38.5 parent: 30 - - uid: 11067 - components: - - type: Transform - pos: 5.5,-47.5 - parent: 30 - uid: 11107 components: - type: Transform pos: -6.5,-56.5 parent: 30 - - uid: 11123 + - uid: 11110 components: - type: Transform - pos: -5.5,-54.5 + pos: 0.5,-57.5 parent: 30 - uid: 11126 components: @@ -135093,6 +140007,11 @@ entities: - type: Transform pos: 37.5,18.5 parent: 30 + - uid: 13338 + components: + - type: Transform + pos: -5.5,-55.5 + parent: 30 - uid: 13358 components: - type: Transform @@ -135643,6 +140562,11 @@ entities: - type: Transform pos: -21.5,-53.5 parent: 30 + - uid: 13960 + components: + - type: Transform + pos: 5.5,-44.5 + parent: 30 - uid: 14506 components: - type: Transform @@ -135948,6 +140872,11 @@ entities: - type: Transform pos: -67.5,44.5 parent: 30 + - uid: 16397 + components: + - type: Transform + pos: 10.5,-39.5 + parent: 30 - uid: 16722 components: - type: Transform @@ -136078,6 +141007,11 @@ entities: - type: Transform pos: -62.5,46.5 parent: 30 + - uid: 16830 + components: + - type: Transform + pos: 14.5,-38.5 + parent: 30 - uid: 16934 components: - type: Transform @@ -136173,6 +141107,11 @@ entities: - type: Transform pos: -61.5,55.5 parent: 30 + - uid: 17036 + components: + - type: Transform + pos: 10.5,-41.5 + parent: 30 - uid: 17121 components: - type: Transform @@ -137633,6 +142572,11 @@ entities: - type: Transform pos: -44.5,-28.5 parent: 30 + - uid: 20469 + components: + - type: Transform + pos: 13.5,-42.5 + parent: 30 - uid: 20472 components: - type: Transform @@ -137643,6 +142587,11 @@ entities: - type: Transform pos: -39.5,-30.5 parent: 30 + - uid: 20527 + components: + - type: Transform + pos: 10.5,-42.5 + parent: 30 - uid: 20576 components: - type: Transform @@ -137813,6 +142762,11 @@ entities: - type: Transform pos: -40.5,-28.5 parent: 30 + - uid: 22290 + components: + - type: Transform + pos: 11.5,-59.5 + parent: 30 - uid: 22356 components: - type: Transform @@ -137863,6 +142817,31 @@ entities: - type: Transform pos: 32.5,-37.5 parent: 30 + - uid: 22378 + components: + - type: Transform + pos: 10.5,-60.5 + parent: 30 + - uid: 22386 + components: + - type: Transform + pos: 9.5,-61.5 + parent: 30 + - uid: 22387 + components: + - type: Transform + pos: 8.5,-62.5 + parent: 30 + - uid: 22456 + components: + - type: Transform + pos: 7.5,-63.5 + parent: 30 + - uid: 22525 + components: + - type: Transform + pos: 6.5,-64.5 + parent: 30 - uid: 22534 components: - type: Transform @@ -139653,7 +144632,6 @@ entities: - uid: 1935 components: - type: Transform - rot: -1.5707963267948966 rad pos: -52.5,54.5 parent: 30 - uid: 1945 @@ -139689,13 +144667,11 @@ entities: - uid: 2359 components: - type: Transform - rot: -1.5707963267948966 rad pos: -51.5,54.5 parent: 30 - uid: 2722 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,54.5 parent: 30 - uid: 3172 @@ -143512,8 +148488,6 @@ entities: - type: Transform pos: -30.5,45.5 parent: 30 - - type: Physics - canCollide: False - proto: WardrobeAtmosphericsFilled entities: - uid: 8418 @@ -143833,6 +148807,8 @@ entities: - type: Transform pos: 28.5,-26.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: WarningN2 entities: - uid: 8664 @@ -143840,6 +148816,8 @@ entities: - type: Transform pos: 28.5,-22.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: WarningN2O entities: - uid: 8663 @@ -143847,6 +148825,8 @@ entities: - type: Transform pos: 28.5,-34.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: WarningO2 entities: - uid: 8665 @@ -143854,6 +148834,8 @@ entities: - type: Transform pos: 28.5,-24.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: WarningPlasma entities: - uid: 8668 @@ -143861,6 +148843,8 @@ entities: - type: Transform pos: 28.5,-30.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: WarningTritium entities: - uid: 8681 @@ -143868,6 +148852,8 @@ entities: - type: Transform pos: 28.5,-32.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: WarningWaste entities: - uid: 8667 @@ -143875,6 +148861,8 @@ entities: - type: Transform pos: 28.5,-28.5 parent: 30 + - type: Fixtures + fixtures: {} - proto: WaterCooler entities: - uid: 1932 @@ -144082,6 +149070,54 @@ entities: - type: Transform pos: -38.42729,60.595303 parent: 30 +- proto: WeaponEnergyTurretAI + entities: + - uid: 23826 + components: + - type: Transform + pos: -5.5,78.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 23830 + - uid: 23827 + components: + - type: Transform + pos: 4.5,78.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 23830 + - uid: 23828 + components: + - type: Transform + pos: -5.5,88.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 23830 + - uid: 23829 + components: + - type: Transform + pos: 4.5,88.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 23830 +- proto: WeaponEnergyTurretAIControlPanel + entities: + - uid: 23830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,73.5 + parent: 30 + - type: DeviceList + devices: + - 23826 + - 23827 + - 23828 + - 23829 - proto: WeaponLaserCarbine entities: - uid: 2560 @@ -144839,25 +149875,21 @@ entities: - uid: 2239 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,57.5 parent: 30 - uid: 2348 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,51.5 parent: 30 - uid: 2366 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,55.5 parent: 30 - uid: 4576 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,53.5 parent: 30 - uid: 5017 @@ -146023,6 +151055,11 @@ entities: - type: Transform pos: -14.474685,-24.503119 parent: 30 + - uid: 9515 + components: + - type: Transform + pos: -19.65243,-75.22253 + parent: 30 - uid: 18182 components: - type: Transform diff --git a/Resources/Maps/oasis.yml b/Resources/Maps/oasis.yml index be47821c55..5f55256fc8 100644 --- a/Resources/Maps/oasis.yml +++ b/Resources/Maps/oasis.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 264.0.0 + engineVersion: 266.0.0 forkId: "" forkVersion: "" - time: 07/22/2025 16:51:18 - entityCount: 30823 + time: 08/17/2025 20:31:53 + entityCount: 31133 maps: - 1 grids: @@ -51,15 +51,18 @@ tilemap: 26: FloorMetalDiamond 3: FloorMowedAstroGrass 7: FloorPlanetGrass + 57: FloorRedCircuit 30: FloorReinforced 48: FloorReinforcedHardened 54: FloorRockVault + 58: FloorShuttleBlue 17: FloorSteel 25: FloorSteelDiagonal 37: FloorSteelOffset 15: FloorTechMaint 21: FloorTechMaint2 43: FloorTechMaint3 + 56: FloorTechMaintDark 31: FloorWhite 34: FloorWhiteMini 38: FloorWhiteOffset @@ -95,119 +98,119 @@ entities: chunks: 0,0: ind: 0,0 - tiles: AAAAAAADAAAAAAAAAgAAAAAAAAMAAQAAAAABAAEAAAAAAAABAAAAAAMAAQAAAAABAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAQABAAAAAAAAAQAAAAACAAEAAAAAAgABAAAAAAAAAQAAAAABAAAAAAAAAgAAAAAAAAMAAAAAAAABAAEAAAAAAAABAAAAAAAAAQAAAAADAAEAAAAAAAABAAAAAAIAAQAAAAADAAEAAAAAAgABAAAAAAEAAQAAAAACAAEAAAAAAQABAAAAAAAAAQAAAAABAAEAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAgABAAAAAAIAAQAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAMABQAAAAAAAAMAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAgABAAAAAAEAAQAAAAAAAAIAAAAAAAAHAAAAAAEABgAAAAACAAYAAAAAAwADAAAAAAAABgAAAAADAAMAAAAAAAADAAAAAAAABQAAAAADAAUAAAAAAwADAAAAAAAAAwAAAAAAAAEAAAAAAgABAAAAAAAAAQAAAAAAAAIAAAAAAAAGAAAAAAEABgAAAAADAAYAAAAAAgAGAAAAAAEABgAAAAACAAYAAAAAAwAGAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAAGAAAAAAIABgAAAAACAAYAAAAAAwAGAAAAAAIABgAAAAAAAAYAAAAAAgAGAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAQADAAAAAAAABgAAAAADAAYAAAAAAgAGAAAAAAAABgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAEAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAABAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAIAAQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAMAAQAAAAABAAEAAAAAAAAEAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAEABgAAAAAAAAEAAAAAAwABAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAEABgAAAAADAAYAAAAAAQABAAAAAAEAAQAAAAABAAUAAAAAAAAFAAAAAAEAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAwADAAAAAAAAAQAAAAADAAEAAAAAAQAFAAAAAAIABQAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAAAAAYAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAEAAQAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAQAGAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAwACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAAABgAAAAABAAYAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA== + tiles: AAAAAAABAAAAAAAAAgAAAAAAAAIAAQAAAAADAAEAAAAAAAABAAAAAAMAAQAAAAAAAAEAAAAAAQABAAAAAAMAAQAAAAADAAEAAAAAAQABAAAAAAMAAQAAAAAAAAEAAAAAAgABAAAAAAMAAQAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAEAAAAAAgABAAAAAAMAAQAAAAAAAAEAAAAAAgABAAAAAAMAAQAAAAADAAEAAAAAAAABAAAAAAMAAQAAAAACAAEAAAAAAQABAAAAAAAAAQAAAAABAAEAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAIABQAAAAADAAMAAAAAAAACAAAAAAAAAQAAAAABAAEAAAAAAgABAAAAAAIAAQAAAAABAAIAAAAAAAAHAAAAAAIABgAAAAADAAYAAAAAAwADAAAAAAAABgAAAAACAAMAAAAAAAADAAAAAAAABQAAAAACAAUAAAAAAwADAAAAAAAAAwAAAAAAAAEAAAAAAgABAAAAAAMAAQAAAAACAAIAAAAAAAAGAAAAAAEABgAAAAADAAYAAAAAAAAGAAAAAAMABgAAAAACAAYAAAAAAAAGAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAACAAIAAAAAAAAGAAAAAAIABgAAAAABAAYAAAAAAAAGAAAAAAEABgAAAAABAAYAAAAAAAAGAAAAAAEAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAABAAEAAAAAAgADAAAAAAAABgAAAAADAAYAAAAAAwAGAAAAAAAABgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAwABAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAMAAQAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAAAAQAAAAABAAEAAAAAAgAEAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAMABgAAAAADAAEAAAAAAgABAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAIABgAAAAAAAAYAAAAAAAABAAAAAAIAAQAAAAACAAUAAAAAAwAFAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAQADAAAAAAAAAQAAAAABAAEAAAAAAwAFAAAAAAMABQAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAABAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAQABAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAABAAYAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAMAAQAAAAABAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAQAGAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAADAAEAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAAABgAAAAACAAYAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA== version: 7 -1,0: ind: -1,0 - tiles: AQAAAAAAAAEAAAAAAgABAAAAAAIAAQAAAAABAAEAAAAAAQABAAAAAAMAAQAAAAAAAAEAAAAAAwABAAAAAAEAAQAAAAABAAEAAAAAAwABAAAAAAEAAQAAAAABAAEAAAAAAwAAAAAAAAAAAAAAAAABAAEAAAAAAwABAAAAAAMAAQAAAAACAAEAAAAAAgABAAAAAAEAAQAAAAABAAEAAAAAAAABAAAAAAAAAQAAAAACAAEAAAAAAAABAAAAAAMAAQAAAAAAAAEAAAAAAQABAAAAAAAAAAAAAAABAAAAAAAAAwAIAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAAAAAUAAAAAAAADAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAABAAAAAAAAAwAAAAAAAAAACAAAAAABAAgAAAAAAgADAAAAAAAAAwAAAAAAAAUAAAAAAwAFAAAAAAEAAwAAAAAAAAYAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAAAAgAAAAAAAAEAAAAAAQABAAAAAAAAAQAAAAADAAgAAAAAAQAIAAAAAAAACAAAAAACAAMAAAAAAAAFAAAAAAMABQAAAAAAAAUAAAAAAwAGAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAAAAAYAAAAAAgACAAAAAAAAAQAAAAADAAEAAAAAAAAIAAAAAAEACAAAAAADAAgAAAAAAQAFAAAAAAMABQAAAAAAAAUAAAAAAgAGAAAAAAIABgAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAIABgAAAAACAAIAAAAAAAABAAAAAAAACAAAAAAAAAgAAAAAAwAIAAAAAAIABQAAAAAAAAUAAAAAAgAFAAAAAAIAAwAAAAAAAAMAAAAAAAAIAAAAAAIACAAAAAACAAgAAAAAAAAIAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAACAAgAAAAAAgAIAAAAAAIACAAAAAADAAUAAAAAAQAFAAAAAAAABQAAAAAAAAQAAAAAAAADAAAAAAAACAAAAAABAAgAAAAAAQAIAAAAAAIACAAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAgAIAAAAAAAACAAAAAACAAgAAAAAAgAGAAAAAAEABQAAAAAAAAUAAAAAAAADAAAAAAAAAwAAAAAAAAgAAAAAAQAIAAAAAAMACAAAAAABAAgAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAEACAAAAAABAAgAAAAAAwAIAAAAAAAABgAAAAACAAUAAAAAAQAFAAAAAAEAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAwACAAAAAAAAAQAAAAABAAgAAAAAAwAIAAAAAAAABgAAAAACAAYAAAAAAwAFAAAAAAAABQAAAAADAAUAAAAAAgAFAAAAAAIAAwAAAAAAAAMAAAAAAAAGAAAAAAMABgAAAAABAAYAAAAAAgAGAAAAAAMABAAAAAAAAAEAAAAAAQAIAAAAAAEABgAAAAAAAAYAAAAAAAADAAAAAAAABQAAAAABAAUAAAAAAAAFAAAAAAAABQAAAAADAAUAAAAAAAAGAAAAAAMABgAAAAABAAYAAAAAAgAEAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAEAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAAABQAAAAABAAUAAAAAAAAFAAAAAAEABQAAAAACAAUAAAAAAwAFAAAAAAMABQAAAAADAAUAAAAAAAAFAAAAAAIAAQAAAAABAAMAAAAAAAAJAAAAAAIACQAAAAABAAkAAAAAAAAJAAAAAAEAAwAAAAAAAAUAAAAAAQAFAAAAAAEABQAAAAACAAUAAAAAAQAFAAAAAAIABQAAAAAAAAUAAAAAAwAFAAAAAAIABQAAAAAAAAEAAAAAAAADAAAAAAAACQAAAAAAAAkAAAAAAwAJAAAAAAAACQAAAAABAAMAAAAAAAAFAAAAAAAABQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAAABQAAAAADAAMAAAAAAAABAAAAAAMAAwAAAAAAAAkAAAAAAAAJAAAAAAMACQAAAAACAAkAAAAAAwADAAAAAAAABQAAAAACAAUAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAAAAAUAAAAAAgACAAAAAAAAAQAAAAACAA== + tiles: AQAAAAADAAEAAAAAAAABAAAAAAMAAQAAAAACAAEAAAAAAgABAAAAAAIAAQAAAAABAAEAAAAAAQABAAAAAAAAAQAAAAABAAEAAAAAAwABAAAAAAMAAQAAAAADAAEAAAAAAgAAAAAAAAMAAAAAAAADAAEAAAAAAAABAAAAAAEAAQAAAAACAAEAAAAAAAABAAAAAAIAAQAAAAABAAEAAAAAAgABAAAAAAEAAQAAAAACAAEAAAAAAQABAAAAAAEAAQAAAAAAAAEAAAAAAwABAAAAAAIAAAAAAAABAAAAAAAAAAAIAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAABAAUAAAAAAgADAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAABAAAAAAIAAQAAAAACAAAAAAAAAgAAAAAAAAIACAAAAAADAAgAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAwAFAAAAAAIAAwAAAAAAAAYAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAEAAgAAAAAAAAEAAAAAAAABAAAAAAMAAQAAAAAAAAgAAAAAAgAIAAAAAAEACAAAAAABAAMAAAAAAAAFAAAAAAEABQAAAAADAAUAAAAAAQAGAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAABAAYAAAAAAwACAAAAAAAAAQAAAAAAAAEAAAAAAgAIAAAAAAIACAAAAAABAAgAAAAAAQAFAAAAAAIABQAAAAADAAUAAAAAAgAGAAAAAAMABgAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAMABgAAAAACAAIAAAAAAAABAAAAAAAACAAAAAABAAgAAAAAAAAIAAAAAAMABQAAAAACAAUAAAAAAAAFAAAAAAAAAwAAAAAAAAMAAAAAAAAIAAAAAAAACAAAAAADAAgAAAAAAwAIAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAgAAAAAAQAIAAAAAAAACAAAAAADAAUAAAAAAgAFAAAAAAAABQAAAAACAAQAAAAAAAADAAAAAAAACAAAAAADAAgAAAAAAgAIAAAAAAEACAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAgAIAAAAAAAACAAAAAABAAgAAAAAAwAGAAAAAAIABQAAAAAAAAUAAAAAAgADAAAAAAAAAwAAAAAAAAgAAAAAAQAIAAAAAAEACAAAAAACAAgAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAEACAAAAAABAAgAAAAAAQAIAAAAAAMABgAAAAABAAUAAAAAAAAFAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAAACAAAAAAAAAQAAAAACAAgAAAAAAgAIAAAAAAMABgAAAAAAAAYAAAAAAgAFAAAAAAIABQAAAAADAAUAAAAAAQAFAAAAAAIAAwAAAAAAAAMAAAAAAAAGAAAAAAAABgAAAAACAAYAAAAAAQAGAAAAAAEABAAAAAAAAAEAAAAAAQAIAAAAAAAABgAAAAACAAYAAAAAAAADAAAAAAAABQAAAAABAAUAAAAAAQAFAAAAAAIABQAAAAAAAAUAAAAAAQAGAAAAAAMABgAAAAABAAYAAAAAAQAEAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAEABQAAAAADAAUAAAAAAAAFAAAAAAEABQAAAAAAAAUAAAAAAwAFAAAAAAAABQAAAAACAAUAAAAAAgAFAAAAAAEAAQAAAAAAAAMAAAAAAAAJAAAAAAMACQAAAAAAAAkAAAAAAgAJAAAAAAIAAwAAAAAAAAUAAAAAAAAFAAAAAAMABQAAAAADAAUAAAAAAwAFAAAAAAMABQAAAAABAAUAAAAAAwAFAAAAAAEABQAAAAACAAEAAAAAAAADAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAADAAMAAAAAAAAFAAAAAAAABQAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAMABQAAAAABAAMAAAAAAAABAAAAAAEAAwAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAAAAAkAAAAAAQADAAAAAAAABQAAAAAAAAUAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAADAAUAAAAAAwACAAAAAAAAAQAAAAABAA== version: 7 0,-1: ind: 0,-1 - tiles: AQAAAAABAAEAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAgAGAAAAAAEABgAAAAADAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAABAAEAAAAAAQABAAAAAAMAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAABAAUAAAAAAwABAAAAAAIAAQAAAAACAAUAAAAAAAAFAAAAAAMABQAAAAAAAAUAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAABAAUAAAAAAwAFAAAAAAMAAQAAAAAAAAEAAAAAAQAFAAAAAAMABQAAAAABAAUAAAAAAwAFAAAAAAIABQAAAAAAAAUAAAAAAgAFAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAABAAUAAAAAAgAFAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAIAAwAAAAAAAAMAAAAAAAAFAAAAAAIABQAAAAADAAUAAAAAAAAFAAAAAAMABQAAAAAAAAUAAAAAAQAFAAAAAAMABQAAAAACAAUAAAAAAAAFAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAIAAQAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAAAAAUAAAAAAwAFAAAAAAAABQAAAAADAAUAAAAAAgAFAAAAAAEAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAADAAEAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAADAAUAAAAAAAAFAAAAAAMABQAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAwABAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAIABQAAAAAAAAUAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAMAAQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAKAAAAAAIACgAAAAACAAoAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAADAAEAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAACgAAAAAAAAoAAAAAAwAKAAAAAAMAAwAAAAAAAAMAAAAAAAAFAAAAAAIABQAAAAABAAUAAAAAAQADAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAoAAAAAAwAKAAAAAAMACgAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAQAFAAAAAAEAAwAAAAAAAAMAAAAAAAABAAAAAAMAAQAAAAAAAAIAAAAAAAAGAAAAAAEABgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAAABQAAAAABAAUAAAAAAAADAAAAAAAAAQAAAAACAAEAAAAAAwABAAAAAAMAAgAAAAAAAAYAAAAAAgAGAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAACAAUAAAAAAwAFAAAAAAAAAwAAAAAAAAEAAAAAAwABAAAAAAAAAQAAAAAAAAEAAAAAAgACAAAAAAAABgAAAAAAAAYAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAQAFAAAAAAAABQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAABAAAAAAEAAQAAAAADAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAABAAUAAAAAAQACAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAIAAQAAAAAAAAEAAAAAAAABAAAAAAMAAQAAAAADAAEAAAAAAgABAAAAAAEAAQAAAAABAAEAAAAAAQABAAAAAAIAAQAAAAAAAAEAAAAAAQABAAAAAAEAAQAAAAABAA== + tiles: AQAAAAACAAEAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAgAGAAAAAAEABgAAAAACAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAABAAEAAAAAAAABAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAABAAUAAAAAAAABAAAAAAEAAQAAAAAAAAUAAAAAAgAFAAAAAAMABQAAAAAAAAUAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAACAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAMABQAAAAACAAUAAAAAAQAFAAAAAAMABQAAAAADAAUAAAAAAgAFAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAABAAUAAAAAAwAFAAAAAAEAAwAAAAAAAAEAAAAAAwABAAAAAAIAAwAAAAAAAAMAAAAAAAAFAAAAAAMABQAAAAABAAUAAAAAAwAFAAAAAAMABQAAAAABAAUAAAAAAAAFAAAAAAAABQAAAAADAAUAAAAAAgAFAAAAAAIAAwAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAABAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAADAAUAAAAAAAAFAAAAAAMABQAAAAADAAUAAAAAAgAFAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAABAAEAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAACAAUAAAAAAQAFAAAAAAIABQAAAAABAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAgABAAAAAAEAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAAABQAAAAACAAUAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAKAAAAAAEACgAAAAAAAAoAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAwAFAAAAAAAABQAAAAADAAMAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAEAAwAAAAAAAAMAAAAAAAAFAAAAAAAABQAAAAADAAUAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAQABAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAoAAAAAAQAKAAAAAAAACgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAgAFAAAAAAIAAwAAAAAAAAMAAAAAAAABAAAAAAIAAQAAAAADAAIAAAAAAAAGAAAAAAAABgAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAIABQAAAAAAAAUAAAAAAwADAAAAAAAAAQAAAAACAAEAAAAAAwABAAAAAAEAAgAAAAAAAAYAAAAAAwAGAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAACAAUAAAAAAQAFAAAAAAIAAwAAAAAAAAEAAAAAAwABAAAAAAMAAQAAAAAAAAEAAAAAAQACAAAAAAAABgAAAAADAAYAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAgAFAAAAAAIABQAAAAACAAMAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAABAAAAAAMAAQAAAAADAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAADAAUAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAMAAQAAAAAAAAEAAAAAAQABAAAAAAIAAQAAAAACAAEAAAAAAwABAAAAAAAAAQAAAAACAAEAAAAAAAABAAAAAAEAAQAAAAACAAEAAAAAAAABAAAAAAAAAQAAAAACAA== version: 7 -1,-1: ind: -1,-1 - tiles: BQAAAAADAAUAAAAAAgAFAAAAAAAABQAAAAABAAUAAAAAAQAFAAAAAAMABQAAAAAAAAUAAAAAAwAFAAAAAAIABQAAAAACAAUAAAAAAgAFAAAAAAMABQAAAAACAAUAAAAAAQAFAAAAAAAAAQAAAAACAAUAAAAAAAAEAAAAAAAACgAAAAAAAAoAAAAAAAAEAAAAAAAABQAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAAABgAAAAACAAYAAAAAAgADAAAAAAAAAgAAAAAAAAEAAAAAAQAFAAAAAAIACgAAAAACAAoAAAAAAgAKAAAAAAMAAwAAAAAAAAUAAAAAAwADAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAGAAAAAAEAAwAAAAAAAAMAAAAAAAABAAAAAAMABQAAAAABAAoAAAAAAgAKAAAAAAEAAwAAAAAAAAMAAAAAAAAFAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAADAAUAAAAAAQAEAAAAAAAACgAAAAADAAMAAAAAAAAEAAAAAAAABQAAAAACAAUAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAADAAUAAAAAAAAFAAAAAAAABQAAAAACAAUAAAAAAAADAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAFAAAAAAAABQAAAAACAAUAAAAAAQABAAAAAAEABQAAAAAAAAYAAAAAAAAGAAAAAAIAAwAAAAAAAAUAAAAAAgADAAAAAAAAAwAAAAAAAAYAAAAAAAAGAAAAAAMAAwAAAAAAAAUAAAAAAwAFAAAAAAEABQAAAAABAAUAAAAAAQAFAAAAAAMAAQAAAAABAAUAAAAAAgAGAAAAAAMABAAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAYAAAAAAwAGAAAAAAIAAwAAAAAAAAUAAAAAAgAFAAAAAAEABQAAAAABAAUAAAAAAAAFAAAAAAMABQAAAAAAAAEAAAAAAgAFAAAAAAEAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAEABgAAAAABAAUAAAAAAAAFAAAAAAAABQAAAAABAAUAAAAAAAAFAAAAAAIAAwAAAAAAAAMAAAAAAAABAAAAAAMABQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAwAFAAAAAAMABQAAAAACAAUAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAUAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAwAFAAAAAAEABQAAAAACAAUAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAAFAAAAAAAAAwAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAFAAAAAAMABQAAAAABAAUAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAQAGAAAAAAMABgAAAAADAAIAAAAAAAABAAAAAAIABQAAAAADAAMAAAAAAAAGAAAAAAMABgAAAAAAAAMAAAAAAAAFAAAAAAAABQAAAAADAAUAAAAAAgAFAAAAAAAAAwAAAAAAAAYAAAAAAQAGAAAAAAAABgAAAAABAAIAAAAAAAABAAAAAAIAAQAAAAAAAAUAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAADAAUAAAAAAAAFAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAABAAIAAAAAAAABAAAAAAIAAQAAAAADAAEAAAAAAwAFAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAwAFAAAAAAMABQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAABAAAAAAEAAQAAAAABAAAAAAAAAgAAAAAAAAAAAQAAAAACAAEAAAAAAAABAAAAAAMAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAADAAEAAAAAAwABAAAAAAIAAQAAAAACAAEAAAAAAgABAAAAAAIAAQAAAAACAAEAAAAAAwAAAAAAAAIAAAAAAAABAA== + tiles: BQAAAAADAAUAAAAAAQAFAAAAAAEABQAAAAAAAAUAAAAAAwAFAAAAAAAABQAAAAACAAUAAAAAAwAFAAAAAAAABQAAAAACAAUAAAAAAAAFAAAAAAEABQAAAAAAAAUAAAAAAAAFAAAAAAIAAQAAAAADAAUAAAAAAwAEAAAAAAAACgAAAAABAAoAAAAAAwAEAAAAAAAABQAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAMABgAAAAABAAYAAAAAAQADAAAAAAAAAgAAAAAAAAEAAAAAAwAFAAAAAAIACgAAAAABAAoAAAAAAQAKAAAAAAAAAwAAAAAAAAUAAAAAAgADAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAGAAAAAAIAAwAAAAAAAAMAAAAAAAABAAAAAAMABQAAAAABAAoAAAAAAgAKAAAAAAIAAwAAAAAAAAMAAAAAAAAFAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAUAAAAAAAAEAAAAAAAACgAAAAADAAMAAAAAAAAEAAAAAAAABQAAAAAAAAUAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAgAFAAAAAAAABQAAAAAAAAUAAAAAAwAFAAAAAAEABQAAAAAAAAUAAAAAAQADAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAFAAAAAAIABQAAAAADAAUAAAAAAwABAAAAAAEABQAAAAACAAYAAAAAAAAGAAAAAAEAAwAAAAAAAAUAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAgAGAAAAAAIAAwAAAAAAAAUAAAAAAQAFAAAAAAAABQAAAAAAAAUAAAAAAgAFAAAAAAEAAQAAAAAAAAUAAAAAAwAGAAAAAAEABAAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAYAAAAAAgAGAAAAAAEAAwAAAAAAAAUAAAAAAQAFAAAAAAIABQAAAAADAAUAAAAAAgAFAAAAAAIABQAAAAACAAEAAAAAAwAFAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAIABgAAAAACAAUAAAAAAAAFAAAAAAAABQAAAAACAAUAAAAAAAAFAAAAAAIAAwAAAAAAAAMAAAAAAAABAAAAAAMABQAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAgAFAAAAAAIABQAAAAAAAAUAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAACAAUAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAgAFAAAAAAMABQAAAAADAAUAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAgAFAAAAAAIAAwAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAFAAAAAAIABQAAAAADAAUAAAAAAgADAAAAAAAAAwAAAAAAAAYAAAAAAgAGAAAAAAIABgAAAAABAAIAAAAAAAABAAAAAAEABQAAAAABAAMAAAAAAAAGAAAAAAEABgAAAAADAAMAAAAAAAAFAAAAAAEABQAAAAACAAUAAAAAAQAFAAAAAAAAAwAAAAAAAAYAAAAAAwAGAAAAAAEABgAAAAACAAIAAAAAAAABAAAAAAEAAQAAAAACAAUAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAAAAAUAAAAAAgAFAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAACAAIAAAAAAAABAAAAAAMAAQAAAAAAAAEAAAAAAgAFAAAAAAEAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAgAFAAAAAAAABQAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAABAAAAAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAwABAAAAAAIAAQAAAAACAAEAAAAAAAABAAAAAAEAAQAAAAACAAEAAAAAAQABAAAAAAEAAQAAAAABAAEAAAAAAgABAAAAAAIAAQAAAAADAAEAAAAAAwAAAAAAAAEAAAAAAAACAA== version: 7 -1,1: ind: -1,1 - tiles: BQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAADAAUAAAAAAAAFAAAAAAAABQAAAAADAAUAAAAAAQAFAAAAAAIABQAAAAADAAUAAAAAAAADAAAAAAAAAQAAAAADAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAADAAUAAAAAAgAFAAAAAAMABQAAAAAAAAUAAAAAAwAFAAAAAAEABQAAAAABAAUAAAAAAgAFAAAAAAEAAwAAAAAAAAEAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAAgAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAAAEQAAAAADAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAAAABEAAAAAAgALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAABAAAAAAAQARAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAAAEQAAAAACAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAAMAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAMADAAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACAAwAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwAMAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEADAAAAAACAAIAAAAAAAAMAAAAAAAADAAAAAADAAwAAAAAAAACAAAAAAAADAAAAAABAAwAAAAAAQAMAAAAAAEADAAAAAADAAwAAAAAAQAMAAAAAAAADAAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACAA== + tiles: BQAAAAAAAAUAAAAAAQAFAAAAAAIABQAAAAACAAUAAAAAAwAFAAAAAAEABQAAAAABAAUAAAAAAQAFAAAAAAMABQAAAAAAAAUAAAAAAgAFAAAAAAAABQAAAAABAAUAAAAAAAADAAAAAAAAAQAAAAADAAUAAAAAAQAFAAAAAAEABQAAAAABAAUAAAAAAQAFAAAAAAMABQAAAAACAAUAAAAAAgAFAAAAAAMABQAAAAACAAUAAAAAAwAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAIAAwAAAAAAAAEAAAAAAQACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAAgAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAAAEQAAAAADAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAAAABEAAAAAAwALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAABAAAAAAAgARAAAAAAIACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAAAEQAAAAABAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAQAMAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEADAAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAABAAwAAAAAAgACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQAMAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIADAAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAACAAwAAAAAAwACAAAAAAAADAAAAAABAAwAAAAAAAAMAAAAAAMADAAAAAACAAwAAAAAAgAMAAAAAAEADAAAAAACAAIAAAAAAAARAAAAAAIAEQAAAAACAA== version: 7 -2,-1: ind: -2,-1 - tiles: EgAAAAAAABIAAAAAAAASAAAAAAIAEgAAAAACABIAAAAAAwASAAAAAAIAEgAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAABIAAAAAAgASAAAAAAEAEgAAAAAAABIAAAAAAAASAAAAAAIAEgAAAAAAABIAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABYAAAAAAAAWAAAAAAUABgAAAAABAAMAAAAAAAACAAAAAAAAAgAAAAAAABIAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAASAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAWAAAAAAUAFgAAAAAEAAYAAAAAAgADAAAAAAAAEgAAAAAAAAIAAAAAAAASAAAAAAEAEgAAAAACAAIAAAAAAAASAAAAAAEAEgAAAAAAABIAAAAAAwACAAAAAAAADwAAAAAAAA8AAAAAAAAVAAAAAAAAFgAAAAADABYAAAAAAAAGAAAAAAIAAwAAAAAAABIAAAAAAwACAAAAAAAAEgAAAAAAABIAAAAAAAACAAAAAAAAEgAAAAADABIAAAAAAAASAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABYAAAAAAwAWAAAAAAQABgAAAAABAAMAAAAAAAASAAAAAAIAAgAAAAAAABIAAAAAAwASAAAAAAAAAgAAAAAAABIAAAAAAgASAAAAAAIAEgAAAAACAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAwAAAAAAABMAAAAAAAARAAAAAAMAEwAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAFQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAMAAAAAAAATAAAAAAAAEQAAAAACABMAAAAAAAARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAADAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAwAAAAAAABMAAAAAAAAUAAAAAAEAEwAAAAAAABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAATAAAAAAAAEQAAAAADABMAAAAAAAARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAABAAwAAAAAAwAMAAAAAAAADAAAAAABAAIAAAAAAAADAAAAAAAAEwAAAAAAABEAAAAAAQATAAAAAAAAEQAAAAADAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAIADAAAAAACAAwAAAAAAAACAAAAAAAAAwAAAAAAABAAAAAAAQACAAAAAAAAEAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAADAAwAAAAAAQAMAAAAAAEAAgAAAAAAAAMAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAQARAAAAAAIAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAIAAgAAAAAAAAIAAAAAAAADAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAgARAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAAAAQAAAAADAA== + tiles: EgAAAAABABIAAAAAAQASAAAAAAEAEgAAAAAAABIAAAAAAQASAAAAAAMAEgAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAABIAAAAAAwASAAAAAAMAEgAAAAAAABIAAAAAAAASAAAAAAIAEgAAAAADABIAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABYAAAAABQAWAAAAAAIABgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAABIAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAASAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAWAAAAAAIAFgAAAAAEAAYAAAAAAAADAAAAAAAAEgAAAAADAAIAAAAAAAASAAAAAAAAEgAAAAACAAIAAAAAAAASAAAAAAMAEgAAAAABABIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAVAAAAAAAAFgAAAAAAABYAAAAABQAGAAAAAAEAAwAAAAAAABIAAAAAAAACAAAAAAAAEgAAAAADABIAAAAAAwACAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAIAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABYAAAAAAgAWAAAAAAQABgAAAAAAAAMAAAAAAAASAAAAAAEAAgAAAAAAABIAAAAAAgASAAAAAAEAAgAAAAAAABIAAAAAAQASAAAAAAEAEgAAAAABAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAwAAAAAAABMAAAAAAAARAAAAAAIAEwAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAFQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAMAAAAAAAATAAAAAAAAEQAAAAADABMAAAAAAAARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAADAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAwAAAAAAABMAAAAAAAAUAAAAAAMAEwAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAATAAAAAAAAEQAAAAAAABMAAAAAAAARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAgAMAAAAAAIADAAAAAAAAAIAAAAAAAADAAAAAAAAEwAAAAAAABEAAAAAAwATAAAAAAAAEQAAAAABAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAAADAAAAAADAAwAAAAAAQACAAAAAAAAAwAAAAAAABAAAAAAAQACAAAAAAAAEAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAACAAwAAAAAAgAMAAAAAAEAAgAAAAAAAAMAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAQARAAAAAAIAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAIAAgAAAAAAAAIAAAAAAAADAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAgARAAAAAAIAAQAAAAABAA== version: 7 -2,0: ind: -2,0 - tiles: EQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAADABEAAAAAAwARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAAAAQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAACABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAgARAAAAAAEAEQAAAAADABEAAAAAAQARAAAAAAIAEQAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAACAAEAAAAAAwACAAAAAAAAAgAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAMAAgAAAAAAAAIAAAAAAAAIAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAMAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAgAAAAAAwAIAAAAAAMACAAAAAACAAgAAAAAAQACAAAAAAAACAAAAAADABEAAAAAAwARAAAAAAEAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAIAAAAAAMACAAAAAAAAAgAAAAAAQAIAAAAAAIAFAAAAAABAAgAAAAAAwARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAADAAgAAAAAAwAIAAAAAAEACAAAAAAAABQAAAAAAgAIAAAAAAEAEQAAAAACABEAAAAAAgARAAAAAAIAEQAAAAADAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAwAIAAAAAAAACAAAAAAAAAgAAAAAAwAUAAAAAAMACAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAIACAAAAAAAAAgAAAAAAwAIAAAAAAIAFAAAAAAAAAgAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAABAAgAAAAAAQAIAAAAAAEACAAAAAACABQAAAAAAAAIAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAQAIAAAAAAIACAAAAAACAAgAAAAAAQAUAAAAAAAACAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAAACAAAAAABAAgAAAAAAQAIAAAAAAAAAgAAAAAAAAgAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAgAMAAAAAAMADAAAAAAAAAIAAAAAAAAIAAAAAAIACAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAEADAAAAAABAAwAAAAAAgACAAAAAAAACAAAAAAAAAgAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAABAAwAAAAAAgAMAAAAAAEAAgAAAAAAAAgAAAAAAgAIAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAMADAAAAAADAAIAAAAAAAAIAAAAAAEACAAAAAACAA== + tiles: EQAAAAADABEAAAAAAwARAAAAAAIAEQAAAAACABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAMAEQAAAAABABEAAAAAAgARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAMAAQAAAAADABEAAAAAAwARAAAAAAIAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAAAEQAAAAACAAEAAAAAAgACAAAAAAAAAgAAAAAAABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAIAAgAAAAAAAAIAAAAAAAAIAAAAAAIAEQAAAAACABEAAAAAAQARAAAAAAEAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAgAAAAAAQAIAAAAAAIACAAAAAABAAgAAAAAAgACAAAAAAAACAAAAAADABEAAAAAAwARAAAAAAMAEQAAAAABABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAIAAAAAAEACAAAAAAAAAgAAAAAAQAIAAAAAAIAFAAAAAADAAgAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAADAAgAAAAAAgAIAAAAAAEACAAAAAACABQAAAAAAwAIAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAIAEQAAAAABAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAABAAgAAAAAAgAUAAAAAAMACAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAIACAAAAAAAAAgAAAAAAwAIAAAAAAAAFAAAAAACAAgAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAACAAgAAAAAAAAIAAAAAAIACAAAAAADABQAAAAAAQAIAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAgAIAAAAAAAACAAAAAADAAgAAAAAAQAUAAAAAAMACAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAIACAAAAAABAAgAAAAAAAAIAAAAAAEAAgAAAAAAAAgAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAMADAAAAAADAAIAAAAAAAAIAAAAAAAACAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAACAAwAAAAAAAACAAAAAAAACAAAAAACAAgAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAgAMAAAAAAIAAgAAAAAAAAgAAAAAAAAIAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAADAAIAAAAAAAAIAAAAAAEACAAAAAAAAA== version: 7 -2,1: ind: -2,1 - tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAABAAwAAAAAAQAMAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAgAMAAAAAAIADAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAABAAwAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAADAAAAAAAAAwAAAAAAQAMAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAgAMAAAAAAAADAAAAAABAA== + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAwAMAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAwAMAAAAAAIADAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAADAAwAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAADAAAAAADAAwAAAAAAAAMAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAAADAAAAAADAA== version: 7 0,1: ind: 0,1 - tiles: AQAAAAAAAAEAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAAAAAYAAAAAAgAGAAAAAAIABgAAAAAAAAYAAAAAAAAGAAAAAAMABgAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAQABAAAAAAIAAwAAAAAAAAYAAAAAAgAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAMABgAAAAACAAYAAAAAAQAGAAAAAAAABgAAAAADAAYAAAAAAgAGAAAAAAMABgAAAAADAAYAAAAAAgARAAAAAAEAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAIABwAAAAABAAcAAAAAAwAHAAAAAAIAEQAAAAACABEAAAAAAwAUAAAAAAMAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAFAAAAAADABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAgAAAAAAABkAAAAAAQAZAAAAAAIAGQAAAAADABkAAAAAAgARAAAAAAEAEQAAAAACABQAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABQAAAAAAAAZAAAAAAMAGQAAAAABABkAAAAAAQAZAAAAAAAAEQAAAAAAABEAAAAAAQACAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAUAAAAAAEAGQAAAAADABkAAAAAAQAZAAAAAAMAGQAAAAABABEAAAAAAQARAAAAAAMAEQAAAAABABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAgAAAAAAABkAAAAAAwAZAAAAAAEAGQAAAAABABkAAAAAAwARAAAAAAAAEQAAAAADAAIAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAABAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAQACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABEAAAAAAQARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAARAAAAAAMAEQAAAAADAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAACAAwAAAAAAwAMAAAAAAMAEQAAAAAAABEAAAAAAgARAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAwARAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAADAA== + tiles: AQAAAAACAAEAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAAAAAYAAAAAAQAGAAAAAAIABgAAAAAAAAYAAAAAAQAGAAAAAAAABgAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAwABAAAAAAIAAwAAAAAAAAYAAAAAAgAGAAAAAAEABgAAAAADAAYAAAAAAQAGAAAAAAEABgAAAAAAAAYAAAAAAAAGAAAAAAIABgAAAAADAAYAAAAAAgAGAAAAAAEABgAAAAAAAAYAAAAAAQARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAIABwAAAAAAAAcAAAAAAgAHAAAAAAAAEQAAAAADABEAAAAAAgAUAAAAAAEAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAAAFAAAAAABABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAgAAAAAAABkAAAAAAgAZAAAAAAAAGQAAAAAAABkAAAAAAAARAAAAAAMAEQAAAAABABQAAAAAAwAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABQAAAAAAwAZAAAAAAAAGQAAAAACABkAAAAAAwAZAAAAAAIAEQAAAAABABEAAAAAAQACAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAUAAAAAAIAGQAAAAABABkAAAAAAgAZAAAAAAIAGQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAADABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAgAAAAAAABkAAAAAAwAZAAAAAAIAGQAAAAABABkAAAAAAAARAAAAAAIAEQAAAAABAAIAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAABAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAgACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAIADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAARAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAMAAAAAAEADAAAAAABAAwAAAAAAgAMAAAAAAEAEQAAAAADABEAAAAAAAARAAAAAAIAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAIAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAA== version: 7 1,1: ind: 1,1 - tiles: BgAAAAADAAYAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAgAUAAAAAAEAFAAAAAADABQAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAAAAAYAAAAAAgAGAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAABABQAAAAAAAAUAAAAAAMAFAAAAAACABQAAAAAAgAUAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAABABwAAAAAAwACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAQAUAAAAAAIAFAAAAAACABQAAAAAAQAUAAAAAAEAFAAAAAACAAIAAAAAAAAcAAAAAAMAHAAAAAABABwAAAAAAAAcAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAABAAwAAAAAAAAMAAAAAAMADAAAAAACAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABAAAAAAAAAQAAAAAAAAAgAAAAAAABwAAAAAAwAMAAAAAAIADAAAAAABAAwAAAAAAQACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEAAAAAACAAIAAAAAAAAcAAAAAAMADAAAAAAAAAwAAAAAAgAMAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAEAAAAAAAABAAAAAAAQACAAAAAAAAHAAAAAACABwAAAAAAgAcAAAAAAAAHAAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABAAAAAAAAAQAAAAAAEAAgAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAwAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAEAEQAAAAABABEAAAAAAwAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAZAAAAAAIAGQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAQARAAAAAAIAEQAAAAAAAAIAAAAAAAAVAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAIAEQAAAAADAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAADABEAAAAAAwACAAAAAAAAFQAAAAAAAA== + tiles: BgAAAAADAAYAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAgAUAAAAAAIAFAAAAAACABQAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAAAAAYAAAAAAQAGAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAADABQAAAAAAgAUAAAAAAEAFAAAAAAAABQAAAAAAwAUAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAADABwAAAAAAgACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAEAFAAAAAACABQAAAAAAwAUAAAAAAAAFAAAAAACAAIAAAAAAAAcAAAAAAIAHAAAAAADABwAAAAAAwAcAAAAAAIAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAACAAwAAAAAAQAMAAAAAAEADAAAAAACAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABAAAAAAAgAQAAAAAAMAAgAAAAAAABwAAAAAAgAMAAAAAAAADAAAAAAAAAwAAAAAAgACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEAAAAAAAAAIAAAAAAAAcAAAAAAEADAAAAAACAAwAAAAAAQAMAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAEAAAAAACABAAAAAAAQACAAAAAAAAHAAAAAABABwAAAAAAAAcAAAAAAIAHAAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABAAAAAAAAAQAAAAAAAAAgAAAAAAABwAAAAAAgAcAAAAAAEAHAAAAAABABwAAAAAAQACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAgAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAEAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAwAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAZAAAAAAAAGQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAABAAIAAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAgARAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAADAAIAAAAAAAAVAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAMAEQAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAAACAAAAAAAAFQAAAAAAAA== version: 7 1,0: ind: 1,0 - tiles: AQAAAAADAAEAAAAAAQARAAAAAAIAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAAAAAEAAAAAAAABAAAAAAEAEQAAAAADABEAAAAAAgARAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAwARAAAAAAEAEQAAAAABABEAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAIAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAAgAAAAAAABQAAAAAAwACAAAAAAAAFAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAABABQAAAAAAQADAAAAAAAAAwAAAAAAAAIAAAAAAAAQAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAUAAAAAAMAAgAAAAAAABQAAAAAAAAUAAAAAAAAAwAAAAAAAAYAAAAAAwACAAAAAAAAEAAAAAAAABsAAAAAAAAUAAAAAAIAGwAAAAAAABsAAAAAAAAUAAAAAAIAFAAAAAABABQAAAAAAwAUAAAAAAIAFAAAAAABABQAAAAAAAAUAAAAAAEAFAAAAAACAAYAAAAAAwAGAAAAAAIAAgAAAAAAABQAAAAAAwAbAAAAAAAAFAAAAAAAABsAAAAAAAAbAAAAAAAAFAAAAAABABQAAAAAAQAUAAAAAAIAFAAAAAADABQAAAAAAgAUAAAAAAIAFAAAAAACABQAAAAAAwAGAAAAAAMABgAAAAACAAIAAAAAAAAQAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAQAUAAAAAAAABgAAAAADAAYAAAAAAAACAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAEAFAAAAAABAAYAAAAAAgAGAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAADAAAAAAAABgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAQAUAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAABABQAAAAAAQAUAAAAAAEAAwAAAAAAAAYAAAAAAQAGAAAAAAMAAgAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAADABQAAAAAAwAUAAAAAAEAFAAAAAADABQAAAAAAgACAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAMAFAAAAAADAAMAAAAAAAAGAAAAAAEABgAAAAABAAIAAAAAAAACAAAAAAAAFAAAAAADABQAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAQAUAAAAAAEAFAAAAAABABQAAAAAAQADAAAAAAAABgAAAAAAAAYAAAAAAwACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAMAFAAAAAACABQAAAAAAwAUAAAAAAMAFAAAAAABABQAAAAAAQAUAAAAAAAAFAAAAAABABQAAAAAAgAUAAAAAAAAAwAAAAAAAAYAAAAAAAAGAAAAAAIAAgAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAABABQAAAAAAQAUAAAAAAMAFAAAAAACABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAQAUAAAAAAAAFAAAAAACAA== + tiles: AQAAAAAAAAEAAAAAAwARAAAAAAIAEQAAAAABABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAIAEQAAAAACAAEAAAAAAAABAAAAAAEAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAQADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAAgAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAABAAAAAAAwAQAAAAAAAAEAAAAAAAABAAAAAAAQAQAAAAAAEAEAAAAAACAB0AAAAAAQAdAAAAAAIAHQAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAACABQAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAAQAAAAAAAAGwAAAAACABsAAAAAAAAbAAAAAAEAGwAAAAAAABsAAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAgAUAAAAAAEAAgAAAAAAABQAAAAAAAAUAAAAAAAAAwAAAAAAAAYAAAAAAwACAAAAAAAAEAAAAAACABsAAAAAAQAUAAAAAAMAGwAAAAADABsAAAAAAwAUAAAAAAEAFAAAAAABABQAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAAAUAAAAAAMAFAAAAAACAAYAAAAAAwAGAAAAAAAAAgAAAAAAABQAAAAAAQAbAAAAAAAAFAAAAAABABsAAAAAAAAbAAAAAAIAFAAAAAABABQAAAAAAQAUAAAAAAIAFAAAAAABABQAAAAAAwAUAAAAAAAAFAAAAAABABQAAAAAAQAGAAAAAAAABgAAAAAAAAIAAAAAAAAQAAAAAAMAGwAAAAACABsAAAAAAAAbAAAAAAEAGwAAAAABABsAAAAAAwAdAAAAAAIAHQAAAAABAB0AAAAAAwAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAIABgAAAAACAAYAAAAAAwACAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAIAEAAAAAAAABAAAAAAAgAQAAAAAAMAHQAAAAABAB0AAAAAAgAdAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAABAAYAAAAAAAAGAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAgADAAAAAAAABgAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAAAABQAAAAAAQAUAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAABABQAAAAAAAAUAAAAAAMAAwAAAAAAAAYAAAAAAAAGAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAACABQAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAABAAMAAAAAAAAGAAAAAAIABgAAAAABAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAAAUAAAAAAEAFAAAAAABABQAAAAAAgADAAAAAAAABgAAAAACAAYAAAAAAwACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAAAABQAAAAAAQAUAAAAAAMAFAAAAAADABQAAAAAAwAUAAAAAAAAFAAAAAAAABQAAAAAAwAUAAAAAAAAAwAAAAAAAAYAAAAAAAAGAAAAAAIAAgAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAAAABQAAAAAAwACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAADAA== version: 7 1,-1: ind: 1,-1 - tiles: BQAAAAADAAUAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAApAAAAAAAAKQAAAAAAAAUAAAAAAQADAAAAAAAACgAAAAABAAIAAAAAAAAUAAAAAAMAFAAAAAACABQAAAAAAgAUAAAAAAAAFAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAHQAAAAAAACkAAAAAAAADAAAAAAAAAwAAAAAAAAoAAAAAAQACAAAAAAAAFAAAAAABABQAAAAAAgAUAAAAAAEAFAAAAAADABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAAApAAAAAAAAAwAAAAAAAAMAAAAAAAAKAAAAAAIAAgAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAABABQAAAAAAwAUAAAAAAMADwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAAAEAAAAAAAAAMAAAAAAAADAAAAAAAACgAAAAADAAIAAAAAAAAUAAAAAAIAFAAAAAADABQAAAAAAgAUAAAAAAIAFAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAAwAAAAAAAAYAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAAAYAAAAAAgAGAAAAAAIAAgAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAAAABQAAAAAAgAUAAAAAAEAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAGAAAAAAMABgAAAAADAAIAAAAAAAAUAAAAAAAAFAAAAAACABQAAAAAAgAUAAAAAAAAFAAAAAADABQAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAABgAAAAADAAYAAAAAAgACAAAAAAAAFAAAAAACABQAAAAAAQAUAAAAAAMAFAAAAAADABQAAAAAAAAUAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAAAMAAAAAAAAGAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAABgAAAAABAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAMAAgAAAAAAAAIAAAAAAAARAAAAAAAAAQAAAAACAAEAAAAAAwARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAgARAAAAAAEAEQAAAAACABEAAAAAAgARAAAAAAEAEQAAAAAAAA== + tiles: BQAAAAABAAUAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAApAAAAAAAAKQAAAAAAAAUAAAAAAwADAAAAAAAACgAAAAACAAIAAAAAAAAUAAAAAAIAFAAAAAADABQAAAAAAgAUAAAAAAIAFAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAHQAAAAABACkAAAAAAwADAAAAAAAAAwAAAAAAAAoAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAgApAAAAAAEAAwAAAAAAAAMAAAAAAAAKAAAAAAMAAgAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAABABQAAAAAAAAUAAAAAAEADwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAEAEAAAAAABAAMAAAAAAAADAAAAAAAACgAAAAADAAIAAAAAAAAUAAAAAAIAFAAAAAADABQAAAAAAgAUAAAAAAIAFAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFAAAAAACABQAAAAAAwADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAACABQAAAAAAwAUAAAAAAIAFAAAAAAAABQAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAQAUAAAAAAEAAwAAAAAAAAYAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAEAFAAAAAABAAYAAAAAAQAGAAAAAAIAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAQAUAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFAAAAAACABQAAAAAAwAGAAAAAAIABgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAAAUAAAAAAMAFAAAAAACABQAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAMABgAAAAABAAYAAAAAAQACAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAAAABQAAAAAAwAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAADAAMAAAAAAAAGAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAABgAAAAACAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABQAAAAAAQAUAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAACAAMAAAAAAAADAAAAAAAAAgAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwADAAAAAAAAAwAAAAAAAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAEQAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAAQAAAAAAAAEAAAAAAgARAAAAAAIAEQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAACABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAgARAAAAAAAAEQAAAAAAAA== version: 7 1,-2: ind: 1,-2 - tiles: DAAAAAADAAwAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAgACAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAADABsAAAAAAwAUAAAAAAEAFAAAAAACAAwAAAAAAQAMAAAAAAMAHAAAAAAAAAwAAAAAAQAMAAAAAAAAAgAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAwAMAAAAAAEADAAAAAADAAIAAAAAAAAMAAAAAAAADAAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAEAFAAAAAADAAIAAAAAAAAUAAAAAAAAFAAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAADABQAAAAAAwACAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAABABQAAAAAAQAUAAAAAAMAFAAAAAACABQAAAAAAAAUAAAAAAIAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAQAUAAAAAAEAFAAAAAABABQAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAEAFAAAAAADABQAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAAAUAAAAAAAAFAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAQAUAAAAAAEAFAAAAAABABQAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAwAUAAAAAAMAFAAAAAAAABQAAAAAAwAUAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAAAABQAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAQAUAAAAAAEAFAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAwAUAAAAAAMAFAAAAAADABQAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAAApAAAAAAAABQAAAAACAAUAAAAAAwAUAAAAAAMAFAAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAABAAIAAAAAAAAUAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAdAAAAAAAAKQAAAAAAAA== + tiles: DAAAAAAAAAwAAAAAAQACAAAAAAAADAAAAAAAAAwAAAAAAgACAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAIAAAAAAAAUAAAAAAEAFAAAAAACABsAAAAAAgAUAAAAAAAAFAAAAAADAAwAAAAAAQAMAAAAAAIAHAAAAAADAAwAAAAAAAAMAAAAAAEAAgAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAgACAAAAAAAAFAAAAAABABQAAAAAAwAMAAAAAAAADAAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAABAAIAAAAAAAAUAAAAAAAAFAAAAAACAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAADABQAAAAAAgACAAAAAAAAFAAAAAAAABQAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAQAUAAAAAAIAFAAAAAABABQAAAAAAQAUAAAAAAEAFAAAAAACABQAAAAAAQAUAAAAAAMAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAIAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAQAUAAAAAAAAFAAAAAABABQAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAABABQAAAAAAwAUAAAAAAAAFAAAAAACABQAAAAAAwAUAAAAAAIAFAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAADABQAAAAAAwACAAAAAAAAFAAAAAADABQAAAAAAQAUAAAAAAIAFAAAAAABABQAAAAAAQAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAMAFAAAAAABABQAAAAAAgAUAAAAAAMAFAAAAAADABQAAAAAAAAUAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAADAAIAAAAAAAAUAAAAAAAAFAAAAAADABQAAAAAAwAUAAAAAAEAFAAAAAACABQAAAAAAAAUAAAAAAIAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAABABQAAAAAAQACAAAAAAAAFAAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAABABQAAAAAAQAUAAAAAAMAFAAAAAAAABQAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAAApAAAAAAEABQAAAAACAAUAAAAAAwAUAAAAAAMAFAAAAAAAABQAAAAAAwAUAAAAAAAAFAAAAAACAAIAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAdAAAAAAIAKQAAAAACAA== version: 7 0,-2: ind: 0,-2 - tiles: EQAAAAABABEAAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAIADAAAAAABABEAAAAAAQARAAAAAAEAAgAAAAAAAA4AAAAAAAACAAAAAAAAHgAAAAAAAB4AAAAAAAACAAAAAAAAHgAAAAAAAB4AAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAABAAwAAAAAAwARAAAAAAIAEQAAAAABAAIAAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAeAAAAAAAAAgAAAAAAAB4AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAQAMAAAAAAMAEQAAAAABABEAAAAAAQACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAEAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACAAIAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAAAUAAAAAAEAFAAAAAABABQAAAAAAwAUAAAAAAAAFAAAAAAAABQAAAAAAQAUAAAAAAIAFAAAAAADABQAAAAAAwAUAAAAAAAAEQAAAAABABEAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAQAUAAAAAAEAFAAAAAAAABQAAAAAAQAUAAAAAAIAFAAAAAACABQAAAAAAAAUAAAAAAEAFAAAAAADABQAAAAAAQAUAAAAAAAAFAAAAAADABEAAAAAAgARAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAEAFAAAAAADABQAAAAAAwARAAAAAAAAEQAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAQACAAAAAAAADAAAAAAAAAwAAAAAAwAMAAAAAAMADAAAAAADAAIAAAAAAAAUAAAAAAIAFAAAAAADABQAAAAAAAAUAAAAAAAAEQAAAAAAABEAAAAAAwACAAAAAAAAFAAAAAACABQAAAAAAAAUAAAAAAEAAgAAAAAAAAwAAAAAAgAMAAAAAAMADAAAAAABAAwAAAAAAgAcAAAAAAIAFAAAAAACABQAAAAAAAAUAAAAAAMAFAAAAAADABEAAAAAAAARAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAAAAAwAAAAAAQAMAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAKAAAAAAEACgAAAAADAAoAAAAAAAAKAAAAAAAAAQAAAAABAAEAAAAAAwADAAAAAAAAAwAAAAAAAAYAAAAAAgAGAAAAAAEABgAAAAAAAAYAAAAAAwAGAAAAAAAABgAAAAABAAYAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA== + tiles: EQAAAAABABEAAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAMADAAAAAADABEAAAAAAAARAAAAAAIAAgAAAAAAAA4AAAAAAAACAAAAAAAAHgAAAAAAAB4AAAAAAAACAAAAAAAAHgAAAAAAAB4AAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAAMAAAAAAEADAAAAAAAAAwAAAAAAwARAAAAAAMAEQAAAAABAAIAAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAeAAAAAAAAAgAAAAAAAB4AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAAAMAAAAAAAAEQAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAgAUAAAAAAEAFAAAAAABABQAAAAAAgAUAAAAAAMAFAAAAAADABQAAAAAAQAUAAAAAAAAFAAAAAAAABQAAAAAAQAUAAAAAAAAEQAAAAABABEAAAAAAgAUAAAAAAEAFAAAAAAAABQAAAAAAQAUAAAAAAEAFAAAAAAAABQAAAAAAQAUAAAAAAEAFAAAAAABABQAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAAAUAAAAAAAAFAAAAAAAABEAAAAAAgARAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAAAABQAAAAAAQARAAAAAAMAEQAAAAACAAIAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAgAMAAAAAAAADAAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAABABQAAAAAAgAUAAAAAAIAEQAAAAABABEAAAAAAwACAAAAAAAAFAAAAAABABQAAAAAAwAUAAAAAAMAAgAAAAAAAAwAAAAAAQAMAAAAAAEADAAAAAADAAwAAAAAAgAcAAAAAAMAFAAAAAADABQAAAAAAAAUAAAAAAAAFAAAAAAAABEAAAAAAgARAAAAAAMAAgAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAABAAIAAAAAAAAMAAAAAAEADAAAAAAAAAwAAAAAAQAMAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAKAAAAAAEACgAAAAACAAoAAAAAAAAKAAAAAAMAAQAAAAADAAEAAAAAAwADAAAAAAAAAwAAAAAAAAYAAAAAAwAGAAAAAAEABgAAAAABAAYAAAAAAwAGAAAAAAIABgAAAAACAAYAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA== version: 7 -1,-2: ind: -1,-2 - tiles: HwAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAABAAIAAAAAAAAUAAAAAAEAFAAAAAABABQAAAAAAQAUAAAAAAIAFAAAAAADABQAAAAAAAAUAAAAAAMAAgAAAAAAABEAAAAAAQAfAAAAAAAAHwAAAAACAAIAAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAwACAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAwARAAAAAAMAHwAAAAABAB8AAAAAAQAfAAAAAAIAHwAAAAABAB8AAAAAAAAfAAAAAAMAFAAAAAACABQAAAAAAQAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAADABQAAAAAAwACAAAAAAAAEQAAAAABAB8AAAAAAQAfAAAAAAEAHwAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAACAAIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAUAAAAAAMAIgAAAAACACIAAAAAAgAiAAAAAAEAAgAAAAAAABEAAAAAAQAfAAAAAAIAHwAAAAAAAAIAAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAAACAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAFAAAAAADACIAAAAAAQAiAAAAAAAAIgAAAAABAAIAAAAAAAARAAAAAAEAHwAAAAAAAB8AAAAAAQACAAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAMAAgAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAABQAAAAAAwAUAAAAAAEAFAAAAAADABQAAAAAAwACAAAAAAAAEQAAAAAAAB8AAAAAAQAfAAAAAAAAAgAAAAAAAAIAAAAAAAAfAAAAAAAAHwAAAAAAAAIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAAgAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAAVAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAAgAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAADACAAAAAAAQACAAAAAAAAFgAAAAACABYAAAAABQAWAAAAAAEAFgAAAAACAAIAAAAAAAAjAAAAAAAAIwAAAAAJACMAAAAAAAACAAAAAAAAEQAAAAACAAIAAAAAAAAgAAAAAAMAIAAAAAAAACAAAAAAAwAgAAAAAAEAAgAAAAAAABYAAAAABQAWAAAAAAEAFgAAAAACABYAAAAAAQACAAAAAAAAIwAAAAAAACMAAAAAAAAjAAAAAAAAAgAAAAAAABEAAAAAAgACAAAAAAAABgAAAAAAAAMAAAAAAAAGAAAAAAMABgAAAAADAAIAAAAAAAAWAAAAAAEAFgAAAAABABYAAAAAAgAWAAAAAAIAAgAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAAIAAAAAAAARAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAACAA== + tiles: HwAAAAADAB8AAAAAAgAfAAAAAAAAHwAAAAAAAB8AAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAADAAIAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAwAUAAAAAAAAFAAAAAADABQAAAAAAwAUAAAAAAEAAgAAAAAAABEAAAAAAQAfAAAAAAIAHwAAAAABAAIAAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAQACAAAAAAAAFAAAAAADABQAAAAAAQAUAAAAAAEAFAAAAAABABQAAAAAAgAUAAAAAAMAFAAAAAADABQAAAAAAAARAAAAAAEAHwAAAAABAB8AAAAAAgAfAAAAAAIAHwAAAAABAB8AAAAAAQAfAAAAAAIAFAAAAAAAABQAAAAAAwAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAAACAAAAAAAAEQAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAADAB8AAAAAAwAfAAAAAAIAHwAAAAABAAIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAUAAAAAAAAIgAAAAAAACIAAAAAAQAiAAAAAAIAAgAAAAAAABEAAAAAAwAfAAAAAAAAHwAAAAAAAAIAAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAAACAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAFAAAAAACACIAAAAAAgAiAAAAAAAAIgAAAAABAAIAAAAAAAARAAAAAAMAHwAAAAADAB8AAAAAAgACAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAAAAgAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAABQAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAgACAAAAAAAAEQAAAAAAAB8AAAAAAgAfAAAAAAMAAgAAAAAAAAIAAAAAAAAfAAAAAAIAHwAAAAADAAIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAAgAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAACAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAEQAAAAABABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAVAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAAgAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAAAACAAAAAAAgACAAAAAAAAFgAAAAACABYAAAAABQAWAAAAAAUAFgAAAAADAAIAAAAAAAAjAAAAAAAAIwAAAAAAACMAAAAAAAACAAAAAAAAEQAAAAABAAIAAAAAAAAgAAAAAAEAIAAAAAADACAAAAAAAAAgAAAAAAIAAgAAAAAAABYAAAAAAAAWAAAAAAMAFgAAAAAFABYAAAAAAgACAAAAAAAAIwAAAAAAACMAAAAAAAAjAAAAAAAAAgAAAAAAABEAAAAAAQACAAAAAAAABgAAAAAAAAMAAAAAAAAGAAAAAAMABgAAAAACAAIAAAAAAAAWAAAAAAAAFgAAAAACABYAAAAABQAWAAAAAAUAAgAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAAIAAAAAAAARAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAA== version: 7 -2,-2: ind: -2,-2 - tiles: HwAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAADAB8AAAAAAwAfAAAAAAIAHwAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAgAfAAAAAAIAHwAAAAABAAIAAAAAAAAfAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAACAAIAAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAwAfAAAAAAIAAgAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAADAAIAAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAgAfAAAAAAEAHwAAAAABAB8AAAAAAwAfAAAAAAEAJQAAAAAAACUAAAAAAAAlAAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAEAHwAAAAABAB8AAAAAAwAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAAAfAAAAAAEAHwAAAAABACUAAAAAAAAlAAAAAAAAJQAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAEAHwAAAAADAB8AAAAAAwAfAAAAAAEAHwAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAgAlAAAAAAAAJQAAAAAAACUAAAAAAAAfAAAAAAAAAgAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAACAAIAAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAwAfAAAAAAIAHwAAAAABAB8AAAAAAwAfAAAAAAMAHwAAAAACAB8AAAAAAQAfAAAAAAEAHwAAAAABAAIAAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAQACAAAAAAAAHwAAAAACAB8AAAAAAgACAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAIAAgAAAAAAABIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAgAfAAAAAAMAAgAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAABAAIAAAAAAAASAAAAAAEAEgAAAAACABIAAAAAAAASAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEgAAAAABABIAAAAAAAASAAAAAAIAEgAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAEgAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAASAAAAAAMAEgAAAAACABIAAAAAAQASAAAAAAAAAgAAAAAAABIAAAAAAAASAAAAAAMAEgAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEgAAAAADABIAAAAAAQASAAAAAAIAEgAAAAADAAIAAAAAAAASAAAAAAEAEgAAAAABABIAAAAAAgAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAYAAAAAAgAGAAAAAAIABgAAAAADABIAAAAAAwASAAAAAAAAEgAAAAAAABIAAAAAAAACAAAAAAAAEgAAAAABABIAAAAAAAASAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAFQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAQASAAAAAAAAEgAAAAABABIAAAAAAQASAAAAAAEAAgAAAAAAAAIAAAAAAAASAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAGAAAAAAIAAwAAAAAAAAQAAAAAAAAEAAAAAAAAEgAAAAADABIAAAAAAgASAAAAAAMAEgAAAAABABIAAAAAAgASAAAAAAIAEgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABgAAAAAAAAMAAAAAAAAEAAAAAAAAAwAAAAAAAA== + tiles: HwAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAADAB8AAAAAAwAfAAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAIAHwAAAAADAB8AAAAAAAAfAAAAAAMAHwAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAACAAIAAAAAAAAfAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAAAAAIAAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAEAAgAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAABAAIAAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAwAfAAAAAAIAJQAAAAAAACUAAAAAAAAlAAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAMAHwAAAAACAB8AAAAAAQAfAAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAIAHwAAAAABACUAAAAAAAAlAAAAAAAAJQAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAgAfAAAAAAEAHwAAAAABAB8AAAAAAgAfAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAQAlAAAAAAAAJQAAAAAAACUAAAAAAAAfAAAAAAEAAgAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAAAAAIAAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAwAfAAAAAAIAHwAAAAACAB8AAAAAAwAfAAAAAAIAHwAAAAACAB8AAAAAAAAfAAAAAAIAHwAAAAACAAIAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAwACAAAAAAAAHwAAAAADAB8AAAAAAQACAAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAMAAgAAAAAAABIAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAQAfAAAAAAMAAgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAADAAIAAAAAAAASAAAAAAMAEgAAAAAAABIAAAAAAQASAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEgAAAAABABIAAAAAAgASAAAAAAMAEgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAEgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAASAAAAAAIAEgAAAAADABIAAAAAAQASAAAAAAIAAgAAAAAAABIAAAAAAwASAAAAAAEAEgAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEgAAAAABABIAAAAAAwASAAAAAAEAEgAAAAABAAIAAAAAAAASAAAAAAEAEgAAAAAAABIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAYAAAAAAwAGAAAAAAIABgAAAAAAABIAAAAAAwASAAAAAAIAEgAAAAABABIAAAAAAAACAAAAAAAAEgAAAAACABIAAAAAAgASAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAFQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAgASAAAAAAMAEgAAAAACABIAAAAAAAASAAAAAAIAAgAAAAAAAAIAAAAAAAASAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAGAAAAAAIAAwAAAAAAAAQAAAAAAAAEAAAAAAAAEgAAAAABABIAAAAAAgASAAAAAAIAEgAAAAAAABIAAAAAAgASAAAAAAEAEgAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABgAAAAADAAMAAAAAAAAEAAAAAAAAAwAAAAAAAA== version: 7 -1,-3: ind: -1,-3 - tiles: FAAAAAACAAIAAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAQAfAAAAAAAAAgAAAAAAABAAAAAAAwAlAAAAAAAAEAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABQAAAAAAQACAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAAAHwAAAAABAAIAAAAAAAAQAAAAAAIAJQAAAAAAABAAAAAAAQAbAAAAAAMAEQAAAAABABEAAAAAAAARAAAAAAIAGwAAAAABABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEAAAAAABACUAAAAAAAAQAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAACAAIAAAAAAAARAAAAAAMAEAAAAAAAABAAAAAAAAAQAAAAAAEAEAAAAAAAABAAAAAAAQAQAAAAAAAAGwAAAAAAABAAAAAAAQAlAAAAAAAAEAAAAAACAAIAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAQAAAAAAAAEQAAAAACAAIAAAAAAAAQAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAIAJQAAAAAAABAAAAAAAgARAAAAAAIAGgAAAAAAABoAAAAAAAAaAAAAAAAAEAAAAAADABEAAAAAAgAfAAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAIAHwAAAAADAB8AAAAAAgACAAAAAAAAEAAAAAADABAAAAAAAwAQAAAAAAEAAgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABAAAAAAAAARAAAAAAMAIgAAAAABACIAAAAAAwAiAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAEAAgAAAAAAABAAAAAAAQAQAAAAAAEAEAAAAAACAAIAAAAAAAAQAAAAAAEAEAAAAAACABAAAAAAAAACAAAAAAAAEQAAAAADACIAAAAAAgAiAAAAAAEAIgAAAAACAB8AAAAAAwAfAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQAiAAAAAAMAIgAAAAAAACIAAAAAAwAfAAAAAAAAHwAAAAADAAIAAAAAAAASAAAAAAAAEgAAAAABABIAAAAAAgASAAAAAAEAEgAAAAADABIAAAAAAgACAAAAAAAAEgAAAAAAABIAAAAAAgARAAAAAAIAHwAAAAACAB8AAAAAAQAfAAAAAAIAHwAAAAAAAB8AAAAAAAAfAAAAAAMAEgAAAAABABIAAAAAAQASAAAAAAAAEgAAAAAAABIAAAAAAQASAAAAAAEAAgAAAAAAABIAAAAAAgASAAAAAAEAEgAAAAACAB8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAwASAAAAAAEAEgAAAAADAAIAAAAAAAASAAAAAAAAEgAAAAABABIAAAAAAwAfAAAAAAMAHwAAAAACAB8AAAAAAQAfAAAAAAEAHwAAAAAAABIAAAAAAgASAAAAAAIAEgAAAAACABIAAAAAAAASAAAAAAEAEgAAAAABABIAAAAAAAASAAAAAAEAEgAAAAADABIAAAAAAgASAAAAAAMAHwAAAAACAB8AAAAAAgAfAAAAAAMAHwAAAAAAAB8AAAAAAgASAAAAAAEAEgAAAAAAABIAAAAAAgASAAAAAAEAEgAAAAADABIAAAAAAgASAAAAAAAAEgAAAAADABIAAAAAAwASAAAAAAIAEgAAAAADACYAAAAAAAAmAAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAEAAgAAAAAAABIAAAAAAAASAAAAAAEAEgAAAAAAABIAAAAAAQASAAAAAAIAEgAAAAADAAIAAAAAAAASAAAAAAEAEgAAAAADABIAAAAAAwAmAAAAAAAAJgAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAADAAIAAAAAAAASAAAAAAMAEgAAAAADABIAAAAAAQASAAAAAAIAEgAAAAADABIAAAAAAwACAAAAAAAAEgAAAAAAABIAAAAAAQASAAAAAAIAHwAAAAABAB8AAAAAAgAfAAAAAAEAHwAAAAADAB8AAAAAAgASAAAAAAEAEgAAAAADABIAAAAAAAASAAAAAAEAEgAAAAAAABIAAAAAAAASAAAAAAIAAgAAAAAAABIAAAAAAgASAAAAAAIAEQAAAAACAA== + tiles: FAAAAAACAAIAAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAgAfAAAAAAEAAgAAAAAAABAAAAAAAQAlAAAAAAAAEAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABQAAAAAAgACAAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAIAHwAAAAABAAIAAAAAAAAQAAAAAAMAJQAAAAAAABAAAAAAAwAbAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAMAGwAAAAAAABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEAAAAAAAACUAAAAAAAAQAAAAAAIAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAACAAIAAAAAAAARAAAAAAAAEAAAAAACABAAAAAAAwAQAAAAAAAAEAAAAAACABAAAAAAAwAQAAAAAAIAGwAAAAADABAAAAAAAAAlAAAAAAAAEAAAAAAAAAIAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAQAAAAAAEAEQAAAAABAAIAAAAAAAAQAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAMAJQAAAAAAABAAAAAAAgARAAAAAAIAGgAAAAAAABoAAAAAAAAaAAAAAAAAEAAAAAACABEAAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAACAB8AAAAAAwACAAAAAAAAEAAAAAADABAAAAAAAwAQAAAAAAAAAgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABAAAAAAAQARAAAAAAAAIgAAAAADACIAAAAAAwAiAAAAAAIAHwAAAAADAB8AAAAAAAAfAAAAAAEAAgAAAAAAABAAAAAAAwAQAAAAAAEAEAAAAAACAAIAAAAAAAAQAAAAAAEAEAAAAAABABAAAAAAAAACAAAAAAAAEQAAAAABACIAAAAAAAAiAAAAAAIAIgAAAAABAB8AAAAAAgAfAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgAiAAAAAAAAIgAAAAAAACIAAAAAAQAfAAAAAAEAHwAAAAACAAIAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAwASAAAAAAMAEgAAAAADABIAAAAAAQACAAAAAAAAEgAAAAADABIAAAAAAAARAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAgAfAAAAAAEAEgAAAAABABIAAAAAAwASAAAAAAEAEgAAAAAAABIAAAAAAgASAAAAAAEAAgAAAAAAABIAAAAAAAASAAAAAAEAEgAAAAADAB8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABIAAAAAAgASAAAAAAAAEgAAAAAAABIAAAAAAgASAAAAAAEAEgAAAAABAAIAAAAAAAASAAAAAAIAEgAAAAABABIAAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAAAfAAAAAAIAHwAAAAAAABIAAAAAAgASAAAAAAEAEgAAAAAAABIAAAAAAwASAAAAAAEAEgAAAAACABIAAAAAAQASAAAAAAIAEgAAAAADABIAAAAAAQASAAAAAAEAHwAAAAACAB8AAAAAAQAfAAAAAAIAHwAAAAACAB8AAAAAAgASAAAAAAIAEgAAAAACABIAAAAAAwASAAAAAAMAEgAAAAABABIAAAAAAAASAAAAAAMAEgAAAAADABIAAAAAAgASAAAAAAEAEgAAAAACACYAAAAAAAAmAAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAIAAgAAAAAAABIAAAAAAQASAAAAAAAAEgAAAAAAABIAAAAAAQASAAAAAAMAEgAAAAADAAIAAAAAAAASAAAAAAAAEgAAAAADABIAAAAAAwAmAAAAAAAAJgAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAADAAIAAAAAAAASAAAAAAIAEgAAAAABABIAAAAAAQASAAAAAAAAEgAAAAACABIAAAAAAwACAAAAAAAAEgAAAAADABIAAAAAAAASAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAAAHwAAAAADAB8AAAAAAQASAAAAAAEAEgAAAAABABIAAAAAAwASAAAAAAAAEgAAAAABABIAAAAAAQASAAAAAAMAAgAAAAAAABIAAAAAAgASAAAAAAAAEQAAAAAAAA== version: 7 0,-3: ind: 0,-3 - tiles: EQAAAAABABEAAAAAAwARAAAAAAAAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAAAABEAAAAAAAAZAAAAAAIAEQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAAAGQAAAAABABEAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAwARAAAAAAEAEQAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAAAAAIAAAAAAAARAAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAMAHQAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAACABEAAAAAAQARAAAAAAEAEQAAAAADABEAAAAAAgARAAAAAAAAEQAAAAAAABEAAAAAAAACAAAAAAAAEQAAAAADAB0AAAAAAgAdAAAAAAEAHQAAAAABAB0AAAAAAgAdAAAAAAIAHQAAAAABAB0AAAAAAAARAAAAAAIAHQAAAAABAB0AAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAAAAgAAAAAAABEAAAAAAQAdAAAAAAEAHQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAAAAB0AAAAAAgAdAAAAAAMAEQAAAAADAB0AAAAAAgAdAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAAAEQAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAwAdAAAAAAMAHQAAAAACABEAAAAAAAARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAHQAAAAADAB0AAAAAAgARAAAAAAMAEQAAAAABAAIAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAgARAAAAAAEAEQAAAAABABEAAAAAAAACAAAAAAAAEQAAAAADAB0AAAAAAQAdAAAAAAEAEQAAAAACABEAAAAAAQACAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAwAdAAAAAAIAHQAAAAACABEAAAAAAAARAAAAAAMAAgAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAACAB0AAAAAAQAdAAAAAAIAHQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAADAAIAAAAAAAARAAAAAAMAHQAAAAADAB0AAAAAAQARAAAAAAIAEQAAAAABAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADAB0AAAAAAwAdAAAAAAEAEQAAAAABABEAAAAAAgACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAIAHQAAAAADAB0AAAAAAQAdAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAMAAgAAAAAAABEAAAAAAQAdAAAAAAMAHQAAAAABABEAAAAAAQARAAAAAAEAAgAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAACAAIAAAAAAAARAAAAAAIAHQAAAAADAB0AAAAAAgARAAAAAAAAEQAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAMAEQAAAAABABEAAAAAAwACAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAIAEQAAAAABABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAeAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: EQAAAAACABEAAAAAAwARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAgAZAAAAAAIAEQAAAAADABEAAAAAAwARAAAAAAEAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAEAGQAAAAABABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAADAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAACAAIAAAAAAAARAAAAAAEAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAABAB0AAAAAAAAdAAAAAAEAHQAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAADABEAAAAAAgACAAAAAAAAEQAAAAACAB0AAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAACAB0AAAAAAgARAAAAAAMAHQAAAAAAAB0AAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAwARAAAAAAIAAgAAAAAAABEAAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAwAdAAAAAAMAEQAAAAABAB0AAAAAAAAdAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAEAEQAAAAABAAIAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAQAdAAAAAAMAHQAAAAAAABEAAAAAAgARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAHQAAAAAAAB0AAAAAAgARAAAAAAIAEQAAAAABAAIAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAADABEAAAAAAAACAAAAAAAAEQAAAAADAB0AAAAAAwAdAAAAAAIAEQAAAAABABEAAAAAAgACAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAADABEAAAAAAwARAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAAAdAAAAAAAAHQAAAAACABEAAAAAAwARAAAAAAMAAgAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAABAAIAAAAAAAARAAAAAAMAHQAAAAADAB0AAAAAAQARAAAAAAIAEQAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAEQAAAAADAB0AAAAAAgAdAAAAAAEAEQAAAAADABEAAAAAAgACAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAIAHQAAAAACAB0AAAAAAgAdAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAMAAgAAAAAAABEAAAAAAQAdAAAAAAMAHQAAAAAAABEAAAAAAwARAAAAAAMAAgAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAgARAAAAAAEAEQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAAAAAIAAAAAAAARAAAAAAAAHQAAAAADAB0AAAAAAwARAAAAAAMAEQAAAAACAAIAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAAAABEAAAAAAQACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAeAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 -2,-3: ind: -2,-3 - tiles: JwAAAAAAACcAAAAAAAAnAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAACABQAAAAAAQAUAAAAAAEAAgAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAABAAIAAAAAAAAUAAAAAAIAFAAAAAABACcAAAAAAAAnAAAAAAAAJwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAQACAAAAAAAAFAAAAAAAABQAAAAAAQAnAAAAAAAAJwAAAAAAACcAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAwAQAAAAAAIAEQAAAAACABEAAAAAAwARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAAAFAAAAAADABQAAAAAAgAUAAAAAAIAAgAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAACABAAAAAAAwAQAAAAAAIAEAAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAQAUAAAAAAMAFAAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAAAAgAAAAAAAB8AAAAAAQAfAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAAAAgAAAAAAAAIAAAAAAAAfAAAAAAEAAgAAAAAAAAIAAAAAAAAfAAAAAAMAHwAAAAABAAwAAAAAAAAMAAAAAAIADAAAAAABAAIAAAAAAAAfAAAAAAMAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAADAAIAAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAQACAAAAAAAAHwAAAAADAB8AAAAAAQAMAAAAAAIADAAAAAADAAwAAAAAAAACAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAABAB8AAAAAAQAfAAAAAAIAHwAAAAABAB8AAAAAAgAfAAAAAAIAHwAAAAABAB8AAAAAAgAfAAAAAAEADAAAAAACAAwAAAAAAwAMAAAAAAEAAgAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAADAB8AAAAAAQAfAAAAAAIAAgAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAADAAIAAAAAAAAfAAAAAAMAHwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAADAAwAAAAAAQACAAAAAAAAHwAAAAAAAB8AAAAAAAAQAAAAAAAAHwAAAAABAB8AAAAAAAACAAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAIADAAAAAADAAwAAAAAAQAMAAAAAAAAHAAAAAAAAB8AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAAAHwAAAAAAAAwAAAAAAAAMAAAAAAEADAAAAAABAAIAAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAIAHwAAAAAAAAIAAAAAAAAfAAAAAAMAHwAAAAACACYAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAACAAAAAAAAEAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHwAAAAABAB8AAAAAAQAmAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAQAfAAAAAAIAHwAAAAADAB8AAAAAAgAfAAAAAAEAHwAAAAADAB8AAAAAAgAfAAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAAAHwAAAAAAAA== + tiles: JwAAAAAAACcAAAAAAAAnAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAQAUAAAAAAEAAgAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAADAAIAAAAAAAAUAAAAAAEAFAAAAAACACcAAAAAAAAnAAAAAAAAJwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAwAnAAAAAAAAJwAAAAAAACcAAAAAAAACAAAAAAAAFAAAAAACABQAAAAAAgAUAAAAAAIAFAAAAAAAABQAAAAAAgAQAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAAAFAAAAAACABQAAAAAAwAUAAAAAAEAAgAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAAAABAAAAAAAgAQAAAAAAAAEAAAAAACACcAAAAAAAAnAAAAAAAAJwAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAgAUAAAAAAEAFAAAAAADAAIAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAMAAgAAAAAAAB8AAAAAAgAfAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAACAB8AAAAAAAAfAAAAAAIAAgAAAAAAAAIAAAAAAAAfAAAAAAAAAgAAAAAAAAIAAAAAAAAfAAAAAAMAHwAAAAADAAwAAAAAAwAMAAAAAAAADAAAAAADAAIAAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAAAHwAAAAADAAIAAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAgACAAAAAAAAHwAAAAABAB8AAAAAAgAMAAAAAAEADAAAAAACAAwAAAAAAgACAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAABAB8AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAIADAAAAAAAAAwAAAAAAgAMAAAAAAEAAgAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAAAAB8AAAAAAgAfAAAAAAMAAgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAAAAAIAAAAAAAAfAAAAAAEAHwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAADAAwAAAAAAQACAAAAAAAAHwAAAAACAB8AAAAAAQAQAAAAAAMAHwAAAAABAB8AAAAAAQACAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAwAfAAAAAAAADAAAAAADAAwAAAAAAgAMAAAAAAIAHAAAAAADAB8AAAAAAgAQAAAAAAAAEAAAAAAAABAAAAAAAwAfAAAAAAMAHwAAAAABAB8AAAAAAwAfAAAAAAMAHwAAAAADAB8AAAAAAAAfAAAAAAMAHwAAAAACAAwAAAAAAAAMAAAAAAEADAAAAAADAAIAAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAAAfAAAAAAIAHwAAAAACAAIAAAAAAAAfAAAAAAAAHwAAAAABACYAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAACAAAAAAAAEAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHwAAAAAAAB8AAAAAAgAmAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAADAB8AAAAAAQAfAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAMAHwAAAAABAB8AAAAAAQAfAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAMAHwAAAAACAA== version: 7 1,-3: ind: 1,-3 - tiles: AgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAwARAAAAAAIAEQAAAAAAABEAAAAAAAARAAAAAAEAEQAAAAADAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAdAAAAAAEAEQAAAAACABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAQAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAIAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAAAAB0AAAAAAwARAAAAAAIAEQAAAAABABEAAAAAAQARAAAAAAEAEQAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAwAdAAAAAAMAEQAAAAABABEAAAAAAwAVAAAAAAAAFQAAAAAAABUAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAEAIgAAAAACACIAAAAAAwAiAAAAAAAAHQAAAAACABEAAAAAAgARAAAAAAEAFQAAAAAAABUAAAAAAAAVAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAARAAAAAAMAEQAAAAABACIAAAAAAgAiAAAAAAIAIgAAAAABAB0AAAAAAAARAAAAAAMAEQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAEQAAAAADABEAAAAAAAAiAAAAAAMAIgAAAAABACIAAAAAAAAdAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAMAHQAAAAAAABEAAAAAAAACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAgARAAAAAAEAAgAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAACAAAAAAAAFAAAAAABABQAAAAAAAARAAAAAAEAEQAAAAACAAIAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAMAHAAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAABAAIAAAAAAAACAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAABABsAAAAAAQAUAAAAAAIAFAAAAAAAAA== + tiles: AgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAACAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAdAAAAAAIAEQAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAAAABEAAAAAAQAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHQAAAAACABEAAAAAAgARAAAAAAIAEQAAAAADABEAAAAAAwARAAAAAAIAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAwARAAAAAAAAEQAAAAADAB0AAAAAAwARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAADAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAgAdAAAAAAIAEQAAAAACABEAAAAAAwAVAAAAAAAAFQAAAAAAABUAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAEAIgAAAAACACIAAAAAAwAiAAAAAAEAHQAAAAACABEAAAAAAQARAAAAAAMAFQAAAAAAABUAAAAAAAAVAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAARAAAAAAEAEQAAAAABACIAAAAAAQAiAAAAAAIAIgAAAAACAB0AAAAAAAARAAAAAAAAEQAAAAACABUAAAAAAAAVAAAAAAAAFQAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAEQAAAAACABEAAAAAAQAiAAAAAAIAIgAAAAABACIAAAAAAgAdAAAAAAEAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAMAHQAAAAADABEAAAAAAQACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAgARAAAAAAIAAgAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwACAAAAAAAAFAAAAAAAABQAAAAAAgARAAAAAAEAEQAAAAABAAIAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAQAUAAAAAAIAHAAAAAADAAIAAAAAAAACAAAAAAAAHAAAAAABAAIAAAAAAAACAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAADABsAAAAAAgAUAAAAAAMAFAAAAAABAA== version: 7 2,-2: ind: 2,-2 - tiles: FAAAAAADABQAAAAAAwAUAAAAAAEAFAAAAAADABQAAAAAAgAUAAAAAAMAFAAAAAADABsAAAAAAwAUAAAAAAIAFAAAAAADABQAAAAAAwAUAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAACABQAAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAgACAAAAAAAAAgAAAAAAABsAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAEAFAAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAFAAAAAAAABsAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAAAFAAAAAADABQAAAAAAwACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAwAUAAAAAAIAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAQAUAAAAAAMAFAAAAAABABoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAFAAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAAAFAAAAAABABQAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABQAAAAAAAAbAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAwAUAAAAAAIAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAbAAAAAAIAFAAAAAABAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAGwAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABsAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAAApAAAAAAAAAgAAAAAAAAIAAAAAAAAbAAAAAAAAGwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAbAAAAAAAAKQAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAA== + tiles: FAAAAAADABQAAAAAAAAUAAAAAAMAFAAAAAACABQAAAAAAQAUAAAAAAAAFAAAAAAAABsAAAAAAQAUAAAAAAMAFAAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAEAFAAAAAADABQAAAAAAQAUAAAAAAEAFAAAAAACABQAAAAAAQACAAAAAAAAAgAAAAAAABsAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAFAAAAAADABsAAAAAAwAUAAAAAAIAFAAAAAAAABQAAAAAAwAUAAAAAAEAAgAAAAAAABQAAAAAAwAUAAAAAAAAFAAAAAABABQAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABQAAAAAAQACAAAAAAAAFAAAAAADABQAAAAAAQAUAAAAAAAAFAAAAAACAAIAAAAAAAAUAAAAAAIAFAAAAAABABQAAAAAAQAUAAAAAAMAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAQACAAAAAAAAFAAAAAABABQAAAAAAAAUAAAAAAIAFAAAAAACABoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAFAAAAAADAAIAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAQAUAAAAAAMAAgAAAAAAABQAAAAAAwAUAAAAAAAAFAAAAAAAABQAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABQAAAAAAgAbAAAAAAIAFAAAAAADABQAAAAAAAAUAAAAAAEAFAAAAAABAAIAAAAAAAAUAAAAAAEAFAAAAAADABQAAAAAAwAUAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAQAUAAAAAAIAFAAAAAABABQAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAbAAAAAAMAFAAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAwAUAAAAAAEAFAAAAAABABQAAAAAAwAUAAAAAAEAFAAAAAADABQAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAQAUAAAAAAMAFAAAAAACABQAAAAAAgAUAAAAAAMAFAAAAAAAABQAAAAAAQAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAGwAAAAACABQAAAAAAgAUAAAAAAEAFAAAAAACABQAAAAAAgAUAAAAAAIAFAAAAAADABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAwACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAwAUAAAAAAMAFAAAAAADABQAAAAAAwAUAAAAAAIAFAAAAAAAABQAAAAAAwAUAAAAAAIAAgAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAABABQAAAAAAQACAAAAAAAAFAAAAAABABQAAAAAAQAUAAAAAAMAFAAAAAABABQAAAAAAwAUAAAAAAIAFAAAAAABABQAAAAAAgAUAAAAAAEAFAAAAAAAABsAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAACABQAAAAAAQAUAAAAAAEAAgAAAAAAABQAAAAAAAApAAAAAAAAAgAAAAAAAAIAAAAAAAAbAAAAAAIAGwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAMAFAAAAAAAABQAAAAAAAAbAAAAAAEAKQAAAAACAAIAAAAAAAAUAAAAAAIAFAAAAAADABQAAAAAAAAUAAAAAAAAFAAAAAACABQAAAAAAQAUAAAAAAIAAgAAAAAAABQAAAAAAQAUAAAAAAMAFAAAAAACABQAAAAAAgAUAAAAAAAAFAAAAAACAA== version: 7 2,-3: ind: 2,-3 - tiles: AgAAAAAAAA8AAAAAAAAUAAAAAAMAFAAAAAADAA8AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAABQAAAAAAgAPAAAAAAAAFAAAAAADABQAAAAAAwAPAAAAAAAAFAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAqAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAEAAgAAAAAAABQAAAAAAQAUAAAAAAMAAgAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAADABQAAAAAAgAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAACAAIAAAAAAAAUAAAAAAIAFAAAAAABABsAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAAAUAAAAAAMAFAAAAAACAAIAAAAAAAACAAAAAAAAKQAAAAAAAAIAAAAAAAAiAAAAAAAAEQAAAAADABEAAAAAAwACAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAABACEAAAAAAAAhAAAAAAAAIQAAAAAAABQAAAAAAwACAAAAAAAAFAAAAAADABQAAAAAAQAUAAAAAAMAIgAAAAADABEAAAAAAAARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAACABQAAAAAAwAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAACACIAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAABsAAAAAAgACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAEAFAAAAAACABQAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAAAEQAAAAABABEAAAAAAgACAAAAAAAAFAAAAAADABQAAAAAAgAUAAAAAAAAFAAAAAACABQAAAAAAwAbAAAAAAEAFAAAAAACABQAAAAAAwAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAABABQAAAAAAwAUAAAAAAIAAgAAAAAAABQAAAAAAgAUAAAAAAAAFAAAAAADABQAAAAAAQAUAAAAAAMAFAAAAAADABQAAAAAAQAUAAAAAAMAFAAAAAADABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAADAAIAAAAAAAACAAAAAAAAKQAAAAADAAIAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAAAABQAAAAAAgAUAAAAAAIAGwAAAAAAABQAAAAAAQAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAEAAgAAAAAAAA8AAAAAAAAPAAAAAAAAFAAAAAADABQAAAAAAgAUAAAAAAAAFAAAAAACABQAAAAAAAAUAAAAAAMAFAAAAAACABQAAAAAAgAUAAAAAAMAFAAAAAABABQAAAAAAgAUAAAAAAEAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: AgAAAAAAAA8AAAAAAAAUAAAAAAIAFAAAAAADAA8AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAABQAAAAAAAAPAAAAAAAAFAAAAAADABQAAAAAAAAPAAAAAAAAFAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAqAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAIAAgAAAAAAABQAAAAAAAAUAAAAAAMAAgAAAAAAABQAAAAAAQAUAAAAAAEAFAAAAAADABQAAAAAAAAUAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAABAAIAAAAAAAAUAAAAAAEAFAAAAAABABsAAAAAAQAUAAAAAAMAFAAAAAABABQAAAAAAAAUAAAAAAMAFAAAAAABAAIAAAAAAAACAAAAAAAAKQAAAAAAAAIAAAAAAAAiAAAAAAMAEQAAAAADABEAAAAAAwACAAAAAAAAFAAAAAABABQAAAAAAwACAAAAAAAAFAAAAAACACEAAAAAAAAhAAAAAAAAIQAAAAAAABQAAAAAAwACAAAAAAAAFAAAAAAAABQAAAAAAwAUAAAAAAMAIgAAAAADABEAAAAAAwARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAABABQAAAAAAgAUAAAAAAIAAgAAAAAAABQAAAAAAwAUAAAAAAEAFAAAAAADACIAAAAAAgARAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAABsAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAEAFAAAAAABABQAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAgARAAAAAAIAEQAAAAABABEAAAAAAgACAAAAAAAAFAAAAAACABQAAAAAAgAUAAAAAAEAFAAAAAABABQAAAAAAwAbAAAAAAEAFAAAAAADABQAAAAAAQAUAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAEAFAAAAAABABQAAAAAAgAUAAAAAAIAAgAAAAAAABQAAAAAAQAUAAAAAAIAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAADABQAAAAAAQAUAAAAAAAAFAAAAAABABQAAAAAAgACAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAEAFAAAAAAAAAIAAAAAAAACAAAAAAAAKQAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAABABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAwAUAAAAAAAAGwAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAADABQAAAAAAQAUAAAAAAMAAgAAAAAAAA8AAAAAAAAPAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAABABQAAAAAAQAUAAAAAAEAFAAAAAACABQAAAAAAQAUAAAAAAIAFAAAAAABABQAAAAAAwAUAAAAAAIAFAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 2,-1: ind: 2,-1 - tiles: KQAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAAB0AAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAACkAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAApAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAKQAAAAAAACkAAAAAAAApAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAACkAAAAAAAAdAAAAAAAAKQAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABAAAAAAAAApAAAAAAAAKQAAAAAAACkAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGwAAAAAAABsAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAHAAAAAAAABsAAAAAAAAbAAAAAAAAAgAAAAAAAAIAAAAAAAAcAAAAAAAAFAAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAHAAAAAAAAAwAAAAAAwAMAAAAAAIADAAAAAACABwAAAAAAAAMAAAAAAIADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAADAAwAAAAAAwAMAAAAAAAADAAAAAACAAwAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAcAAAAAAAADAAAAAADAAwAAAAAAwAMAAAAAAMAHAAAAAAAAAwAAAAAAQAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABwAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAFAAAAAAAABQAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAgARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAEAEQAAAAAAAA== + tiles: KQAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAAAAB0AAAAAAAAUAAAAAAIAAgAAAAAAABQAAAAAAAAUAAAAAAIAAgAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAwAUAAAAAAEAFAAAAAABACkAAAAAAQACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAADABQAAAAAAwAUAAAAAAIAFAAAAAACABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAApAAAAAAEAAgAAAAAAABQAAAAAAQAUAAAAAAAAFAAAAAABABQAAAAAAQACAAAAAAAAFAAAAAACABQAAAAAAQAUAAAAAAIAFAAAAAABABQAAAAAAgAUAAAAAAMAKQAAAAAAACkAAAAAAgApAAAAAAAAFAAAAAACAAIAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAAAABQAAAAAAQAUAAAAAAEAFAAAAAACACkAAAAAAQAdAAAAAAIAKQAAAAADABQAAAAAAAAUAAAAAAIAAgAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAACABQAAAAAAgAUAAAAAAIAFAAAAAACABQAAAAAAwAUAAAAAAIAFAAAAAABABAAAAAAAwApAAAAAAEAKQAAAAACACkAAAAAAwAUAAAAAAAAFAAAAAABAAIAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAQAUAAAAAAEAFAAAAAACABQAAAAAAQAUAAAAAAEAFAAAAAADABQAAAAAAQAUAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAADAAIAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgACAAAAAAAAFAAAAAADAAIAAAAAAAAMAAAAAAMADAAAAAABABQAAAAAAQACAAAAAAAAFAAAAAADABQAAAAAAQAUAAAAAAMAFAAAAAADAAIAAAAAAAAMAAAAAAEADAAAAAACAAwAAAAAAAAMAAAAAAIAGwAAAAAAABsAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAQAUAAAAAAIAAgAAAAAAABQAAAAAAQAUAAAAAAMAFAAAAAADABQAAAAAAQACAAAAAAAADAAAAAADAAwAAAAAAQAMAAAAAAIAHAAAAAAAABsAAAAAAwAbAAAAAAAAAgAAAAAAAAIAAAAAAAAcAAAAAAEAFAAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAABABQAAAAAAwAUAAAAAAEAHAAAAAABAAwAAAAAAQAMAAAAAAIADAAAAAACABwAAAAAAQAMAAAAAAAADAAAAAABAAwAAAAAAwAMAAAAAAAADAAAAAABAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAMAFAAAAAABAAIAAAAAAAAcAAAAAAIAHAAAAAACABwAAAAAAwAcAAAAAAIADAAAAAAAAAwAAAAAAAAMAAAAAAEADAAAAAACAAwAAAAAAwAUAAAAAAMAFAAAAAADABQAAAAAAgAUAAAAAAMAFAAAAAACABQAAAAAAQAcAAAAAAMADAAAAAAAAAwAAAAAAAAMAAAAAAMAHAAAAAABAAwAAAAAAQAMAAAAAAEADAAAAAABAAwAAAAAAwAMAAAAAAAAFAAAAAAAABQAAAAAAwAUAAAAAAEAFAAAAAADABQAAAAAAAAUAAAAAAIAAgAAAAAAAAwAAAAAAgAMAAAAAAIADAAAAAAAABwAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwACAAAAAAAAFAAAAAADABQAAAAAAQAUAAAAAAAAFAAAAAABAAIAAAAAAAAMAAAAAAAADAAAAAACAAwAAAAAAgAMAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAMAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAFAAAAAACABQAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAACAA== version: 7 2,0: ind: 2,0 - tiles: EQAAAAABABEAAAAAAQARAAAAAAMAEQAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAIAEQAAAAADABEAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAAAEQAAAAACABEAAAAAAwACAAAAAAAACwAAAAAAABEAAAAAAQARAAAAAAMACwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAwARAAAAAAEAAgAAAAAAAAsAAAAAAAARAAAAAAAAEQAAAAABAAsAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAMAEQAAAAADAAIAAAAAAAALAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAEAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAgACAAAAAAAACwAAAAAAABEAAAAAAgALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAgAcAAAAAAAADAAAAAAAAAwAAAAAAgAMAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAMAHAAAAAAAAAwAAAAAAQAMAAAAAAIAHAAAAAADAAwAAAAAAQAMAAAAAAAADAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAABABwAAAAAAQAMAAAAAAIADAAAAAABABwAAAAAAwAMAAAAAAEADAAAAAAAAAwAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAABABQAAAAAAwACAAAAAAAADAAAAAACAAwAAAAAAAAcAAAAAAIADAAAAAADAAwAAAAAAgAMAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: EQAAAAACABEAAAAAAwARAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAQARAAAAAAEAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAABABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAwARAAAAAAAAEQAAAAADABEAAAAAAwACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAIAEQAAAAADABEAAAAAAwACAAAAAAAACwAAAAAAABEAAAAAAQARAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAADABEAAAAAAwARAAAAAAMAAgAAAAAAAAsAAAAAAAARAAAAAAIAEQAAAAABAAsAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAABAAIAAAAAAAALAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAEAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAAACAAAAAAAACwAAAAAAABEAAAAAAwALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAwACAAAAAAAADAAAAAAAAAwAAAAAAQAcAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAMAHAAAAAAAAAwAAAAAAQAMAAAAAAMAHAAAAAABAAwAAAAAAAAMAAAAAAAADAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAAAABwAAAAAAgAMAAAAAAEADAAAAAABABwAAAAAAQAMAAAAAAAADAAAAAADAAwAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAgACAAAAAAAADAAAAAAAAAwAAAAAAwAcAAAAAAMADAAAAAADAAwAAAAAAwAMAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 2,1: ind: 2,1 - tiles: FAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAABwAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAQAMAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAgAMAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAcAAAAAAAAHAAAAAABABwAAAAAAgAMAAAAAAMADAAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAgAMAAAAAAMAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAADABwAAAAAAAACAAAAAAAAAgAAAAAAABwAAAAAAgACAAAAAAAAAgAAAAAAACwAAAAAAAAMAAAAAAIADAAAAAACAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAwAcAAAAAAIAAgAAAAAAABIAAAAAAwASAAAAAAEAAgAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAACAAwAAAAAAwAPAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAMAHAAAAAABAAIAAAAAAAASAAAAAAIAEgAAAAADAAIAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAQAMAAAAAAEAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAAAABwAAAAAAwACAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAAADAAAAAABAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABwAAAAAAAAcAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAAAAAwAAAAAAQACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFQAAAAAAACsAAAAAAAArAAAAAAMAKwAAAAACABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA== + tiles: FAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAABwAAAAAAwACAAAAAAAADAAAAAABAAwAAAAAAwAMAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAcAAAAAAEAHAAAAAABABwAAAAAAgAMAAAAAAMADAAAAAACAAIAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAwAMAAAAAAMAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAACABwAAAAAAQACAAAAAAAAAgAAAAAAABwAAAAAAAACAAAAAAAAAgAAAAAAACwAAAAABgAMAAAAAAIADAAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAgAcAAAAAAIAAgAAAAAAABIAAAAAAQASAAAAAAMAAgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAADAAwAAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAEAHAAAAAABAAIAAAAAAAASAAAAAAMAEgAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAABAAwAAAAAAwAMAAAAAAEAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAAAABwAAAAAAwACAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAIADAAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAABwAAAAAAwAcAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAAAAAwAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFQAAAAAAACsAAAAAAQArAAAAAAAAKwAAAAACABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA== version: 7 -3,-3: ind: -3,-3 - tiles: DwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAAAgAAAAAAAC8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAAgAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAAIAAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAAACAAAAAAAAAgAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAAIAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAAADAAAAAACAAwAAAAAAAAPAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAIAAAAAAAAuAAAAAAAALgAAAAAAABwAAAAAAgAMAAAAAAEADAAAAAABAAwAAAAAAwAMAAAAAAIAAgAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAQAMAAAAAAEADAAAAAABAAIAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAAgAAAAAAAAwAAAAAAgAMAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAADAAIAAAAAAAAMAAAAAAMACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAAHAAAAAADAAIAAAAAAAACAAAAAAAADAAAAAABAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAAgAAAAAAABIAAAAAAwASAAAAAAEAEgAAAAADABIAAAAAAQASAAAAAAEAAgAAAAAAAAwAAAAAAwALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAIAAAAAAAASAAAAAAMAEgAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAACAAIAAAAAAAACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAACAAAAAAAAEgAAAAABABIAAAAAAAASAAAAAAIAEgAAAAABABIAAAAAAgAfAAAAAAEAHwAAAAAAAA== + tiles: DwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAAAgAAAAAAAC8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAAgAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAAIAAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAAACAAAAAAAAAgAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAAIAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAEADAAAAAADAAwAAAAAAgAPAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAABAAIAAAAAAAAuAAAAAAAALgAAAAAAABwAAAAAAQAMAAAAAAIADAAAAAADAAwAAAAAAAAMAAAAAAMAAgAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAwAMAAAAAAEADAAAAAAAAAIAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAAgAAAAAAAAwAAAAAAgAMAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAACAAIAAAAAAAAMAAAAAAEACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAwACAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAAHAAAAAABAAIAAAAAAAACAAAAAAAADAAAAAABAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAAAAgAAAAAAABIAAAAAAwASAAAAAAEAEgAAAAACABIAAAAAAAASAAAAAAEAAgAAAAAAAAwAAAAAAQALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAABAAIAAAAAAAASAAAAAAMAEgAAAAADABIAAAAAAwASAAAAAAAAEgAAAAABAAIAAAAAAAACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAgACAAAAAAAAEgAAAAACABIAAAAAAgASAAAAAAIAEgAAAAACABIAAAAAAQAfAAAAAAMAHwAAAAADAA== version: 7 -3,-2: ind: -3,-2 - tiles: CwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAACAAAAAAAAEgAAAAABABIAAAAAAgASAAAAAAEAEgAAAAABABIAAAAAAAAfAAAAAAAAHwAAAAABABAAAAAAAwAQAAAAAAEAEAAAAAABABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAAARAAAAAAAAAgAAAAAAABIAAAAAAwASAAAAAAEAEgAAAAABABIAAAAAAgASAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAMAEAAAAAABABAAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAIAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAfAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAQACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHwAAAAADABQAAAAAAgAUAAAAAAMAEQAAAAAAABEAAAAAAwACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAIAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAAAUAAAAAAEAFAAAAAADABEAAAAAAQARAAAAAAEAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAfAAAAAAEAFAAAAAAAABQAAAAAAwARAAAAAAEAEQAAAAADABQAAAAAAwARAAAAAAEAEQAAAAABABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAQARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAADAAIAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAASAAAAAAMAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEgAAAAADADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAASAAAAAAMAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAgARAAAAAAMAEQAAAAACABEAAAAAAwACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEgAAAAADADAAAAAAAAAwAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAIAAgAAAAAAABEAAAAAAAARAAAAAAIAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABIAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAASAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEgAAAAADAA== + tiles: CwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAwACAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAMAEgAAAAACABIAAAAAAgAfAAAAAAMAHwAAAAADABAAAAAAAQAQAAAAAAMAEAAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAMAAgAAAAAAABIAAAAAAgASAAAAAAMAEgAAAAAAABIAAAAAAQASAAAAAAIAAgAAAAAAAAIAAAAAAAAQAAAAAAMAEAAAAAACABAAAAAAAwARAAAAAAEAEQAAAAABABEAAAAAAwARAAAAAAMAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAfAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHwAAAAADABQAAAAAAwAUAAAAAAIAEQAAAAADABEAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAgAUAAAAAAAAFAAAAAAAABEAAAAAAgARAAAAAAIAAgAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAACAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAfAAAAAAAAFAAAAAADABQAAAAAAgARAAAAAAIAEQAAAAABABQAAAAAAwARAAAAAAEAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAIAEQAAAAABABEAAAAAAgARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAASAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEgAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAADAAIAAAAAAAARAAAAAAEAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAASAAAAAAMAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEgAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAMAAgAAAAAAABEAAAAAAwARAAAAAAMAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAASAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAgACAAAAAAAAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEgAAAAADAA== version: 7 -3,-1: ind: -3,-1 - tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAgACAAAAAAAAEQAAAAAAABEAAAAAAwACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABIAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAAAEQAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAASAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEgAAAAADADAAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAEAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABIAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAQAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAASAAAAAAEAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAADABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAEAAgAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAABEAAAAAAgAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAAAAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAQACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAIAAgAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAACAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAQARAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAAACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAIAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAAARAAAAAAEACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAADAA== + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAwACAAAAAAAAEQAAAAABABEAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEgAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAwARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAMAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABIAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAACAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAASAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEgAAAAADADAAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABIAAAAAAgAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAACABEAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAASAAAAAAEAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAADABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAQARAAAAAAEAAgAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAABEAAAAAAgAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAADAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAwACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAAgAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgACAAAAAAAAEQAAAAABABEAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAABAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAMAEQAAAAABABEAAAAAAgARAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAgARAAAAAAIAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAwARAAAAAAIAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAACABEAAAAAAgARAAAAAAEAEQAAAAABABEAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAQARAAAAAAAAEQAAAAAAAA== version: 7 -3,0: ind: -3,0 - tiles: EQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAQARAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAIAEQAAAAACABEAAAAAAwARAAAAAAMAEQAAAAABABEAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAMAEQAAAAACABEAAAAAAQACAAAAAAAAEQAAAAABABEAAAAAAgACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAIAAgAAAAAAABQAAAAAAQAUAAAAAAEAAgAAAAAAABEAAAAAAgARAAAAAAEAAgAAAAAAAAIAAAAAAAARAAAAAAEAAgAAAAAAABEAAAAAAgARAAAAAAEAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAACABEAAAAAAQARAAAAAAIAEQAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAgACAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAMAAgAAAAAAABEAAAAAAwARAAAAAAMAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: EQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAwARAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAMAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAwARAAAAAAIAEQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAQACAAAAAAAAEQAAAAACABEAAAAAAQACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAIAAgAAAAAAABQAAAAAAwAUAAAAAAEAAgAAAAAAABEAAAAAAgARAAAAAAIAAgAAAAAAAAIAAAAAAAARAAAAAAMAAgAAAAAAABEAAAAAAgARAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAACAAIAAAAAAAARAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAwACAAAAAAAAEQAAAAACABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAIAAgAAAAAAABEAAAAAAwARAAAAAAIAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 -3,1: ind: -3,1 @@ -215,103 +218,103 @@ entities: version: 7 0,-4: ind: 0,-4 - tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAQARAAAAAAMAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAADAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAADABEAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAABABEAAAAAAwARAAAAAAEAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAARAAAAAAAAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAQAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMgAAAAAAADIAAAAAAAAyAAAAAAAAMgAAAAAAADIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADIAAAAAAAAyAAAAAAAAMgAAAAAAADIAAAAAAAAyAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAAAIAAAAAAAAIAAAAAAEACAAAAAAAAAIAAAAAAAAyAAAAAAAAMgAAAAAAADIAAAAAAAAyAAAAAAAAMgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAACAAAAAADAAgAAAAAAwACAAAAAAAAMgAAAAAAADIAAAAAAAAyAAAAAAAAMgAAAAAAADIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAEAAgAAAAAAAAgAAAAAAgAIAAAAAAMAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACAAIAAAAAAAAIAAAAAAMACAAAAAABAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAAAEQAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAAAEQAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAgACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAAAABEAAAAAAgARAAAAAAEAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAwACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAARAAAAAAEAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMgAAAAADADIAAAAAAQAyAAAAAAMAMgAAAAAAADIAAAAAAgAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADIAAAAAAAAyAAAAAAAAMgAAAAADADIAAAAAAQAyAAAAAAEADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAABAAIAAAAAAAAIAAAAAAAACAAAAAACAAIAAAAAAAAyAAAAAAAAMgAAAAAAADIAAAAAAgAyAAAAAAEAMgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAACAAAAAABAAgAAAAAAgACAAAAAAAAMgAAAAADADIAAAAAAgAyAAAAAAEAMgAAAAACADIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAIAAgAAAAAAAAgAAAAAAQAIAAAAAAEAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADAAIAAAAAAAAIAAAAAAMACAAAAAABAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAABABEAAAAAAwARAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAgARAAAAAAMAEQAAAAABAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 -1,-4: ind: -1,-4 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAMAEQAAAAACABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAAAABEAAAAAAwARAAAAAAEAAgAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAgARAAAAAAIAEQAAAAAAABEAAAAAAwARAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAMAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAgARAAAAAAEAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAMAEAAAAAAAABAAAAAAAwAQAAAAAAMAEAAAAAADABAAAAAAAwACAAAAAAAAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAQAAAAAAMAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAQAAAAAAIAAgAAAAAAABEAAAAAAgAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEAAAAAADACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAEAAAAAAAAAIAAAAAAAARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAABAAAAAAAwACAAAAAAAAEQAAAAABABQAAAAAAQACAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAIAHwAAAAAAAAIAAAAAAAAQAAAAAAEAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAQAAAAAAIAAgAAAAAAABEAAAAAAwAUAAAAAAIAAgAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAAAAB8AAAAAAAACAAAAAAAAEAAAAAADACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAEAAAAAABAAIAAAAAAAARAAAAAAEAFAAAAAACAAIAAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAwAfAAAAAAIAGwAAAAABABAAAAAAAAAQAAAAAAIAEAAAAAABABAAAAAAAwAQAAAAAAIAEAAAAAABABAAAAAAAAACAAAAAAAAEQAAAAABAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAgARAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAMAEQAAAAAAABEAAAAAAgACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAMAAgAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAAAABEAAAAAAwARAAAAAAAAEQAAAAADABEAAAAAAwACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAgARAAAAAAMAEQAAAAABABEAAAAAAgARAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAIAEQAAAAADABEAAAAAAgARAAAAAAIAEQAAAAACABEAAAAAAwARAAAAAAEAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAADABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAEAEAAAAAABABAAAAAAAgAQAAAAAAEAEAAAAAACABAAAAAAAgACAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAQAAAAAAEAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAQAAAAAAIAAgAAAAAAABEAAAAAAgAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEAAAAAACACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAEAAAAAACAAIAAAAAAAARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAgAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAABAAAAAAAQACAAAAAAAAEQAAAAADABQAAAAAAQACAAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAMAHwAAAAAAAAIAAAAAAAAQAAAAAAMAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAQAAAAAAIAAgAAAAAAABEAAAAAAQAUAAAAAAMAAgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAADAB8AAAAAAwACAAAAAAAAEAAAAAACACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAEAAAAAADAAIAAAAAAAARAAAAAAAAFAAAAAABAAIAAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAAAfAAAAAAMAGwAAAAADABAAAAAAAgAQAAAAAAIAEAAAAAAAABAAAAAAAgAQAAAAAAAAEAAAAAAAABAAAAAAAwACAAAAAAAAEQAAAAADAA== version: 7 -2,-4: ind: -2,-4 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAQAAAAAAAAEAAAAAAAAAIAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAEAAAAAAAABAAAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAEAKgAAAAAFAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAAAAgAAAAAAACoAAAAABwAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAACACoAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAALgAAAAAAAAIAAAAAAAAuAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAADABQAAAAAAwAuAAAAAAAALgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAACABQAAAAAAgAUAAAAAAEAFAAAAAACABQAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAABABQAAAAAAgAUAAAAAAIAEAAAAAADABEAAAAAAgARAAAAAAIAEQAAAAADABAAAAAAAwAUAAAAAAAAFAAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAQAAAAAAIAEAAAAAACAAIAAAAAAAAqAAAAAAUADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAEAAAAAACABAAAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAIAAgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAwAqAAAAAAAAKgAAAAAAACoAAAAADAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAALgAAAAAAAAIAAAAAAAAuAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAQAuAAAAAAAALgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAACABQAAAAAAAAUAAAAAAIAFAAAAAABABQAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAEAAgAAAAAAABQAAAAAAgAUAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAEAFAAAAAAAABQAAAAAAwAUAAAAAAMAEAAAAAACABEAAAAAAQARAAAAAAMAEQAAAAAAABAAAAAAAwAUAAAAAAEAFAAAAAABAA== version: 7 -3,-4: ind: -3,-4 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAACAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAUAKgAAAAACACoAAAAAAAAqAAAAAAQAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAHACoAAAAAAAAqAAAAAAEAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAoAMQAAAAAAACoAAAAAAAAqAAAAAAsAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAgAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAABgAqAAAAAAAAKgAAAAAAACoAAAAADAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAgAqAAAAAAAAKgAAAAAHACoAAAAAAAAqAAAAAAAAKgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAAAEAAAAAAAAAIAAAAAAAACAAAAAAAAKgAAAAAKACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAGACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEAAAAAAAABAAAAAAAAACAAAAAAAAGgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAALgAAAAAAAAIAAAAAAAACAAAAAAAALgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAC4AAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAABwAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAsAKgAAAAAAACoAAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAAAAAqAAAAAAQAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAoAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAMQAAAAAAACoAAAAACwAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAoAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAFACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAABwAqAAAAAAAAKgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAgAQAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAEAEAAAAAADAAIAAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAEAKgAAAAAAACoAAAAAAAAqAAAAAAsAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEAAAAAACABAAAAAAAQACAAAAAAAAGgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAALgAAAAAAAAIAAAAAAAACAAAAAAAALgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAC4AAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 -4,-2: ind: -4,-2 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAQACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAgARAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAADAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAGQAAAAACABkAAAAAAwARAAAAAAIAEQAAAAADABEAAAAAAwARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABoAAAAAAAAaAAAAAAAAAgAAAAAAABkAAAAAAAAZAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAZAAAAAAEAGQAAAAACABEAAAAAAgARAAAAAAEAEQAAAAABABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAACQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAABABEAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAwARAAAAAAEAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAABABEAAAAAAQARAAAAAAMAEQAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAGQAAAAACABkAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAwARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABoAAAAAAAAaAAAAAAAAAgAAAAAAABkAAAAAAwAZAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAEAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAZAAAAAAAAGQAAAAADABEAAAAAAgARAAAAAAEAEQAAAAABABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 -4,-3: ind: -4,-3 - tiles: KgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAABwAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAsAKgAAAAADACoAAAAAAAAqAAAAAAYAKgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACoAAAAADAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAUAKgAAAAAGACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAAcAAAAAAQAHAAAAAAMABwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAACgAqAAAAAAwAKgAAAAAEACoAAAAABwAqAAAAAAAAKgAAAAAGAAIAAAAAAAAHAAAAAAIADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAACgACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAMAAAAAAEADAAAAAACAAwAAAAAAQAMAAAAAAMADAAAAAADACwAAAAABAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAQAMAAAAAAAADAAAAAABAAwAAAAAAAAMAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAcAAgAAAAAAAAwAAAAAAQAMAAAAAAEADAAAAAADAAwAAAAAAQAMAAAAAAEADAAAAAABAAIAAAAAAAACAAAAAAAADwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAABAAwAAAAAAwAMAAAAAAAADAAAAAACAAwAAAAAAwACAAAAAAAAAgAAAAAAAA8AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAQAMAAAAAAEADAAAAAACACwAAAAABgAMAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAABgAqAAAAAAEAAgAAAAAAAAwAAAAAAwAMAAAAAAEADAAAAAAAAAwAAAAAAwAMAAAAAAAADAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAADAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAIAKgAAAAAAACoAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAAAMAAAAAAEADAAAAAAAAAwAAAAAAQAMAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAAwAAAAAAwAMAAAAAAEADAAAAAACAAwAAAAAAgAMAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: KgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAALACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAgAqAAAAAAUAKgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACoAAAAAAgAqAAAAAAAAKgAAAAABACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAUAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAADACoAAAAABAACAAAAAAAAAgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAcAKgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAAcAAAAAAwAHAAAAAAAABwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAHAAAAAAIADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAACoAAAAADAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAMAKgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAwAMAAAAAAIADAAAAAAAACwAAAAABQACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAMAKgAAAAAKACoAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAgAMAAAAAAEADAAAAAACAAwAAAAAAQAMAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAMADAAAAAAAAAwAAAAAAgAMAAAAAAIADAAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAABAAwAAAAAAAAMAAAAAAIADAAAAAAAAAwAAAAAAgACAAAAAAAAAgAAAAAAAA8AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAIACoAAAAAAAACAAAAAAAADAAAAAABAAwAAAAAAgAMAAAAAAIADAAAAAADACwAAAAABQAMAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAFACoAAAAACwAqAAAAAAAAAgAAAAAAAAwAAAAAAgAMAAAAAAIADAAAAAABAAwAAAAAAQAMAAAAAAIADAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAMAAAAAAEADAAAAAAAAAwAAAAAAgAMAAAAAAIADAAAAAADAAwAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAwAMAAAAAAMADAAAAAACAAwAAAAAAAAMAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAAwAAAAAAwAMAAAAAAAADAAAAAADAAwAAAAAAQAMAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 2,2: ind: 2,2 - tiles: FQAAAAAAACsAAAAAAwArAAAAAAMAKwAAAAABABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABUAAAAAAAArAAAAAAIAKwAAAAABACsAAAAAAQAVAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAVAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAACsAAAAAAAArAAAAAAIAKwAAAAABACsAAAAAAwArAAAAAAIAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAQAAAAAAEAEAAAAAAAABAAAAAAAwACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAKwAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEAAAAAABABAAAAAAAAAQAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACsAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAMAEAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAArAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAQAAAAAAEAEAAAAAADABAAAAAAAQACAAAAAAAAMQAAAAAAADEAAAAAAAArAAAAAAEAKwAAAAADACsAAAAAAwArAAAAAAIAKwAAAAADAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAABUAAAAAAAAVAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAMAEAAAAAABAAIAAAAAAAAxAAAAAAAAMQAAAAAAABsAAAAAAwAbAAAAAAMAGwAAAAACABsAAAAAAQAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAQAAAAAAAAEAAAAAACABAAAAAAAwACAAAAAAAAMQAAAAAAADEAAAAAAAAbAAAAAAAAGwAAAAACABsAAAAAAgAbAAAAAAEAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA== + tiles: FQAAAAAAACsAAAAAAAArAAAAAAEAKwAAAAABABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABUAAAAAAAArAAAAAAAAKwAAAAABACsAAAAAAAAVAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAVAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAACsAAAAAAQArAAAAAAIAKwAAAAADACsAAAAAAwArAAAAAAEAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAQAAAAAAIAEAAAAAADABAAAAAAAgACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAKwAAAAACAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAIADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACsAAAAAAgACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABAAAAAAAgAQAAAAAAIAEAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAArAAAAAAEAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAQAAAAAAAAEAAAAAABABAAAAAAAQACAAAAAAAAMQAAAAAAADEAAAAAAAArAAAAAAMAKwAAAAACACsAAAAAAwArAAAAAAAAKwAAAAADAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEAAAAAAAABAAAAAAAgAQAAAAAAEAAgAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAABUAAAAAAAAVAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABAAAAAAAgAQAAAAAAMAEAAAAAACAAIAAAAAAAAxAAAAAAAAMQAAAAAAABsAAAAAAgAbAAAAAAMAGwAAAAACABsAAAAAAQAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAQAAAAAAEAEAAAAAABABAAAAAAAwACAAAAAAAAMQAAAAAAADEAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAQAbAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA== version: 7 1,2: ind: 1,2 - tiles: HQAAAAAAAB0AAAAAAwARAAAAAAAAEQAAAAABABkAAAAAAQARAAAAAAMAEQAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAMAEQAAAAAAABEAAAAAAwACAAAAAAAAFQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAgAZAAAAAAEAEQAAAAACABEAAAAAAgARAAAAAAMAEQAAAAACABEAAAAAAwARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAIAAgAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAZAAAAAAAAAgAAAAAAABkAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFQAAAAAAAAIAAAAAAAAQAAAAAAAAHQAAAAAAABAAAAAAAAACAAAAAAAANwAAAAAAADcAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAgARAAAAAAEAAgAAAAAAACsAAAAAAAACAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAgAAAAAAADcAAAAAAAA3AAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAZAAAAAAAAAgAAAAAAAAIAAAAAAAA3AAAAAAAANwAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAgARAAAAAAMAEQAAAAABABEAAAAAAQACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAQACAAAAAAAANwAAAAAAADcAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAABABEAAAAAAwARAAAAAAMAAgAAAAAAAAIAAAAAAAAUAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAAAAgAAAAAAADcAAAAAAAA3AAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAIAEQAAAAABAAIAAAAAAAArAAAAAAMAAgAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAZAAAAAAAAAgAAAAAAABkAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAwARAAAAAAIAGwAAAAAAABsAAAAAAgAbAAAAAAAAGwAAAAACABsAAAAAAwAbAAAAAAEAGwAAAAAAABsAAAAAAQAbAAAAAAMAGwAAAAACABsAAAAAAgAUAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAEAEQAAAAADABsAAAAAAgAbAAAAAAMAGwAAAAAAABsAAAAAAgAbAAAAAAEAGwAAAAABABsAAAAAAgAbAAAAAAAAGwAAAAABABsAAAAAAQAbAAAAAAEAEQAAAAABABEAAAAAAQARAAAAAAAAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAAAGgAAAAAAABQAAAAAAQAUAAAAAAAAFAAAAAACABQAAAAAAgAUAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAAAABoAAAAAAAAUAAAAAAEAFAAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA== + tiles: HQAAAAAAAB0AAAAAAgARAAAAAAEAEQAAAAACABkAAAAAAAARAAAAAAEAEQAAAAACAB0AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAAFQAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAACABEAAAAAAQAZAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAAARAAAAAAAAAgAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAAARAAAAAAIAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAIAEAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAZAAAAAAAAAgAAAAAAABkAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFQAAAAAAAAIAAAAAAAAQAAAAAAAAHQAAAAADABAAAAAAAgACAAAAAAAANwAAAAABADcAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAEAAgAAAAAAACsAAAAAAAACAAAAAAAAEAAAAAADABAAAAAAAQAQAAAAAAAAAgAAAAAAADcAAAAAAgA3AAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAZAAAAAAIAAgAAAAAAAAIAAAAAAAA3AAAAAAIANwAAAAABABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAANwAAAAACADcAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAwARAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAEQAAAAABABEAAAAAAQARAAAAAAIAAgAAAAAAADcAAAAAAgA3AAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAgARAAAAAAAAEQAAAAACAAIAAAAAAAArAAAAAAEAAgAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAZAAAAAAIAAgAAAAAAABkAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAABABEAAAAAAQARAAAAAAEAGwAAAAAAABsAAAAAAQAbAAAAAAAAGwAAAAACABsAAAAAAgAbAAAAAAEAGwAAAAACABsAAAAAAQAbAAAAAAMAGwAAAAAAABsAAAAAAQAUAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAADABsAAAAAAwAbAAAAAAIAGwAAAAACABsAAAAAAgAbAAAAAAMAGwAAAAAAABsAAAAAAQAbAAAAAAMAGwAAAAAAABsAAAAAAAAbAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAAAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAACABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAQARAAAAAAEAGgAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAAAABQAAAAAAgAUAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAADABoAAAAAAAAUAAAAAAEAFAAAAAABABQAAAAAAQAUAAAAAAAAFAAAAAADAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA== version: 7 0,2: ind: 0,2 - tiles: EQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAACABEAAAAAAQARAAAAAAIAHQAAAAACABEAAAAAAwARAAAAAAIAGQAAAAADABEAAAAAAgARAAAAAAEAHQAAAAADAB0AAAAAAAAdAAAAAAIAHQAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAABABEAAAAAAAARAAAAAAAAEQAAAAACAB0AAAAAAQARAAAAAAEAEQAAAAACABkAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAAAEQAAAAADABEAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwAdAAAAAAMAEQAAAAADABEAAAAAAgACAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAwARAAAAAAIAHQAAAAABABEAAAAAAAARAAAAAAAAAgAAAAAAAAsAAAAAAAARAAAAAAMADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAAAAB0AAAAAAwARAAAAAAAAEQAAAAADAAIAAAAAAAALAAAAAAAADAAAAAADAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAQACAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAACwAAAAAAAAwAAAAAAQAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAMAAgAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAEAFAAAAAAAABQAAAAAAAARAAAAAAIAEQAAAAADAAIAAAAAAAAMAAAAAAEADAAAAAABAAwAAAAAAQACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAACAAIAAAAAAAAUAAAAAAIAFAAAAAADABQAAAAAAQAUAAAAAAAAEQAAAAABABEAAAAAAQACAAAAAAAADAAAAAADAAwAAAAAAgAMAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEAAgAAAAAAAAwAAAAAAQAMAAAAAAEADAAAAAADABwAAAAAAgARAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAADAAIAAAAAAAAMAAAAAAMADAAAAAABAAwAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAAAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAQACAAAAAAAADAAAAAADAAwAAAAAAQAMAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAABAAIAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAEAEQAAAAADAAIAAAAAAAAMAAAAAAAADAAAAAABAAwAAAAAAwACAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAgARAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAABABEAAAAAAgACAAAAAAAADAAAAAABAAwAAAAAAQAMAAAAAAEAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAAgAAAAAAAA== + tiles: EQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAACABEAAAAAAAARAAAAAAMAHQAAAAADABEAAAAAAQARAAAAAAMAGQAAAAADABEAAAAAAQARAAAAAAEAHQAAAAACAB0AAAAAAwAdAAAAAAAAHQAAAAACABEAAAAAAgARAAAAAAIAEQAAAAABABEAAAAAAQARAAAAAAMAEQAAAAAAAB0AAAAAAwARAAAAAAAAEQAAAAAAABkAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAADABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAgACAAAAAAAAEQAAAAACABEAAAAAAAAdAAAAAAEAEQAAAAADABEAAAAAAQACAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAIADAAAAAABAAwAAAAAAwAMAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAEAEQAAAAADABEAAAAAAQARAAAAAAIAHQAAAAAAABEAAAAAAgARAAAAAAEAAgAAAAAAAAsAAAAAAAARAAAAAAIADAAAAAABAAwAAAAAAgAMAAAAAAMADAAAAAACABEAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAABAB0AAAAAAwARAAAAAAEAEQAAAAACAAIAAAAAAAALAAAAAAAADAAAAAABAAwAAAAAAQAMAAAAAAAADAAAAAABAAwAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAgACAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAQACAAAAAAAACwAAAAAAAAwAAAAAAAAMAAAAAAIADAAAAAAAAAwAAAAAAAAMAAAAAAIAEQAAAAABABEAAAAAAwARAAAAAAEAAgAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAABABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAEAFAAAAAAAABQAAAAAAAARAAAAAAAAEQAAAAACAAIAAAAAAAAMAAAAAAMADAAAAAADAAwAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAMAEQAAAAACAAIAAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAQAUAAAAAAEAEQAAAAAAABEAAAAAAgACAAAAAAAADAAAAAACAAwAAAAAAAAMAAAAAAIAAgAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAEAAgAAAAAAAAwAAAAAAQAMAAAAAAIADAAAAAAAABwAAAAAAgARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAADAAIAAAAAAAAMAAAAAAEADAAAAAACAAwAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAAAMAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAAAABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAABAAIAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAABABEAAAAAAQARAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAMAEQAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAACAAwAAAAAAQACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAACABEAAAAAAgACAAAAAAAADAAAAAABAAwAAAAAAwAMAAAAAAIAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAACAAIAAAAAAAACAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAAgAAAAAAAA== version: 7 3,0: ind: 3,0 - tiles: EQAAAAACABEAAAAAAQARAAAAAAMAEQAAAAABABEAAAAAAgARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAADAAYAAAAAAgARAAAAAAIAEQAAAAADABEAAAAAAwARAAAAAAMAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAACABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAQAGAAAAAAEAEQAAAAAAABEAAAAAAAARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAEAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAEACwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAEAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACAAsAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAAAAAIAAAAAAAACAAAAAAAACwAAAAAAABEAAAAAAQALAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAGgAAAAAAAB4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAABoAAAAAAAAeAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAaAAAAAAAAHgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAADABQAAAAAAwAUAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwApAAAAAAMAKQAAAAAAABQAAAAAAwACAAAAAAAAAgAAAAAAAB4AAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAAB4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAEAKQAAAAAAACkAAAAAAwAUAAAAAAIAAgAAAAAAAAIAAAAAAAAzAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAIAEAAAAAABABAAAAAAAAAzAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAACACkAAAAAAAApAAAAAAAAFAAAAAABAAIAAAAAAAACAAAAAAAAMwAAAAAAABAAAAAAAwAzAAAAAAAAAgAAAAAAAAIAAAAAAAAzAAAAAAAAMwAAAAAAABQAAAAAAwAUAAAAAAMAFAAAAAADABQAAAAAAwApAAAAAAIAKQAAAAADABQAAAAAAgACAAAAAAAAAgAAAAAAAA== + tiles: EQAAAAADABEAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAAAAAYAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAIAAgAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAgAGAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAIAEQAAAAADAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAQACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAMACwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAwARAAAAAAIAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADAAsAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAAAAAIAAAAAAAACAAAAAAAACwAAAAAAABEAAAAAAgALAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAGgAAAAAAAB4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAABoAAAAAAAAeAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAaAAAAAAAAHgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAGgAAAAAAAB4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAABoAAAAAAAAeAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAOAAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADgAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAA4AAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAABEAAAAAAgAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 3,-1: ind: 3,-1 - tiles: FAAAAAAAAAIAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADgAAAAAAADEAAAAAAAAUAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAAFAAAAAAAAAIAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAAARAAAAAAEAEQAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAACABEAAAAAAwACAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAEAEQAAAAABAAIAAAAAAAAOAAAAAAAAMQAAAAAAAAwAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAHAAAAAAAABIAAAAAAAASAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAwACAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAASAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAMAAgAAAAAAAAIAAAAAAAAxAAAAAAAANgAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAADABEAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAIAAgAAAAAAAAIAAAAAAAA2AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAAAEQAAAAADABEAAAAAAQAGAAAAAAIAEQAAAAADABEAAAAAAQARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAEABgAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAgACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAQARAAAAAAIAEQAAAAADABEAAAAAAwARAAAAAAAAEQAAAAABAAYAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAQARAAAAAAIAAgAAAAAAAA== + tiles: FAAAAAADAAIAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADgAAAAAAADEAAAAAAAAUAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAAFAAAAAADAAIAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAACAAIAAAAAAAAOAAAAAAAAMQAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAgACAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAwARAAAAAAEAAgAAAAAAAA4AAAAAAAAxAAAAAAAADAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAEAEQAAAAABAAIAAAAAAAAOAAAAAAAAMQAAAAAAAAwAAAAAAwACAAAAAAAADAAAAAABAAwAAAAAAAAMAAAAAAAAHAAAAAADABIAAAAAAAASAAAAAAIAAgAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAQACAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAIADAAAAAADAAwAAAAAAQASAAAAAAMAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAANgAAAAAAAAwAAAAAAQAMAAAAAAAADAAAAAADAAwAAAAAAQAMAAAAAAIAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAAADAAAAAADAAwAAAAAAAAMAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAQARAAAAAAMAAgAAAAAAAAIAAAAAAAA2AAAAAAAADAAAAAAAAAwAAAAAAwAMAAAAAAIAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAIADAAAAAABAAIAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAAAEQAAAAADABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAQAGAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAMAAgAAAAAAABEAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAEABgAAAAACABEAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAwACAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAAAAAYAAAAAAgARAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAIAAgAAAAAAAA== version: 7 3,-2: ind: 3,-2 - tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAFAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAABQAAAAAAAACAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAFAAAAAAAAAIAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAAA== + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAABQAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAUAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAFAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAABQAAAAAAwACAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAFAAAAAADAAIAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAAA== version: 7 3,-3: ind: 3,-3 - tiles: DgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAACACoAAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAcAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAALACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAQAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAADACoAAAAAAAAqAAAAAAEAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAABgAqAAAAAAAAKgAAAAAGACoAAAAAAAAqAAAAAAIAKgAAAAAAACoAAAAAAAAqAAAAAAoAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACoAAAAADAAqAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAABABQAAAAAAQAUAAAAAAIAFAAAAAAAABQAAAAAAQAUAAAAAAEAFAAAAAACABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAABQAAAAAAgAUAAAAAAEAFAAAAAACABQAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAAAUAAAAAAEAFAAAAAADABQAAAAAAgAUAAAAAAMAFAAAAAABABQAAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAQAUAAAAAAAAFAAAAAADABQAAAAAAgAUAAAAAAAAFAAAAAACABQAAAAAAgAUAAAAAAMAAgAAAAAAACoAAAAAAAAqAAAAAAAAFAAAAAABABQAAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAAAUAAAAAAMAFAAAAAACABQAAAAAAAAUAAAAAAEAFAAAAAADABQAAAAAAgAUAAAAAAIAFAAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAHAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAACQAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAFAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAACQAqAAAAAAAAKgAAAAAMACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAcAKgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAqAAAAAAoAKgAAAAAAACoAAAAABQAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAUAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACoAAAAACQAqAAAAAAAAFAAAAAADABQAAAAAAgAUAAAAAAAAFAAAAAAAABQAAAAAAQAUAAAAAAAAFAAAAAACABQAAAAAAQAUAAAAAAMAFAAAAAADABQAAAAAAQAUAAAAAAMAFAAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAABQAAAAAAgAUAAAAAAAAFAAAAAADABQAAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAgAUAAAAAAMAFAAAAAACABQAAAAAAQAUAAAAAAMAFAAAAAADABQAAAAAAQACAAAAAAAAKgAAAAAAACoAAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAQAUAAAAAAIAFAAAAAACABQAAAAAAwAUAAAAAAMAFAAAAAADABQAAAAAAQAUAAAAAAIAFAAAAAAAABQAAAAAAgAUAAAAAAAAAgAAAAAAACoAAAAAAAAqAAAAAAAAFAAAAAACABQAAAAAAwAUAAAAAAEAFAAAAAADABQAAAAAAwAUAAAAAAEAFAAAAAADABQAAAAAAQAUAAAAAAAAFAAAAAABABQAAAAAAwAUAAAAAAIAFAAAAAABAAIAAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA== version: 7 -1,2: ind: -1,2 - tiles: DAAAAAAAABwAAAAAAwAMAAAAAAEADAAAAAADAAwAAAAAAwACAAAAAAAADAAAAAACAAwAAAAAAQAMAAAAAAMADAAAAAADAAwAAAAAAgAMAAAAAAEADAAAAAABAAIAAAAAAAARAAAAAAMAEQAAAAADAAIAAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAAAMAAAAAAIAAgAAAAAAAAwAAAAAAQAMAAAAAAMADAAAAAADAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQAPAAAAAAAAAgAAAAAAAAIAAAAAAAAcAAAAAAIAAgAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAACAAwAAAAAAQAMAAAAAAAADAAAAAABAAwAAAAAAQAMAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAMADwAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAABAAwAAAAAAwAMAAAAAAAADAAAAAACAAwAAAAAAgAMAAAAAAMADAAAAAABAAwAAAAAAQAMAAAAAAEADAAAAAACAAIAAAAAAAARAAAAAAEAEQAAAAABAA8AAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAgAMAAAAAAMADAAAAAADAAwAAAAAAAAMAAAAAAIADAAAAAAAAAwAAAAAAwAMAAAAAAMADAAAAAADAAwAAAAAAwARAAAAAAEAEQAAAAADABEAAAAAAgAPAAAAAAAADwAAAAAAAAwAAAAAAQAMAAAAAAEADAAAAAADAAwAAAAAAgAMAAAAAAMADAAAAAAAAAwAAAAAAwAMAAAAAAMADAAAAAACAAwAAAAAAgAMAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAADAAwAAAAAAwAMAAAAAAIADAAAAAABAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAwAMAAAAAAIADAAAAAABAAIAAAAAAAARAAAAAAMAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAVAAAAAAAAEQAAAAADACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFQAAAAAAABEAAAAAAwAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAEQAAAAADABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAAAABQAAAAAAQAUAAAAAAIAAgAAAAAAAA== + tiles: DAAAAAABABwAAAAAAwAMAAAAAAEADAAAAAAAAAwAAAAAAQACAAAAAAAADAAAAAAAAAwAAAAAAQAMAAAAAAIADAAAAAADAAwAAAAAAAAMAAAAAAMADAAAAAABAAIAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAwAMAAAAAAEAAgAAAAAAAAwAAAAAAgAMAAAAAAMADAAAAAAAAAwAAAAAAgAMAAAAAAAADAAAAAAAAAwAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAcAAAAAAEAAgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAACAAwAAAAAAAAMAAAAAAEADAAAAAABAAwAAAAAAQAMAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAIADwAAAAAAAAIAAAAAAAAMAAAAAAEADAAAAAADAAwAAAAAAAAMAAAAAAMADAAAAAABAAwAAAAAAQAMAAAAAAEADAAAAAADAAwAAAAAAgAMAAAAAAEADAAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACAA8AAAAAAAACAAAAAAAADAAAAAABAAwAAAAAAQAMAAAAAAEADAAAAAABAAwAAAAAAgAMAAAAAAEADAAAAAABAAwAAAAAAAAMAAAAAAMADAAAAAAAAAwAAAAAAgARAAAAAAAAEQAAAAABABEAAAAAAwAPAAAAAAAADwAAAAAAAAwAAAAAAQAMAAAAAAIADAAAAAADAAwAAAAAAgAMAAAAAAAADAAAAAADAAwAAAAAAwAMAAAAAAIADAAAAAACAAwAAAAAAgAMAAAAAAMAEQAAAAAAABEAAAAAAgARAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAACAAwAAAAAAgAMAAAAAAIADAAAAAADAAwAAAAAAQAMAAAAAAMADAAAAAADAAwAAAAAAQAMAAAAAAMADAAAAAADAAIAAAAAAAARAAAAAAIAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAwARAAAAAAIAEQAAAAAAABEAAAAAAQARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAVAAAAAAAAEQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFQAAAAAAABEAAAAAAwAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAABABQAAAAAAwAUAAAAAAEAFAAAAAADABQAAAAAAgAUAAAAAAIAAgAAAAAAAA== version: 7 -2,2: ind: -2,2 - tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAwAMAAAAAAEADAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAABABEAAAAAAAARAAAAAAMAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAABEAAAAAAwARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAEQAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAIADAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAABEAAAAAAgARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAEQAAAAACABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 -3,2: ind: -3,2 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAaAAAAAAAADwAAAAAAAA8AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAQAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAAAhAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAIAIQAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAACACEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAaAAAAAAAADwAAAAAAAA8AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAgAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwAhAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAIAIQAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAACACEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA== version: 7 2,-4: ind: 2,-4 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABQAAAAAAQAUAAAAAAEAFAAAAAADABQAAAAAAQAUAAAAAAEAFAAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAUAAAAAAEAFAAAAAAAABQAAAAAAQAUAAAAAAAAFAAAAAACABQAAAAAAwACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAAAABQAAAAAAwAUAAAAAAEAFAAAAAABAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABQAAAAAAQAUAAAAAAAAFAAAAAADABQAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAwAUAAAAAAAAFAAAAAADABQAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAABABQAAAAAAQAUAAAAAAIAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAPAAAAAAAAFAAAAAAAABQAAAAAAwAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAABQAAAAAAQAUAAAAAAAADwAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAAA8AAAAAAAAUAAAAAAIAFAAAAAADAA8AAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAPAAAAAAAAFAAAAAACABQAAAAAAQAPAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAABQAAAAAAwAUAAAAAAEADwAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA8AAAAAAAAUAAAAAAIAFAAAAAACAA8AAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABQAAAAAAgAUAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAAAFAAAAAABAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAUAAAAAAEAFAAAAAADABQAAAAAAgAUAAAAAAIAFAAAAAAAABQAAAAAAQACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAFAAAAAABABQAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAwAUAAAAAAAAFAAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAADABQAAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAgACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAwAUAAAAAAAAFAAAAAADABQAAAAAAgACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAFAAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAABABQAAAAAAwAUAAAAAAEAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAPAAAAAAAAFAAAAAAAABQAAAAAAwAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAABQAAAAAAQAUAAAAAAAADwAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAAA8AAAAAAAAUAAAAAAMAFAAAAAACAA8AAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAPAAAAAAAAFAAAAAADABQAAAAAAgAPAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAABQAAAAAAAAUAAAAAAAADwAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA8AAAAAAAAUAAAAAAMAFAAAAAABAA8AAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 1,-4: ind: 1,-4 - tiles: MQAAAAAAADEAAAAAAAAqAAAAAAEAKgAAAAAAACoAAAAACAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAKgAAAAAFACoAAAAAAAAqAAAAAAkAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAAAAAqAAAAAAQAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAUAKgAAAAAHAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAFACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAIACoAAAAAAwAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAFAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABQAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAB4AAAAAAAAeAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAAIAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAHgAAAAAAAB4AAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAB4AAAAAAAAeAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: MQAAAAAAADEAAAAAAAAqAAAAAAAAKgAAAAAKACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAACQAqAAAAAAgAKgAAAAAAACoAAAAAAAAqAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAIAKgAAAAAAACoAAAAAAQAqAAAAAAcAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAABAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAIAKgAAAAAAACoAAAAAAQAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAACwAqAAAAAAAAKgAAAAAGACoAAAAABQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAACAAqAAAAAAAAKgAAAAAAACoAAAAACgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAFAAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABQAAAAAAwAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAB4AAAAAAAAeAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAAIAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAHgAAAAAAAB4AAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAB4AAAAAAAAeAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 -2,3: ind: -2,3 - tiles: DgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAKgAAAAAMADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAqAAAAAAsAKgAAAAAAACoAAAAABQAqAAAAAAMAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAACAAqAAAAAAsAKgAAAAAAACoAAAAABgAqAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAUADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAKgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAKgAAAAAMACoAAAAAAAAqAAAAAAYAKgAAAAAMACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAADAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAIACoAAAAAAAAqAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 -1,3: ind: -1,3 - tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAADABEAAAAAAgARAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAIAEQAAAAAAABEAAAAAAwACAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAAARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAgAaAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAQARAAAAAAMAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAMAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACoAAAAAAAAqAAAAAAsAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAGgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAYAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAwACAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAMAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAGgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAUAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 0,3: ind: 0,3 - tiles: EQAAAAABABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAADAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAABAAIAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAQAUAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAARAAAAAAAAEQAAAAACAAIAAAAAAAARAAAAAAMAKQAAAAACABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAwARAAAAAAMAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAEQAAAAABABEAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAACAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAABEAAAAAAQARAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAARAAAAAAIAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA== + tiles: EQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAAAEQAAAAADAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABEAAAAAAAARAAAAAAMAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAABAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAgAUAAAAAAEADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAARAAAAAAIAEQAAAAABAAIAAAAAAAARAAAAAAMAKQAAAAACABEAAAAAAgARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAEQAAAAABABEAAAAAAgACAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAACAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAABEAAAAAAwARAAAAAAIAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA== version: 7 1,3: ind: 1,3 - tiles: AgAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAAAABoAAAAAAAAUAAAAAAAAFAAAAAABABQAAAAAAwAUAAAAAAAAFAAAAAACAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABQAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAgAaAAAAAAAAFAAAAAADABQAAAAAAgAUAAAAAAIAFAAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAADAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAqAAAAAAYAKgAAAAABAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAABoAAAAAAAAaAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAaAAAAAAAAGgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: AgAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAADABoAAAAAAAAUAAAAAAMAFAAAAAACABQAAAAAAAAUAAAAAAMAFAAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABQAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAwAaAAAAAAAAFAAAAAABABQAAAAAAwAUAAAAAAMAFAAAAAADABQAAAAAAQACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAJAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAABoAAAAAAAAaAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAaAAAAAAAAGgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 2,3: ind: 2,3 - tiles: AgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAMAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAKgAAAAAIACoAAAAACAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: AgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAsAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAABAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 3,2: ind: 3,2 - tiles: MQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: MQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 3,1: ind: 3,1 - tiles: MwAAAAAAABAAAAAAAAAzAAAAAAAAMwAAAAAAAAIAAAAAAAAzAAAAAAAAEAAAAAAAAAIAAAAAAAAUAAAAAAMAAgAAAAAAABQAAAAAAAApAAAAAAAAKQAAAAACABQAAAAAAgACAAAAAAAAAgAAAAAAADMAAAAAAAAQAAAAAAMAMwAAAAAAAAIAAAAAAAACAAAAAAAAMwAAAAAAADMAAAAAAAAUAAAAAAIAFAAAAAAAABQAAAAAAQAUAAAAAAAAKQAAAAACACkAAAAAAgAUAAAAAAAAAgAAAAAAAAIAAAAAAAAeAAAAAAAAEAAAAAACABAAAAAAAwAQAAAAAAAAEAAAAAABABAAAAAAAAAzAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAACACkAAAAAAgApAAAAAAAAFAAAAAADAAIAAAAAAAACAAAAAAAAMwAAAAAAABAAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAIAMwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAMAFAAAAAACABQAAAAAAwACAAAAAAAAAgAAAAAAADMAAAAAAAAQAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEAAAAAABADMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAzAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAEAEAAAAAACABAAAAAAAwAzAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAIAAAAAAAACAAAAAAAAHgAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAHgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA== + tiles: AgAAAAAAAAIAAAAAAAA4AAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAABEAAAAAAgAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAAgAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAAgAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADMAAAAAAAA6AAAAAAAAOgAAAAACAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAA6AAAAAAAAOgAAAAACADMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAzAAAAAAAAOgAAAAADADoAAAAAAAA6AAAAAAAAOgAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADoAAAAAAAA6AAAAAAAAOgAAAAAAADoAAAAAAQAzAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMwAAAAAAADMAAAAAAAA6AAAAAAEAMwAAAAAAADMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAzAAAAAAAAMwAAAAAAADoAAAAAAAAzAAAAAAAAMwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAzAAAAAAAAMwAAAAAAADoAAAAAAgA6AAAAAAEAOgAAAAADADMAAAAAAAAzAAAAAAAAMwAAAAAAADoAAAAAAwA6AAAAAAEAOgAAAAADADMAAAAAAAAzAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMwAAAAAAADMAAAAAAAA6AAAAAAAAOgAAAAACADoAAAAAAwAzAAAAAAAAMwAAAAAAADMAAAAAAAA6AAAAAAEAOgAAAAAAADoAAAAAAgAzAAAAAAAAMwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA== version: 7 3,3: ind: 3,3 @@ -331,7 +334,7 @@ entities: version: 7 -4,0: ind: -4,0 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAwAlAAAAAAAAJQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAADABEAAAAAAgARAAAAAAIAEQAAAAADAAIAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAgACAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAEAAgAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAABwAAAAAAAAMAAAAAAIADAAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAAIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAQAhAAAAAAAAIQAAAAAAACEAAAAAAAAMAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAAADAAAAAABAAwAAAAAAwAMAAAAAAEADAAAAAADAAwAAAAAAAACAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAADAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAgAMAAAAAAEAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAEADAAAAAACAAwAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAQAMAAAAAAEAAgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAgARAAAAAAIAEQAAAAAAABEAAAAAAQAlAAAAAAAAJQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAAACAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAEAEQAAAAADABEAAAAAAAARAAAAAAAAAgAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAAgAAAAAAAAwAAAAAAwAMAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAABwAAAAAAgAMAAAAAAAADAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAAIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAwAhAAAAAAAAIQAAAAAAACEAAAAAAAAMAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAADAAwAAAAAAgAMAAAAAAEADAAAAAADAAwAAAAAAwACAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAACAAwAAAAAAQAMAAAAAAIADAAAAAACAAwAAAAAAgAMAAAAAAIAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAADAAwAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAAAMAAAAAAAAAgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 -4,1: ind: -4,1 @@ -347,43 +350,43 @@ entities: version: 7 -4,-4: ind: -4,-4 - tiles: MQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAKgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAaAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAgAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAACACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAGACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAgAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAKgAAAAAIACoAAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAgAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAFAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: MQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAKgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAaAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAcADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAYADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAFACoAAAAABgAqAAAAAAAAKgAAAAAAACoAAAAABQAqAAAAAAEAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAgAKgAAAAAAACoAAAAAAAAqAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAACAAqAAAAAAwAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 1,-5: ind: 1,-5 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAABgAqAAAAAAsAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAABACoAAAAAAQAqAAAAAAAAKgAAAAADACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAHACoAAAAAAwAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAgAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAEAKgAAAAAAACoAAAAACAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 0,-5: ind: 0,-5 - tiles: DgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAEAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAEAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAABAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAMAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAQACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAEAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAgACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAwACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAMAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAQACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAABAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAIAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 -1,-5: ind: -1,-5 - tiles: DgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAEAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAAARAAAAAAEAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAEAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAACABoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAwACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAIAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAADAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAEAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAwACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAMAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAAAEQAAAAADABoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 -1,-6: ind: -1,-6 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAABEAAAAAAgARAAAAAAIAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAABEAAAAAAgARAAAAAAIAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAADAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAEQAAAAABABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 0,-6: ind: 0,-6 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAIADwAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwAPAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAEADwAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAgAPAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 -4,-1: ind: -4,-1 - tiles: DgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAwAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAEQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAABEAAAAAAQARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAABEAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAwARAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAMAAAAAAAADAAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAMAAgAAAAAAABMAAAAAAAAwAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAAAADAAAAAAAAATAAAAAAAAMAAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAwACAAAAAAAAEwAAAAAAADAAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAdAAAAAAAAHQAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAABABEAAAAAAQACAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAAAABEAAAAAAgARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAB0AAAAAAAAdAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAZAAAAAAAAGQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAAAABEAAAAAAgACAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGQAAAAACABkAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAABkAAAAAAgAZAAAAAAMAEQAAAAACABEAAAAAAgARAAAAAAIAEQAAAAACAAIAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAAdAAAAAAAAHQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAADABEAAAAAAQACAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAwAlAAAAAAAAJQAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAADABEAAAAAAwARAAAAAAIAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAAAEQAAAAACABEAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAEQAAAAACAB0AAAAAAAAdAAAAAAIAHQAAAAABABEAAAAAAAARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAABEAAAAAAgAdAAAAAAIAHQAAAAAAAB0AAAAAAAARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAMAAAAAAAADAAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAEAAgAAAAAAABMAAAAAAAAwAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABAB0AAAAAAgAdAAAAAAAAHQAAAAADABEAAAAAAAARAAAAAAMAEQAAAAAAADAAAAAAAAATAAAAAAAAMAAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAwACAAAAAAAAEwAAAAAAADAAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAdAAAAAAIAHQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAwACAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAMAEQAAAAACABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAB0AAAAAAwAdAAAAAAIAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAZAAAAAAMAGQAAAAACABEAAAAAAgARAAAAAAEAEQAAAAADABEAAAAAAwACAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGQAAAAAAABkAAAAAAwARAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAEAAgAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAABkAAAAAAAAZAAAAAAMAEQAAAAABABEAAAAAAQARAAAAAAIAEQAAAAABAAIAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAAdAAAAAAAAHQAAAAABABEAAAAAAwARAAAAAAAAEQAAAAACABEAAAAAAAACAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAwAlAAAAAAAAJQAAAAAAAA== version: 7 4,1: ind: 4,1 - tiles: AgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA== + tiles: AgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA== version: 7 4,0: ind: 4,0 - tiles: BgAAAAABAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAaAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: BgAAAAACAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAaAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAaAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 4,-1: ind: 4,-1 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAGAAAAAAIAAgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAABgAAAAABAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAGAAAAAAEAAgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAABgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 4,-2: ind: 4,-2 @@ -391,11 +394,11 @@ entities: version: 7 -3,-5: ind: -3,-5 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAgADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAAAAAqAAAAAAUAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAKACoAAAAACgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAACgAqAAAAAAcAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAABAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAcADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAIAKgAAAAABACoAAAAAAQAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAMAKgAAAAAEAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAMACoAAAAAAAAqAAAAAAAADgAAAAAAACoAAAAABQAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAABQAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAAAAAqAAAAAAYAKgAAAAALAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAFAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAACQAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAwAqAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 -5,-3: ind: -5,-3 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAJAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAKgAAAAAMACoAAAAAAAAqAAAAAAMAKgAAAAAAACoAAAAACgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 -5,-4: ind: -5,-4 @@ -403,7 +406,7 @@ entities: version: 7 4,-3: ind: 4,-3 - tiles: DgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAHAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAALAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAFAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 -4,-5: ind: -4,-5 @@ -693,6 +696,14 @@ entities: 2470: 7,51 2486: 3,50 2492: 5,50 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkBox + decals: + 4980: 50,24 + 4981: 60,24 + 4984: 59,18 + 4985: 51,18 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe @@ -700,6 +711,9 @@ entities: 872: -53,8 873: -52,7 1725: 42,-40 + 4906: 61,16 + 4979: 61,25 + 4992: 57,18 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw @@ -708,17 +722,23 @@ entities: 874: -57,7 1724: 40,-40 3888: 20,8 + 4912: 52,16 + 4963: 49,25 + 4991: 53,18 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: 875: -52,5 + 4905: 59,13 + 4908: 61,14 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: 876: -57,5 3889: 20,5 + 4909: 52,13 - node: color: '#FFFFFFFF' id: BrickTileDarkEndE @@ -733,6 +753,8 @@ entities: 3866: 23,5 4565: 45,-14 4741: 34,-14 + 4872: 54,14 + 4893: 57,16 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw @@ -743,6 +765,8 @@ entities: 4568: 47,-14 4607: 39,-16 4740: 36,-14 + 4871: 56,14 + 4892: 53,16 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe @@ -750,6 +774,9 @@ entities: 3865: 23,8 4566: 45,-12 4761: 37,-16 + 4868: 54,17 + 4873: 54,17 + 4878: 59,14 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw @@ -757,6 +784,8 @@ entities: 4182: 23,39 4567: 47,-12 4584: 39,-14 + 4867: 56,17 + 4874: 56,17 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE @@ -777,6 +806,19 @@ entities: 4561: 45,-13 4760: 37,-17 4764: 37,-15 + 4862: 54,15 + 4863: 54,16 + 4883: 57,17 + 4907: 61,15 + 4975: 61,24 + 4976: 61,23 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 4869: 56,16 + 4870: 56,15 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN @@ -787,6 +829,23 @@ entities: 3507: -8,-24 4564: 46,-14 4742: 35,-14 + 4880: 60,16 + 4881: 59,16 + 4882: 58,16 + 4885: 56,18 + 4886: 55,18 + 4887: 54,18 + 4964: 50,25 + 4965: 51,25 + 4966: 52,25 + 4967: 53,25 + 4968: 54,25 + 4969: 55,25 + 4970: 56,25 + 4971: 57,25 + 4972: 58,25 + 4973: 59,25 + 4974: 60,25 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -796,6 +855,15 @@ entities: 879: -54,5 880: -53,5 4563: 46,-12 + 4866: 55,17 + 4875: 60,14 + 4898: 52,13 + 4899: 53,13 + 4900: 54,13 + 4901: 55,13 + 4902: 56,13 + 4903: 57,13 + 4904: 58,13 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW @@ -811,6 +879,11 @@ entities: 4562: 47,-13 4590: 39,-15 4602: 39,-17 + 4889: 53,17 + 4910: 52,14 + 4911: 52,15 + 4977: 49,23 + 4978: 49,24 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe @@ -848,6 +921,7 @@ entities: id: BrickTileSteelEndN decals: 2315: -8,-44 + 4922: 55,15 - node: color: '#FFFFFFFF' id: BrickTileSteelEndS @@ -909,6 +983,7 @@ entities: 3092: -29,42 3429: 20,-18 3430: 21,-18 + 4921: 55,13 - node: color: '#D4D4D496' id: BrickTileSteelLineS @@ -1349,7 +1424,6 @@ entities: decals: 1568: 40,-24 1570: 42,-24 - 1587: 39,-25 1588: 42,-25 1589: 42,-26 1590: 42,-28 @@ -1411,8 +1485,6 @@ entities: 4750: 37,-16 4769: 45,-21 4776: 48,-19 - 4779: 48,-21 - 4781: 48,-22 4803: 41,-19 4804: 40,-19 4805: 39,-19 @@ -1578,11 +1650,6 @@ entities: 1569: 42,-24 1571: 40,-24 1572: 40,-25 - 1573: 39,-25 - 1574: 39,-26 - 1575: 39,-27 - 1576: 39,-28 - 1577: 39,-29 1578: 40,-30 1620: 30,-34 1623: 40,-35 @@ -1782,7 +1849,6 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteInnerSe decals: - 1585: 39,-29 1595: 40,-30 1596: 42,-30 1597: 42,-29 @@ -1849,8 +1915,6 @@ entities: 4733: 42,-23 4748: 37,-14 4777: 48,-19 - 4780: 48,-22 - 4782: 48,-21 4783: 47,-22 4784: 46,-22 4785: 45,-22 @@ -2009,11 +2073,6 @@ entities: id: BrickTileWhiteInnerSw decals: 1579: 40,-24 - 1580: 39,-25 - 1581: 39,-26 - 1582: 39,-27 - 1583: 39,-28 - 1584: 39,-29 1586: 40,-29 1593: 42,-30 1594: 40,-30 @@ -2080,7 +2139,6 @@ entities: 4787: 45,-22 4788: 46,-22 4789: 47,-22 - 4790: 48,-22 4794: 43,-19 4795: 42,-20 4796: 39,-20 @@ -3212,12 +3270,6 @@ entities: 1307: 58.021324,0.5489143 1308: 57.96924,-1.1594192 3376: 57.99387,-2.411529 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Caution - decals: - 3544: 56.20735,16.017925 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' @@ -3936,6 +3988,10 @@ entities: id: GrayConcreteTrimLineE decals: 3391: 11,2 + 4913: 51,16 + 4914: 51,15 + 4915: 51,14 + 4916: 51,13 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineN @@ -3954,6 +4010,10 @@ entities: decals: 3392: 14,2 3399: 4.001555,11.500919 + 4917: 51,13 + 4918: 51,14 + 4919: 51,15 + 4920: 51,16 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale @@ -4301,6 +4361,12 @@ entities: id: MiniTileCornerOverlayNE decals: 2879: -14,-40 + - node: + cleanable: True + color: '#DE3A3A96' + id: MiniTileCornerOverlayNW + decals: + 5037: 39,-25 - node: color: '#EFB34196' id: MiniTileCornerOverlayNW @@ -4311,6 +4377,12 @@ entities: id: MiniTileCornerOverlaySE decals: 2877: -14,-42 + - node: + cleanable: True + color: '#DE3A3A96' + id: MiniTileCornerOverlaySW + decals: + 5038: 39,-26 - node: color: '#EFB34196' id: MiniTileCornerOverlaySW @@ -4437,6 +4509,13 @@ entities: id: MiniTileWhiteCornerNe decals: 987: -52,-9 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerNe + decals: + 5056: 59,24 + 5057: 53,24 + 5058: 60,20 - node: color: '#A4610696' id: MiniTileWhiteCornerNe @@ -4461,6 +4540,13 @@ entities: 441: -15,-34 2889: -12,-39 2890: -11,-42 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerNw + decals: + 5064: 50,20 + 5065: 51,24 + 5066: 57,24 - node: color: '#A4610696' id: MiniTileWhiteCornerNw @@ -4477,6 +4563,12 @@ entities: id: MiniTileWhiteCornerNw decals: 2923: -18,-39 + - node: + cleanable: True + color: '#FA750096' + id: MiniTileWhiteCornerNw + decals: + 5035: 39,-27 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerNw @@ -4488,6 +4580,13 @@ entities: id: MiniTileWhiteCornerSe decals: 986: -52,-11 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerSe + decals: + 5059: 51,19 + 5060: 60,19 + 5061: 53,23 - node: color: '#A4610696' id: MiniTileWhiteCornerSe @@ -4510,6 +4609,13 @@ entities: decals: 438: -15,-35 2886: -11,-43 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerSw + decals: + 5069: 50,19 + 5070: 59,19 + 5071: 57,23 - node: color: '#A4610696' id: MiniTileWhiteCornerSw @@ -4526,12 +4632,23 @@ entities: id: MiniTileWhiteCornerSw decals: 2919: -18,-43 + - node: + cleanable: True + color: '#FA750096' + id: MiniTileWhiteCornerSw + decals: + 5036: 39,-29 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerSw decals: 439: -20,-35 2887: -18,-43 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteInnerNe + decals: + 5072: 59,20 - node: color: '#D381C996' id: MiniTileWhiteInnerNe @@ -4543,6 +4660,13 @@ entities: id: MiniTileWhiteInnerNe decals: 3378: 42,-39 + - node: + cleanable: True + color: '#DE3A3A96' + id: MiniTileWhiteInnerNe + decals: + 5041: 48,-21 + 5042: 48,-22 - node: color: '#EFB34196' id: MiniTileWhiteInnerNe @@ -4554,6 +4678,11 @@ entities: decals: 434: -21,-36 2907: -12,-42 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteInnerNw + decals: + 5073: 51,20 - node: color: '#DE3A3A96' id: MiniTileWhiteInnerNw @@ -4566,11 +4695,23 @@ entities: id: MiniTileWhiteInnerNw decals: 490: -14,-36 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteInnerSe + decals: + 5074: 51,23 - node: color: '#D381C996' id: MiniTileWhiteInnerSe decals: 4108: 2,-42 + - node: + cleanable: True + color: '#DE3A3A96' + id: MiniTileWhiteInnerSe + decals: + 5043: 48,-22 + 5044: 48,-21 - node: color: '#FA750096' id: MiniTileWhiteInnerSe @@ -4582,6 +4723,11 @@ entities: decals: 436: -21,-33 437: -21,-33 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteInnerSw + decals: + 5075: 59,23 - node: color: '#DE3A3A96' id: MiniTileWhiteInnerSw @@ -4589,6 +4735,12 @@ entities: 4715: 30,-19 4716: 31,-18 4721: 31,-15 + - node: + cleanable: True + color: '#DE3A3A96' + id: MiniTileWhiteInnerSw + decals: + 5045: 48,-22 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerSw @@ -4599,6 +4751,14 @@ entities: id: MiniTileWhiteLineE decals: 985: -52,-10 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineE + decals: + 5048: 59,21 + 5049: 51,21 + 5063: 59,23 + 5067: 56,20 - node: color: '#A4610696' id: MiniTileWhiteLineE @@ -4625,6 +4785,12 @@ entities: 427: -21,-35 2896: -12,-40 2897: -12,-41 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineN + decals: + 5054: 52,24 + 5055: 58,24 - node: color: '#D381C996' id: MiniTileWhiteLineN @@ -4665,6 +4831,14 @@ entities: 2893: -15,-39 2894: -14,-39 2895: -13,-39 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineS + decals: + 5050: 52,21 + 5051: 58,21 + 5052: 58,23 + 5053: 52,23 - node: color: '#D381C996' id: MiniTileWhiteLineS @@ -4706,6 +4880,14 @@ entities: 2901: -15,-43 2902: -16,-43 2903: -17,-43 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineW + decals: + 5046: 51,21 + 5047: 59,21 + 5062: 51,23 + 5068: 54,20 - node: color: '#A4610696' id: MiniTileWhiteLineW @@ -4724,6 +4906,12 @@ entities: 2924: -18,-40 2925: -18,-41 2926: -18,-42 + - node: + cleanable: True + color: '#FA750096' + id: MiniTileWhiteLineW + decals: + 5025: 39,-28 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineW @@ -6342,6 +6530,42 @@ entities: 4463: 49,-5 4475: 50,-8 4483: 43,-6 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#323232FF' + id: body + decals: + 5083: 57,23 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt1 + decals: + 5079: 57,24 + 5080: 57,24 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt2 + decals: + 5014: 56,23 + 5081: 58,23 + 5082: 58,23 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt3 + decals: + 5076: 57,23 + 5077: 57,23 + 5078: 57,23 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt4 + decals: + 5022: 56,23 - type: GridAtmosphere version: 2 data: @@ -7254,7 +7478,7 @@ entities: 11,3: 0: 21845 11,4: - 0: 21845 + 0: 40277 12,0: 0: 29439 12,1: @@ -7262,7 +7486,7 @@ entities: 12,2: 0: 61567 12,3: - 0: 32752 + 0: 65520 8,8: 0: 61695 8,6: @@ -7278,27 +7502,25 @@ entities: 10,5: 0: 48063 10,6: - 0: 36856 + 0: 35832 10,7: 0: 52701 10,8: 0: 8191 11,5: - 0: 21845 + 0: 48059 11,6: - 0: 36636 + 0: 35771 11,7: - 0: 22387 + 0: 30707 11,8: 0: 17989 12,4: - 0: 65407 - 12,5: - 0: 4095 + 0: 60943 12,6: - 0: 48911 + 0: 61678 12,7: - 2: 65520 + 0: 4080 -12,-12: 0: 13119 -12,-13: @@ -7672,7 +7894,7 @@ entities: 9,11: 0: 1906 9,12: - 0: 3581 + 0: 3067 10,9: 0: 56797 10,10: @@ -7693,7 +7915,7 @@ entities: 11,12: 2: 53247 12,8: - 2: 13175 + 2: 13311 12,9: 2: 13107 12,10: @@ -7768,37 +7990,37 @@ entities: 13,1: 0: 63289 13,2: - 0: 61447 + 0: 61559 13,3: - 0: 59248 + 0: 65520 13,-1: 0: 65262 13,4: - 0: 30694 + 0: 12015 14,0: 0: 65535 14,1: 0: 29439 14,2: - 0: 53488 + 0: 28912 14,3: - 0: 56541 + 0: 65520 14,-1: 0: 65535 14,4: - 0: 56541 + 0: 43839 15,0: 0: 16183 15,1: 0: 45887 15,2: - 0: 46011 - 15,3: 0: 48059 + 15,3: + 0: 48051 15,-1: 0: 30527 15,4: - 0: 48059 + 0: 48011 16,0: 0: 1793 2: 4 @@ -8124,45 +8346,45 @@ entities: 2: 65228 12,12: 2: 65535 + 13,8: + 2: 20223 13,10: 2: 17 13,9: 2: 13028 - 13,8: - 2: 19652 13,7: - 2: 20476 + 0: 8752 + 2: 34944 + 14,8: + 2: 52429 14,9: 2: 248 - 14,8: - 2: 52428 14,7: - 2: 51711 + 2: 64496 15,8: 2: 56797 15,9: 2: 248 15,7: - 2: 55539 + 2: 55536 16,8: 2: 56797 16,9: 2: 248 + 12,5: + 0: 59630 13,5: - 0: 1911 + 0: 64543 13,6: - 0: 4879 - 2: 52224 + 0: 61695 14,5: - 0: 7633 + 0: 63951 14,6: - 0: 15 - 2: 13056 + 0: 61695 15,5: - 0: 35768 + 0: 47291 15,6: - 0: 15 - 2: 13824 + 0: 63675 16,7: 2: 55544 13,12: @@ -8363,8 +8585,6 @@ entities: 2: 39321 20,7: 2: 16 - 16,2: - 2: 8192 -12,-19: 2: 61440 -13,-19: @@ -9861,6 +10081,17 @@ entities: - type: Transform pos: 19.476593,-4.469906 parent: 21002 +- proto: ActionToggleLight + entities: + - uid: 18422 + mapInit: true + paused: true + components: + - type: Transform + parent: 2671 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 2671 - proto: AirAlarm entities: - uid: 2121 @@ -9895,6 +10126,8 @@ entities: - 114 - 115 - 116 + - type: Fixtures + fixtures: {} - uid: 3220 components: - type: Transform @@ -9905,6 +10138,8 @@ entities: devices: - 16149 - 16148 + - type: Fixtures + fixtures: {} - uid: 8130 components: - type: Transform @@ -9915,6 +10150,8 @@ entities: devices: - 8129 - 28592 + - type: Fixtures + fixtures: {} - uid: 8131 components: - type: Transform @@ -9924,6 +10161,8 @@ entities: devices: - 28591 - 8128 + - type: Fixtures + fixtures: {} - uid: 9177 components: - type: Transform @@ -9932,6 +10171,8 @@ entities: - type: DeviceList devices: - 9168 + - type: Fixtures + fixtures: {} - uid: 9410 components: - type: Transform @@ -9955,6 +10196,8 @@ entities: - 16334 - 16336 - 18545 + - type: Fixtures + fixtures: {} - uid: 10169 components: - type: Transform @@ -9972,12 +10215,16 @@ entities: - 5218 - 16531 - 16532 + - type: Fixtures + fixtures: {} - uid: 12296 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12885 components: - type: Transform @@ -9988,6 +10235,8 @@ entities: - 10841 - 15899 - 15903 + - type: Fixtures + fixtures: {} - uid: 14277 components: - type: Transform @@ -9999,6 +10248,8 @@ entities: - 15712 - 29812 - 15713 + - type: Fixtures + fixtures: {} - uid: 14996 components: - type: Transform @@ -10010,6 +10261,8 @@ entities: - 18504 - 16179 - 16180 + - type: Fixtures + fixtures: {} - uid: 15250 components: - type: Transform @@ -10021,6 +10274,8 @@ entities: - 15237 - 1597 - 424 + - type: Fixtures + fixtures: {} - uid: 15512 components: - type: Transform @@ -10038,6 +10293,8 @@ entities: - 18358 - 15615 - 15618 + - type: Fixtures + fixtures: {} - uid: 18240 components: - type: Transform @@ -10056,6 +10313,8 @@ entities: - 18233 - 18232 - 18253 + - type: Fixtures + fixtures: {} - uid: 18242 components: - type: Transform @@ -10071,6 +10330,8 @@ entities: - 16110 - 16111 - 18245 + - type: Fixtures + fixtures: {} - uid: 18244 components: - type: Transform @@ -10086,6 +10347,8 @@ entities: - 16112 - 16107 - 18254 + - type: Fixtures + fixtures: {} - uid: 18247 components: - type: Transform @@ -10107,6 +10370,8 @@ entities: - 16547 - 16546 - 18256 + - type: Fixtures + fixtures: {} - uid: 18258 components: - type: Transform @@ -10125,6 +10390,8 @@ entities: - 12298 - 10876 - 18257 + - type: Fixtures + fixtures: {} - uid: 18263 components: - type: Transform @@ -10142,6 +10409,8 @@ entities: - 18262 - 16543 - 16542 + - type: Fixtures + fixtures: {} - uid: 18270 components: - type: Transform @@ -10179,6 +10448,8 @@ entities: - 3343 - 3344 - 3345 + - type: Fixtures + fixtures: {} - uid: 18271 components: - type: Transform @@ -10215,6 +10486,8 @@ entities: - 16495 - 16496 - 18266 + - type: Fixtures + fixtures: {} - uid: 18272 components: - type: Transform @@ -10251,6 +10524,8 @@ entities: - 182 - 16486 - 18267 + - type: Fixtures + fixtures: {} - uid: 18273 components: - type: Transform @@ -10288,6 +10563,8 @@ entities: - 16489 - 16490 - 18268 + - type: Fixtures + fixtures: {} - uid: 18285 components: - type: Transform @@ -10327,6 +10604,8 @@ entities: - 13656 - 29732 - 29737 + - type: Fixtures + fixtures: {} - uid: 18286 components: - type: Transform @@ -10364,6 +10643,8 @@ entities: - 29739 - 29742 - 29743 + - type: Fixtures + fixtures: {} - uid: 18287 components: - type: Transform @@ -10398,6 +10679,8 @@ entities: - 18278 - 29740 - 29738 + - type: Fixtures + fixtures: {} - uid: 18288 components: - type: Transform @@ -10422,6 +10705,8 @@ entities: - 16482 - 16484 - 16485 + - type: Fixtures + fixtures: {} - uid: 18303 components: - type: Transform @@ -10439,6 +10724,8 @@ entities: - 18294 - 16498 - 16497 + - type: Fixtures + fixtures: {} - uid: 18305 components: - type: Transform @@ -10462,6 +10749,8 @@ entities: - 18293 - 16503 - 16504 + - type: Fixtures + fixtures: {} - uid: 18317 components: - type: Transform @@ -10475,6 +10764,8 @@ entities: - 15148 - 29776 - 15150 + - type: Fixtures + fixtures: {} - uid: 18328 components: - type: Transform @@ -10494,6 +10785,8 @@ entities: - 15129 - 15128 - 18320 + - type: Fixtures + fixtures: {} - uid: 18332 components: - type: Transform @@ -10521,6 +10814,8 @@ entities: - 75 - 24132 - 17899 + - type: Fixtures + fixtures: {} - uid: 18333 components: - type: Transform @@ -10537,6 +10832,8 @@ entities: - 16514 - 18295 - 16520 + - type: Fixtures + fixtures: {} - uid: 18336 components: - type: Transform @@ -10559,6 +10856,8 @@ entities: - 2177 - 20660 - 23087 + - type: Fixtures + fixtures: {} - uid: 18338 components: - type: Transform @@ -10572,6 +10871,8 @@ entities: - 15319 - 18290 - 15318 + - type: Fixtures + fixtures: {} - uid: 18366 components: - type: Transform @@ -10596,6 +10897,8 @@ entities: - 16529 - 18356 - 30338 + - type: Fixtures + fixtures: {} - uid: 18440 components: - type: Transform @@ -10606,25 +10909,10 @@ entities: devices: - 18369 - 18368 - - 18370 - - 18371 - 18439 - 18408 - - uid: 18443 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,13.5 - parent: 2 - - type: DeviceList - devices: - - 18371 - - 18370 - - 18441 - - 18442 - - 18438 - - 18409 - - 18410 + - type: Fixtures + fixtures: {} - uid: 18460 components: - type: Transform @@ -10635,6 +10923,8 @@ entities: - 15418 - 29818 - 15417 + - type: Fixtures + fixtures: {} - uid: 18463 components: - type: Transform @@ -10652,6 +10942,8 @@ entities: - 18457 - 14689 - 14690 + - type: Fixtures + fixtures: {} - uid: 18478 components: - type: Transform @@ -10665,6 +10957,8 @@ entities: - 14741 - 14740 - 18462 + - type: Fixtures + fixtures: {} - uid: 18480 components: - type: Transform @@ -10678,6 +10972,8 @@ entities: - 18479 - 14749 - 14748 + - type: Fixtures + fixtures: {} - uid: 18482 components: - type: Transform @@ -10691,6 +10987,8 @@ entities: - 14768 - 14767 - 18481 + - type: Fixtures + fixtures: {} - uid: 18499 components: - type: Transform @@ -10711,6 +11009,8 @@ entities: - 16550 - 18349 - 16556 + - type: Fixtures + fixtures: {} - uid: 18501 components: - type: Transform @@ -10732,6 +11032,8 @@ entities: - 18485 - 13281 - 13351 + - type: Fixtures + fixtures: {} - uid: 18530 components: - type: Transform @@ -10748,6 +11050,8 @@ entities: - 16238 - 18519 - 16237 + - type: Fixtures + fixtures: {} - uid: 18536 components: - type: Transform @@ -10763,6 +11067,8 @@ entities: - 16267 - 18521 - 16285 + - type: Fixtures + fixtures: {} - uid: 18541 components: - type: Transform @@ -10778,6 +11084,8 @@ entities: - 18540 - 16297 - 16298 + - type: Fixtures + fixtures: {} - uid: 18553 components: - type: Transform @@ -10790,6 +11098,8 @@ entities: - 16433 - 18554 - 16432 + - type: Fixtures + fixtures: {} - uid: 18564 components: - type: Transform @@ -10808,6 +11118,8 @@ entities: - 13595 - 18563 - 28561 + - type: Fixtures + fixtures: {} - uid: 18567 components: - type: Transform @@ -10823,6 +11135,8 @@ entities: - 13584 - 16794 - 18573 + - type: Fixtures + fixtures: {} - uid: 18570 components: - type: Transform @@ -10843,6 +11157,8 @@ entities: - 18577 - 13560 - 13559 + - type: Fixtures + fixtures: {} - uid: 18582 components: - type: Transform @@ -10855,6 +11171,8 @@ entities: - 15028 - 18580 - 15029 + - type: Fixtures + fixtures: {} - uid: 18584 components: - type: Transform @@ -10873,6 +11191,8 @@ entities: - 15108 - 18579 - 15109 + - type: Fixtures + fixtures: {} - uid: 18587 components: - type: Transform @@ -10886,6 +11206,8 @@ entities: - 15106 - 18585 - 15105 + - type: Fixtures + fixtures: {} - uid: 18603 components: - type: Transform @@ -10902,6 +11224,8 @@ entities: - 18605 - 15651 - 15653 + - type: Fixtures + fixtures: {} - uid: 18606 components: - type: Transform @@ -10924,6 +11248,8 @@ entities: - 18610 - 15717 - 15716 + - type: Fixtures + fixtures: {} - uid: 18611 components: - type: Transform @@ -10950,6 +11276,8 @@ entities: - 18612 - 15742 - 15743 + - type: Fixtures + fixtures: {} - uid: 18623 components: - type: Transform @@ -10969,6 +11297,8 @@ entities: - 20660 - 23087 - 413 + - type: Fixtures + fixtures: {} - uid: 18645 components: - type: Transform @@ -10981,6 +11311,8 @@ entities: - 13132 - 18647 - 14373 + - type: Fixtures + fixtures: {} - uid: 18650 components: - type: Transform @@ -10995,6 +11327,8 @@ entities: - 14384 - 18649 - 14383 + - type: Fixtures + fixtures: {} - uid: 18652 components: - type: Transform @@ -11011,6 +11345,8 @@ entities: - 14454 - 18648 - 14455 + - type: Fixtures + fixtures: {} - uid: 18658 components: - type: Transform @@ -11025,6 +11361,8 @@ entities: - 18656 - 14528 - 14527 + - type: Fixtures + fixtures: {} - uid: 18663 components: - type: Transform @@ -11047,6 +11385,8 @@ entities: - 14927 - 29877 - 14924 + - type: Fixtures + fixtures: {} - uid: 18667 components: - type: Transform @@ -11058,6 +11398,8 @@ entities: - 14923 - 18665 - 14926 + - type: Fixtures + fixtures: {} - uid: 18676 components: - type: Transform @@ -11066,6 +11408,8 @@ entities: - type: DeviceList devices: - 18669 + - type: Fixtures + fixtures: {} - uid: 18677 components: - type: Transform @@ -11074,6 +11418,8 @@ entities: - type: DeviceList devices: - 18670 + - type: Fixtures + fixtures: {} - uid: 18678 components: - type: Transform @@ -11087,6 +11433,8 @@ entities: - 14922 - 18671 - 14925 + - type: Fixtures + fixtures: {} - uid: 18687 components: - type: Transform @@ -11101,6 +11449,8 @@ entities: - 15813 - 15814 - 18686 + - type: Fixtures + fixtures: {} - uid: 18690 components: - type: Transform @@ -11112,6 +11462,8 @@ entities: - 15420 - 15419 - 30214 + - type: Fixtures + fixtures: {} - uid: 18691 components: - type: Transform @@ -11124,6 +11476,8 @@ entities: - 15710 - 15711 - 18692 + - type: Fixtures + fixtures: {} - uid: 18697 components: - type: Transform @@ -11136,6 +11490,8 @@ entities: - 15898 - 18695 - 15902 + - type: Fixtures + fixtures: {} - uid: 20717 components: - type: Transform @@ -11150,6 +11506,8 @@ entities: - 20617 - 19518 - 16774 + - type: Fixtures + fixtures: {} - uid: 21369 components: - type: Transform @@ -11162,6 +11520,8 @@ entities: - 25354 - 25353 - 21373 + - type: Fixtures + fixtures: {} - uid: 21371 components: - type: Transform @@ -11175,6 +11535,8 @@ entities: - 25352 - 21451 - 25298 + - type: Fixtures + fixtures: {} - uid: 21415 components: - type: Transform @@ -11185,6 +11547,8 @@ entities: devices: - 21413 - 21414 + - type: Fixtures + fixtures: {} - uid: 21456 components: - type: Transform @@ -11198,6 +11562,8 @@ entities: - 25352 - 25293 - 21453 + - type: Fixtures + fixtures: {} - uid: 21504 components: - type: Transform @@ -11214,6 +11580,8 @@ entities: - 30227 - 30228 - 30225 + - type: Fixtures + fixtures: {} - uid: 22155 components: - type: Transform @@ -11223,6 +11591,8 @@ entities: devices: - 21709 - 21721 + - type: Fixtures + fixtures: {} - uid: 23056 components: - type: Transform @@ -11241,6 +11611,8 @@ entities: - 21182 - 23058 - 21183 + - type: Fixtures + fixtures: {} - uid: 23060 components: - type: Transform @@ -11254,6 +11626,8 @@ entities: - 23061 - 23052 - 23053 + - type: Fixtures + fixtures: {} - uid: 23235 components: - type: Transform @@ -11270,6 +11644,8 @@ entities: - 12062 - 18330 - 11291 + - type: Fixtures + fixtures: {} - uid: 23531 components: - type: Transform @@ -11280,6 +11656,8 @@ entities: devices: - 21389 - 22882 + - type: Fixtures + fixtures: {} - uid: 23679 components: - type: Transform @@ -11295,6 +11673,8 @@ entities: - 13599 - 13598 - 18486 + - type: Fixtures + fixtures: {} - uid: 23682 components: - type: Transform @@ -11311,6 +11691,8 @@ entities: - 23706 - 23678 - 16775 + - type: Fixtures + fixtures: {} - uid: 23683 components: - type: Transform @@ -11326,6 +11708,8 @@ entities: - 18488 - 18489 - 18487 + - type: Fixtures + fixtures: {} - uid: 23903 components: - type: Transform @@ -11337,6 +11721,8 @@ entities: - 23904 - 23901 - 23902 + - type: Fixtures + fixtures: {} - uid: 23907 components: - type: Transform @@ -11351,6 +11737,8 @@ entities: - 30819 - 30821 - 30822 + - type: Fixtures + fixtures: {} - uid: 23909 components: - type: Transform @@ -11362,6 +11750,8 @@ entities: - 23908 - 23910 - 23911 + - type: Fixtures + fixtures: {} - uid: 23915 components: - type: Transform @@ -11373,6 +11763,8 @@ entities: - 23914 - 23912 - 23913 + - type: Fixtures + fixtures: {} - uid: 23917 components: - type: Transform @@ -11382,6 +11774,8 @@ entities: devices: - 23921 - 23916 + - type: Fixtures + fixtures: {} - uid: 23918 components: - type: Transform @@ -11393,12 +11787,16 @@ entities: - 23920 - 23916 - 23919 + - type: Fixtures + fixtures: {} - uid: 23926 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23927 components: - type: Transform @@ -11412,6 +11810,8 @@ entities: - 15423 - 23923 - 23925 + - type: Fixtures + fixtures: {} - uid: 24091 components: - type: Transform @@ -11425,6 +11825,8 @@ entities: - 24087 - 15357 - 15356 + - type: Fixtures + fixtures: {} - uid: 25567 components: - type: Transform @@ -11435,6 +11837,8 @@ entities: devices: - 26587 - 24295 + - type: Fixtures + fixtures: {} - uid: 25568 components: - type: Transform @@ -11444,6 +11848,8 @@ entities: devices: - 21397 - 22267 + - type: Fixtures + fixtures: {} - uid: 26203 components: - type: Transform @@ -11454,6 +11860,8 @@ entities: devices: - 22384 - 26221 + - type: Fixtures + fixtures: {} - uid: 26568 components: - type: Transform @@ -11463,6 +11871,8 @@ entities: devices: - 21390 - 24297 + - type: Fixtures + fixtures: {} - uid: 28262 components: - type: Transform @@ -11473,6 +11883,8 @@ entities: devices: - 25359 - 28277 + - type: Fixtures + fixtures: {} - uid: 28414 components: - type: Transform @@ -11484,6 +11896,8 @@ entities: - 14005 - 14006 - 29930 + - type: Fixtures + fixtures: {} - uid: 28611 components: - type: Transform @@ -11494,6 +11908,8 @@ entities: - 3136 - 9112 - 28612 + - type: Fixtures + fixtures: {} - uid: 28879 components: - type: Transform @@ -11513,6 +11929,8 @@ entities: - 18468 - 18471 - 18472 + - type: Fixtures + fixtures: {} - uid: 28882 components: - type: Transform @@ -11524,6 +11942,8 @@ entities: - 29848 - 15325 - 15326 + - type: Fixtures + fixtures: {} - uid: 29040 components: - type: Transform @@ -11535,6 +11955,8 @@ entities: - 2175 - 28966 - 29041 + - type: Fixtures + fixtures: {} - uid: 29459 components: - type: Transform @@ -11547,6 +11969,8 @@ entities: - 15828 - 18618 - 18619 + - type: Fixtures + fixtures: {} - uid: 29460 components: - type: Transform @@ -11558,6 +11982,8 @@ entities: - 15850 - 15849 - 29461 + - type: Fixtures + fixtures: {} - uid: 29462 components: - type: Transform @@ -11571,6 +11997,8 @@ entities: - 15168 - 18602 - 18601 + - type: Fixtures + fixtures: {} - uid: 29773 components: - type: Transform @@ -11582,6 +12010,8 @@ entities: - 14954 - 14953 - 29772 + - type: Fixtures + fixtures: {} - uid: 29789 components: - type: Transform @@ -11592,6 +12022,8 @@ entities: - 16345 - 16346 - 29791 + - type: Fixtures + fixtures: {} - uid: 29792 components: - type: Transform @@ -11602,6 +12034,8 @@ entities: - 29793 - 16357 - 16358 + - type: Fixtures + fixtures: {} - uid: 29794 components: - type: Transform @@ -11613,12 +12047,16 @@ entities: - 29797 - 16474 - 16477 + - type: Fixtures + fixtures: {} - uid: 29795 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29796 components: - type: Transform @@ -11630,12 +12068,16 @@ entities: - 16476 - 16475 - 29798 + - type: Fixtures + fixtures: {} - uid: 29799 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29800 components: - type: Transform @@ -11648,6 +12090,8 @@ entities: - 15851 - 15852 - 29801 + - type: Fixtures + fixtures: {} - uid: 29802 components: - type: Transform @@ -11659,6 +12103,8 @@ entities: - 14764 - 14763 - 29804 + - type: Fixtures + fixtures: {} - uid: 29803 components: - type: Transform @@ -11670,6 +12116,8 @@ entities: - 28968 - 14766 - 14765 + - type: Fixtures + fixtures: {} - uid: 29805 components: - type: Transform @@ -11681,6 +12129,8 @@ entities: - 29808 - 16262 - 16263 + - type: Fixtures + fixtures: {} - uid: 29806 components: - type: Transform @@ -11692,6 +12142,8 @@ entities: - 29807 - 16251 - 16252 + - type: Fixtures + fixtures: {} - uid: 29814 components: - type: Transform @@ -11703,6 +12155,8 @@ entities: - 29815 - 29820 - 15415 + - type: Fixtures + fixtures: {} - uid: 29819 components: - type: Transform @@ -11714,6 +12168,8 @@ entities: - 15386 - 29817 - 29813 + - type: Fixtures + fixtures: {} - uid: 29842 components: - type: Transform @@ -11724,6 +12180,8 @@ entities: - 29927 - 14052 - 14057 + - type: Fixtures + fixtures: {} - uid: 29849 components: - type: Transform @@ -11735,6 +12193,8 @@ entities: - 14989 - 14990 - 29850 + - type: Fixtures + fixtures: {} - uid: 29851 components: - type: Transform @@ -11745,6 +12205,8 @@ entities: devices: - 14960 - 14961 + - type: Fixtures + fixtures: {} - uid: 29852 components: - type: Transform @@ -11755,6 +12217,8 @@ entities: devices: - 14955 - 14952 + - type: Fixtures + fixtures: {} - uid: 29853 components: - type: Transform @@ -11765,6 +12229,8 @@ entities: devices: - 14974 - 14975 + - type: Fixtures + fixtures: {} - uid: 29854 components: - type: Transform @@ -11775,6 +12241,8 @@ entities: - 15157 - 15156 - 29855 + - type: Fixtures + fixtures: {} - uid: 29856 components: - type: Transform @@ -11785,6 +12253,8 @@ entities: - 879 - 29857 - 56 + - type: Fixtures + fixtures: {} - uid: 29858 components: - type: Transform @@ -11795,6 +12265,8 @@ entities: devices: - 15117 - 15118 + - type: Fixtures + fixtures: {} - uid: 29859 components: - type: Transform @@ -11805,6 +12277,8 @@ entities: devices: - 16188 - 16189 + - type: Fixtures + fixtures: {} - uid: 29860 components: - type: Transform @@ -11816,6 +12290,8 @@ entities: - 16136 - 16137 - 29862 + - type: Fixtures + fixtures: {} - uid: 29861 components: - type: Transform @@ -11826,23 +12302,16 @@ entities: - 16125 - 16126 - 29863 - - uid: 29864 - components: - - type: Transform - pos: 52.5,15.5 - parent: 2 - - type: DeviceList - devices: - - 18412 - - 18411 - - 29866 - - 29865 + - type: Fixtures + fixtures: {} - uid: 29867 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29868 components: - type: Transform @@ -11853,6 +12322,8 @@ entities: devices: - 14528 - 14527 + - type: Fixtures + fixtures: {} - uid: 29869 components: - type: Transform @@ -11863,6 +12334,8 @@ entities: - 19072 - 19074 - 29871 + - type: Fixtures + fixtures: {} - uid: 29870 components: - type: Transform @@ -11874,12 +12347,16 @@ entities: - 14383 - 18649 - 14384 + - type: Fixtures + fixtures: {} - uid: 29872 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29873 components: - type: Transform @@ -11891,6 +12368,8 @@ entities: - 14927 - 29877 - 14924 + - type: Fixtures + fixtures: {} - uid: 29874 components: - type: Transform @@ -11902,6 +12381,8 @@ entities: - 29876 - 14939 - 14938 + - type: Fixtures + fixtures: {} - uid: 29880 components: - type: Transform @@ -11912,6 +12393,8 @@ entities: - 29706 - 29707 - 29881 + - type: Fixtures + fixtures: {} - uid: 29883 components: - type: Transform @@ -11923,6 +12406,8 @@ entities: - 13735 - 29885 - 13736 + - type: Fixtures + fixtures: {} - uid: 29884 components: - type: Transform @@ -11934,6 +12419,8 @@ entities: - 14675 - 14674 - 29882 + - type: Fixtures + fixtures: {} - uid: 29886 components: - type: Transform @@ -11945,12 +12432,16 @@ entities: - 29887 - 14088 - 14089 + - type: Fixtures + fixtures: {} - uid: 29893 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29894 components: - type: Transform @@ -11962,11 +12453,15 @@ entities: - 29897 - 14511 - 14512 + - type: Fixtures + fixtures: {} - uid: 29895 components: - type: Transform pos: 55.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29896 components: - type: Transform @@ -11977,6 +12472,8 @@ entities: - 29898 - 14513 - 14514 + - type: Fixtures + fixtures: {} - uid: 29899 components: - type: Transform @@ -11988,6 +12485,8 @@ entities: - 29901 - 16449 - 16448 + - type: Fixtures + fixtures: {} - uid: 29900 components: - type: Transform @@ -11998,6 +12497,8 @@ entities: devices: - 16447 - 16450 + - type: Fixtures + fixtures: {} - uid: 29902 components: - type: Transform @@ -12009,6 +12510,8 @@ entities: - 16337 - 16335 - 29903 + - type: Fixtures + fixtures: {} - uid: 29904 components: - type: Transform @@ -12020,6 +12523,8 @@ entities: - 9112 - 28612 - 3136 + - type: Fixtures + fixtures: {} - uid: 29905 components: - type: Transform @@ -12031,6 +12536,8 @@ entities: - 29908 - 13725 - 13724 + - type: Fixtures + fixtures: {} - uid: 29906 components: - type: Transform @@ -12042,6 +12549,8 @@ entities: - 29907 - 13722 - 13723 + - type: Fixtures + fixtures: {} - uid: 29911 components: - type: Transform @@ -12053,6 +12562,8 @@ entities: - 29914 - 15242 - 15243 + - type: Fixtures + fixtures: {} - uid: 29912 components: - type: Transform @@ -12064,12 +12575,16 @@ entities: - 13980 - 13962 - 29913 + - type: Fixtures + fixtures: {} - uid: 29916 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29917 components: - type: Transform @@ -12081,6 +12596,8 @@ entities: - 15809 - 15811 - 29919 + - type: Fixtures + fixtures: {} - uid: 29918 components: - type: Transform @@ -12092,11 +12609,15 @@ entities: - 29915 - 15797 - 15796 + - type: Fixtures + fixtures: {} - uid: 29920 components: - type: Transform pos: -4.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29921 components: - type: Transform @@ -12107,6 +12628,8 @@ entities: - 29922 - 15652 - 15654 + - type: Fixtures + fixtures: {} - uid: 29924 components: - type: Transform @@ -12118,6 +12641,8 @@ entities: - 14055 - 14020 - 29931 + - type: Fixtures + fixtures: {} - uid: 29925 components: - type: Transform @@ -12129,6 +12654,8 @@ entities: - 29929 - 14059 - 14060 + - type: Fixtures + fixtures: {} - uid: 29928 components: - type: Transform @@ -12140,6 +12667,8 @@ entities: - 29926 - 14130 - 14131 + - type: Fixtures + fixtures: {} - uid: 29932 components: - type: Transform @@ -12150,6 +12679,8 @@ entities: - 15900 - 29935 - 15904 + - type: Fixtures + fixtures: {} - uid: 29933 components: - type: Transform @@ -12160,11 +12691,15 @@ entities: - 15905 - 15901 - 29936 + - type: Fixtures + fixtures: {} - uid: 29934 components: - type: Transform pos: -24.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29938 components: - type: Transform @@ -12177,6 +12712,8 @@ entities: - 15149 - 15151 - 29940 + - type: Fixtures + fixtures: {} - uid: 30357 components: - type: Transform @@ -12201,6 +12738,8 @@ entities: - 30328 - 30329 - 30327 + - type: Fixtures + fixtures: {} - uid: 30360 components: - type: Transform @@ -12219,6 +12758,8 @@ entities: - 30330 - 4194 - 3466 + - type: Fixtures + fixtures: {} - uid: 30363 components: - type: Transform @@ -12235,6 +12776,8 @@ entities: - 3468 - 18164 - 13393 + - type: Fixtures + fixtures: {} - uid: 30364 components: - type: Transform @@ -12249,6 +12792,8 @@ entities: - 29990 - 4838 - 3698 + - type: Fixtures + fixtures: {} - uid: 30365 components: - type: Transform @@ -12269,6 +12814,8 @@ entities: - 3558 - 3852 - 3406 + - type: Fixtures + fixtures: {} - uid: 30366 components: - type: Transform @@ -12290,6 +12837,8 @@ entities: - 3857 - 3410 - 3816 + - type: Fixtures + fixtures: {} - uid: 30402 components: - type: Transform @@ -12307,6 +12856,8 @@ entities: - 3863 - 3818 - 3411 + - type: Fixtures + fixtures: {} - uid: 30403 components: - type: Transform @@ -12323,6 +12874,8 @@ entities: - 30355 - 30339 - 30340 + - type: Fixtures + fixtures: {} - uid: 30404 components: - type: Transform @@ -12333,12 +12886,14 @@ entities: devices: - 11912 - 4862 - - 15485 - 30343 - 30342 - 30344 - 30345 - 30341 + - 29292 + - type: Fixtures + fixtures: {} - uid: 30826 components: - type: Transform @@ -12355,8 +12910,65 @@ entities: - 30821 - 30819 - 12226 + - type: Fixtures + fixtures: {} + - uid: 31038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,12.5 + parent: 2 + - type: DeviceList + devices: + - 31006 + - 31007 + - 2381 + - 2380 + - 30992 + - 30993 + - 30996 + - type: Fixtures + fixtures: {} + - uid: 31039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 31022 + - 30964 + - 30992 + - 30993 + - 30994 + - 30995 + - 28511 + - 12919 + - type: Fixtures + fixtures: {} + - uid: 31040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,24.5 + parent: 2 + - type: DeviceList + devices: + - 30994 + - 30995 + - 30999 + - 31035 + - 31036 + - type: Fixtures + fixtures: {} - proto: AirCanister entities: + - uid: 2674 + components: + - type: Transform + pos: 34.5,50.5 + parent: 2 - uid: 4223 components: - type: Transform @@ -12431,11 +13043,6 @@ entities: parent: 2 - type: Physics bodyType: Static - - uid: 9470 - components: - - type: Transform - pos: 39.5,50.5 - parent: 2 - uid: 9747 components: - type: Transform @@ -12457,10 +13064,10 @@ entities: parent: 2 - type: Physics bodyType: Static - - uid: 18930 + - uid: 12878 components: - type: Transform - pos: 44.5,18.5 + pos: 45.5,22.5 parent: 2 - uid: 18935 components: @@ -12985,18 +13592,6 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,-35.5 parent: 2 -- proto: AirlockCommandGlass - entities: - - uid: 12715 - components: - - type: Transform - pos: 55.5,17.5 - parent: 2 - - uid: 12717 - components: - - type: Transform - pos: 55.5,15.5 - parent: 2 - proto: AirlockCommandGlassLocked entities: - uid: 2448 @@ -13041,20 +13636,32 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,14.5 parent: 2 + - uid: 20251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,19.5 + parent: 2 + - uid: 29363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,19.5 + parent: 2 + - uid: 29575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,22.5 + parent: 2 + - uid: 31095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,22.5 + parent: 2 - proto: AirlockCommandLocked entities: - - uid: 6908 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,10.5 - parent: 2 - - uid: 6909 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,10.5 - parent: 2 - uid: 6910 components: - type: Transform @@ -13067,6 +13674,16 @@ entities: rot: -1.5707963267948966 rad pos: 60.5,6.5 parent: 2 + - uid: 12880 + components: + - type: Transform + pos: 60.5,12.5 + parent: 2 + - uid: 13027 + components: + - type: Transform + pos: 61.5,12.5 + parent: 2 - uid: 20698 components: - type: Transform @@ -13283,6 +13900,12 @@ entities: - type: Transform pos: -18.5,19.5 parent: 2 + - uid: 12828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,29.5 + parent: 2 - uid: 13005 components: - type: Transform @@ -13299,12 +13922,6 @@ entities: - type: Transform pos: -29.5,-2.5 parent: 2 - - uid: 20486 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,26.5 - parent: 2 - uid: 23669 components: - type: Transform @@ -13625,21 +14242,6 @@ entities: - type: Transform pos: 41.5,49.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6829: - - - DoorStatus - - DoorBolt - - uid: 6829 - components: - - type: Transform - pos: 37.5,49.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6828: - - - DoorStatus - - DoorBolt - uid: 7615 components: - type: Transform @@ -13736,11 +14338,22 @@ entities: 8052: - - DoorStatus - DoorBolt - - uid: 13059 + - uid: 12739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,26.5 + rot: 1.5707963267948966 rad + pos: 53.5,31.5 + parent: 2 + - uid: 12743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,29.5 + parent: 2 + - uid: 12861 + components: + - type: Transform + pos: 38.5,49.5 parent: 2 - uid: 19973 components: @@ -13768,11 +14381,6 @@ entities: 19973: - - DoorStatus - DoorBolt - - uid: 29371 - components: - - type: Transform - pos: 53.5,26.5 - parent: 2 - proto: AirlockExternalGlassLocked entities: - uid: 3778 @@ -14906,7 +15514,7 @@ entities: pos: -22.5,26.5 parent: 2 - type: Door - secondsUntilStateChange: -187932.16 + secondsUntilStateChange: -213190.27 state: Opening - type: DeviceLinkSource lastSignals: @@ -15762,7 +16370,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -286760.75 + secondsUntilStateChange: -312018.88 state: Opening - uid: 6934 components: @@ -15774,7 +16382,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -286763.38 + secondsUntilStateChange: -312021.5 state: Opening - uid: 6935 components: @@ -15786,7 +16394,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -286762.22 + secondsUntilStateChange: -312020.34 state: Opening - uid: 6936 components: @@ -15797,7 +16405,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -286761.44 + secondsUntilStateChange: -312019.56 state: Opening - proto: AirlockTheatreLocked entities: @@ -15940,6 +16548,14 @@ entities: - type: DeviceNetwork deviceLists: - 12885 + - uid: 12919 + components: + - type: Transform + pos: 59.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31039 - uid: 12937 components: - type: Transform @@ -15982,15 +16598,6 @@ entities: - type: DeviceNetwork deviceLists: - 30403 - - uid: 15485 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 30404 - uid: 18164 components: - type: Transform @@ -16219,21 +16826,6 @@ entities: - type: DeviceNetwork deviceLists: - 15512 - - uid: 18437 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,16.5 - parent: 2 - - uid: 18438 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18443 - uid: 18439 components: - type: Transform @@ -16908,6 +17500,14 @@ entities: - type: DeviceNetwork deviceLists: - 28262 + - uid: 28511 + components: + - type: Transform + pos: 51.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31039 - uid: 28591 components: - type: Transform @@ -16953,6 +17553,14 @@ entities: - type: DeviceNetwork deviceLists: - 29040 + - uid: 29292 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 30404 - uid: 29772 components: - type: Transform @@ -17126,22 +17734,6 @@ entities: - type: DeviceNetwork deviceLists: - 29861 - - uid: 29865 - components: - - type: Transform - pos: 49.5,14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29864 - - uid: 29866 - components: - - type: Transform - pos: 49.5,21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29864 - uid: 29871 components: - type: Transform @@ -17411,6 +18003,22 @@ entities: - type: DeviceNetwork deviceLists: - 21504 + - uid: 30996 + components: + - type: Transform + pos: 55.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31038 + - uid: 30999 + components: + - type: Transform + pos: 55.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31040 - proto: AirTank entities: - uid: 18893 @@ -17491,224 +18099,292 @@ entities: rot: 3.141592653589793 rad pos: -29.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1598 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1689 components: - type: Transform pos: -7.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1691 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2001 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2763 components: - type: Transform pos: 12.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3049 components: - type: Transform pos: 43.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3610 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4506 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5517 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5556 components: - type: Transform pos: 2.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5660 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5974 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6039 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6040 components: - type: Transform pos: -19.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6260 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6308 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7912 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8969 components: - type: Transform pos: -31.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9133 components: - type: Transform pos: -40.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9190 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10615 components: - type: Transform pos: 3.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10974 components: - type: Transform pos: 2.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11710 components: - type: Transform pos: -47.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11726 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11992 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12202 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12311 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-31.5 parent: 2 - - uid: 13029 - components: - - type: MetaData - name: AI Upload APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,11.5 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 14169 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15444 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15473 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15483 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15525 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18166 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22494 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-4.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 23684 components: - type: Transform pos: -2.5,44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29223 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 30812 components: - type: Transform pos: -45.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: APCElectronics entities: - uid: 5818 @@ -17730,23 +18406,47 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 732 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 18883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,12.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 20247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,22.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 24769 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-35.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28757 components: - type: Transform pos: 7.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: APCHyperCapacity entities: - uid: 8 @@ -17755,14 +18455,8 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,45.5 parent: 2 - - uid: 884 - components: - - type: MetaData - name: AI APC - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,17.5 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 2023 components: - type: MetaData @@ -17771,11 +18465,15 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10076 components: - type: Transform pos: 12.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: APCSuperCapacity entities: - uid: 733 @@ -17784,12 +18482,16 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10518 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ArrivalsShuttleTimer entities: - uid: 29785 @@ -17798,12 +18500,14 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ArtistCircuitBoard entities: - uid: 29446 components: - type: Transform - pos: 58.485508,22.173643 + pos: 60.671783,21.611725 parent: 2 - proto: Ash entities: @@ -17859,7 +18563,7 @@ entities: - uid: 29359 components: - type: Transform - pos: 58.52338,18.753656 + pos: 57.573837,13.584124 parent: 2 - proto: AsteroidRock entities: @@ -37966,12 +38670,16 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8242 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-53.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BarSignEngineChange entities: - uid: 18505 @@ -37979,6 +38687,8 @@ entities: - type: Transform pos: 14.5,38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BarSpoon entities: - uid: 29242 @@ -38593,32 +39303,25 @@ entities: - type: Transform pos: 64.5,8.5 parent: 2 - - uid: 20268 - components: - - type: Transform - pos: 64.5,7.5 - parent: 2 - uid: 20644 components: - type: Transform pos: 64.5,9.5 parent: 2 -- proto: BlastDoorOpen - entities: - - uid: 12801 + - uid: 20882 components: - type: Transform - pos: 56.5,17.5 + pos: 64.5,10.5 parent: 2 - - uid: 12802 + - uid: 23516 components: - type: Transform - pos: 56.5,16.5 + pos: 64.5,7.5 parent: 2 - - uid: 12803 + - uid: 29440 components: - type: Transform - pos: 56.5,15.5 + pos: 64.5,11.5 parent: 2 - proto: BlockGameArcade entities: @@ -39403,10 +40106,10 @@ entities: - type: Transform pos: -7.5,-54.5 parent: 2 - - uid: 20271 + - uid: 12920 components: - type: Transform - pos: 61.5,16.5 + pos: 50.5,16.5 parent: 2 - proto: BoxBeaker entities: @@ -39521,12 +40224,6 @@ entities: parent: 2 - proto: BoxFolderBlue entities: - - uid: 2673 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.41682,20.629406 - parent: 2 - uid: 9380 components: - type: Transform @@ -39545,24 +40242,24 @@ entities: rot: 3.141592653589793 rad pos: 26.243004,4.587342 parent: 2 - - uid: 29292 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.243004,4.587342 - parent: 2 - uid: 29891 components: - type: Transform pos: 51.56539,-7.444486 parent: 2 -- proto: BoxFolderClipboard - entities: - - uid: 2695 + - uid: 31087 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.752617,20.619299 + pos: 31.899996,20.634655 + parent: 2 +- proto: BoxFolderClipboard + entities: + - uid: 3594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.63958,20.591486 parent: 2 - type: ContainerContainer containers: @@ -39702,12 +40399,6 @@ entities: canCollide: False - proto: BoxFolderRed entities: - - uid: 2674 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.88557,20.613781 - parent: 2 - uid: 3454 components: - type: Transform @@ -39752,6 +40443,12 @@ entities: - type: Transform pos: 46.29923,-4.2670507 parent: 2 + - uid: 31089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.160414,20.697155 + parent: 2 - proto: BoxFolderWhite entities: - uid: 1115 @@ -40063,6 +40760,30 @@ entities: rot: 3.141592653589793 rad pos: -24.10293,-40.495407 parent: 2 + - uid: 30900 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30901 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30902 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30903 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False - proto: Brutepack entities: - uid: 29650 @@ -40151,6 +40872,12 @@ entities: rot: 3.141592653589793 rad pos: 45.28038,-7.5 parent: 2 + - uid: 20498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,14.5 + parent: 2 - uid: 24355 components: - type: Transform @@ -40169,12 +40896,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-36.5 parent: 2 - - uid: 24380 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,18.5 - parent: 2 - uid: 24390 components: - type: Transform @@ -40206,11 +40927,15 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-48.5 parent: 2 - - uid: 24379 + - uid: 30984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,11.5 + pos: 56.5,26.5 + parent: 2 + - uid: 30985 + components: + - type: Transform + pos: 54.5,26.5 parent: 2 - proto: ButtonFrameExit entities: @@ -41843,6 +42568,16 @@ entities: - type: Transform pos: -41.5,-39.5 parent: 2 + - uid: 2372 + components: + - type: Transform + pos: 60.5,24.5 + parent: 2 + - uid: 2373 + components: + - type: Transform + pos: 50.5,24.5 + parent: 2 - uid: 2472 components: - type: Transform @@ -43578,6 +44313,21 @@ entities: - type: Transform pos: -15.5,21.5 parent: 2 + - uid: 3590 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 3591 + components: + - type: Transform + pos: 50.5,29.5 + parent: 2 + - uid: 3592 + components: + - type: Transform + pos: 51.5,29.5 + parent: 2 - uid: 3611 components: - type: Transform @@ -44468,11 +45218,6 @@ entities: - type: Transform pos: 56.5,-31.5 parent: 2 - - uid: 4823 - components: - - type: Transform - pos: 60.5,18.5 - parent: 2 - uid: 4954 components: - type: Transform @@ -48183,11 +48928,6 @@ entities: - type: Transform pos: -0.5,52.5 parent: 2 - - uid: 9396 - components: - - type: Transform - pos: 50.5,16.5 - parent: 2 - uid: 9398 components: - type: Transform @@ -49163,11 +49903,6 @@ entities: - type: Transform pos: 34.5,-45.5 parent: 2 - - uid: 10945 - components: - - type: Transform - pos: 57.5,11.5 - parent: 2 - uid: 10950 components: - type: Transform @@ -51618,145 +52353,25 @@ entities: - type: Transform pos: 6.5,28.5 parent: 2 - - uid: 12854 + - uid: 12736 components: - type: Transform - pos: 52.5,17.5 + pos: 53.5,30.5 parent: 2 - - uid: 12855 + - uid: 12737 components: - type: Transform - pos: 53.5,17.5 + pos: 53.5,29.5 parent: 2 - - uid: 12856 + - uid: 12900 components: - type: Transform - pos: 53.5,16.5 + pos: 55.5,20.5 parent: 2 - - uid: 12857 + - uid: 12910 components: - type: Transform - pos: 53.5,15.5 - parent: 2 - - uid: 12858 - components: - - type: Transform - pos: 53.5,14.5 - parent: 2 - - uid: 12859 - components: - - type: Transform - pos: 53.5,18.5 - parent: 2 - - uid: 12860 - components: - - type: Transform - pos: 52.5,18.5 - parent: 2 - - uid: 12861 - components: - - type: Transform - pos: 51.5,18.5 - parent: 2 - - uid: 12862 - components: - - type: Transform - pos: 50.5,18.5 - parent: 2 - - uid: 12863 - components: - - type: Transform - pos: 49.5,18.5 - parent: 2 - - uid: 12864 - components: - - type: Transform - pos: 49.5,17.5 - parent: 2 - - uid: 12865 - components: - - type: Transform - pos: 49.5,16.5 - parent: 2 - - uid: 12866 - components: - - type: Transform - pos: 49.5,15.5 - parent: 2 - - uid: 12867 - components: - - type: Transform - pos: 49.5,14.5 - parent: 2 - - uid: 12868 - components: - - type: Transform - pos: 50.5,14.5 - parent: 2 - - uid: 12869 - components: - - type: Transform - pos: 50.5,14.5 - parent: 2 - - uid: 12870 - components: - - type: Transform - pos: 51.5,14.5 - parent: 2 - - uid: 12871 - components: - - type: Transform - pos: 52.5,14.5 - parent: 2 - - uid: 12872 - components: - - type: Transform - pos: 49.5,19.5 - parent: 2 - - uid: 12873 - components: - - type: Transform - pos: 49.5,20.5 - parent: 2 - - uid: 12874 - components: - - type: Transform - pos: 49.5,21.5 - parent: 2 - - uid: 12875 - components: - - type: Transform - pos: 50.5,21.5 - parent: 2 - - uid: 12876 - components: - - type: Transform - pos: 51.5,21.5 - parent: 2 - - uid: 12877 - components: - - type: Transform - pos: 52.5,21.5 - parent: 2 - - uid: 12878 - components: - - type: Transform - pos: 53.5,21.5 - parent: 2 - - uid: 12879 - components: - - type: Transform - pos: 53.5,20.5 - parent: 2 - - uid: 12880 - components: - - type: Transform - pos: 53.5,19.5 - parent: 2 - - uid: 12881 - components: - - type: Transform - pos: 54.5,16.5 + pos: 57.5,17.5 parent: 2 - uid: 12983 components: @@ -51778,71 +52393,6 @@ entities: - type: Transform pos: 62.5,-5.5 parent: 2 - - uid: 13039 - components: - - type: Transform - pos: 58.5,11.5 - parent: 2 - - uid: 13040 - components: - - type: Transform - pos: 59.5,11.5 - parent: 2 - - uid: 13041 - components: - - type: Transform - pos: 60.5,11.5 - parent: 2 - - uid: 13042 - components: - - type: Transform - pos: 60.5,12.5 - parent: 2 - - uid: 13043 - components: - - type: Transform - pos: 60.5,13.5 - parent: 2 - - uid: 13044 - components: - - type: Transform - pos: 60.5,14.5 - parent: 2 - - uid: 13045 - components: - - type: Transform - pos: 60.5,15.5 - parent: 2 - - uid: 13046 - components: - - type: Transform - pos: 60.5,16.5 - parent: 2 - - uid: 13047 - components: - - type: Transform - pos: 60.5,17.5 - parent: 2 - - uid: 13048 - components: - - type: Transform - pos: 59.5,16.5 - parent: 2 - - uid: 13049 - components: - - type: Transform - pos: 58.5,16.5 - parent: 2 - - uid: 13050 - components: - - type: Transform - pos: 57.5,16.5 - parent: 2 - - uid: 13052 - components: - - type: Transform - pos: 55.5,16.5 - parent: 2 - uid: 13053 components: - type: Transform @@ -51883,6 +52433,11 @@ entities: - type: Transform pos: 59.5,-7.5 parent: 2 + - uid: 13076 + components: + - type: Transform + pos: 52.5,24.5 + parent: 2 - uid: 13078 components: - type: Transform @@ -52458,6 +53013,11 @@ entities: - type: Transform pos: -49.5,0.5 parent: 2 + - uid: 17457 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 - uid: 17468 components: - type: Transform @@ -52708,6 +53268,11 @@ entities: - type: Transform pos: -46.5,-33.5 parent: 2 + - uid: 17524 + components: + - type: Transform + pos: 48.5,29.5 + parent: 2 - uid: 17956 components: - type: Transform @@ -53133,11 +53698,71 @@ entities: - type: Transform pos: 20.5,-18.5 parent: 2 + - uid: 18229 + components: + - type: Transform + pos: 49.5,29.5 + parent: 2 - uid: 18364 components: - type: Transform pos: 42.5,-2.5 parent: 2 + - uid: 18413 + components: + - type: Transform + pos: 55.5,17.5 + parent: 2 + - uid: 18417 + components: + - type: Transform + pos: 51.5,23.5 + parent: 2 + - uid: 18434 + components: + - type: Transform + pos: 51.5,20.5 + parent: 2 + - uid: 18435 + components: + - type: Transform + pos: 59.5,22.5 + parent: 2 + - uid: 18436 + components: + - type: Transform + pos: 60.5,16.5 + parent: 2 + - uid: 18437 + components: + - type: Transform + pos: 60.5,14.5 + parent: 2 + - uid: 18438 + components: + - type: Transform + pos: 55.5,16.5 + parent: 2 + - uid: 18441 + components: + - type: Transform + pos: 54.5,17.5 + parent: 2 + - uid: 18442 + components: + - type: Transform + pos: 56.5,17.5 + parent: 2 + - uid: 18443 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 + - uid: 18444 + components: + - type: Transform + pos: 59.5,23.5 + parent: 2 - uid: 18503 components: - type: Transform @@ -53148,6 +53773,11 @@ entities: - type: Transform pos: 25.5,35.5 parent: 2 + - uid: 18557 + components: + - type: Transform + pos: 58.5,20.5 + parent: 2 - uid: 18985 components: - type: Transform @@ -53443,6 +54073,26 @@ entities: - type: Transform pos: -47.5,-55.5 parent: 2 + - uid: 20245 + components: + - type: Transform + pos: 53.5,22.5 + parent: 2 + - uid: 20250 + components: + - type: Transform + pos: 60.5,20.5 + parent: 2 + - uid: 20276 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 20487 + components: + - type: Transform + pos: 51.5,24.5 + parent: 2 - uid: 20490 components: - type: Transform @@ -53458,31 +54108,6 @@ entities: - type: Transform pos: 43.5,26.5 parent: 2 - - uid: 20493 - components: - - type: Transform - pos: 44.5,26.5 - parent: 2 - - uid: 20494 - components: - - type: Transform - pos: 45.5,26.5 - parent: 2 - - uid: 20495 - components: - - type: Transform - pos: 46.5,26.5 - parent: 2 - - uid: 20496 - components: - - type: Transform - pos: 47.5,26.5 - parent: 2 - - uid: 20497 - components: - - type: Transform - pos: 48.5,26.5 - parent: 2 - uid: 20502 components: - type: Transform @@ -55008,6 +55633,11 @@ entities: - type: Transform pos: -6.5,52.5 parent: 2 + - uid: 23422 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 - uid: 23430 components: - type: Transform @@ -55028,6 +55658,11 @@ entities: - type: Transform pos: 32.5,40.5 parent: 2 + - uid: 23510 + components: + - type: Transform + pos: 50.5,18.5 + parent: 2 - uid: 23511 components: - type: Transform @@ -55083,11 +55718,6 @@ entities: - type: Transform pos: -2.5,41.5 parent: 2 - - uid: 23759 - components: - - type: Transform - pos: 51.5,16.5 - parent: 2 - uid: 23846 components: - type: Transform @@ -55143,6 +55773,11 @@ entities: - type: Transform pos: -46.5,-55.5 parent: 2 + - uid: 24124 + components: + - type: Transform + pos: 59.5,21.5 + parent: 2 - uid: 24141 components: - type: Transform @@ -57913,6 +58548,21 @@ entities: - type: Transform pos: 17.5,-51.5 parent: 2 + - uid: 28812 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 28813 + components: + - type: Transform + pos: 54.5,15.5 + parent: 2 + - uid: 28814 + components: + - type: Transform + pos: 53.5,23.5 + parent: 2 - uid: 28908 components: - type: Transform @@ -57983,11 +58633,21 @@ entities: - type: Transform pos: -44.5,37.5 parent: 2 + - uid: 29002 + components: + - type: Transform + pos: 55.5,12.5 + parent: 2 - uid: 29036 components: - type: Transform pos: -14.5,19.5 parent: 2 + - uid: 29074 + components: + - type: Transform + pos: 53.5,17.5 + parent: 2 - uid: 29077 components: - type: Transform @@ -58098,6 +58758,56 @@ entities: - type: Transform pos: 22.5,39.5 parent: 2 + - uid: 29306 + components: + - type: Transform + pos: 52.5,15.5 + parent: 2 + - uid: 29335 + components: + - type: Transform + pos: 51.5,22.5 + parent: 2 + - uid: 29337 + components: + - type: Transform + pos: 55.5,22.5 + parent: 2 + - uid: 29340 + components: + - type: Transform + pos: 55.5,23.5 + parent: 2 + - uid: 29341 + components: + - type: Transform + pos: 58.5,24.5 + parent: 2 + - uid: 29342 + components: + - type: Transform + pos: 59.5,24.5 + parent: 2 + - uid: 29343 + components: + - type: Transform + pos: 55.5,24.5 + parent: 2 + - uid: 29344 + components: + - type: Transform + pos: 57.5,24.5 + parent: 2 + - uid: 29345 + components: + - type: Transform + pos: 53.5,24.5 + parent: 2 + - uid: 29346 + components: + - type: Transform + pos: 54.5,24.5 + parent: 2 - uid: 29352 components: - type: Transform @@ -58113,55 +58823,85 @@ entities: - type: Transform pos: 63.5,8.5 parent: 2 - - uid: 29368 + - uid: 29375 components: - type: Transform - pos: 49.5,26.5 + pos: 51.5,21.5 + parent: 2 + - uid: 29376 + components: + - type: Transform + pos: 52.5,16.5 + parent: 2 + - uid: 29377 + components: + - type: Transform + pos: 56.5,20.5 + parent: 2 + - uid: 29378 + components: + - type: Transform + pos: 54.5,20.5 parent: 2 - uid: 29379 components: - type: Transform - pos: 50.5,26.5 + pos: 60.5,19.5 parent: 2 - uid: 29380 components: - type: Transform - pos: 51.5,26.5 + pos: 60.5,18.5 parent: 2 - uid: 29381 components: - type: Transform - pos: 52.5,26.5 + pos: 53.5,20.5 parent: 2 - uid: 29382 components: - type: Transform - pos: 53.5,26.5 + pos: 53.5,15.5 parent: 2 - uid: 29383 components: - type: Transform - pos: 54.5,26.5 + pos: 59.5,15.5 parent: 2 - uid: 29384 components: - type: Transform - pos: 55.5,26.5 + pos: 57.5,15.5 parent: 2 - uid: 29385 components: - type: Transform - pos: 56.5,26.5 + pos: 58.5,15.5 parent: 2 - uid: 29386 components: - type: Transform - pos: 56.5,27.5 + pos: 52.5,14.5 parent: 2 - uid: 29387 components: - type: Transform - pos: 56.5,28.5 + pos: 56.5,15.5 + parent: 2 + - uid: 29388 + components: + - type: Transform + pos: 55.5,13.5 + parent: 2 + - uid: 29413 + components: + - type: Transform + pos: 55.5,14.5 + parent: 2 + - uid: 29415 + components: + - type: Transform + pos: 55.5,15.5 parent: 2 - uid: 29472 components: @@ -58263,21 +59003,6 @@ entities: - type: Transform pos: -59.5,-8.5 parent: 2 - - uid: 29575 - components: - - type: Transform - pos: 60.5,19.5 - parent: 2 - - uid: 29576 - components: - - type: Transform - pos: 60.5,20.5 - parent: 2 - - uid: 29577 - components: - - type: Transform - pos: 60.5,21.5 - parent: 2 - uid: 29622 components: - type: Transform @@ -58768,8 +59493,48 @@ entities: - type: Transform pos: -46.5,-19.5 parent: 2 + - uid: 30831 + components: + - type: Transform + pos: 56.5,24.5 + parent: 2 + - uid: 30832 + components: + - type: Transform + pos: 60.5,15.5 + parent: 2 + - uid: 30833 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 + - uid: 30834 + components: + - type: Transform + pos: 59.5,20.5 + parent: 2 + - uid: 31062 + components: + - type: Transform + pos: 60.5,11.5 + parent: 2 + - uid: 31063 + components: + - type: Transform + pos: 60.5,12.5 + parent: 2 + - uid: 31064 + components: + - type: Transform + pos: 60.5,13.5 + parent: 2 - proto: CableApcStack entities: + - uid: 21060 + components: + - type: Transform + pos: 49.516796,20.036963 + parent: 2 - uid: 30075 components: - type: Transform @@ -58807,11 +59572,6 @@ entities: - type: Transform pos: 7.5,28.5 parent: 2 - - uid: 2381 - components: - - type: Transform - pos: 58.5,24.5 - parent: 2 - uid: 2384 components: - type: Transform @@ -58882,6 +59642,11 @@ entities: - type: Transform pos: 52.5,-10.5 parent: 2 + - uid: 4079 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 - uid: 4153 components: - type: Transform @@ -60507,10 +61272,10 @@ entities: - type: Transform pos: 31.5,33.5 parent: 2 - - uid: 5219 + - uid: 5220 components: - type: Transform - pos: 50.5,26.5 + pos: 60.5,15.5 parent: 2 - uid: 5357 components: @@ -61282,6 +62047,11 @@ entities: - type: Transform pos: 27.5,40.5 parent: 2 + - uid: 6543 + components: + - type: Transform + pos: 52.5,16.5 + parent: 2 - uid: 6674 components: - type: Transform @@ -61327,6 +62097,36 @@ entities: - type: Transform pos: -4.5,45.5 parent: 2 + - uid: 6814 + components: + - type: Transform + pos: 48.5,15.5 + parent: 2 + - uid: 6825 + components: + - type: Transform + pos: 60.5,11.5 + parent: 2 + - uid: 6829 + components: + - type: Transform + pos: 61.5,22.5 + parent: 2 + - uid: 6908 + components: + - type: Transform + pos: 59.5,22.5 + parent: 2 + - uid: 6909 + components: + - type: Transform + pos: 56.5,15.5 + parent: 2 + - uid: 7016 + components: + - type: Transform + pos: 57.5,15.5 + parent: 2 - uid: 7326 components: - type: Transform @@ -61707,11 +62507,26 @@ entities: - type: Transform pos: 33.5,50.5 parent: 2 + - uid: 8502 + components: + - type: Transform + pos: 54.5,15.5 + parent: 2 + - uid: 8670 + components: + - type: Transform + pos: 55.5,15.5 + parent: 2 - uid: 8709 components: - type: Transform pos: 43.5,26.5 parent: 2 + - uid: 8754 + components: + - type: Transform + pos: 53.5,15.5 + parent: 2 - uid: 8755 components: - type: Transform @@ -61722,6 +62537,26 @@ entities: - type: Transform pos: 43.5,28.5 parent: 2 + - uid: 8794 + components: + - type: Transform + pos: 52.5,15.5 + parent: 2 + - uid: 8795 + components: + - type: Transform + pos: 60.5,12.5 + parent: 2 + - uid: 8796 + components: + - type: Transform + pos: 60.5,14.5 + parent: 2 + - uid: 8807 + components: + - type: Transform + pos: 60.5,22.5 + parent: 2 - uid: 8904 components: - type: Transform @@ -61732,6 +62567,21 @@ entities: - type: Transform pos: 43.5,30.5 parent: 2 + - uid: 8955 + components: + - type: Transform + pos: 57.5,22.5 + parent: 2 + - uid: 8956 + components: + - type: Transform + pos: 55.5,22.5 + parent: 2 + - uid: 8957 + components: + - type: Transform + pos: 56.5,22.5 + parent: 2 - uid: 9393 components: - type: Transform @@ -61757,6 +62607,31 @@ entities: - type: Transform pos: -19.5,43.5 parent: 2 + - uid: 9468 + components: + - type: Transform + pos: 53.5,22.5 + parent: 2 + - uid: 9470 + components: + - type: Transform + pos: 49.5,22.5 + parent: 2 + - uid: 9473 + components: + - type: Transform + pos: 48.5,13.5 + parent: 2 + - uid: 9474 + components: + - type: Transform + pos: 52.5,17.5 + parent: 2 + - uid: 9935 + components: + - type: Transform + pos: 48.5,14.5 + parent: 2 - uid: 10005 components: - type: Transform @@ -62017,16 +62892,51 @@ entities: - type: Transform pos: 43.5,-51.5 parent: 2 + - uid: 10728 + components: + - type: Transform + pos: 63.5,16.5 + parent: 2 + - uid: 10730 + components: + - type: Transform + pos: 63.5,19.5 + parent: 2 + - uid: 10731 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 + - uid: 10743 + components: + - type: Transform + pos: 49.5,27.5 + parent: 2 - uid: 10744 components: - type: Transform pos: 41.5,-50.5 parent: 2 + - uid: 10840 + components: + - type: Transform + pos: 63.5,22.5 + parent: 2 + - uid: 10887 + components: + - type: Transform + pos: 63.5,26.5 + parent: 2 - uid: 10891 components: - type: Transform pos: -47.5,-48.5 parent: 2 + - uid: 10945 + components: + - type: Transform + pos: 63.5,24.5 + parent: 2 - uid: 11584 components: - type: Transform @@ -62462,225 +63372,235 @@ entities: - type: Transform pos: 43.5,10.5 parent: 2 - - uid: 12823 + - uid: 12704 components: - type: Transform - pos: 50.5,19.5 + pos: 47.5,27.5 parent: 2 - - uid: 12824 + - uid: 12709 components: - type: Transform - pos: 51.5,19.5 + pos: 62.5,22.5 parent: 2 - - uid: 12825 + - uid: 12716 components: - type: Transform - pos: 52.5,19.5 + pos: 47.5,25.5 parent: 2 - - uid: 12890 + - uid: 12717 components: - type: Transform - pos: 46.5,24.5 + pos: 47.5,26.5 parent: 2 - - uid: 12891 + - uid: 12728 components: - type: Transform pos: 47.5,24.5 parent: 2 - - uid: 12892 + - uid: 12794 components: - type: Transform - pos: 48.5,24.5 + pos: 63.5,15.5 parent: 2 - - uid: 12893 + - uid: 12795 components: - type: Transform - pos: 49.5,24.5 + pos: 63.5,18.5 parent: 2 - - uid: 12894 + - uid: 12796 components: - type: Transform - pos: 50.5,24.5 + pos: 51.5,27.5 parent: 2 - - uid: 12895 + - uid: 12798 components: - type: Transform - pos: 51.5,24.5 + pos: 63.5,21.5 parent: 2 - - uid: 12896 + - uid: 12799 components: - type: Transform - pos: 52.5,24.5 + pos: 63.5,25.5 parent: 2 - - uid: 12897 + - uid: 12800 components: - type: Transform - pos: 53.5,24.5 + pos: 63.5,23.5 parent: 2 - - uid: 12898 + - uid: 12801 components: - type: Transform - pos: 54.5,24.5 + pos: 47.5,19.5 parent: 2 - - uid: 12899 + - uid: 12805 components: - type: Transform - pos: 55.5,24.5 + pos: 50.5,15.5 parent: 2 - - uid: 12900 + - uid: 12807 components: - type: Transform - pos: 56.5,24.5 + pos: 50.5,22.5 parent: 2 - - uid: 12901 + - uid: 12808 components: - type: Transform - pos: 56.5,23.5 + pos: 51.5,22.5 parent: 2 - - uid: 12902 + - uid: 12809 components: - type: Transform - pos: 56.5,22.5 + pos: 47.5,18.5 parent: 2 - - uid: 12903 + - uid: 12811 components: - type: Transform - pos: 56.5,21.5 + pos: 51.5,17.5 parent: 2 - - uid: 12904 + - uid: 12813 components: - type: Transform - pos: 56.5,20.5 + pos: 58.5,22.5 parent: 2 - - uid: 12905 + - uid: 12816 components: - type: Transform - pos: 56.5,19.5 + pos: 47.5,23.5 parent: 2 - - uid: 12906 + - uid: 12817 components: - type: Transform - pos: 46.5,23.5 + pos: 47.5,20.5 parent: 2 - - uid: 12907 + - uid: 12823 components: - type: Transform - pos: 46.5,22.5 + pos: 47.5,21.5 + parent: 2 + - uid: 12831 + components: + - type: Transform + pos: 48.5,16.5 + parent: 2 + - uid: 12832 + components: + - type: Transform + pos: 63.5,17.5 + parent: 2 + - uid: 12867 + components: + - type: Transform + pos: 58.5,15.5 parent: 2 - uid: 12908 components: - type: Transform - pos: 46.5,21.5 + pos: 48.5,11.5 parent: 2 - uid: 12909 components: - type: Transform - pos: 46.5,20.5 - parent: 2 - - uid: 12910 - components: - - type: Transform - pos: 46.5,19.5 - parent: 2 - - uid: 12911 - components: - - type: Transform - pos: 46.5,18.5 + pos: 46.5,12.5 parent: 2 - uid: 12912 components: - type: Transform - pos: 46.5,17.5 + pos: 63.5,14.5 parent: 2 - uid: 12913 components: - type: Transform - pos: 46.5,16.5 - parent: 2 - - uid: 12914 - components: - - type: Transform - pos: 46.5,15.5 - parent: 2 - - uid: 12915 - components: - - type: Transform - pos: 46.5,14.5 - parent: 2 - - uid: 12916 - components: - - type: Transform - pos: 46.5,13.5 - parent: 2 - - uid: 12917 - components: - - type: Transform - pos: 46.5,12.5 - parent: 2 - - uid: 12918 - components: - - type: Transform - pos: 46.5,11.5 - parent: 2 - - uid: 12919 - components: - - type: Transform - pos: 47.5,11.5 - parent: 2 - - uid: 12920 - components: - - type: Transform - pos: 48.5,11.5 + pos: 54.5,27.5 parent: 2 - uid: 12921 components: - type: Transform - pos: 49.5,11.5 - parent: 2 - - uid: 12922 - components: - - type: Transform - pos: 50.5,11.5 + pos: 63.5,13.5 parent: 2 - uid: 12923 components: - type: Transform - pos: 51.5,11.5 + pos: 55.5,27.5 parent: 2 - uid: 12924 components: - type: Transform - pos: 52.5,11.5 + pos: 61.5,27.5 parent: 2 - uid: 12925 components: - type: Transform - pos: 53.5,11.5 + pos: 59.5,27.5 parent: 2 - uid: 12926 components: - type: Transform - pos: 54.5,11.5 - parent: 2 - - uid: 12927 - components: - - type: Transform - pos: 55.5,11.5 + pos: 60.5,27.5 parent: 2 - uid: 12928 components: - type: Transform - pos: 56.5,11.5 + pos: 47.5,22.5 parent: 2 - uid: 12929 components: - type: Transform - pos: 56.5,12.5 + pos: 48.5,22.5 parent: 2 - - uid: 12930 + - uid: 12933 components: - type: Transform - pos: 56.5,13.5 + pos: 63.5,20.5 + parent: 2 + - uid: 12936 + components: + - type: Transform + pos: 58.5,27.5 + parent: 2 + - uid: 12943 + components: + - type: Transform + pos: 56.5,27.5 + parent: 2 + - uid: 12944 + components: + - type: Transform + pos: 53.5,27.5 + parent: 2 + - uid: 12945 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 + - uid: 12946 + components: + - type: Transform + pos: 52.5,22.5 + parent: 2 + - uid: 12947 + components: + - type: Transform + pos: 57.5,27.5 + parent: 2 + - uid: 12949 + components: + - type: Transform + pos: 56.5,11.5 + parent: 2 + - uid: 12950 + components: + - type: Transform + pos: 52.5,11.5 + parent: 2 + - uid: 12951 + components: + - type: Transform + pos: 51.5,11.5 + parent: 2 + - uid: 12952 + components: + - type: Transform + pos: 58.5,11.5 parent: 2 - uid: 12959 components: @@ -62827,50 +63747,85 @@ entities: - type: Transform pos: 56.5,9.5 parent: 2 + - uid: 13007 + components: + - type: Transform + pos: 54.5,29.5 + parent: 2 + - uid: 13011 + components: + - type: Transform + pos: 55.5,29.5 + parent: 2 + - uid: 13012 + components: + - type: Transform + pos: 53.5,29.5 + parent: 2 - uid: 13034 components: - type: Transform pos: 43.5,-45.5 parent: 2 - - uid: 13037 + - uid: 13041 components: - type: Transform - pos: 51.5,23.5 + pos: 44.5,29.5 parent: 2 - - uid: 13062 + - uid: 13042 components: - type: Transform - pos: 47.5,27.5 + pos: 46.5,29.5 parent: 2 - - uid: 13073 + - uid: 13043 components: - type: Transform - pos: 49.5,27.5 + pos: 45.5,29.5 parent: 2 - - uid: 13130 + - uid: 13044 components: - type: Transform - pos: 51.5,26.5 + pos: 49.5,30.5 parent: 2 - - uid: 13131 + - uid: 13046 components: - type: Transform - pos: 52.5,26.5 + pos: 50.5,30.5 parent: 2 - - uid: 13210 + - uid: 13047 components: - type: Transform - pos: 51.5,22.5 + pos: 47.5,29.5 parent: 2 - - uid: 13747 + - uid: 13048 components: - type: Transform - pos: 51.5,20.5 + pos: 48.5,30.5 parent: 2 - - uid: 13773 + - uid: 13049 components: - type: Transform - pos: 51.5,21.5 + pos: 48.5,29.5 + parent: 2 + - uid: 13050 + components: + - type: Transform + pos: 51.5,30.5 + parent: 2 + - uid: 13052 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 13059 + components: + - type: Transform + pos: 51.5,29.5 + parent: 2 + - uid: 13063 + components: + - type: Transform + pos: 53.5,19.5 parent: 2 - uid: 14333 components: @@ -62902,11 +63857,6 @@ entities: - type: Transform pos: 49.5,-15.5 parent: 2 - - uid: 14998 - components: - - type: Transform - pos: 54.5,26.5 - parent: 2 - uid: 15404 components: - type: Transform @@ -62930,7 +63880,7 @@ entities: - uid: 16507 components: - type: Transform - pos: 57.5,24.5 + pos: 50.5,16.5 parent: 2 - uid: 16567 components: @@ -62962,6 +63912,46 @@ entities: - type: Transform pos: -46.5,-51.5 parent: 2 + - uid: 18371 + components: + - type: Transform + pos: 57.5,11.5 + parent: 2 + - uid: 18393 + components: + - type: Transform + pos: 55.5,11.5 + parent: 2 + - uid: 18394 + components: + - type: Transform + pos: 54.5,11.5 + parent: 2 + - uid: 18396 + components: + - type: Transform + pos: 53.5,11.5 + parent: 2 + - uid: 18419 + components: + - type: Transform + pos: 59.5,15.5 + parent: 2 + - uid: 18420 + components: + - type: Transform + pos: 49.5,15.5 + parent: 2 + - uid: 18421 + components: + - type: Transform + pos: 60.5,13.5 + parent: 2 + - uid: 18431 + components: + - type: Transform + pos: 47.5,16.5 + parent: 2 - uid: 18451 components: - type: Transform @@ -62992,10 +63982,20 @@ entities: - type: Transform pos: -54.5,-61.5 parent: 2 - - uid: 18883 + - uid: 18922 components: - type: Transform - pos: 59.5,24.5 + pos: 46.5,16.5 + parent: 2 + - uid: 18928 + components: + - type: Transform + pos: 46.5,15.5 + parent: 2 + - uid: 18929 + components: + - type: Transform + pos: 50.5,17.5 parent: 2 - uid: 19073 components: @@ -64552,41 +65552,6 @@ entities: - type: Transform pos: -61.5,-53.5 parent: 2 - - uid: 20237 - components: - - type: Transform - pos: 55.5,26.5 - parent: 2 - - uid: 20243 - components: - - type: Transform - pos: 56.5,26.5 - parent: 2 - - uid: 20262 - components: - - type: Transform - pos: 44.5,26.5 - parent: 2 - - uid: 20263 - components: - - type: Transform - pos: 45.5,26.5 - parent: 2 - - uid: 20264 - components: - - type: Transform - pos: 46.5,26.5 - parent: 2 - - uid: 20265 - components: - - type: Transform - pos: 47.5,26.5 - parent: 2 - - uid: 20267 - components: - - type: Transform - pos: 49.5,26.5 - parent: 2 - uid: 20388 components: - type: Transform @@ -64595,12 +65560,12 @@ entities: - uid: 20391 components: - type: Transform - pos: 56.5,27.5 + pos: 46.5,13.5 parent: 2 - uid: 20392 components: - type: Transform - pos: 56.5,28.5 + pos: 46.5,18.5 parent: 2 - uid: 20393 components: @@ -64992,26 +65957,46 @@ entities: - type: Transform pos: 59.5,29.5 parent: 2 - - uid: 20500 + - uid: 20485 components: - type: Transform - pos: 61.5,24.5 + pos: 46.5,17.5 parent: 2 - - uid: 20646 + - uid: 20499 components: - type: Transform - pos: 48.5,27.5 + pos: 62.5,27.5 + parent: 2 + - uid: 20561 + components: + - type: Transform + pos: 63.5,27.5 parent: 2 - uid: 20654 components: - type: Transform - pos: 62.5,24.5 + pos: 54.5,22.5 + parent: 2 + - uid: 20705 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 20720 + components: + - type: Transform + pos: 50.5,11.5 parent: 2 - uid: 20886 components: - type: Transform pos: 51.5,-21.5 parent: 2 + - uid: 20911 + components: + - type: Transform + pos: 48.5,27.5 + parent: 2 - uid: 20959 components: - type: Transform @@ -65787,16 +66772,16 @@ entities: - type: Transform pos: 55.5,-14.5 parent: 2 - - uid: 23422 - components: - - type: Transform - pos: 63.5,24.5 - parent: 2 - uid: 23427 components: - type: Transform pos: 55.5,-17.5 parent: 2 + - uid: 23528 + components: + - type: Transform + pos: 46.5,14.5 + parent: 2 - uid: 23604 components: - type: Transform @@ -65892,11 +66877,6 @@ entities: - type: Transform pos: -20.5,24.5 parent: 2 - - uid: 24167 - components: - - type: Transform - pos: 63.5,20.5 - parent: 2 - uid: 24258 components: - type: Transform @@ -65982,175 +66962,30 @@ entities: - type: Transform pos: 60.5,10.5 parent: 2 - - uid: 29152 - components: - - type: Transform - pos: 60.5,11.5 - parent: 2 - - uid: 29153 - components: - - type: Transform - pos: 60.5,12.5 - parent: 2 - - uid: 29154 - components: - - type: Transform - pos: 60.5,13.5 - parent: 2 - - uid: 29155 - components: - - type: Transform - pos: 60.5,14.5 - parent: 2 - - uid: 29156 - components: - - type: Transform - pos: 60.5,15.5 - parent: 2 - uid: 29157 components: - type: Transform - pos: 60.5,16.5 + pos: 53.5,20.5 parent: 2 - - uid: 29158 + - uid: 29308 components: - type: Transform - pos: 59.5,16.5 + pos: 46.5,11.5 parent: 2 - - uid: 29159 + - uid: 29310 components: - type: Transform - pos: 58.5,16.5 + pos: 47.5,11.5 parent: 2 - - uid: 29160 - components: - - type: Transform - pos: 57.5,16.5 - parent: 2 - - uid: 29161 - components: - - type: Transform - pos: 56.5,16.5 - parent: 2 - - uid: 29162 - components: - - type: Transform - pos: 55.5,16.5 - parent: 2 - - uid: 29163 - components: - - type: Transform - pos: 54.5,16.5 - parent: 2 - - uid: 29164 - components: - - type: Transform - pos: 53.5,16.5 - parent: 2 - - uid: 29165 - components: - - type: Transform - pos: 53.5,17.5 - parent: 2 - - uid: 29166 - components: - - type: Transform - pos: 53.5,19.5 - parent: 2 - - uid: 29167 + - uid: 29311 components: - type: Transform pos: 53.5,18.5 parent: 2 - - uid: 29289 + - uid: 29361 components: - type: Transform - pos: 60.5,24.5 - parent: 2 - - uid: 29298 - components: - - type: Transform - pos: 63.5,22.5 - parent: 2 - - uid: 29299 - components: - - type: Transform - pos: 63.5,21.5 - parent: 2 - - uid: 29305 - components: - - type: Transform - pos: 52.5,20.5 - parent: 2 - - uid: 29306 - components: - - type: Transform - pos: 50.5,20.5 - parent: 2 - - uid: 29324 - components: - - type: Transform - pos: 63.5,19.5 - parent: 2 - - uid: 29325 - components: - - type: Transform - pos: 63.5,18.5 - parent: 2 - - uid: 29326 - components: - - type: Transform - pos: 63.5,17.5 - parent: 2 - - uid: 29327 - components: - - type: Transform - pos: 63.5,16.5 - parent: 2 - - uid: 29328 - components: - - type: Transform - pos: 63.5,15.5 - parent: 2 - - uid: 29329 - components: - - type: Transform - pos: 63.5,14.5 - parent: 2 - - uid: 29330 - components: - - type: Transform - pos: 63.5,13.5 - parent: 2 - - uid: 29331 - components: - - type: Transform - pos: 63.5,12.5 - parent: 2 - - uid: 29332 - components: - - type: Transform - pos: 63.5,11.5 - parent: 2 - - uid: 29333 - components: - - type: Transform - pos: 63.5,11.5 - parent: 2 - - uid: 29335 - components: - - type: Transform - pos: 63.5,23.5 - parent: 2 - - uid: 29364 - components: - - type: Transform - pos: 61.5,15.5 - parent: 2 - - uid: 29367 - components: - - type: Transform - pos: 53.5,26.5 + pos: 52.5,21.5 parent: 2 - uid: 29392 components: @@ -66277,6 +67112,11 @@ entities: - type: Transform pos: 24.5,-25.5 parent: 2 + - uid: 30294 + components: + - type: Transform + pos: 54.5,18.5 + parent: 2 - uid: 30314 components: - type: Transform @@ -68114,6 +68954,16 @@ entities: - type: Transform pos: -4.5,41.5 parent: 2 + - uid: 6541 + components: + - type: Transform + pos: 52.5,19.5 + parent: 2 + - uid: 6547 + components: + - type: Transform + pos: 51.5,17.5 + parent: 2 - uid: 6682 components: - type: Transform @@ -68154,6 +69004,16 @@ entities: - type: Transform pos: 17.5,26.5 parent: 2 + - uid: 6812 + components: + - type: Transform + pos: 52.5,17.5 + parent: 2 + - uid: 6813 + components: + - type: Transform + pos: 54.5,19.5 + parent: 2 - uid: 7097 components: - type: Transform @@ -68959,6 +69819,11 @@ entities: - type: Transform pos: -23.5,43.5 parent: 2 + - uid: 8992 + components: + - type: Transform + pos: 60.5,13.5 + parent: 2 - uid: 9028 components: - type: Transform @@ -69124,6 +69989,21 @@ entities: - type: Transform pos: -25.5,44.5 parent: 2 + - uid: 9396 + components: + - type: Transform + pos: 60.5,11.5 + parent: 2 + - uid: 9466 + components: + - type: Transform + pos: 60.5,12.5 + parent: 2 + - uid: 9471 + components: + - type: Transform + pos: 56.5,19.5 + parent: 2 - uid: 9475 components: - type: Transform @@ -69159,6 +70039,11 @@ entities: - type: Transform pos: -23.5,26.5 parent: 2 + - uid: 9739 + components: + - type: Transform + pos: 49.5,20.5 + parent: 2 - uid: 10039 components: - type: Transform @@ -69504,6 +70389,11 @@ entities: - type: Transform pos: 3.5,-58.5 parent: 2 + - uid: 10958 + components: + - type: Transform + pos: 58.5,19.5 + parent: 2 - uid: 10975 components: - type: Transform @@ -69849,26 +70739,131 @@ entities: - type: Transform pos: -53.5,-31.5 parent: 2 - - uid: 12827 + - uid: 12710 components: - type: Transform - pos: 51.5,19.5 + pos: 59.5,15.5 parent: 2 - - uid: 12828 + - uid: 12711 components: - type: Transform - pos: 51.5,18.5 + pos: 56.5,15.5 parent: 2 - - uid: 12829 + - uid: 12760 + components: + - type: Transform + pos: 60.5,15.5 + parent: 2 + - uid: 12761 + components: + - type: Transform + pos: 57.5,15.5 + parent: 2 + - uid: 12762 + components: + - type: Transform + pos: 60.5,14.5 + parent: 2 + - uid: 12785 + components: + - type: Transform + pos: 49.5,17.5 + parent: 2 + - uid: 12791 + components: + - type: Transform + pos: 49.5,22.5 + parent: 2 + - uid: 12793 + components: + - type: Transform + pos: 49.5,21.5 + parent: 2 + - uid: 12802 + components: + - type: Transform + pos: 58.5,18.5 + parent: 2 + - uid: 12803 + components: + - type: Transform + pos: 57.5,19.5 + parent: 2 + - uid: 12806 + components: + - type: Transform + pos: 53.5,19.5 + parent: 2 + - uid: 12812 + components: + - type: Transform + pos: 55.5,15.5 + parent: 2 + - uid: 12814 + components: + - type: Transform + pos: 49.5,18.5 + parent: 2 + - uid: 12834 + components: + - type: Transform + pos: 58.5,15.5 + parent: 2 + - uid: 12835 + components: + - type: Transform + pos: 55.5,14.5 + parent: 2 + - uid: 12836 + components: + - type: Transform + pos: 55.5,13.5 + parent: 2 + - uid: 12838 + components: + - type: Transform + pos: 49.5,16.5 + parent: 2 + - uid: 12840 + components: + - type: Transform + pos: 49.5,19.5 + parent: 2 + - uid: 12906 + components: + - type: Transform + pos: 59.5,17.5 + parent: 2 + - uid: 12907 + components: + - type: Transform + pos: 61.5,17.5 + parent: 2 + - uid: 12914 + components: + - type: Transform + pos: 55.5,19.5 + parent: 2 + - uid: 12915 + components: + - type: Transform + pos: 50.5,17.5 + parent: 2 + - uid: 12930 + components: + - type: Transform + pos: 58.5,17.5 + parent: 2 + - uid: 12931 + components: + - type: Transform + pos: 60.5,17.5 + parent: 2 + - uid: 12948 components: - type: Transform pos: 52.5,18.5 parent: 2 - - uid: 12853 - components: - - type: Transform - pos: 52.5,17.5 - parent: 2 - uid: 12992 components: - type: Transform @@ -69904,26 +70899,6 @@ entities: - type: Transform pos: 60.5,10.5 parent: 2 - - uid: 13025 - components: - - type: Transform - pos: 60.5,11.5 - parent: 2 - - uid: 13026 - components: - - type: Transform - pos: 59.5,11.5 - parent: 2 - - uid: 13027 - components: - - type: Transform - pos: 58.5,11.5 - parent: 2 - - uid: 13028 - components: - - type: Transform - pos: 57.5,11.5 - parent: 2 - uid: 13072 components: - type: Transform @@ -70994,6 +71969,11 @@ entities: - type: Transform pos: 23.5,-26.5 parent: 2 + - uid: 18644 + components: + - type: Transform + pos: 55.5,12.5 + parent: 2 - uid: 19861 components: - type: Transform @@ -71034,6 +72014,11 @@ entities: - type: Transform pos: 44.5,56.5 parent: 2 + - uid: 20246 + components: + - type: Transform + pos: 49.5,23.5 + parent: 2 - uid: 20396 components: - type: Transform @@ -71614,6 +72599,36 @@ entities: - type: Transform pos: 25.5,35.5 parent: 2 + - uid: 29326 + components: + - type: Transform + pos: 50.5,23.5 + parent: 2 + - uid: 29327 + components: + - type: Transform + pos: 53.5,22.5 + parent: 2 + - uid: 29328 + components: + - type: Transform + pos: 51.5,23.5 + parent: 2 + - uid: 29329 + components: + - type: Transform + pos: 52.5,23.5 + parent: 2 + - uid: 29330 + components: + - type: Transform + pos: 53.5,23.5 + parent: 2 + - uid: 29455 + components: + - type: Transform + pos: 48.5,16.5 + parent: 2 - uid: 29578 components: - type: Transform @@ -71925,15 +72940,23 @@ entities: - type: Transform pos: 14.5,43.5 parent: 2 - - uid: 8502 + - uid: 12693 components: - type: Transform - pos: 50.5,20.5 + rot: 3.141592653589793 rad + pos: 48.5,14.5 parent: 2 - - uid: 8670 + - uid: 12792 components: - type: Transform - pos: 52.5,20.5 + rot: -1.5707963267948966 rad + pos: 49.5,15.5 + parent: 2 + - uid: 13045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,29.5 parent: 2 - uid: 16678 components: @@ -71953,12 +72976,6 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-53.5 parent: 2 - - uid: 20245 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,26.5 - parent: 2 - uid: 22495 components: - type: Transform @@ -71988,12 +73005,6 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,-45.5 parent: 2 - - uid: 29149 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,19.5 - parent: 2 - proto: Candle entities: - uid: 23174 @@ -74193,6 +75204,11 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,-27.5 parent: 2 + - uid: 3195 + components: + - type: Transform + pos: 49.5,16.5 + parent: 2 - uid: 3449 components: - type: Transform @@ -74241,11 +75257,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,28.5 parent: 2 - - uid: 5222 - components: - - type: Transform - pos: 49.5,26.5 - parent: 2 - uid: 5397 components: - type: Transform @@ -74281,6 +75292,12 @@ entities: - type: Transform pos: 22.5,22.5 parent: 2 + - uid: 5749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,14.5 + parent: 2 - uid: 6433 components: - type: Transform @@ -74667,11 +75684,6 @@ entities: - type: Transform pos: -27.5,22.5 parent: 2 - - uid: 8754 - components: - - type: Transform - pos: 52.5,20.5 - parent: 2 - uid: 8785 components: - type: Transform @@ -74816,17 +75828,18 @@ entities: - type: Transform pos: -27.5,18.5 parent: 2 - - uid: 9935 - components: - - type: Transform - pos: 50.5,20.5 - parent: 2 - uid: 9945 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-47.5 parent: 2 + - uid: 10660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,15.5 + parent: 2 - uid: 11974 components: - type: Transform @@ -76021,6 +77034,11 @@ entities: rot: 3.141592653589793 rad pos: 41.5,-46.5 parent: 2 + - uid: 13131 + components: + - type: Transform + pos: 53.5,29.5 + parent: 2 - uid: 13135 components: - type: Transform @@ -76039,6 +77057,16 @@ entities: rot: -1.5707963267948966 rad pos: 66.5,6.5 parent: 2 + - uid: 13210 + components: + - type: Transform + pos: 51.5,29.5 + parent: 2 + - uid: 13400 + components: + - type: Transform + pos: 53.5,30.5 + parent: 2 - uid: 13571 components: - type: Transform @@ -76051,11 +77079,6 @@ entities: rot: -1.5707963267948966 rad pos: 58.5,9.5 parent: 2 - - uid: 15443 - components: - - type: Transform - pos: 51.5,20.5 - parent: 2 - uid: 15563 components: - type: Transform @@ -76266,12 +77289,6 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,49.5 parent: 2 - - uid: 18557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,49.5 - parent: 2 - uid: 18588 components: - type: Transform @@ -77360,11 +78377,10 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-55.5 parent: 2 - - uid: 20246 + - uid: 20271 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,27.5 + pos: 50.5,29.5 parent: 2 - uid: 21050 components: @@ -77372,6 +78388,12 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-47.5 parent: 2 + - uid: 23308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,15.5 + parent: 2 - uid: 23469 components: - type: Transform @@ -77759,40 +78781,41 @@ entities: - type: Transform pos: -13.5,-59.5 parent: 2 + - uid: 28975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,13.5 + parent: 2 - uid: 29021 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-44.5 parent: 2 - - uid: 29023 - components: - - type: Transform - pos: 48.5,26.5 - parent: 2 - uid: 29024 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-45.5 parent: 2 - - uid: 29366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,26.5 - parent: 2 - - uid: 29370 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,26.5 - parent: 2 - - uid: 29373 + - uid: 29309 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,27.5 + pos: 48.5,16.5 + parent: 2 + - uid: 29429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,14.5 + parent: 2 + - uid: 29430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,13.5 parent: 2 - uid: 29547 components: @@ -78432,6 +79455,12 @@ entities: rot: 3.141592653589793 rad pos: 31.434769,-34.426872 parent: 21002 + - uid: 29302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.468098,9.715801 + parent: 2 - uid: 29668 components: - type: Transform @@ -78718,7 +79747,7 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 31.963871,-3.9006166 + pos: 32.059547,-4.228452 parent: 2 - uid: 11855 components: @@ -78726,17 +79755,11 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-26.5 parent: 2 - - uid: 12795 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,18.5 - parent: 2 - - uid: 13020 + - uid: 12745 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,12.5 + pos: 49.541958,30.582247 parent: 2 - uid: 17325 components: @@ -78750,17 +79773,11 @@ entities: rot: -1.5707963267948966 rad pos: -48.5,-53.5 parent: 2 - - uid: 20272 + - uid: 20253 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.57121,15.605441 - parent: 2 - - uid: 20910 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.535034,27.628138 + rot: 3.141592653589793 rad + pos: 54.5,18 parent: 2 - uid: 23664 components: @@ -78795,6 +79812,18 @@ entities: - type: Transform pos: 31.484047,-20.398914 parent: 2 + - uid: 30938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,18 + parent: 2 + - uid: 31080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.63151,16.669516 + parent: 2 - proto: ChairOfficeLight entities: - uid: 1247 @@ -78870,6 +79899,12 @@ entities: rot: -1.5707963267948966 rad pos: 14.49886,-34.42077 parent: 2 + - uid: 30830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.520355,15.684031 + parent: 2 - proto: ChairWood entities: - uid: 483 @@ -79339,6 +80374,18 @@ entities: parent: 3442 - type: Physics canCollide: False + - uid: 31118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.63412,23.520771 + parent: 2 + - uid: 31119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.675785,23.177021 + parent: 2 - proto: CigarGold entities: - uid: 2705 @@ -79398,6 +80445,8 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ClosetBombFilled entities: - uid: 4310 @@ -79504,6 +80553,11 @@ entities: - type: Transform pos: 35.5,4.5 parent: 2 + - uid: 12827 + components: + - type: Transform + pos: 50.5,30.5 + parent: 2 - uid: 15617 components: - type: Transform @@ -79514,6 +80568,11 @@ entities: - type: Transform pos: 62.5,-0.5 parent: 2 + - uid: 18425 + components: + - type: Transform + pos: 44.5,14.5 + parent: 2 - uid: 18970 components: - type: Transform @@ -79574,6 +80633,11 @@ entities: - type: Transform pos: 45.5,-45.5 parent: 2 + - uid: 20389 + components: + - type: Transform + pos: 53.5,9.5 + parent: 2 - uid: 20868 components: - type: Transform @@ -79589,11 +80653,6 @@ entities: - type: Transform pos: 4.5,49.5 parent: 2 - - uid: 23517 - components: - - type: Transform - pos: 51.5,27.5 - parent: 2 - uid: 23748 components: - type: Transform @@ -79619,11 +80678,6 @@ entities: - type: Transform pos: 47.5,9.5 parent: 2 - - uid: 30294 - components: - - type: Transform - pos: 44.5,19.5 - parent: 2 - uid: 30295 components: - type: Transform @@ -79738,11 +80792,6 @@ entities: - type: Transform pos: 21.5,28.5 parent: 2 - - uid: 9471 - components: - - type: Transform - pos: 38.5,48.5 - parent: 2 - uid: 9647 components: - type: Transform @@ -79763,6 +80812,11 @@ entities: - type: Transform pos: 17.5,39.5 parent: 2 + - uid: 12874 + components: + - type: Transform + pos: 39.5,48.5 + parent: 2 - uid: 13133 components: - type: Transform @@ -79798,6 +80852,11 @@ entities: - type: Transform pos: -37.5,-28.5 parent: 2 + - uid: 19005 + components: + - type: Transform + pos: 44.5,13.5 + parent: 2 - uid: 19015 components: - type: Transform @@ -79973,21 +81032,26 @@ entities: - type: Transform pos: 38.5,46.5 parent: 2 - - uid: 9473 - components: - - type: Transform - pos: 39.5,48.5 - parent: 2 - uid: 9649 components: - type: Transform pos: -25.5,8.5 parent: 2 + - uid: 12872 + components: + - type: Transform + pos: 45.5,26.5 + parent: 2 - uid: 13936 components: - type: Transform pos: 37.5,-37.5 parent: 2 + - uid: 14998 + components: + - type: Transform + pos: 35.5,50.5 + parent: 2 - uid: 18255 components: - type: Transform @@ -80043,11 +81107,6 @@ entities: - type: Transform pos: 44.5,12.5 parent: 2 - - uid: 18922 - components: - - type: Transform - pos: 44.5,23.5 - parent: 2 - uid: 18924 components: - type: Transform @@ -80078,11 +81137,6 @@ entities: - type: Transform pos: 31.5,52.5 parent: 2 - - uid: 19005 - components: - - type: Transform - pos: 54.5,8.5 - parent: 2 - uid: 19006 components: - type: Transform @@ -80200,6 +81254,16 @@ entities: - type: Transform pos: -11.5,-56.5 parent: 2 + - uid: 28510 + components: + - type: Transform + pos: 49.5,13.5 + parent: 2 + - uid: 29301 + components: + - type: Transform + pos: 54.5,9.5 + parent: 2 - uid: 30193 components: - type: Transform @@ -80244,10 +81308,10 @@ entities: - type: Transform pos: 29.5,40.5 parent: 2 - - uid: 9466 + - uid: 12873 components: - type: Transform - pos: 36.5,50.5 + pos: 37.5,50.5 parent: 2 - proto: ClosetWallEmergencyFilledRandom entities: @@ -80257,12 +81321,16 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9505 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,54.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ClothingBeltStorageWaistbag entities: - uid: 26598 @@ -81427,6 +82495,12 @@ entities: rot: -1.5707963267948966 rad pos: -48.5,-37.5 parent: 2 + - uid: 18426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,12.5 + parent: 2 - uid: 29138 components: - type: Transform @@ -81497,10 +82571,10 @@ entities: - type: Transform pos: 41.5,23.5 parent: 2 - - uid: 29136 + - uid: 12875 components: - type: Transform - pos: 44.5,23.5 + pos: 45.5,26.5 parent: 2 - uid: 29816 components: @@ -81832,7 +82906,7 @@ entities: - uid: 29451 components: - type: Transform - pos: 61.47509,22.204893 + pos: 49.497982,19.266006 parent: 2 - proto: CommsComputerCircuitboard entities: @@ -81855,18 +82929,17 @@ entities: rot: 3.141592653589793 rad pos: -27.5,39.5 parent: 2 - - uid: 13015 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,12.5 - parent: 2 - uid: 18894 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,42.5 parent: 2 + - uid: 24167 + components: + - type: Transform + pos: 55.5,18.5 + parent: 2 - uid: 29295 components: - type: Transform @@ -81884,6 +82957,14 @@ entities: - type: Transform pos: 10.5,-33.5 parent: 2 +- proto: ComputerAtmosMonitoring + entities: + - uid: 8792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,3.5 + parent: 2 - proto: computerBodyScanner entities: - uid: 1069 @@ -82011,11 +83092,10 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,-6.5 parent: 2 - - uid: 14688 + - uid: 29324 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,18.5 + pos: 56.5,18.5 parent: 2 - uid: 30257 components: @@ -82059,6 +83139,11 @@ entities: - type: Transform pos: 43.5,-15.5 parent: 2 + - uid: 31133 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 2 - proto: ComputerFrame entities: - uid: 3893 @@ -82158,11 +83243,10 @@ entities: rot: 3.141592653589793 rad pos: -6.5,45.5 parent: 2 - - uid: 29363 + - uid: 29422 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,15.5 + pos: 54.5,18.5 parent: 2 - proto: ComputerRadar entities: @@ -82256,18 +83340,18 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,-46.5 parent: 2 + - uid: 12747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,30.5 + parent: 2 - uid: 18228 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-53.5 parent: 2 - - uid: 20261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,27.5 - parent: 2 - uid: 22493 components: - type: Transform @@ -82340,6 +83424,17 @@ entities: - type: Transform pos: 19.5,-42.5 parent: 21002 + - uid: 29889 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 2 + - uid: 31061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,16.5 + parent: 2 - proto: ComputerSurveillanceWirelessCameraMonitor entities: - uid: 12464 @@ -82834,7 +83929,7 @@ entities: - uid: 20270 components: - type: Transform - pos: 58.49672,13.929133 + pos: 52.565563,13.613095 parent: 2 - proto: CottonSeeds entities: @@ -83074,10 +84169,10 @@ entities: parent: 2 - proto: CrateEngineeringCableBulk entities: - - uid: 13076 + - uid: 20261 components: - type: Transform - pos: 52.5,27.5 + pos: 55.5,29.5 parent: 2 - uid: 23066 components: @@ -83883,8 +84978,10 @@ entities: - uid: 4647 components: - type: Transform - pos: 44.5,-20.5 + pos: 45.5,-20.5 parent: 2 + - type: Pullable + prevFixedRotation: True - proto: CrateServiceBureaucracy entities: - uid: 29667 @@ -84334,6 +85431,27 @@ entities: - type: Transform pos: 0.5,0.5 parent: 2 +- proto: DefaultStationBeaconAICore + entities: + - uid: 31065 + components: + - type: Transform + pos: 55.5,25.5 + parent: 2 +- proto: DefaultStationBeaconAIPower + entities: + - uid: 31066 + components: + - type: Transform + pos: 49.5,14.5 + parent: 2 +- proto: DefaultStationBeaconAIUpload + entities: + - uid: 31067 + components: + - type: Transform + pos: 55.5,15.5 + parent: 2 - proto: DefaultStationBeaconAME entities: - uid: 5822 @@ -84705,24 +85823,32 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1594 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1604 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7691 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: DeployableBarrier entities: - uid: 4624 @@ -85204,12 +86330,6 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-54.5 parent: 2 - - uid: 17524 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,1.5 - parent: 2 - uid: 17545 components: - type: Transform @@ -85378,6 +86498,29 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-30.5 parent: 2 + - uid: 30930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,4.5 + parent: 2 + - uid: 30931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,4.5 + parent: 2 + - uid: 30932 + components: + - type: Transform + pos: 61.5,13.5 + parent: 2 + - uid: 30933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,1.5 + parent: 2 - proto: DisposalJunction entities: - uid: 1202 @@ -85589,6 +86732,12 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,-10.5 parent: 2 + - uid: 30934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,1.5 + parent: 2 - proto: DisposalJunctionFlipped entities: - uid: 3203 @@ -92474,6 +93623,102 @@ entities: rot: -1.5707963267948966 rad pos: -46.5,-30.5 parent: 2 + - uid: 30838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,6.5 + parent: 2 + - uid: 30841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,4.5 + parent: 2 + - uid: 30842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,4.5 + parent: 2 + - uid: 30843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,3.5 + parent: 2 + - uid: 30881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,5.5 + parent: 2 + - uid: 30882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,4.5 + parent: 2 + - uid: 30919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,2.5 + parent: 2 + - uid: 30920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,4.5 + parent: 2 + - uid: 30921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,4.5 + parent: 2 + - uid: 30922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,7.5 + parent: 2 + - uid: 30923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,8.5 + parent: 2 + - uid: 30924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,9.5 + parent: 2 + - uid: 30925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,10.5 + parent: 2 + - uid: 30926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,11.5 + parent: 2 + - uid: 30927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,12.5 + parent: 2 + - uid: 30928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,13.5 + parent: 2 - proto: DisposalRouter entities: - uid: 16559 @@ -93100,6 +94345,12 @@ entities: rot: 3.141592653589793 rad pos: -47.5,-31.5 parent: 2 + - uid: 30929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,13.5 + parent: 2 - proto: DisposalUnit entities: - uid: 434 @@ -93367,6 +94618,11 @@ entities: - type: Transform pos: 11.5,34.5 parent: 2 + - uid: 29347 + components: + - type: Transform + pos: 59.5,13.5 + parent: 2 - proto: DisposalYJunction entities: - uid: 16566 @@ -93950,7 +95206,7 @@ entities: - uid: 23421 components: - type: Transform - pos: 29.415947,20.657654 + pos: 40.5752,16.812033 parent: 2 - proto: DrinkFlaskOld entities: @@ -94092,6 +95348,16 @@ entities: - type: Transform pos: 14.850212,37.63946 parent: 2 + - uid: 31085 + components: + - type: Transform + pos: 30.13958,20.716486 + parent: 2 + - uid: 31086 + components: + - type: Transform + pos: 29.993746,20.560236 + parent: 2 - proto: DrinkGlassCoupeShaped entities: - uid: 11702 @@ -94486,45 +95752,10 @@ entities: parent: 2 - proto: DrinkSodaWaterBottleFull entities: - - uid: 18 - components: - - type: Transform - pos: 24.350317,14.880395 - parent: 2 - - uid: 3589 - components: - - type: Transform - pos: 23.636429,16.66636 - parent: 2 - - uid: 3590 - components: - - type: Transform - pos: 24.292679,16.681986 - parent: 2 - - uid: 3591 - components: - - type: Transform - pos: 24.511429,16.306986 - parent: 2 - - uid: 3592 - components: - - type: Transform - pos: 23.605179,14.947611 - parent: 2 - - uid: 3593 - components: - - type: Transform - pos: 23.355179,15.494486 - parent: 2 - - uid: 3594 - components: - - type: Transform - pos: 24.573929,15.385111 - parent: 2 - uid: 3597 components: - type: Transform - pos: 29.34997,20.992138 + pos: 29.79583,20.997736 parent: 2 - uid: 23386 components: @@ -94598,6 +95829,41 @@ entities: - type: Transform pos: 40.765537,-7.309368 parent: 2 + - uid: 12893 + components: + - type: Transform + pos: 23.743635,14.669084 + parent: 2 + - uid: 12894 + components: + - type: Transform + pos: 24.420717,16.3045 + parent: 2 + - uid: 12895 + components: + - type: Transform + pos: 24.441551,15.700334 + parent: 2 + - uid: 12896 + components: + - type: Transform + pos: 24.420717,15.075334 + parent: 2 + - uid: 12897 + components: + - type: Transform + pos: 23.733217,16.627417 + parent: 2 + - uid: 12898 + components: + - type: Transform + pos: 24.201967,16.606583 + parent: 2 + - uid: 12899 + components: + - type: Transform + pos: 24.149885,14.658667 + parent: 2 - uid: 16792 components: - type: Transform @@ -94613,6 +95879,21 @@ entities: - type: Transform pos: -36.29477,-34.245426 parent: 2 + - uid: 31082 + components: + - type: Transform + pos: 23.451967,15.096167 + parent: 2 + - uid: 31083 + components: + - type: Transform + pos: 23.441551,15.679501 + parent: 2 + - uid: 31084 + components: + - type: Transform + pos: 23.462385,16.356583 + parent: 2 - proto: DrinkWaterCup entities: - uid: 2270 @@ -95382,18 +96663,6 @@ entities: - type: Transform pos: -7.5,38.5 parent: 2 - - uid: 24124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,17.5 - parent: 2 - - uid: 24125 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,15.5 - parent: 2 - uid: 24131 components: - type: Transform @@ -95667,83 +96936,111 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5805 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8970 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9765 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11980 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19637 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23043 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,3.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 23795 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23796 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23798 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23800 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23801 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28859 components: - type: Transform pos: -29.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28905 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FaxMachineBase entities: - uid: 1043 @@ -95763,7 +97060,7 @@ entities: pos: -7.5,-34.5 parent: 2 - type: FaxMachine - name: medical + name: Medical - uid: 2423 components: - type: MetaData @@ -95772,7 +97069,7 @@ entities: pos: 25.5,4.5 parent: 2 - type: FaxMachine - name: bridge + name: Bridge - uid: 3415 components: - type: MetaData @@ -95781,7 +97078,7 @@ entities: pos: 43.5,-4.5 parent: 2 - type: FaxMachine - name: HoP + name: HoP's Office - uid: 5844 components: - type: MetaData @@ -95790,7 +97087,7 @@ entities: pos: 38.5,5.5 parent: 2 - type: FaxMachine - name: lawyer + name: Lawyer - uid: 6248 components: - type: MetaData @@ -95799,7 +97096,7 @@ entities: pos: 8.5,34.5 parent: 2 - type: FaxMachine - name: engineering + name: Engineering - uid: 7988 components: - type: MetaData @@ -95808,7 +97105,7 @@ entities: pos: -11.5,35.5 parent: 2 - type: FaxMachine - name: library + name: Library - uid: 9013 components: - type: MetaData @@ -95817,7 +97114,7 @@ entities: pos: -23.5,28.5 parent: 2 - type: FaxMachine - name: atmos + name: Atmos - uid: 10599 components: - type: MetaData @@ -95826,7 +97123,7 @@ entities: pos: 9.5,-45.5 parent: 2 - type: FaxMachine - name: science + name: Science - uid: 11204 components: - type: MetaData @@ -95835,7 +97132,7 @@ entities: pos: -48.5,3.5 parent: 2 - type: FaxMachine - name: cargo + name: Cargo - uid: 11856 components: - type: MetaData @@ -95844,16 +97141,7 @@ entities: pos: -46.5,-27.5 parent: 2 - type: FaxMachine - name: news - - uid: 13061 - components: - - type: MetaData - name: AI fax machine - - type: Transform - pos: 58.5,14.5 - parent: 2 - - type: FaxMachine - name: AI + name: News Room - uid: 17217 components: - type: MetaData @@ -95862,7 +97150,7 @@ entities: pos: 34.5,-21.5 parent: 2 - type: FaxMachine - name: security + name: Security - uid: 22766 components: - type: MetaData @@ -95872,6 +97160,15 @@ entities: parent: 21002 - type: FaxMachine name: Perma + - uid: 31068 + components: + - type: MetaData + name: AI fax machine + - type: Transform + pos: 59.5,16.5 + parent: 2 + - type: FaxMachine + name: AI Upload - proto: FaxMachineCaptain entities: - uid: 2688 @@ -95881,12 +97178,38 @@ entities: parent: 2 - proto: FenceMetalGate entities: + - uid: 18427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,15.5 + parent: 2 - uid: 30252 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-38.5 parent: 2 +- proto: FenceMetalStraight + entities: + - uid: 13037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,14.5 + parent: 2 + - uid: 29155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,16.5 + parent: 2 + - uid: 29161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,13.5 + parent: 2 - proto: FenceWoodSmallGate entities: - uid: 28615 @@ -95957,6 +97280,34 @@ entities: - type: Transform pos: 29.507704,22.5 parent: 2 + - type: Storage + storedItems: + 2743: + position: 0,0 + _rotation: South + 2746: + position: 1,0 + _rotation: South + 2747: + position: 2,0 + _rotation: South + 2744: + position: 3,0 + _rotation: South + 2745: + position: 4,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 2743 + - 2746 + - 2747 + - 2744 + - 2745 - uid: 5843 components: - type: Transform @@ -96051,6 +97402,9 @@ entities: 10837: position: 0,0 _rotation: South + 29266: + position: 1,0 + _rotation: South - type: ContainerContainer containers: storagebase: !type:Container @@ -96058,6 +97412,7 @@ entities: occludes: True ents: - 10837 + - 29266 - uid: 4570 components: - type: Transform @@ -96203,6 +97558,16 @@ entities: occludes: True ents: - 29265 + - uid: 31073 + components: + - type: Transform + pos: 54.068718,13.5 + parent: 2 + - uid: 31074 + components: + - type: Transform + pos: 56.943718,13.5 + parent: 2 - proto: FireAlarm entities: - uid: 410 @@ -96211,6 +97576,8 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2123 components: - type: Transform @@ -96221,6 +97588,8 @@ entities: devices: - 17904 - 17905 + - type: Fixtures + fixtures: {} - uid: 4037 components: - type: Transform @@ -96233,6 +97602,8 @@ entities: - 30329 - 5582 - 30327 + - type: Fixtures + fixtures: {} - uid: 4514 components: - type: Transform @@ -96261,6 +97632,8 @@ entities: - 16528 - 30338 - 30028 + - type: Fixtures + fixtures: {} - uid: 10191 components: - type: Transform @@ -96275,6 +97648,8 @@ entities: - 16523 - 16524 - 16525 + - type: Fixtures + fixtures: {} - uid: 13051 components: - type: Transform @@ -96289,6 +97664,8 @@ entities: - 30358 - 30359 - 30332 + - type: Fixtures + fixtures: {} - uid: 13483 components: - type: Transform @@ -96303,6 +97680,8 @@ entities: - 17899 - 16671 - 12062 + - type: Fixtures + fixtures: {} - uid: 15810 components: - type: Transform @@ -96313,6 +97692,8 @@ entities: devices: - 876 - 18504 + - type: Fixtures + fixtures: {} - uid: 18231 components: - type: Transform @@ -96323,6 +97704,8 @@ entities: devices: - 18232 - 18233 + - type: Fixtures + fixtures: {} - uid: 18241 components: - type: Transform @@ -96337,6 +97720,8 @@ entities: - 18232 - 18234 - 18235 + - type: Fixtures + fixtures: {} - uid: 18243 components: - type: Transform @@ -96347,6 +97732,8 @@ entities: devices: - 18235 - 18234 + - type: Fixtures + fixtures: {} - uid: 18246 components: - type: Transform @@ -96366,6 +97753,8 @@ entities: - 18250 - 18252 - 18251 + - type: Fixtures + fixtures: {} - uid: 18259 components: - type: Transform @@ -96382,6 +97771,8 @@ entities: - 16536 - 16535 - 16534 + - type: Fixtures + fixtures: {} - uid: 18264 components: - type: Transform @@ -96396,6 +97787,8 @@ entities: - 3343 - 3344 - 3345 + - type: Fixtures + fixtures: {} - uid: 18274 components: - type: Transform @@ -96424,6 +97817,8 @@ entities: - 131 - 130 - 129 + - type: Fixtures + fixtures: {} - uid: 18275 components: - type: Transform @@ -96451,6 +97846,8 @@ entities: - 166 - 167 - 168 + - type: Fixtures + fixtures: {} - uid: 18276 components: - type: Transform @@ -96485,6 +97882,8 @@ entities: - 181 - 180 - 179 + - type: Fixtures + fixtures: {} - uid: 18277 components: - type: Transform @@ -96513,6 +97912,8 @@ entities: - 124 - 125 - 126 + - type: Fixtures + fixtures: {} - uid: 18281 components: - type: Transform @@ -96547,6 +97948,8 @@ entities: - 158 - 157 - 156 + - type: Fixtures + fixtures: {} - uid: 18282 components: - type: Transform @@ -96580,6 +97983,8 @@ entities: - 171 - 170 - 169 + - type: Fixtures + fixtures: {} - uid: 18283 components: - type: Transform @@ -96614,6 +98019,8 @@ entities: - 184 - 183 - 182 + - type: Fixtures + fixtures: {} - uid: 18284 components: - type: Transform @@ -96648,6 +98055,8 @@ entities: - 119 - 118 - 117 + - type: Fixtures + fixtures: {} - uid: 18289 components: - type: Transform @@ -96667,6 +98076,8 @@ entities: - 85 - 86 - 87 + - type: Fixtures + fixtures: {} - uid: 18302 components: - type: Transform @@ -96681,6 +98092,8 @@ entities: - 16499 - 16500 - 16501 + - type: Fixtures + fixtures: {} - uid: 18306 components: - type: Transform @@ -96701,6 +98114,8 @@ entities: - 18322 - 18307 - 18308 + - type: Fixtures + fixtures: {} - uid: 18318 components: - type: Transform @@ -96711,6 +98126,8 @@ entities: devices: - 18327 - 18326 + - type: Fixtures + fixtures: {} - uid: 18319 components: - type: Transform @@ -96726,6 +98143,8 @@ entities: - 18325 - 18309 - 18310 + - type: Fixtures + fixtures: {} - uid: 18331 components: - type: Transform @@ -96750,6 +98169,8 @@ entities: - 75 - 24132 - 17899 + - type: Fixtures + fixtures: {} - uid: 18334 components: - type: Transform @@ -96764,6 +98185,8 @@ entities: - 16516 - 16515 - 16514 + - type: Fixtures + fixtures: {} - uid: 18335 components: - type: Transform @@ -96780,18 +98203,8 @@ entities: - 2177 - 20660 - 23087 - - uid: 18444 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,14.5 - parent: 2 - - type: DeviceList - devices: - - 18371 - - 18370 - - 18441 - - 18442 + - type: Fixtures + fixtures: {} - uid: 18454 components: - type: Transform @@ -96805,6 +98218,8 @@ entities: - 16528 - 18369 - 18368 + - type: Fixtures + fixtures: {} - uid: 18464 components: - type: Transform @@ -96819,6 +98234,8 @@ entities: - 18466 - 18467 - 18468 + - type: Fixtures + fixtures: {} - uid: 18470 components: - type: Transform @@ -96835,6 +98252,8 @@ entities: - 18476 - 18468 - 18467 + - type: Fixtures + fixtures: {} - uid: 18477 components: - type: Transform @@ -96845,6 +98264,8 @@ entities: devices: - 18471 - 18472 + - type: Fixtures + fixtures: {} - uid: 18483 components: - type: Transform @@ -96854,6 +98275,8 @@ entities: devices: - 18476 - 18475 + - type: Fixtures + fixtures: {} - uid: 18484 components: - type: Transform @@ -96864,6 +98287,8 @@ entities: devices: - 18473 - 18474 + - type: Fixtures + fixtures: {} - uid: 18498 components: - type: Transform @@ -96882,6 +98307,8 @@ entities: - 16548 - 16549 - 16550 + - type: Fixtures + fixtures: {} - uid: 18500 components: - type: Transform @@ -96901,6 +98328,8 @@ entities: - 16552 - 876 - 18504 + - type: Fixtures + fixtures: {} - uid: 18531 components: - type: Transform @@ -96915,12 +98344,16 @@ entities: - 18493 - 18522 - 18523 + - type: Fixtures + fixtures: {} - uid: 18537 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18538 components: - type: Transform @@ -96934,6 +98367,8 @@ entities: - 18524 - 18527 - 18526 + - type: Fixtures + fixtures: {} - uid: 18542 components: - type: Transform @@ -96945,6 +98380,8 @@ entities: - 18528 - 18526 - 18527 + - type: Fixtures + fixtures: {} - uid: 18551 components: - type: Transform @@ -96959,6 +98396,8 @@ entities: - 18529 - 18547 - 18546 + - type: Fixtures + fixtures: {} - uid: 18552 components: - type: Transform @@ -96973,6 +98412,8 @@ entities: - 18529 - 18547 - 18546 + - type: Fixtures + fixtures: {} - uid: 18565 components: - type: Transform @@ -96986,6 +98427,8 @@ entities: - 18488 - 18489 - 18561 + - type: Fixtures + fixtures: {} - uid: 18566 components: - type: Transform @@ -97000,6 +98443,8 @@ entities: - 18572 - 18568 - 18569 + - type: Fixtures + fixtures: {} - uid: 18575 components: - type: Transform @@ -97013,6 +98458,8 @@ entities: - 18578 - 18568 - 18569 + - type: Fixtures + fixtures: {} - uid: 18583 components: - type: Transform @@ -97028,6 +98475,8 @@ entities: - 12062 - 17902 - 17903 + - type: Fixtures + fixtures: {} - uid: 18586 components: - type: Transform @@ -97038,6 +98487,8 @@ entities: devices: - 17902 - 17903 + - type: Fixtures + fixtures: {} - uid: 18604 components: - type: Transform @@ -97052,6 +98503,8 @@ entities: - 18593 - 18594 - 18608 + - type: Fixtures + fixtures: {} - uid: 18607 components: - type: Transform @@ -97071,6 +98524,8 @@ entities: - 18593 - 18609 - 18608 + - type: Fixtures + fixtures: {} - uid: 18615 components: - type: Transform @@ -97086,6 +98541,8 @@ entities: - 18617 - 18619 - 18618 + - type: Fixtures + fixtures: {} - uid: 18651 components: - type: Transform @@ -97098,6 +98555,8 @@ entities: - 18639 - 18636 - 18635 + - type: Fixtures + fixtures: {} - uid: 18653 components: - type: Transform @@ -97111,6 +98570,8 @@ entities: - 18636 - 18635 - 18634 + - type: Fixtures + fixtures: {} - uid: 18657 components: - type: Transform @@ -97120,6 +98581,8 @@ entities: - type: DeviceList devices: - 18638 + - type: Fixtures + fixtures: {} - uid: 18662 components: - type: Transform @@ -97135,6 +98598,8 @@ entities: - 18248 - 18249 - 18659 + - type: Fixtures + fixtures: {} - uid: 18668 components: - type: Transform @@ -97144,6 +98609,8 @@ entities: - type: DeviceList devices: - 18659 + - type: Fixtures + fixtures: {} - uid: 18679 components: - type: Transform @@ -97153,6 +98620,8 @@ entities: - type: DeviceList devices: - 18660 + - type: Fixtures + fixtures: {} - uid: 18684 components: - type: Transform @@ -97162,6 +98631,8 @@ entities: - type: DeviceList devices: - 18661 + - type: Fixtures + fixtures: {} - uid: 18685 components: - type: Transform @@ -97173,6 +98644,8 @@ entities: - 2200 - 18595 - 18594 + - type: Fixtures + fixtures: {} - uid: 18688 components: - type: Transform @@ -97182,12 +98655,16 @@ entities: - type: DeviceList devices: - 18597 + - type: Fixtures + fixtures: {} - uid: 18689 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18699 components: - type: Transform @@ -97197,6 +98674,8 @@ entities: - type: DeviceList devices: - 18698 + - type: Fixtures + fixtures: {} - uid: 20687 components: - type: Transform @@ -97208,6 +98687,8 @@ entities: - 18523 - 18522 - 18524 + - type: Fixtures + fixtures: {} - uid: 21211 components: - type: Transform @@ -97217,6 +98698,8 @@ entities: - type: DeviceList devices: - 21390 + - type: Fixtures + fixtures: {} - uid: 21367 components: - type: Transform @@ -97228,6 +98711,8 @@ entities: - 25356 - 25354 - 25353 + - type: Fixtures + fixtures: {} - uid: 21372 components: - type: Transform @@ -97239,6 +98724,8 @@ entities: - 25356 - 25354 - 25353 + - type: Fixtures + fixtures: {} - uid: 21412 components: - type: Transform @@ -97248,6 +98735,8 @@ entities: - type: DeviceList devices: - 22384 + - type: Fixtures + fixtures: {} - uid: 21417 components: - type: Transform @@ -97257,6 +98746,8 @@ entities: - type: DeviceList devices: - 25359 + - type: Fixtures + fixtures: {} - uid: 21418 components: - type: Transform @@ -97266,6 +98757,8 @@ entities: - type: DeviceList devices: - 25359 + - type: Fixtures + fixtures: {} - uid: 21419 components: - type: Transform @@ -97275,6 +98768,8 @@ entities: - type: DeviceList devices: - 21413 + - type: Fixtures + fixtures: {} - uid: 21420 components: - type: Transform @@ -97283,6 +98778,8 @@ entities: - type: DeviceList devices: - 21413 + - type: Fixtures + fixtures: {} - uid: 21452 components: - type: Transform @@ -97294,6 +98791,8 @@ entities: - 25357 - 25358 - 25352 + - type: Fixtures + fixtures: {} - uid: 21454 components: - type: Transform @@ -97304,6 +98803,8 @@ entities: - 25357 - 25358 - 25352 + - type: Fixtures + fixtures: {} - uid: 21460 components: - type: Transform @@ -97312,6 +98813,8 @@ entities: - type: DeviceList devices: - 21457 + - type: Fixtures + fixtures: {} - uid: 21463 components: - type: Transform @@ -97320,6 +98823,8 @@ entities: - type: DeviceList devices: - 21457 + - type: Fixtures + fixtures: {} - uid: 21570 components: - type: Transform @@ -97331,6 +98836,8 @@ entities: - 26798 - 26787 - 26792 + - type: Fixtures + fixtures: {} - uid: 21697 components: - type: Transform @@ -97340,6 +98847,8 @@ entities: - type: DeviceList devices: - 21709 + - type: Fixtures + fixtures: {} - uid: 21712 components: - type: Transform @@ -97349,6 +98858,8 @@ entities: - type: DeviceList devices: - 28045 + - type: Fixtures + fixtures: {} - uid: 22141 components: - type: Transform @@ -97358,6 +98869,8 @@ entities: - type: DeviceList devices: - 21709 + - type: Fixtures + fixtures: {} - uid: 22952 components: - type: Transform @@ -97367,6 +98880,8 @@ entities: - type: DeviceList devices: - 30331 + - type: Fixtures + fixtures: {} - uid: 23057 components: - type: Transform @@ -97379,6 +98894,8 @@ entities: - 23053 - 23054 - 23055 + - type: Fixtures + fixtures: {} - uid: 23088 components: - type: Transform @@ -97391,6 +98908,8 @@ entities: - 23087 - 18621 - 18620 + - type: Fixtures + fixtures: {} - uid: 23680 components: - type: Transform @@ -97401,6 +98920,8 @@ entities: devices: - 16775 - 23678 + - type: Fixtures + fixtures: {} - uid: 23681 components: - type: Transform @@ -97415,6 +98936,8 @@ entities: - 16775 - 16551 - 16552 + - type: Fixtures + fixtures: {} - uid: 23726 components: - type: Transform @@ -97428,6 +98951,8 @@ entities: - 23687 - 23685 - 23686 + - type: Fixtures + fixtures: {} - uid: 24092 components: - type: Transform @@ -97439,6 +98964,8 @@ entities: - 24090 - 24089 - 24087 + - type: Fixtures + fixtures: {} - uid: 24225 components: - type: Transform @@ -97448,6 +98975,8 @@ entities: - type: DeviceList devices: - 24155 + - type: Fixtures + fixtures: {} - uid: 24298 components: - type: Transform @@ -97457,6 +98986,8 @@ entities: - type: DeviceList devices: - 26587 + - type: Fixtures + fixtures: {} - uid: 24299 components: - type: Transform @@ -97466,6 +98997,8 @@ entities: - type: DeviceList devices: - 26587 + - type: Fixtures + fixtures: {} - uid: 24301 components: - type: Transform @@ -97474,6 +99007,8 @@ entities: - type: DeviceList devices: - 21390 + - type: Fixtures + fixtures: {} - uid: 24302 components: - type: Transform @@ -97483,6 +99018,8 @@ entities: - type: DeviceList devices: - 21397 + - type: Fixtures + fixtures: {} - uid: 24303 components: - type: Transform @@ -97491,6 +99028,8 @@ entities: - type: DeviceList devices: - 21397 + - type: Fixtures + fixtures: {} - uid: 24304 components: - type: Transform @@ -97499,6 +99038,8 @@ entities: - type: DeviceList devices: - 21389 + - type: Fixtures + fixtures: {} - uid: 24305 components: - type: Transform @@ -97508,6 +99049,8 @@ entities: - type: DeviceList devices: - 21389 + - type: Fixtures + fixtures: {} - uid: 26222 components: - type: Transform @@ -97516,6 +99059,8 @@ entities: - type: DeviceList devices: - 22384 + - type: Fixtures + fixtures: {} - uid: 26679 components: - type: Transform @@ -97525,6 +99070,8 @@ entities: - type: DeviceList devices: - 28045 + - type: Fixtures + fixtures: {} - uid: 28066 components: - type: Transform @@ -97536,6 +99083,8 @@ entities: - 26798 - 26787 - 26792 + - type: Fixtures + fixtures: {} - uid: 28901 components: - type: Transform @@ -97545,6 +99094,8 @@ entities: - type: DeviceList devices: - 18546 + - type: Fixtures + fixtures: {} - uid: 29463 components: - type: Transform @@ -97554,6 +99105,8 @@ entities: - type: DeviceList devices: - 29461 + - type: Fixtures + fixtures: {} - uid: 29464 components: - type: Transform @@ -97565,6 +99118,8 @@ entities: - 18601 - 18620 - 18621 + - type: Fixtures + fixtures: {} - uid: 30080 components: - type: Transform @@ -97574,6 +99129,8 @@ entities: devices: - 30338 - 30028 + - type: Fixtures + fixtures: {} - uid: 30348 components: - type: Transform @@ -97587,6 +99144,8 @@ entities: - 30344 - 30345 - 30341 + - type: Fixtures + fixtures: {} - uid: 30349 components: - type: Transform @@ -97598,6 +99157,8 @@ entities: - 30346 - 30347 - 30341 + - type: Fixtures + fixtures: {} - uid: 30350 components: - type: Transform @@ -97611,6 +99172,8 @@ entities: - 30335 - 30354 - 30355 + - type: Fixtures + fixtures: {} - uid: 30351 components: - type: Transform @@ -97621,6 +99184,8 @@ entities: - 30333 - 30334 - 30330 + - type: Fixtures + fixtures: {} - uid: 30352 components: - type: Transform @@ -97637,6 +99202,8 @@ entities: - 30340 - 30337 - 30336 + - type: Fixtures + fixtures: {} - uid: 30353 components: - type: Transform @@ -97650,6 +99217,8 @@ entities: - 30333 - 30354 - 30355 + - type: Fixtures + fixtures: {} - uid: 30356 components: - type: Transform @@ -97663,19 +99232,8 @@ entities: - 30333 - 30354 - 30355 - - uid: 30361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-18.5 - parent: 2 - - type: DeviceList - devices: - - 30327 - - 30331 - - 30332 - - 30359 - - 30358 + - type: Fixtures + fixtures: {} - uid: 30827 components: - type: Transform @@ -97688,6 +99246,8 @@ entities: - 30821 - 30819 - 12226 + - type: Fixtures + fixtures: {} - uid: 30828 components: - type: Transform @@ -97700,6 +99260,37 @@ entities: - 30821 - 30819 - 12226 + - type: Fixtures + fixtures: {} + - uid: 30836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 30327 + - 30331 + - 30332 + - 30359 + - 30358 + - type: Fixtures + fixtures: {} + - uid: 31037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,12.5 + parent: 2 + - type: DeviceList + devices: + - 2381 + - 2380 + - 30992 + - 30993 + - type: Fixtures + fixtures: {} - proto: FireAxeCabinetFilled entities: - uid: 2471 @@ -97708,12 +99299,16 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28373 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FireExtinguisher entities: - uid: 6252 @@ -98676,7 +100271,7 @@ entities: pos: -13.5,-1.5 parent: 2 - type: Door - secondsUntilStateChange: -278084.75 + secondsUntilStateChange: -303342.88 - type: DeviceNetwork deviceLists: - 18275 @@ -99218,6 +100813,24 @@ entities: - 18687 - 18607 - 18606 + - uid: 2380 + components: + - type: Transform + pos: 61.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31037 + - 31038 + - uid: 2381 + components: + - type: Transform + pos: 60.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31037 + - 31038 - uid: 3343 components: - type: Transform @@ -100129,48 +101742,6 @@ entities: - 15512 - 18440 - 18454 - - uid: 18370 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18440 - - 18444 - - 18443 - - uid: 18371 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18440 - - 18444 - - 18443 - - uid: 18441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18444 - - 18443 - - uid: 18442 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,17.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18444 - - 18443 - uid: 18465 components: - type: Transform @@ -101193,8 +102764,8 @@ entities: deviceLists: - 4037 - 30357 - - 30361 - 30363 + - 30836 - uid: 30328 components: - type: Transform @@ -101239,10 +102810,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 30361 - 30363 - 30364 - 22952 + - 30836 - uid: 30332 components: - type: Transform @@ -101253,8 +102824,8 @@ entities: deviceLists: - 30360 - 13051 - - 30361 - 30363 + - 30836 - uid: 30333 components: - type: Transform @@ -101480,8 +103051,8 @@ entities: deviceLists: - 30360 - 13051 - - 30361 - 30363 + - 30836 - uid: 30359 components: - type: Transform @@ -101492,8 +103063,46 @@ entities: deviceLists: - 30360 - 13051 - - 30361 - 30363 + - 30836 + - uid: 30992 + components: + - type: Transform + pos: 57.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31037 + - 31038 + - 31039 + - uid: 30993 + components: + - type: Transform + pos: 53.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31037 + - 31038 + - 31039 + - uid: 30994 + components: + - type: Transform + pos: 51.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31039 + - 31040 + - uid: 30995 + components: + - type: Transform + pos: 59.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31039 + - 31040 - proto: Fireplace entities: - uid: 1588 @@ -101892,16 +103501,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.5742838,-52.5 parent: 2 - - uid: 13063 - components: - - type: Transform - pos: 58.45381,19.547539 - parent: 2 - - uid: 13064 - components: - - type: Transform - pos: 58.594437,19.375664 - parent: 2 - uid: 19044 components: - type: Transform @@ -101931,6 +103530,16 @@ entities: rot: -1.5707963267948966 rad pos: 40.50512,-2.6322846 parent: 2 + - uid: 31069 + components: + - type: Transform + pos: 60.204136,16.662529 + parent: 2 + - uid: 31070 + components: + - type: Transform + pos: 60.422886,16.485447 + parent: 2 - proto: FoodBakedCookieOatmeal entities: - uid: 23380 @@ -101999,10 +103608,10 @@ entities: parent: 2 - proto: FoodBurgerRobot entities: - - uid: 13066 + - uid: 31057 components: - type: Transform - pos: 51.50141,22.597155 + pos: 50.48245,13.668946 parent: 2 - proto: FoodCartCold entities: @@ -102064,6 +103673,30 @@ entities: - type: Transform pos: 13.403409,29.562233 parent: 2 + - uid: 30886 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30887 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30888 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30889 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False - proto: FoodFrozenPopsicleJumbo entities: - uid: 1579 @@ -102110,6 +103743,96 @@ entities: rot: -1.5707963267948966 rad pos: -24.074755,-39.23473 parent: 2 + - uid: 30854 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30855 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30862 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30863 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30864 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30869 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30870 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30871 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30872 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30873 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30874 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30906 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30907 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30908 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30910 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False - proto: FoodFrozenSandwichStrawberry entities: - uid: 1595 @@ -102119,6 +103842,50 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: FoodFrozenSnowconeTrash + entities: + - uid: 30875 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30876 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30877 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30878 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30880 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30884 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30885 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False - proto: FoodFrozenSundae entities: - uid: 1580 @@ -102196,6 +103963,16 @@ entities: - type: Transform pos: -25.542435,-40.44679 parent: 2 + - uid: 30846 + components: + - type: Transform + pos: -25.429605,-40.442677 + parent: 2 + - uid: 30847 + components: + - type: Transform + pos: -25.690022,-40.43226 + parent: 2 - proto: FoodOrange entities: - uid: 16226 @@ -102244,6 +104021,20 @@ entities: - type: Transform pos: -37.508495,-43.551857 parent: 2 +- proto: FoodPlateTrash + entities: + - uid: 30912 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30913 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False - proto: FoodPoppy entities: - uid: 2295 @@ -102284,14 +104075,14 @@ entities: - uid: 3595 components: - type: Transform - pos: 23.980179,16.619486 + pos: 24.004051,16.731583 parent: 2 - proto: FoodSnackPistachios entities: - uid: 3596 components: - type: Transform - pos: 23.433304,16.119486 + pos: 23.410301,15.981584 parent: 2 - proto: FoodSnackRaisins entities: @@ -102324,6 +104115,80 @@ entities: - type: Transform pos: -34.484306,-51.296925 parent: 2 +- proto: FoodTinBeansTrash + entities: + - uid: 30849 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30857 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30860 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30865 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30866 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30867 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30868 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30890 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30891 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30892 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30893 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30894 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False - proto: FoodTinMRETrash entities: - uid: 30139 @@ -102331,6 +104196,142 @@ entities: - type: Transform pos: -26.621073,-39.243793 parent: 2 + - uid: 30851 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30858 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30896 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30897 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30898 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30899 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30904 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False +- proto: FoodTinPeachesMaintTrash + entities: + - uid: 30879 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False +- proto: FoodTinPeachesTrash + entities: + - uid: 30850 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30852 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30853 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30856 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30859 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30861 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30895 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30905 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30909 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30911 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30914 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30915 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30916 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30918 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False - proto: FoodWatermelon entities: - uid: 19149 @@ -102368,6 +104369,8 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FundingAllocationComputerCircuitboard entities: - uid: 1404 @@ -102377,12 +104380,19 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: FungalSoil + entities: + - uid: 30835 + components: + - type: Transform + pos: 50.5,-31.5 + parent: 2 - proto: GameMasterCircuitBoard entities: - uid: 29445 components: - type: Transform - pos: 61.47509,21.65281 + pos: 50.2482,21.60414 parent: 2 - proto: GasAnalyzer entities: @@ -102668,6 +104678,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 30943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' - proto: GasPassiveVent entities: - uid: 5579 @@ -102873,6 +104899,54 @@ entities: - type: Transform pos: 52.5,16.5 parent: 21002 + - uid: 30955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 31011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' - proto: GasPipeBend entities: - uid: 51 @@ -104895,36 +106969,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 18433 - components: - - type: Transform - pos: 60.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18434 - components: - - type: Transform - pos: 61.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18435 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18436 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 18461 components: - type: Transform @@ -105394,6 +107438,51 @@ entities: parent: 21002 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 30949 + components: + - type: Transform + pos: 58.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 31000 + components: + - type: Transform + pos: 60.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31002 + components: + - type: Transform + pos: 61.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeFourway entities: - uid: 666 @@ -124750,38 +126839,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 18393 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18394 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18395 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18396 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 18397 components: - type: Transform @@ -124846,140 +126903,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18413 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18414 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18415 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18416 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18417 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18418 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18419 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18420 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18421 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18422 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18423 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18424 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18425 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18426 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18427 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18428 - components: - - type: Transform - pos: 60.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18429 - components: - - type: Transform - pos: 60.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 19075 components: - type: Transform @@ -127627,6 +129550,378 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 30947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30952 + components: + - type: Transform + pos: 58.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30953 + components: + - type: Transform + pos: 52.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30954 + components: + - type: Transform + pos: 52.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30986 + components: + - type: Transform + pos: 61.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 30987 + components: + - type: Transform + pos: 60.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 30988 + components: + - type: Transform + pos: 60.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 30989 + components: + - type: Transform + pos: 61.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 30990 + components: + - type: Transform + pos: 61.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 30991 + components: + - type: Transform + pos: 60.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31001 + components: + - type: Transform + pos: 61.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31008 + components: + - type: Transform + pos: 59.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31009 + components: + - type: Transform + pos: 59.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31012 + components: + - type: Transform + pos: 59.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31013 + components: + - type: Transform + pos: 59.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31014 + components: + - type: Transform + pos: 59.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31015 + components: + - type: Transform + pos: 51.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31016 + components: + - type: Transform + pos: 51.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31017 + components: + - type: Transform + pos: 51.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31018 + components: + - type: Transform + pos: 51.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31020 + components: + - type: Transform + pos: 51.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - proto: GasPipeTJunction entities: - uid: 17 @@ -130512,21 +132807,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18432 - components: - - type: Transform - pos: 60.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 19545 components: - type: Transform @@ -130871,6 +133151,96 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 30945 + components: + - type: Transform + pos: 54.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30946 + components: + - type: Transform + pos: 56.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30948 + components: + - type: Transform + pos: 57.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30951 + components: + - type: Transform + pos: 53.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30968 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30969 + components: + - type: Transform + pos: 53.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 31003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPort entities: - uid: 1675 @@ -131117,6 +133487,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 30939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' - proto: GasPressurePump entities: - uid: 43 @@ -133470,27 +135856,6 @@ entities: - 30366 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 18410 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18443 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18411 - components: - - type: Transform - pos: 53.5,18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29864 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 18654 components: - type: Transform @@ -133807,6 +136172,38 @@ entities: - 21504 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 31007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31038 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31039 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31036 + components: + - type: Transform + pos: 59.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31040 + - type: AtmosPipeColor + color: '#0335FCFF' - proto: GasVentScrubber entities: - uid: 53 @@ -135663,27 +138060,6 @@ entities: - 18440 - type: AtmosPipeColor color: '#990000FF' - - uid: 18409 - components: - - type: Transform - pos: 59.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18443 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18412 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29864 - - type: AtmosPipeColor - color: '#990000FF' - uid: 18655 components: - type: Transform @@ -136047,6 +138423,38 @@ entities: - 30403 - type: AtmosPipeColor color: '#990000FF' + - uid: 30964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31039 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31038 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31035 + components: + - type: Transform + pos: 51.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31040 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasVolumePump entities: - uid: 8939 @@ -136116,6 +138524,14 @@ entities: - ActivatableUI - UserInterface - Gateway +- proto: GeigerCounter + entities: + - uid: 31114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.485546,18.73488 + parent: 2 - proto: GlassBoxLaserFilled entities: - uid: 30286 @@ -136136,7 +138552,7 @@ entities: - uid: 9690 components: - type: Transform - pos: 24.054735,15.237508 + pos: 23.941551,15.148251 parent: 2 - proto: GravityGenerator entities: @@ -136154,6 +138570,12 @@ entities: parent: 21002 - proto: Grille entities: + - uid: 18 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,24.5 + parent: 2 - uid: 25 components: - type: Transform @@ -136710,30 +139132,6 @@ entities: - type: Transform pos: 21.5,3.5 parent: 2 - - uid: 2371 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,24.5 - parent: 2 - - uid: 2372 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,24.5 - parent: 2 - - uid: 2373 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,23.5 - parent: 2 - - uid: 2380 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,22.5 - parent: 2 - uid: 2422 components: - type: Transform @@ -136780,6 +139178,27 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,12.5 parent: 2 + - uid: 2673 + components: + - type: Transform + pos: 63.5,22.5 + parent: 2 + - uid: 2695 + components: + - type: Transform + pos: 51.5,11.5 + parent: 2 + - uid: 3044 + components: + - type: Transform + pos: 46.5,13.5 + parent: 2 + - uid: 3047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,26.5 + parent: 2 - uid: 3162 components: - type: Transform @@ -136792,6 +139211,18 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-79.5 parent: 2 + - uid: 3194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,25.5 + parent: 2 + - uid: 3197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,23.5 + parent: 2 - uid: 3225 components: - type: Transform @@ -136897,6 +139328,12 @@ entities: - type: Transform pos: 45.5,-22.5 parent: 2 + - uid: 3593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,17.5 + parent: 2 - uid: 3679 components: - type: Transform @@ -137212,6 +139649,12 @@ entities: rot: 3.141592653589793 rad pos: 31.5,-26.5 parent: 2 + - uid: 4823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,21.5 + parent: 2 - uid: 5249 components: - type: Transform @@ -137618,12 +140061,6 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,51.5 parent: 2 - - uid: 7016 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,51.5 - parent: 2 - uid: 7017 components: - type: Transform @@ -138652,24 +141089,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,3.5 parent: 2 - - uid: 8955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,24.5 - parent: 2 - - uid: 8956 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,23.5 - parent: 2 - - uid: 8957 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,22.5 - parent: 2 - uid: 9257 components: - type: Transform @@ -139173,6 +141592,16 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-55.5 parent: 2 + - uid: 10959 + components: + - type: Transform + pos: 63.5,25.5 + parent: 2 + - uid: 10960 + components: + - type: Transform + pos: 63.5,24.5 + parent: 2 - uid: 11186 components: - type: Transform @@ -139428,244 +141857,195 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-55.5 parent: 2 + - uid: 12567 + components: + - type: Transform + pos: 63.5,21.5 + parent: 2 - uid: 12691 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,11.5 + pos: 63.5,18.5 parent: 2 - uid: 12692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,13.5 - parent: 2 - - uid: 12693 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,12.5 + pos: 55.5,11.5 parent: 2 - uid: 12694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,15.5 + pos: 57.5,11.5 parent: 2 - uid: 12695 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,14.5 + pos: 50.5,11.5 parent: 2 - uid: 12696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,16.5 + pos: 48.5,11.5 parent: 2 - uid: 12697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,17.5 + pos: 47.5,11.5 parent: 2 - uid: 12698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,18.5 - parent: 2 - - uid: 12699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,19.5 - parent: 2 - - uid: 12700 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,20.5 - parent: 2 - - uid: 12701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,21.5 - parent: 2 - - uid: 12702 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,24.5 + pos: 46.5,12.5 parent: 2 - uid: 12705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,24.5 + rot: 1.5707963267948966 rad + pos: 47.5,22.5 parent: 2 - - uid: 12707 + - uid: 12706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,24.5 + rot: 1.5707963267948966 rad + pos: 47.5,20.5 parent: 2 - uid: 12708 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,24.5 - parent: 2 - - uid: 12710 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,24.5 - parent: 2 - - uid: 12711 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,21.5 - parent: 2 - - uid: 12712 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,20.5 - parent: 2 - - uid: 12713 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,19.5 - parent: 2 - - uid: 12719 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,13.5 - parent: 2 - - uid: 12720 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,12.5 - parent: 2 - - uid: 12721 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,11.5 - parent: 2 - - uid: 12722 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,11.5 - parent: 2 - - uid: 12723 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,11.5 - parent: 2 - - uid: 12724 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,11.5 - parent: 2 - - uid: 12725 - components: - - type: Transform - rot: -1.5707963267948966 rad pos: 52.5,11.5 parent: 2 - - uid: 12726 + - uid: 12734 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,11.5 - parent: 2 - - uid: 12727 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,11.5 - parent: 2 - - uid: 12728 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,11.5 - parent: 2 - - uid: 12729 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,11.5 - parent: 2 - - uid: 12730 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,11.5 - parent: 2 - - uid: 12745 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,24.5 + pos: 63.5,26.5 parent: 2 - uid: 12746 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,24.5 - parent: 2 - - uid: 12747 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,24.5 + rot: 1.5707963267948966 rad + pos: 48.5,31.5 parent: 2 - uid: 12748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,24.5 + rot: 1.5707963267948966 rad + pos: 49.5,31.5 parent: 2 - - uid: 12785 + - uid: 12749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,24.5 + rot: 1.5707963267948966 rad + pos: 51.5,31.5 parent: 2 - - uid: 12816 + - uid: 12750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,22.5 + rot: 1.5707963267948966 rad + pos: 50.5,31.5 parent: 2 - - uid: 12817 + - uid: 12751 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,23.5 + rot: 1.5707963267948966 rad + pos: 54.5,30.5 + parent: 2 + - uid: 12754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,29.5 + parent: 2 + - uid: 12756 + components: + - type: Transform + pos: 63.5,16.5 + parent: 2 + - uid: 12758 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 12759 + components: + - type: Transform + pos: 46.5,14.5 + parent: 2 + - uid: 12774 + components: + - type: Transform + pos: 63.5,17.5 + parent: 2 + - uid: 12775 + components: + - type: Transform + pos: 63.5,23.5 + parent: 2 + - uid: 12776 + components: + - type: Transform + pos: 63.5,20.5 + parent: 2 + - uid: 12777 + components: + - type: Transform + pos: 63.5,19.5 + parent: 2 + - uid: 12778 + components: + - type: Transform + pos: 53.5,11.5 + parent: 2 + - uid: 12783 + components: + - type: Transform + pos: 63.5,14.5 + parent: 2 + - uid: 12833 + components: + - type: Transform + pos: 46.5,11.5 + parent: 2 + - uid: 12855 + components: + - type: Transform + pos: 58.5,11.5 + parent: 2 + - uid: 12862 + components: + - type: Transform + pos: 46.5,18.5 + parent: 2 + - uid: 12863 + components: + - type: Transform + pos: 56.5,11.5 + parent: 2 + - uid: 12870 + components: + - type: Transform + pos: 63.5,13.5 + parent: 2 + - uid: 12871 + components: + - type: Transform + pos: 46.5,15.5 + parent: 2 + - uid: 12886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,17.5 parent: 2 - uid: 12887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,16.5 + pos: 63.5,15.5 parent: 2 - - uid: 12936 + - uid: 12901 components: - type: Transform - pos: 57.5,16.5 + rot: 3.141592653589793 rad + pos: 59.5,17.5 parent: 2 - uid: 12989 components: @@ -139678,6 +142058,18 @@ entities: - type: Transform pos: 65.5,22.5 parent: 2 + - uid: 13062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,19.5 + parent: 2 + - uid: 13066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,22.5 + parent: 2 - uid: 13080 components: - type: Transform @@ -139832,6 +142224,11 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,-17.5 parent: 2 + - uid: 14688 + components: + - type: Transform + pos: 48.5,27.5 + parent: 2 - uid: 15252 components: - type: Transform @@ -140365,6 +142762,17 @@ entities: rot: 3.141592653589793 rad pos: 34.5,-1.5 parent: 2 + - uid: 18412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,17.5 + parent: 2 + - uid: 18418 + components: + - type: Transform + pos: 56.5,19.5 + parent: 2 - uid: 18558 components: - type: Transform @@ -140854,6 +143262,11 @@ entities: rot: -1.5707963267948966 rad pos: 65.5,-18.5 parent: 2 + - uid: 20237 + components: + - type: Transform + pos: 46.5,17.5 + parent: 2 - uid: 20238 components: - type: Transform @@ -140890,12 +143303,6 @@ entities: rot: -1.5707963267948966 rad pos: 66.5,19.5 parent: 2 - - uid: 20247 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,28.5 - parent: 2 - uid: 20248 components: - type: Transform @@ -140908,34 +143315,28 @@ entities: rot: -1.5707963267948966 rad pos: 65.5,24.5 parent: 2 - - uid: 20250 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,28.5 - parent: 2 - - uid: 20251 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,27.5 - parent: 2 - uid: 20252 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,28.5 + rot: 3.141592653589793 rad + pos: 49.5,17.5 parent: 2 - - uid: 20259 + - uid: 20256 components: - type: Transform - pos: 65.5,12.5 + pos: 54.5,11.5 parent: 2 - uid: 20260 components: - type: Transform pos: 66.5,16.5 parent: 2 + - uid: 20265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,34.5 + parent: 2 - uid: 20266 components: - type: Transform @@ -140946,6 +143347,12 @@ entities: - type: Transform pos: 66.5,15.5 parent: 2 + - uid: 20275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,30.5 + parent: 2 - uid: 20347 components: - type: Transform @@ -141186,23 +143593,20 @@ entities: rot: 3.141592653589793 rad pos: 52.5,39.5 parent: 2 - - uid: 20387 + - uid: 20493 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,33.5 + pos: 37.5,51.5 parent: 2 - - uid: 20485 + - uid: 20494 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,28.5 + pos: 47.5,27.5 parent: 2 - - uid: 20561 + - uid: 20496 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,28.5 + pos: 49.5,27.5 parent: 2 - uid: 20562 components: @@ -141502,6 +143906,22 @@ entities: rot: -1.5707963267948966 rad pos: 51.5,-10.5 parent: 2 + - uid: 20910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,19.5 + parent: 2 + - uid: 20912 + components: + - type: Transform + pos: 51.5,27.5 + parent: 2 + - uid: 20913 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 - uid: 21071 components: - type: Transform @@ -141532,18 +143952,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,1.5 parent: 21002 - - uid: 21076 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,3.5 - parent: 21002 - - uid: 21077 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,3.5 - parent: 21002 - uid: 21080 components: - type: Transform @@ -142986,6 +145394,18 @@ entities: rot: 1.5707963267948966 rad pos: -58.5,-8.5 parent: 2 + - uid: 29135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,22.5 + parent: 2 + - uid: 29136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,22.5 + parent: 2 - uid: 29143 components: - type: Transform @@ -143010,66 +145430,59 @@ entities: rot: 1.5707963267948966 rad pos: 52.5,-21.5 parent: 2 + - uid: 29159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,17.5 + parent: 2 + - uid: 29160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,18.5 + parent: 2 - uid: 29193 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-21.5 parent: 2 - - uid: 29337 + - uid: 29303 components: - type: Transform - pos: 63.5,21.5 + pos: 58.5,27.5 + parent: 2 + - uid: 29304 + components: + - type: Transform + pos: 55.5,27.5 + parent: 2 + - uid: 29305 + components: + - type: Transform + pos: 60.5,27.5 + parent: 2 + - uid: 29331 + components: + - type: Transform + pos: 57.5,27.5 + parent: 2 + - uid: 29332 + components: + - type: Transform + pos: 59.5,27.5 + parent: 2 + - uid: 29333 + components: + - type: Transform + pos: 62.5,27.5 parent: 2 - uid: 29338 components: - type: Transform - pos: 63.5,20.5 - parent: 2 - - uid: 29339 - components: - - type: Transform - pos: 63.5,18.5 - parent: 2 - - uid: 29340 - components: - - type: Transform - pos: 63.5,17.5 - parent: 2 - - uid: 29341 - components: - - type: Transform - pos: 63.5,16.5 - parent: 2 - - uid: 29342 - components: - - type: Transform - pos: 63.5,15.5 - parent: 2 - - uid: 29343 - components: - - type: Transform - pos: 63.5,14.5 - parent: 2 - - uid: 29344 - components: - - type: Transform - pos: 63.5,13.5 - parent: 2 - - uid: 29345 - components: - - type: Transform - pos: 63.5,19.5 - parent: 2 - - uid: 29346 - components: - - type: Transform - pos: 63.5,12.5 - parent: 2 - - uid: 29347 - components: - - type: Transform - pos: 63.5,11.5 + rot: 3.141592653589793 rad + pos: 52.5,18.5 parent: 2 - uid: 29355 components: @@ -143086,41 +145499,76 @@ entities: - type: Transform pos: 69.5,23.5 parent: 2 + - uid: 29364 + components: + - type: Transform + pos: 55.5,19.5 + parent: 2 + - uid: 29366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,22.5 + parent: 2 + - uid: 29367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,22.5 + parent: 2 + - uid: 29368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,22.5 + parent: 2 + - uid: 29370 + components: + - type: Transform + pos: 63.5,27.5 + parent: 2 + - uid: 29371 + components: + - type: Transform + pos: 61.5,27.5 + parent: 2 - uid: 29372 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,28.5 + pos: 53.5,27.5 parent: 2 - - uid: 29426 + - uid: 29373 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 + - uid: 29374 + components: + - type: Transform + pos: 54.5,27.5 + parent: 2 + - uid: 29431 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,24.5 + pos: 52.5,19.5 parent: 2 - - uid: 29427 + - uid: 29435 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,24.5 + pos: 51.5,17.5 parent: 2 - - uid: 29428 + - uid: 29436 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,24.5 + pos: 50.5,17.5 parent: 2 - - uid: 29429 + - uid: 29441 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,24.5 - parent: 2 - - uid: 29430 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,24.5 + pos: 46.5,16.5 parent: 2 - uid: 29448 components: @@ -143152,6 +145600,12 @@ entities: rot: 1.5707963267948966 rad pos: -58.5,-11.5 parent: 2 + - uid: 29576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,18.5 + parent: 2 - uid: 29580 components: - type: Transform @@ -143175,6 +145629,11 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,-19.5 parent: 2 + - uid: 29864 + components: + - type: Transform + pos: 56.5,27.5 + parent: 2 - uid: 30023 components: - type: Transform @@ -143193,6 +145652,11 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,-1.5 parent: 2 + - uid: 30936 + components: + - type: Transform + pos: 54.5,19.5 + parent: 2 - proto: GrilleBroken entities: - uid: 22881 @@ -143435,6 +145899,16 @@ entities: rot: -1.5707963267948966 rad pos: 63.5,-7.5 parent: 2 + - uid: 12824 + components: + - type: Transform + pos: 57.5,31.5 + parent: 2 + - uid: 13773 + components: + - type: Transform + pos: 65.5,12.5 + parent: 2 - uid: 19885 components: - type: Transform @@ -144256,11 +146730,6 @@ entities: - type: Transform pos: 65.5,14.5 parent: 2 - - uid: 29308 - components: - - type: Transform - pos: 65.5,11.5 - parent: 2 - proto: GunSafeDisabler entities: - uid: 4271 @@ -144441,11 +146910,6 @@ entities: - type: Transform pos: 32.5,34.5 parent: 2 - - uid: 3047 - components: - - type: Transform - pos: 60.5,20.5 - parent: 2 - uid: 11477 components: - type: Transform @@ -144456,16 +146920,6 @@ entities: - type: Transform pos: -43.5,-21.5 parent: 2 - - uid: 12931 - components: - - type: Transform - pos: 57.5,17.5 - parent: 2 - - uid: 12932 - components: - - type: Transform - pos: 57.5,15.5 - parent: 2 - uid: 23600 components: - type: Transform @@ -144633,10 +147087,10 @@ entities: baseName: holopad - proto: HolopadAiBackupPower entities: - - uid: 12567 + - uid: 31081 components: - type: Transform - pos: 51.5,20.5 + pos: 49.5,16.5 parent: 2 - proto: HolopadAiChute entities: @@ -144645,36 +147099,33 @@ entities: - type: Transform pos: 61.5,8.5 parent: 2 - - uid: 29002 - components: - - type: Transform - pos: 61.5,8.5 - parent: 2 - proto: HolopadAiCore entities: - - uid: 12886 + - uid: 30937 components: - type: Transform - pos: 49.5,16.5 - parent: 2 - - uid: 23528 - components: - - type: Transform - pos: 49.5,16.5 + pos: 55.5,24.5 parent: 2 - proto: HolopadAiEntrance entities: - - uid: 10840 + - uid: 13130 components: - type: Transform - pos: 54.5,16.5 + pos: 59.5,5.5 + parent: 2 +- proto: HolopadAiMain + entities: + - uid: 18414 + components: + - type: Transform + pos: 55.5,20.5 parent: 2 - proto: HolopadAiUpload entities: - - uid: 28975 + - uid: 30361 components: - type: Transform - pos: 60.5,18.5 + pos: 55.5,17.5 parent: 2 - proto: HolopadCargoBay entities: @@ -145096,10 +147547,10 @@ entities: parent: 2 - proto: HolopadSecurityFront entities: - - uid: 29889 + - uid: 15485 components: - type: Transform - pos: 32.5,-3.5 + pos: 32.5,-4.5 parent: 2 - proto: HolopadSecurityLawyer entities: @@ -145206,6 +147657,13 @@ entities: - type: Transform pos: -21.5,-3.5 parent: 2 +- proto: HoloprojectorClownBorg + entities: + - uid: 31128 + components: + - type: Transform + pos: 49.639477,25.406134 + parent: 2 - proto: HoloprojectorSecurity entities: - uid: 23392 @@ -145246,7 +147704,7 @@ entities: pos: 36.5,-35.5 parent: 2 - type: Door - secondsUntilStateChange: -314916.53 + secondsUntilStateChange: -340174.66 state: Opening - uid: 5211 components: @@ -145711,23 +148169,30 @@ entities: parent: 2 - proto: IntercomAll entities: - - uid: 12798 - components: - - type: Transform - pos: 51.5,17.5 - parent: 2 - - uid: 12799 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,16.5 - parent: 2 - - uid: 12800 + - uid: 12879 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,15.5 + pos: 56.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 18423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,21.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 24009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,21.5 + parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomCommand entities: - uid: 359 @@ -145736,28 +148201,38 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9681 components: - type: Transform pos: 45.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13065 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23809 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29290 components: - type: Transform pos: 25.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomCommon entities: - uid: 5806 @@ -145766,11 +148241,15 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23523 components: - type: Transform pos: 19.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomEngineering entities: - uid: 6192 @@ -145779,11 +148258,15 @@ entities: rot: 3.141592653589793 rad pos: 2.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8948 components: - type: Transform pos: -34.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomMedical entities: - uid: 23520 @@ -145792,12 +148275,16 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23626 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomScience entities: - uid: 23519 @@ -145805,6 +148292,16 @@ entities: - type: Transform pos: 3.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 31125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,12.5 + parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSecurity entities: - uid: 17321 @@ -145813,6 +148310,8 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomService entities: - uid: 23522 @@ -145821,6 +148320,8 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSupply entities: - uid: 23808 @@ -145829,12 +148330,23 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24129 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} +- proto: InterdyneFlippo + entities: + - uid: 31117 + components: + - type: Transform + pos: 57.22787,23.416605 + parent: 2 - proto: JanitorialTrolley entities: - uid: 11979 @@ -146110,8 +148622,24 @@ entities: - uid: 2671 components: - type: Transform - pos: 29.74325,21 + pos: 29.392466,20.981281 parent: 2 + - type: HandheldLight + toggleActionEntity: 18422 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 18422 + - type: Physics + canCollide: True + - type: ActionsContainer - uid: 5854 components: - type: Transform @@ -146283,7 +148811,7 @@ entities: - uid: 29444 components: - type: Transform - pos: 61.450054,22.656609 + pos: 61.47715,20.547256 parent: 2 - proto: LockableButtonAtmospherics entities: @@ -146306,6 +148834,8 @@ entities: 8460: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonBrig entities: - uid: 4683 @@ -146321,6 +148851,8 @@ entities: 4811: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 28257 components: - type: MetaData @@ -146333,6 +148865,8 @@ entities: 4811: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonSecurity entities: - uid: 22953 @@ -146343,6 +148877,8 @@ entities: rot: 3.141592653589793 rad pos: 50.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: LockableButtonService entities: - uid: 4166 @@ -146358,6 +148894,8 @@ entities: 683: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 23551 components: - type: MetaData @@ -146371,6 +148909,8 @@ entities: 570: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 23556 components: - type: MetaData @@ -146384,6 +148924,8 @@ entities: 684: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 23557 components: - type: MetaData @@ -146396,6 +148938,8 @@ entities: 682: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 23558 components: - type: MetaData @@ -146408,6 +148952,8 @@ entities: 681: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 23559 components: - type: MetaData @@ -146420,6 +148966,8 @@ entities: 680: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - proto: LockerAtmosphericsFilled entities: - uid: 8897 @@ -146578,10 +149126,10 @@ entities: - type: Transform pos: 34.5,35.5 parent: 2 - - uid: 9474 + - uid: 18429 components: - type: Transform - pos: 36.5,48.5 + pos: 37.5,48.5 parent: 2 - uid: 23691 components: @@ -148204,16 +150752,16 @@ entities: - type: Transform pos: -38.5,-51.5 parent: 2 - - uid: 5749 - components: - - type: Transform - pos: 44.5,25.5 - parent: 2 - uid: 9310 components: - type: Transform pos: 58.5,7.5 parent: 2 + - uid: 20914 + components: + - type: Transform + pos: 45.5,25.5 + parent: 2 - uid: 21027 components: - type: Transform @@ -148256,6 +150804,11 @@ entities: parent: 2 - proto: MaintenanceToolSpawner entities: + - uid: 12876 + components: + - type: Transform + pos: 54.5,8.5 + parent: 2 - uid: 23172 components: - type: Transform @@ -148701,52 +151254,70 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2657 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4061 components: - type: Transform pos: 48.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11400 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11401 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11402 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11403 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14231 components: - type: Transform pos: 54.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29888 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: MonkeyCubeWrapped entities: - uid: 3150 @@ -148961,6 +151532,11 @@ entities: parent: 8002 - type: Physics canCollide: False + - uid: 31116 + components: + - type: Transform + pos: 61.546024,19.876612 + parent: 2 - proto: MysteryFigureBoxTrash entities: - uid: 30140 @@ -148998,6 +151574,12 @@ entities: - type: Transform pos: 11.55334,-34.190166 parent: 2 + - uid: 31127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.545727,20.994167 + parent: 2 - proto: NewsReaderCartridge entities: - uid: 19529 @@ -149056,11 +151638,6 @@ entities: - type: Transform pos: -45.5,-53.5 parent: 2 - - uid: 18929 - components: - - type: Transform - pos: 44.5,17.5 - parent: 2 - uid: 18932 components: - type: Transform @@ -149101,6 +151678,11 @@ entities: - type: Transform pos: 7.5,-6.5 parent: 21002 + - uid: 29163 + components: + - type: Transform + pos: 45.5,21.5 + parent: 2 - uid: 29490 components: - type: Transform @@ -149118,6 +151700,22 @@ entities: - type: Transform pos: -42.5,23.5 parent: 2 + - uid: 30941 + components: + - type: Transform + anchored: True + pos: 56.5,22.5 + parent: 2 + - type: Physics + bodyType: Static + - uid: 30942 + components: + - type: Transform + anchored: True + pos: 54.5,22.5 + parent: 2 + - type: Physics + bodyType: Static - proto: NitrousOxideTankFilled entities: - uid: 2056 @@ -149153,6 +151751,8 @@ entities: rot: 3.141592653589793 rad pos: -45.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23853 components: - type: Transform @@ -149178,18 +151778,22 @@ entities: - 23854 - 23855 - 23856 + - type: Fixtures + fixtures: {} - uid: 29984 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: NTDefaultCircuitBoard entities: - uid: 29358 components: - type: Transform - pos: 58.444633,13.5958 + pos: 58.391357,13.564787 parent: 2 - proto: NuclearBomb entities: @@ -149211,7 +151815,7 @@ entities: - uid: 29443 components: - type: Transform - pos: 58.485508,21.59031 + pos: 20.46843,-35.541214 parent: 2 - proto: OperatingTable entities: @@ -149258,6 +151862,11 @@ entities: - type: Transform pos: -23.5,-14.5 parent: 2 + - uid: 2364 + components: + - type: Transform + pos: 39.5,50.5 + parent: 2 - uid: 4221 components: - type: Transform @@ -149288,21 +151897,11 @@ entities: - type: Transform pos: -57.5,-21.5 parent: 2 - - uid: 9468 - components: - - type: Transform - pos: 38.5,50.5 - parent: 2 - uid: 9780 components: - type: Transform pos: 8.5,-35.5 parent: 2 - - uid: 18928 - components: - - type: Transform - pos: 44.5,16.5 - parent: 2 - uid: 18931 components: - type: Transform @@ -149333,6 +151932,11 @@ entities: - type: Transform pos: -46.5,-51.5 parent: 2 + - uid: 20243 + components: + - type: Transform + pos: 45.5,20.5 + parent: 2 - uid: 23424 components: - type: Transform @@ -149346,6 +151950,8 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingMonkey entities: - uid: 11651 @@ -149354,6 +151960,8 @@ entities: rot: 3.141592653589793 rad pos: -21.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingMoony entities: - uid: 23614 @@ -149361,6 +151969,8 @@ entities: - type: Transform pos: -35.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingOldGuitarist entities: - uid: 2013 @@ -149369,11 +151979,15 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29727 components: - type: Transform pos: -17.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingPersistenceOfMemory entities: - uid: 24192 @@ -149382,6 +151996,8 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingRedBlueYellow entities: - uid: 23624 @@ -149389,6 +152005,8 @@ entities: - type: Transform pos: -43.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingSadClown entities: - uid: 23622 @@ -149396,6 +152014,8 @@ entities: - type: Transform pos: -33.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingSaturn entities: - uid: 23623 @@ -149403,6 +152023,8 @@ entities: - type: Transform pos: -36.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingSkeletonCigarette entities: - uid: 23179 @@ -149411,6 +152033,8 @@ entities: rot: 3.141592653589793 rad pos: 22.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingTheKiss entities: - uid: 23180 @@ -149419,6 +152043,8 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingTheSonOfMan entities: - uid: 23625 @@ -149426,13 +152052,14 @@ entities: - type: Transform pos: -37.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaladinCircuitBoard entities: - uid: 29449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.360508,22.579893 + pos: 49.47715,20.75559 parent: 2 - proto: Paper entities: @@ -149812,7 +152439,7 @@ entities: - uid: 10176 components: - type: Transform - parent: 2695 + parent: 3594 - type: Physics canCollide: False - uid: 10837 @@ -150466,8 +153093,9 @@ entities: - uid: 29266 components: - type: Transform - pos: 29.769129,21.041245 - parent: 2 + parent: 4569 + - type: Physics + canCollide: False - type: Paper content: >+ [bold]=====================================================[/bold] @@ -150820,32 +153448,44 @@ entities: - uid: 2743 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.116163,20.673426 - parent: 2 + parent: 4097 + - type: Physics + canCollide: False - uid: 2744 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.209913,20.62655 - parent: 2 + parent: 4097 + - type: Physics + canCollide: False - uid: 2745 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.303663,20.5328 - parent: 2 + parent: 4097 + - type: Physics + canCollide: False - uid: 2746 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.303663,20.5328 - parent: 2 + parent: 4097 + - type: Physics + canCollide: False - uid: 2747 + components: + - type: Transform + parent: 4097 + - type: Physics + canCollide: False + - uid: 18433 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.225538,20.610926 + pos: 31.556246,20.624237 + parent: 2 + - uid: 31088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.629164,20.655487 parent: 2 - proto: PaperCNCSheet entities: @@ -150997,6 +153637,11 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 31120 + components: + - type: Transform + pos: 50.50912,14.420492 + parent: 2 - proto: Pen entities: - uid: 1052 @@ -151199,6 +153844,11 @@ entities: rot: 1.5707963267948966 rad pos: -47.527077,-35.26962 parent: 2 + - uid: 31071 + components: + - type: Transform + pos: 60.6833,16.735445 + parent: 2 - proto: PenCap entities: - uid: 2672 @@ -151263,7 +153913,7 @@ entities: - uid: 2675 components: - type: Transform - pos: 24.007292,15.691906 + pos: 23.993635,15.627417 parent: 2 - proto: PianoInstrument entities: @@ -151424,58 +154074,6 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,-11.5 parent: 2 - - uid: 12832 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,18.5 - parent: 2 - - uid: 12833 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,18.5 - parent: 2 - - uid: 12834 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,19.5 - parent: 2 - - uid: 12835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,20.5 - parent: 2 - - uid: 12836 - components: - - type: Transform - pos: 52.5,21.5 - parent: 2 - - uid: 12837 - components: - - type: Transform - pos: 50.5,21.5 - parent: 2 - - uid: 12838 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,20.5 - parent: 2 - - uid: 12839 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,19.5 - parent: 2 - - uid: 12840 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,18.5 - parent: 2 - uid: 14238 components: - type: Transform @@ -151655,10 +154253,10 @@ entities: parent: 2 - proto: PlayerStationAi entities: - - uid: 23510 + - uid: 12890 components: - type: Transform - pos: 51.5,16.5 + pos: 55.5,22.5 parent: 2 - proto: PlushieCarp entities: @@ -151761,6 +154359,11 @@ entities: - type: Transform pos: 60.5,-16.5 parent: 2 + - uid: 12877 + components: + - type: Transform + pos: 36.5,48.5 + parent: 2 - uid: 18067 components: - type: Transform @@ -151801,14 +154404,11 @@ entities: - type: Transform pos: 12.5,40.5 parent: 2 - - uid: 10728 + - uid: 12857 components: - type: Transform - anchored: True - pos: 50.5,20.5 + pos: 48.5,14.5 parent: 2 - - type: Physics - bodyType: Static - uid: 16211 components: - type: Transform @@ -151816,19 +154416,16 @@ entities: parent: 2 - proto: PortableGeneratorSuperPacman entities: - - uid: 10730 - components: - - type: Transform - anchored: True - pos: 52.5,20.5 - parent: 2 - - type: Physics - bodyType: Static - uid: 16213 components: - type: Transform pos: 12.5,41.5 parent: 2 + - uid: 23517 + components: + - type: Transform + pos: 48.5,13.5 + parent: 2 - proto: PortableScrubber entities: - uid: 8450 @@ -151885,6 +154482,8 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,38.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: PosterContrabandBeachStarYamamoto entities: - uid: 11972 @@ -151892,6 +154491,8 @@ entities: - type: Transform pos: 25.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandClown entities: - uid: 8814 @@ -151899,6 +154500,8 @@ entities: - type: Transform pos: -32.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandDonutCorp entities: - uid: 30713 @@ -151907,6 +154510,8 @@ entities: rot: 3.141592653589793 rad pos: -4.5,18.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: PosterContrabandEnlistGorlex entities: - uid: 30686 @@ -151915,6 +154520,8 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,39.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: PosterContrabandFreeDrone entities: - uid: 29365 @@ -151923,6 +154530,8 @@ entities: rot: -1.5707963267948966 rad pos: 58.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandFunPolice entities: - uid: 16210 @@ -151931,11 +154540,15 @@ entities: rot: 3.141592653589793 rad pos: 7.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19552 components: - type: Transform pos: 26.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandHackingGuide entities: - uid: 11884 @@ -151944,6 +154557,8 @@ entities: rot: -1.5707963267948966 rad pos: -51.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandMissingGloves entities: - uid: 23491 @@ -151952,6 +154567,8 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandMissingSpacepen entities: - uid: 30714 @@ -151960,6 +154577,8 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-42.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: PosterContrabandTools entities: - uid: 28330 @@ -151967,17 +154586,23 @@ entities: - type: Transform pos: 22.5,35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28332 components: - type: Transform pos: -32.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28881 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitAnatomyPoster entities: - uid: 2117 @@ -151985,6 +154610,8 @@ entities: - type: Transform pos: -22.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitCarpMount entities: - uid: 28493 @@ -151992,6 +154619,8 @@ entities: - type: Transform pos: -56.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitDickGumshue entities: - uid: 19636 @@ -151999,6 +154628,8 @@ entities: - type: Transform pos: 42.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitDoNotQuestion entities: - uid: 3522 @@ -152006,6 +154637,8 @@ entities: - type: Transform pos: 28.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitEnlist entities: - uid: 3731 @@ -152014,6 +154647,8 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitFoamForceAd entities: - uid: 11964 @@ -152022,6 +154657,8 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitHelpOthers entities: - uid: 30621 @@ -152030,6 +154667,8 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitIan entities: - uid: 28865 @@ -152038,6 +154677,8 @@ entities: rot: -1.5707963267948966 rad pos: 56.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitJustAWeekAway entities: - uid: 28438 @@ -152046,12 +154687,16 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29722 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitMime entities: - uid: 23628 @@ -152059,6 +154704,8 @@ entities: - type: Transform pos: -37.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitNanomichiAd entities: - uid: 30215 @@ -152066,6 +154713,8 @@ entities: - type: Transform pos: -7.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitNoERP entities: - uid: 23428 @@ -152073,6 +154722,8 @@ entities: - type: Transform pos: -31.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitNTTGC entities: - uid: 30216 @@ -152080,6 +154731,8 @@ entities: - type: Transform pos: -10.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitPDAAd entities: - uid: 28483 @@ -152088,17 +154741,23 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28484 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28491 components: - type: Transform pos: -5.5,54.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitRenault entities: - uid: 28751 @@ -152106,6 +154765,8 @@ entities: - type: Transform pos: 42.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitReportCrimes entities: - uid: 14331 @@ -152114,11 +154775,15 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28492 components: - type: Transform pos: -5.5,53.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyInternals entities: - uid: 30126 @@ -152126,6 +154791,8 @@ entities: - type: Transform pos: 2.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothEpi entities: - uid: 1051 @@ -152134,6 +154801,8 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothMeth entities: - uid: 8712 @@ -152142,6 +154811,8 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyReport entities: - uid: 20461 @@ -152150,6 +154821,8 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSecWatch entities: - uid: 30715 @@ -152158,6 +154831,8 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-46.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: PosterLegitStateLaws entities: - uid: 30622 @@ -152166,6 +154841,8 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitThereIsNoGasGiant entities: - uid: 9176 @@ -152174,6 +154851,15 @@ entities: rot: 3.141592653589793 rad pos: -29.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 31077 + components: + - type: Transform + pos: 55.5,26.5 + parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitTyrone entities: - uid: 30218 @@ -152181,6 +154867,8 @@ entities: - type: Transform pos: -7.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitVacation entities: - uid: 3247 @@ -152188,16 +154876,22 @@ entities: - type: Transform pos: 6.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28489 components: - type: Transform pos: -11.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28490 components: - type: Transform pos: -5.5,52.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitWalk entities: - uid: 30623 @@ -152206,6 +154900,8 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitWorkForAFuture entities: - uid: 30626 @@ -152214,6 +154910,8 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PottedPlant1 entities: - uid: 28294 @@ -152345,21 +155043,11 @@ entities: - type: Transform pos: -19.5,-40.5 parent: 2 - - uid: 12957 - components: - - type: Transform - pos: 61.5,17.5 - parent: 2 - uid: 13009 components: - type: Transform pos: 19.5,8.5 parent: 2 - - uid: 13013 - components: - - type: Transform - pos: 58.5,11.5 - parent: 2 - uid: 14157 components: - type: Transform @@ -152525,6 +155213,11 @@ entities: - type: Transform pos: 38.5,4.5 parent: 2 + - uid: 30983 + components: + - type: Transform + pos: 61.5,16.5 + parent: 2 - proto: PottedPlantRD entities: - uid: 9902 @@ -152542,6 +155235,18 @@ entities: parent: 2 - type: PointLight enabled: False +- proto: PowerCellMedium + entities: + - uid: 21061 + components: + - type: Transform + pos: 61.412632,21.54738 + parent: 2 + - uid: 31111 + components: + - type: Transform + pos: 61.568882,21.370296 + parent: 2 - proto: PowerCellPotato entities: - uid: 13597 @@ -152668,12 +155373,6 @@ entities: - type: Transform pos: -52.5,-19.5 parent: 2 - - uid: 13060 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,19.5 - parent: 2 - uid: 22981 components: - type: Transform @@ -152689,6 +155388,16 @@ entities: - type: Transform pos: 31.5,31.5 parent: 2 + - uid: 31072 + components: + - type: Transform + pos: 52.5,16.5 + parent: 2 + - uid: 31113 + components: + - type: Transform + pos: 61.5,18.5 + parent: 2 - proto: PowerCellSmall entities: - uid: 23814 @@ -152710,6 +155419,12 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,16.5 parent: 2 + - uid: 3589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,7.5 + parent: 2 - uid: 7182 components: - type: Transform @@ -152726,6 +155441,12 @@ entities: - type: Transform pos: -16.5,-46.5 parent: 2 + - uid: 12829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,30.5 + parent: 2 - uid: 13524 components: - type: Transform @@ -152893,24 +155614,12 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-11.5 parent: 2 - - uid: 17437 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,31.5 - parent: 2 - uid: 17438 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,40.5 parent: 2 - - uid: 17440 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,25.5 - parent: 2 - uid: 17441 components: - type: Transform @@ -153067,16 +155776,16 @@ entities: - type: Transform pos: -6.5,26.5 parent: 2 - - uid: 18644 + - uid: 20272 components: - type: Transform - pos: 63.5,9.5 + rot: -1.5707963267948966 rad + pos: 44.5,32.5 parent: 2 - - uid: 20213 + - uid: 20501 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,27.5 + pos: 63.5,11.5 parent: 2 - uid: 20656 components: @@ -153118,6 +155827,12 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-47.5 parent: 2 + - uid: 29162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,20.5 + parent: 2 - uid: 29957 components: - type: Transform @@ -153190,8 +155905,7 @@ entities: - uid: 29970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,20.5 + pos: 42.5,25.5 parent: 2 - uid: 29971 components: @@ -153328,6 +156042,27 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,18.5 parent: 2 + - uid: 31052 + components: + - type: Transform + pos: 55.5,25.5 + parent: 2 + - uid: 31053 + components: + - type: Transform + pos: 60.5,25.5 + parent: 2 + - uid: 31054 + components: + - type: Transform + pos: 50.5,25.5 + parent: 2 + - uid: 31055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,13.5 + parent: 2 - proto: Poweredlight entities: - uid: 68 @@ -154850,6 +157585,11 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,36.5 parent: 2 + - uid: 12954 + components: + - type: Transform + pos: 56.5,20.5 + parent: 2 - uid: 13411 components: - type: Transform @@ -155016,29 +157756,6 @@ entities: rot: 3.141592653589793 rad pos: 14.5,31.5 parent: 2 - - uid: 17455 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,16.5 - parent: 2 - - uid: 17456 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,13.5 - parent: 2 - - uid: 17457 - components: - - type: Transform - pos: 51.5,22.5 - parent: 2 - - uid: 17458 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,16.5 - parent: 2 - uid: 17461 components: - type: Transform @@ -155380,12 +158097,6 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,-27.5 parent: 2 - - uid: 23516 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,18.5 - parent: 2 - uid: 23765 components: - type: Transform @@ -155448,24 +158159,12 @@ entities: rot: 3.141592653589793 rad pos: -26.5,-0.5 parent: 2 - - uid: 29360 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,12.5 - parent: 2 - uid: 29447 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-10.5 parent: 2 - - uid: 29452 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,22.5 - parent: 2 - uid: 29482 components: - type: Transform @@ -155494,6 +158193,35 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-11.5 parent: 2 + - uid: 31048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,13.5 + parent: 2 + - uid: 31049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,13.5 + parent: 2 + - uid: 31050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,20.5 + parent: 2 + - uid: 31051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,20.5 + parent: 2 + - uid: 31056 + components: + - type: Transform + pos: 54.5,20.5 + parent: 2 - proto: PoweredlightEmpty entities: - uid: 12295 @@ -155617,11 +158345,11 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-53.5 parent: 2 - - uid: 20254 + - uid: 20274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,30.5 + rot: -1.5707963267948966 rad + pos: 56.5,32.5 parent: 2 - uid: 20783 components: @@ -155852,6 +158580,12 @@ entities: rot: 3.141592653589793 rad pos: -53.5,-40.5 parent: 2 + - uid: 12825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,29.5 + parent: 2 - uid: 13036 components: - type: Transform @@ -155953,12 +158687,6 @@ entities: - type: Transform pos: -48.5,-52.5 parent: 2 - - uid: 20487 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,26.5 - parent: 2 - uid: 20647 components: - type: Transform @@ -156566,6 +159294,12 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,-7.5 parent: 2 + - uid: 884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,13.5 + parent: 2 - uid: 1397 components: - type: Transform @@ -156704,6 +159438,18 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-44.5 parent: 2 + - uid: 3953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,23.5 + parent: 2 + - uid: 3955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,20.5 + parent: 2 - uid: 4510 components: - type: Transform @@ -156716,12 +159462,6 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,-8.5 parent: 2 - - uid: 5220 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,30.5 - parent: 2 - uid: 6171 components: - type: Transform @@ -157391,6 +160131,47 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-44.5 parent: 2 + - uid: 12738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,33.5 + parent: 2 + - uid: 12740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,33.5 + parent: 2 + - uid: 12837 + components: + - type: Transform + pos: 55.5,17.5 + parent: 2 + - uid: 12854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,15.5 + parent: 2 + - uid: 12858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,15.5 + parent: 2 + - uid: 12868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,16.5 + parent: 2 + - uid: 12869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,16.5 + parent: 2 - uid: 13010 components: - type: Transform @@ -157408,6 +160189,12 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,-3.5 parent: 2 + - uid: 14683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,33.5 + parent: 2 - uid: 15041 components: - type: Transform @@ -157490,23 +160277,17 @@ entities: - type: Transform pos: -49.5,-56.5 parent: 2 - - uid: 20274 + - uid: 20264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,26.5 + rot: 3.141592653589793 rad + pos: 50.5,33.5 parent: 2 - - uid: 20275 + - uid: 20486 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,27.5 - parent: 2 - - uid: 20488 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,32.5 + pos: 56.5,31.5 parent: 2 - uid: 22456 components: @@ -157754,6 +160535,12 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,15.5 parent: 2 + - uid: 29156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,20.5 + parent: 2 - uid: 29546 components: - type: Transform @@ -157776,6 +160563,90 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,36.5 parent: 2 + - uid: 30837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,25.5 + parent: 2 + - uid: 30997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,25.5 + parent: 2 + - uid: 30998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,25.5 + parent: 2 + - uid: 31096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,24.5 + parent: 2 + - uid: 31097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,25.5 + parent: 2 + - uid: 31098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,25.5 + parent: 2 + - uid: 31099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,25.5 + parent: 2 + - uid: 31100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,25.5 + parent: 2 + - uid: 31101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,25.5 + parent: 2 + - uid: 31102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,25.5 + parent: 2 + - uid: 31103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,25.5 + parent: 2 + - uid: 31104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,24.5 + parent: 2 + - uid: 31105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,25.5 + parent: 2 + - uid: 31106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,23.5 + parent: 2 - proto: RailingCorner entities: - uid: 64 @@ -157999,18 +160870,6 @@ entities: rot: 3.141592653589793 rad pos: -53.5,-56.5 parent: 2 - - uid: 20498 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,31.5 - parent: 2 - - uid: 20499 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,33.5 - parent: 2 - uid: 22457 components: - type: Transform @@ -158038,17 +160897,11 @@ entities: - type: Transform pos: 23.5,-19.5 parent: 2 - - uid: 29374 + - uid: 29293 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,30.5 - parent: 2 - - uid: 29375 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,30.5 + pos: 56.5,32.5 parent: 2 - uid: 29489 components: @@ -158079,6 +160932,18 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,-23.5 parent: 2 + - uid: 31107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,25.5 + parent: 2 + - uid: 31108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,25.5 + parent: 2 - proto: RailingCornerSmall entities: - uid: 380 @@ -158122,6 +160987,12 @@ entities: rot: 3.141592653589793 rad pos: 17.5,10.5 parent: 2 + - uid: 2371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,23.5 + parent: 2 - uid: 2419 components: - type: Transform @@ -158134,6 +161005,12 @@ entities: rot: 3.141592653589793 rad pos: 27.5,8.5 parent: 2 + - uid: 3207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,14.5 + parent: 2 - uid: 3337 components: - type: Transform @@ -158424,6 +161301,22 @@ entities: rot: 1.5707963267948966 rad pos: -54.5,9.5 parent: 2 + - uid: 12742 + components: + - type: Transform + pos: 53.5,33.5 + parent: 2 + - uid: 12853 + components: + - type: Transform + pos: 56.5,14.5 + parent: 2 + - uid: 12859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,14.5 + parent: 2 - uid: 14320 components: - type: Transform @@ -158497,22 +161390,11 @@ entities: - type: Transform pos: -52.5,-56.5 parent: 2 - - uid: 20257 - components: - - type: Transform - pos: 53.5,30.5 - parent: 2 - - uid: 20276 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,28.5 - parent: 2 - - uid: 20389 + - uid: 20254 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,31.5 + pos: 56.5,30.5 parent: 2 - uid: 20390 components: @@ -158617,29 +161499,17 @@ entities: - type: Transform pos: -10.5,12.5 parent: 2 - - uid: 29376 + - uid: 29457 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,30.5 + rot: 3.141592653589793 rad + pos: 54.5,17.5 parent: 2 - - uid: 29377 + - uid: 29467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,29.5 - parent: 2 - - uid: 29378 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,29.5 - parent: 2 - - uid: 29388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,30.5 + rot: 1.5707963267948966 rad + pos: 56.5,17.5 parent: 2 - uid: 29486 components: @@ -158674,6 +161544,12 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,16.5 parent: 2 + - uid: 29866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,32.5 + parent: 2 - uid: 29997 components: - type: Transform @@ -159686,6 +162562,16 @@ entities: rot: 3.141592653589793 rad pos: -12.5,-51.5 parent: 2 + - uid: 31078 + components: + - type: Transform + pos: 62.5,16.5 + parent: 2 + - uid: 31079 + components: + - type: Transform + pos: 52.5,12.5 + parent: 2 - proto: RandomPosterContraband entities: - uid: 20650 @@ -159698,11 +162584,6 @@ entities: - type: Transform pos: 46.5,10.5 parent: 2 - - uid: 20720 - components: - - type: Transform - pos: 53.5,9.5 - parent: 2 - uid: 20722 components: - type: Transform @@ -159768,6 +162649,12 @@ entities: - type: Transform pos: -36.5,-18.5 parent: 2 + - uid: 29300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,8.5 + parent: 2 - uid: 30217 components: - type: Transform @@ -159918,20 +162805,10 @@ entities: - type: Transform pos: 11.5,24.5 parent: 2 - - uid: 29454 + - uid: 29442 components: - type: Transform - pos: 58.5,20.5 - parent: 2 - - uid: 29455 - components: - - type: Transform - pos: 62.5,14.5 - parent: 2 - - uid: 29456 - components: - - type: Transform - pos: 62.5,18.5 + pos: 51.5,26.5 parent: 2 - uid: 30624 components: @@ -159945,6 +162822,21 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-26.5 parent: 2 + - uid: 31075 + components: + - type: Transform + pos: 57.5,21.5 + parent: 2 + - uid: 31076 + components: + - type: Transform + pos: 53.5,21.5 + parent: 2 + - uid: 31094 + components: + - type: Transform + pos: 59.5,26.5 + parent: 2 - proto: RandomProduce entities: - uid: 20761 @@ -160129,11 +163021,6 @@ entities: - type: Transform pos: 35.5,25.5 parent: 2 - - uid: 20705 - components: - - type: Transform - pos: 46.5,30.5 - parent: 2 - uid: 20706 components: - type: Transform @@ -160149,6 +163036,11 @@ entities: - type: Transform pos: 27.5,-23.5 parent: 2 + - uid: 29165 + components: + - type: Transform + pos: 45.5,23.5 + parent: 2 - uid: 30128 components: - type: Transform @@ -160847,15 +163739,23 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,42.5 parent: 2 - - uid: 12753 + - uid: 12757 components: - type: Transform - pos: 55.5,16.5 + rot: 3.141592653589793 rad + pos: 52.5,17.5 parent: 2 - - uid: 12933 + - uid: 12881 components: - type: Transform - pos: 57.5,16.5 + rot: 3.141592653589793 rad + pos: 58.5,19.5 + parent: 2 + - uid: 13025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,17.5 parent: 2 - uid: 13508 components: @@ -160886,6 +163786,23 @@ entities: - type: Transform pos: 45.5,-22.5 parent: 2 + - uid: 18395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,17.5 + parent: 2 + - uid: 18409 + components: + - type: Transform + pos: 58.5,17.5 + parent: 2 + - uid: 18411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,17.5 + parent: 2 - uid: 18633 components: - type: Transform @@ -160909,16 +163826,6 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,37.5 parent: 2 - - uid: 28510 - components: - - type: Transform - pos: 2.5,3.5 - parent: 21002 - - uid: 28511 - components: - - type: Transform - pos: 3.5,3.5 - parent: 21002 - uid: 28512 components: - type: Transform @@ -160939,6 +163846,57 @@ entities: - type: Transform pos: 6.5,-2.5 parent: 21002 + - uid: 29154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,19.5 + parent: 2 + - uid: 29158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,18.5 + parent: 2 + - uid: 29323 + components: + - type: Transform + pos: 56.5,19.5 + parent: 2 + - uid: 29325 + components: + - type: Transform + pos: 55.5,19.5 + parent: 2 + - uid: 29362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,17.5 + parent: 2 + - uid: 29425 + components: + - type: Transform + pos: 54.5,19.5 + parent: 2 + - uid: 29434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,18.5 + parent: 2 + - uid: 29437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,17.5 + parent: 2 + - uid: 29439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,17.5 + parent: 2 - uid: 29594 components: - type: Transform @@ -160962,6 +163920,44 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,-11.5 parent: 2 +- proto: ReinforcedUraniumWindow + entities: + - uid: 13028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,22.5 + parent: 2 + - uid: 13038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,22.5 + parent: 2 + - uid: 13039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,22.5 + parent: 2 + - uid: 13040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,22.5 + parent: 2 + - uid: 13060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,22.5 + parent: 2 + - uid: 24380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,22.5 + parent: 2 - proto: ReinforcedWindow entities: - uid: 127 @@ -161962,11 +164958,6 @@ entities: - type: Transform pos: 36.5,51.5 parent: 2 - - uid: 6825 - components: - - type: Transform - pos: 38.5,51.5 - parent: 2 - uid: 6826 components: - type: Transform @@ -163166,12 +166157,6 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,-33.5 parent: 2 - - uid: 10887 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,28.5 - parent: 2 - uid: 10902 components: - type: Transform @@ -163319,6 +166304,18 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-57.5 parent: 2 + - uid: 12744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,30.5 + parent: 2 + - uid: 12752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,29.5 + parent: 2 - uid: 12845 components: - type: Transform @@ -163543,12 +166540,6 @@ entities: - type: Transform pos: 43.5,-2.5 parent: 2 - - uid: 18229 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,28.5 - parent: 2 - uid: 18360 components: - type: Transform @@ -163623,11 +166614,29 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-79.5 parent: 2 - - uid: 20256 + - uid: 20257 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,28.5 + rot: 1.5707963267948966 rad + pos: 49.5,31.5 + parent: 2 + - uid: 20263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,31.5 + parent: 2 + - uid: 20268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,31.5 + parent: 2 + - uid: 20387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,31.5 parent: 2 - uid: 20662 components: @@ -163833,12 +166842,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,28.5 parent: 2 - - uid: 24009 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,28.5 - parent: 2 - uid: 24137 components: - type: Transform @@ -163980,6 +166983,11 @@ entities: - type: Transform pos: 46.5,-3.5 parent: 2 + - uid: 29299 + components: + - type: Transform + pos: 37.5,51.5 + parent: 2 - uid: 29597 components: - type: Transform @@ -164109,10 +167117,10 @@ entities: parent: 2 - proto: RobocopCircuitBoard entities: - - uid: 29442 + - uid: 12905 components: - type: Transform - pos: 61.45505,14.543717 + pos: 53.381123,13.600489 parent: 2 - proto: RockGuitarInstrument entities: @@ -164208,288 +167216,374 @@ entities: - type: Transform pos: -21.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4623 components: - type: Transform pos: -15.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4828 components: - type: Transform pos: 41.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4845 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9382 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9387 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9402 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9403 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9406 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9654 components: - type: Transform pos: 11.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11556 components: - type: Transform pos: 29.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12731 components: - type: Transform pos: -55.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13502 components: - type: Transform pos: -55.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14306 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16676 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16682 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16683 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16684 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16740 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16747 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17605 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18533 components: - type: Transform pos: -12.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18870 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20960 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23309 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23310 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23311 components: - type: Transform pos: 56.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23312 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23440 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23441 components: - type: Transform pos: -9.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23442 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23443 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23446 components: - type: Transform pos: -46.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23448 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23454 components: - type: Transform pos: 2.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23455 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23456 components: - type: Transform pos: -1.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23457 components: - type: Transform pos: -7.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23458 components: - type: Transform pos: -5.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23459 components: - type: Transform pos: -8.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23461 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23492 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,46.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23612 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23644 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23646 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24118 components: - type: Transform pos: 10.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28331 components: - type: Transform pos: 20.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28364 components: - type: Transform pos: -51.5,-11.5 parent: 2 - - uid: 29195 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,19.5 - parent: 2 - - uid: 29196 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,12.5 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 29669 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SecurityTechFab entities: - uid: 28361 @@ -164763,7 +167857,7 @@ entities: - uid: 9691 components: - type: Transform - pos: 24.023485,16.190632 + pos: 23.951967,16.075333 parent: 2 - uid: 11880 components: @@ -164779,12 +167873,16 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23601 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Shovel entities: - uid: 1269 @@ -165396,12 +168494,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-54.5 parent: 2 - - uid: 12774 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,7.5 - parent: 2 - uid: 12955 components: - type: Transform @@ -165414,6 +168506,24 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,9.5 parent: 2 + - uid: 20213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,10.5 + parent: 2 + - uid: 29469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,7.5 + parent: 2 + - uid: 29484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,11.5 + parent: 2 - uid: 29526 components: - type: Transform @@ -165519,14 +168629,6 @@ entities: - type: Transform pos: -56.500233,9.6115055 parent: 2 -- proto: SignAi - entities: - - uid: 23308 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,18.5 - parent: 2 - proto: SignAiUpload entities: - uid: 12285 @@ -165535,6 +168637,8 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignalButtonDirectional entities: - uid: 1014 @@ -165550,6 +168654,8 @@ entities: 1050: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 1919 components: - type: MetaData @@ -165563,6 +168669,8 @@ entities: 7999: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 1920 components: - type: MetaData @@ -165576,6 +168684,8 @@ entities: 8000: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 2735 components: - type: MetaData @@ -165589,6 +168699,50 @@ entities: 2733: - - Pressed - Toggle + - type: Fixtures + fixtures: {} + - uid: 3210 + components: + - type: MetaData + name: space connector + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,14.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 29484: + - - Pressed + - Toggle + 20213: + - - Pressed + - Toggle + 12956: + - - Pressed + - Toggle + 12955: + - - Pressed + - Toggle + 29469: + - - Pressed + - Toggle + 29440: + - - Pressed + - Toggle + 20882: + - - Pressed + - Toggle + 20644: + - - Pressed + - Toggle + 20255: + - - Pressed + - Toggle + 23516: + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - uid: 3749 components: - type: MetaData @@ -165602,6 +168756,8 @@ entities: 3921: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 3839 components: - type: MetaData @@ -165618,6 +168774,8 @@ entities: 23782: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 3840 components: - type: MetaData @@ -165631,6 +168789,8 @@ entities: 4811: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 3892 components: - type: MetaData @@ -165644,6 +168804,8 @@ entities: 3810: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 4033 components: - type: MetaData @@ -165657,6 +168819,8 @@ entities: 4035: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 4168 components: - type: MetaData @@ -165670,6 +168834,8 @@ entities: 4167: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 5382 components: - type: MetaData @@ -165683,6 +168849,8 @@ entities: 3921: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 7696 components: - type: MetaData @@ -165702,6 +168870,8 @@ entities: 7192: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 7697 components: - type: MetaData @@ -165721,6 +168891,8 @@ entities: 7042: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 7706 components: - type: MetaData @@ -165743,6 +168915,8 @@ entities: 7335: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 9642 components: - type: MetaData @@ -165762,6 +168936,8 @@ entities: 9638: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 9774 components: - type: MetaData @@ -165775,6 +168951,8 @@ entities: 16239: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 9781 components: - type: MetaData @@ -165788,6 +168966,8 @@ entities: 9718: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 10078 components: - type: MetaData @@ -165801,6 +168981,8 @@ entities: 9715: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 10588 components: - type: MetaData @@ -165819,6 +169001,8 @@ entities: 10591: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15442 components: - type: MetaData @@ -165831,6 +169015,8 @@ entities: 3502: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15451 components: - type: MetaData @@ -165844,6 +169030,8 @@ entities: 3502: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 21063 components: - type: MetaData @@ -165857,6 +169045,8 @@ entities: 28504: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 21064 components: - type: MetaData @@ -165870,6 +169060,8 @@ entities: 21068: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 22960 components: - type: MetaData @@ -165883,6 +169075,8 @@ entities: 22959: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23768 components: - type: MetaData @@ -165896,6 +169090,8 @@ entities: 23766: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23771 components: - type: MetaData @@ -165908,6 +169104,8 @@ entities: 23770: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23773 components: - type: MetaData @@ -165921,6 +169119,8 @@ entities: 23772: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23774 components: - type: MetaData @@ -165936,6 +169136,8 @@ entities: 23762: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23775 components: - type: MetaData @@ -165949,6 +169151,8 @@ entities: 23761: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23776 components: - type: MetaData @@ -165961,6 +169165,8 @@ entities: 24128: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23777 components: - type: MetaData @@ -165974,6 +169180,8 @@ entities: 23763: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23778 components: - type: MetaData @@ -165987,6 +169195,8 @@ entities: 23764: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23779 components: - type: MetaData @@ -165999,6 +169209,8 @@ entities: 16214: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23785 components: - type: MetaData @@ -166012,6 +169224,8 @@ entities: 23784: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23829 components: - type: MetaData @@ -166025,6 +169239,8 @@ entities: 16797: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 24385 components: - type: Transform @@ -166036,6 +169252,8 @@ entities: 423: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 28356 components: - type: MetaData @@ -166049,6 +169267,8 @@ entities: 12133: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 28357 components: - type: MetaData @@ -166062,6 +169282,8 @@ entities: 12132: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 28358 components: - type: MetaData @@ -166075,6 +169297,8 @@ entities: 12131: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 28878 components: - type: MetaData @@ -166088,6 +169312,8 @@ entities: 23642: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 28900 components: - type: MetaData @@ -166106,6 +169332,8 @@ entities: 9295: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 29782 components: - type: MetaData @@ -166122,6 +169350,8 @@ entities: 1378: - - Pressed - Open + - type: Fixtures + fixtures: {} - uid: 30004 components: - type: MetaData @@ -166135,6 +169365,8 @@ entities: 23780: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 30014 components: - type: MetaData @@ -166156,6 +169388,8 @@ entities: 14391: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 30069 components: - type: MetaData @@ -166169,6 +169403,8 @@ entities: 3474: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 30265 components: - type: MetaData @@ -166182,6 +169418,56 @@ entities: 30310: - - Pressed - Toggle + - type: Fixtures + fixtures: {} + - uid: 30981 + components: + - type: MetaData + name: gas release R + - type: Transform + pos: 56.5,26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12892: + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} + - uid: 30982 + components: + - type: MetaData + name: gas release L + - type: Transform + pos: 54.5,26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 30935: + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} +- proto: SignalControlledValve + entities: + - uid: 12892 + components: + - type: Transform + pos: 56.5,23.5 + parent: 2 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30935 + components: + - type: Transform + pos: 54.5,23.5 + parent: 2 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#FFAA00FF' - proto: SignalSwitchDirectional entities: - uid: 2694 @@ -166226,6 +169512,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 2696 components: - type: MetaData @@ -166253,6 +169541,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 3388 components: - type: MetaData @@ -166283,6 +169573,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 3800 components: - type: MetaData @@ -166312,6 +169604,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 4188 components: - type: MetaData @@ -166354,6 +169648,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 4507 components: - type: MetaData @@ -166396,6 +169692,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 4820 components: - type: MetaData @@ -166418,6 +169716,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 6175 components: - type: MetaData @@ -166443,6 +169743,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 6481 components: - type: MetaData @@ -166465,6 +169767,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 7698 components: - type: MetaData @@ -166490,6 +169794,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 7789 components: - type: MetaData @@ -166515,6 +169821,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 7865 components: - type: MetaData @@ -166559,6 +169867,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 8947 components: - type: MetaData @@ -166585,6 +169895,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 9775 components: - type: MetaData @@ -166617,6 +169929,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 10222 components: - type: MetaData @@ -166654,6 +169968,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 10393 components: - type: MetaData @@ -166679,6 +169995,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 11339 components: - type: MetaData @@ -166699,6 +170017,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 11986 components: - type: MetaData @@ -166719,6 +170039,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 12804 components: - type: MetaData @@ -166739,71 +170061,8 @@ entities: - Open - - Off - Close - - uid: 13038 - components: - - type: MetaData - name: space connector - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,11.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 12956: - - - On - - Open - - - Off - - Close - 12955: - - - On - - Open - - - Off - - Close - 12774: - - - On - - Open - - - Off - - Close - 20644: - - - On - - Open - - - Off - - Close - 20255: - - - On - - Open - - - Off - - Close - 20268: - - - On - - Open - - - Off - - Close - - uid: 13400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,18.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12801: - - - On - - Open - - - Off - - Close - 12802: - - - On - - Open - - - Off - - Close - 12803: - - - On - - Open - - - Off - - Close + - type: Fixtures + fixtures: {} - uid: 15445 components: - type: MetaData @@ -166823,6 +170082,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 16068 components: - type: MetaData @@ -166850,6 +170111,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 17733 components: - type: MetaData @@ -166887,6 +170150,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 18469 components: - type: Transform @@ -166927,6 +170192,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 18694 components: - type: MetaData @@ -166953,6 +170220,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 21017 components: - type: MetaData @@ -167010,6 +170279,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 24372 components: - type: MetaData @@ -167030,6 +170301,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 24386 components: - type: MetaData @@ -167054,6 +170327,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - proto: SignAnomaly entities: - uid: 16793 @@ -167062,12 +170337,16 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23200 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignArcade entities: - uid: 6863 @@ -167076,12 +170355,16 @@ entities: rot: -1.5707963267948966 rad pos: -47.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15737 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBar entities: - uid: 23186 @@ -167090,6 +170373,8 @@ entities: rot: 3.141592653589793 rad pos: -17.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBath entities: - uid: 28974 @@ -167098,18 +170383,24 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29046 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29781 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBio entities: - uid: 23187 @@ -167118,6 +170409,8 @@ entities: rot: 3.141592653589793 rad pos: -30.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBridge entities: - uid: 23188 @@ -167126,6 +170419,8 @@ entities: rot: 3.141592653589793 rad pos: 24.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCans entities: - uid: 8260 @@ -167134,6 +170429,8 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCargo entities: - uid: 23190 @@ -167142,6 +170439,8 @@ entities: rot: 3.141592653589793 rad pos: -46.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCargoDock entities: - uid: 23191 @@ -167150,6 +170449,8 @@ entities: rot: 3.141592653589793 rad pos: -61.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChapel entities: - uid: 23192 @@ -167158,6 +170459,8 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChem entities: - uid: 8921 @@ -167166,6 +170469,8 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCloning entities: - uid: 23193 @@ -167174,6 +170479,8 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignConference entities: - uid: 23194 @@ -167182,6 +170489,8 @@ entities: rot: 3.141592653589793 rad pos: 28.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCryo entities: - uid: 6028 @@ -167190,11 +170499,15 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23799 components: - type: Transform pos: -45.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDangerMed entities: - uid: 889 @@ -167203,18 +170516,24 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7938 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28305 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,5.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBridge entities: - uid: 20978 @@ -167223,12 +170542,16 @@ entities: rot: 1.5707963267948966 rad pos: 5.5165973,-1.8227005 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20998 components: - type: Transform rot: 3.141592653589793 rad pos: 32.500874,2.5446026 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalChapel entities: - uid: 1279 @@ -167237,11 +170560,15 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3461 components: - type: Transform pos: 2.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalChemistry entities: - uid: 20974 @@ -167249,6 +170576,8 @@ entities: - type: Transform pos: -1.4649258,-4.6710877 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalCryo entities: - uid: 20976 @@ -167257,6 +170586,8 @@ entities: rot: -1.5707963267948966 rad pos: -4.5113826,-1.2714531 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalDorms entities: - uid: 20985 @@ -167265,6 +170596,8 @@ entities: rot: -1.5707963267948966 rad pos: -4.4699364,2.5505779 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEng entities: - uid: 20977 @@ -167273,12 +170606,16 @@ entities: rot: 3.141592653589793 rad pos: 5.522138,2.6120837 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20997 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.4812675,33.33204 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEvac entities: - uid: 20979 @@ -167287,35 +170624,47 @@ entities: rot: 1.5707963267948966 rad pos: 5.5276074,2.4069471 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20986 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5332532,-28.346897 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20988 components: - type: Transform rot: 3.141592653589793 rad pos: -1.497997,-40.258747 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20995 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.461353,-1.2455269 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20999 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.525524,2.687672 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28601 components: - type: Transform pos: -0.50126964,39.711143 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalFood entities: - uid: 14128 @@ -167323,36 +170672,48 @@ entities: - type: Transform pos: -0.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20987 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5332532,-28.565647 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20989 components: - type: Transform rot: 3.141592653589793 rad pos: -1.497997,-40.456665 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20994 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.465195,-1.4434437 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21000 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.525524,2.4793384 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29721 components: - type: Transform rot: 3.141592653589793 rad pos: -1.4826567,5.7890882 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalGravity entities: - uid: 5192 @@ -167361,23 +170722,31 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5193 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5206 components: - type: Transform pos: 32.5,41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20984 components: - type: Transform rot: 3.141592653589793 rad pos: -4.4699364,2.7693279 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalHop entities: - uid: 18363 @@ -167385,12 +170754,16 @@ entities: - type: Transform pos: 48.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20973 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5115004,-1.6256199 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalHydro entities: - uid: 20981 @@ -167399,6 +170772,8 @@ entities: rot: 3.141592653589793 rad pos: 5.524472,2.2030704 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalJanitor entities: - uid: 20968 @@ -167407,6 +170782,8 @@ entities: rot: 1.5707963267948966 rad pos: 5.5120444,-1.1898417 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalLibrary entities: - uid: 20969 @@ -167415,12 +170792,16 @@ entities: rot: 3.141592653589793 rad pos: 5.527905,2.8014636 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20996 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.4812675,33.537514 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalMed entities: - uid: 20970 @@ -167428,12 +170809,16 @@ entities: - type: Transform pos: -1.4676661,-4.2297864 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20991 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.497997,-40.882515 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSalvage entities: - uid: 20967 @@ -167442,6 +170827,8 @@ entities: rot: -1.5707963267948966 rad pos: -43.471596,2.8032153 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSci entities: - uid: 20971 @@ -167449,12 +170836,16 @@ entities: - type: Transform pos: -1.4676661,-4.4485364 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20990 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.4875805,-40.663765 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSec entities: - uid: 20972 @@ -167463,6 +170854,8 @@ entities: rot: 1.5707963267948966 rad pos: 5.5115004,-1.4068699 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSupply entities: - uid: 20966 @@ -167471,12 +170864,16 @@ entities: rot: -1.5707963267948966 rad pos: -43.471596,2.630097 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20982 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.511603,-1.4910889 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalWash entities: - uid: 20965 @@ -167484,12 +170881,16 @@ entities: - type: Transform pos: -43.471596,2.411347 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20983 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.511603,-1.7098389 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignElectricalMed entities: - uid: 3742 @@ -167497,171 +170898,231 @@ entities: - type: Transform pos: 56.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3745 components: - type: Transform pos: 52.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3853 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4516 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24515 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,64.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 24517 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,60.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 24520 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,57.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 24544 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,66.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 24579 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,50.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28123 components: - type: Transform rot: 3.141592653589793 rad pos: 95.5,3.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28143 components: - type: Transform rot: 3.141592653589793 rad pos: 95.5,18.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28148 components: - type: Transform rot: 3.141592653589793 rad pos: 95.5,13.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28161 components: - type: Transform rot: 1.5707963267948966 rad pos: 92.5,44.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28167 components: - type: Transform rot: 1.5707963267948966 rad pos: 88.5,53.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28174 components: - type: Transform rot: 1.5707963267948966 rad pos: 83.5,60.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28183 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,64.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28191 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,66.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28198 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,66.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28214 components: - type: Transform pos: 92.5,-19.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28227 components: - type: Transform rot: 3.141592653589793 rad pos: 95.5,-11.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28233 components: - type: Transform pos: 88.5,-27.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28234 components: - type: Transform pos: 79.5,-36.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28235 components: - type: Transform pos: 79.5,-36.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28236 components: - type: Transform pos: 70.5,-40.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28237 components: - type: Transform pos: 55.5,-44.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28239 components: - type: Transform pos: 39.5,-44.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28241 components: - type: Transform pos: 30.5,-44.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28243 components: - type: Transform rot: -1.5707963267948966 rad pos: 94.5,34.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28254 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,42.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28255 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,32.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: SignEngine entities: - uid: 23195 @@ -167670,6 +171131,8 @@ entities: rot: 3.141592653589793 rad pos: 25.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEngineering entities: - uid: 9293 @@ -167678,12 +171141,16 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23196 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEscapePods entities: - uid: 23197 @@ -167692,6 +171159,8 @@ entities: rot: 3.141592653589793 rad pos: 32.5,47.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignExamroom entities: - uid: 8923 @@ -167700,6 +171169,8 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignFire entities: - uid: 28553 @@ -167707,6 +171178,8 @@ entities: - type: Transform pos: -27.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignGenpop entities: - uid: 4825 @@ -167715,18 +171188,24 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14163 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14310 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignGravity entities: - uid: 9201 @@ -167735,6 +171214,8 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignHead entities: - uid: 857 @@ -167743,47 +171224,63 @@ entities: rot: 3.141592653589793 rad pos: 33.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7939 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9604 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10797 components: - type: Transform pos: -28.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23313 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23314 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28593 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 30401 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignHydro1 entities: - uid: 23182 @@ -167792,6 +171289,8 @@ entities: rot: 3.141592653589793 rad pos: 2.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignInterrogation entities: - uid: 3683 @@ -167800,6 +171299,8 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignJanitor entities: - uid: 8924 @@ -167808,6 +171309,8 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLaserMed entities: - uid: 29432 @@ -167815,21 +171318,29 @@ entities: - type: Transform pos: 62.5,6.5 parent: 2 - - uid: 29433 + - type: Fixtures + fixtures: {} + - uid: 29485 components: - type: Transform - pos: 56.5,14.5 + pos: 62.5,12.5 parent: 2 - - uid: 29434 + - type: Fixtures + fixtures: {} + - uid: 31121 components: - type: Transform - pos: 56.5,18.5 + pos: 64.5,6.5 parent: 2 - - uid: 29435 + - type: Fixtures + fixtures: {} + - uid: 31122 components: - type: Transform - pos: 62.5,10.5 + pos: 64.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLawyer entities: - uid: 3448 @@ -167838,18 +171349,24 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8925 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17280 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLibrary entities: - uid: 8928 @@ -167858,14 +171375,8 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,35.5 parent: 2 -- proto: SignMagneticsMed - entities: - - uid: 29453 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,20.5 - parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMedical entities: - uid: 10161 @@ -167874,12 +171385,16 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10162 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMorgue entities: - uid: 8931 @@ -167888,12 +171403,16 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8932 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNTMine entities: - uid: 23483 @@ -167902,12 +171421,16 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,5.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 23630 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-0.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: SignPrison entities: - uid: 23631 @@ -167916,18 +171439,24 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-0.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 23637 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-14.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 23638 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-24.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: SignPsychology entities: - uid: 2070 @@ -167936,23 +171465,31 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2076 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2077 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10584 components: - type: Transform pos: -36.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRestroom entities: - uid: 29255 @@ -167961,6 +171498,8 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,35.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRobo entities: - uid: 23199 @@ -167969,6 +171508,8 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSalvage entities: - uid: 28902 @@ -167977,6 +171518,8 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignScience entities: - uid: 28906 @@ -167985,14 +171528,8 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-40.5 parent: 2 -- proto: SignSecureMed - entities: - - uid: 3044 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,20.5 - parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecurity entities: - uid: 1348 @@ -168001,23 +171538,31 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3519 components: - type: Transform pos: 30.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3764 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8935 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignServer entities: - uid: 28903 @@ -168026,6 +171571,8 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignShipDock entities: - uid: 8514 @@ -168034,85 +171581,123 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignShock entities: + - uid: 12864 + components: + - type: Transform + pos: 57.5,28.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 24216 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24217 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24236 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24237 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24238 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24239 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24240 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,70.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 29164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,21.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 29289 + components: + - type: Transform + pos: 62.5,28.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 29465 components: - type: Transform pos: 64.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29466 components: - type: Transform pos: 64.5,19.5 parent: 2 - - uid: 29467 - components: - - type: Transform - pos: 56.5,25.5 - parent: 2 - - uid: 29468 - components: - - type: Transform - pos: 61.5,25.5 - parent: 2 - - uid: 29469 - components: - - type: Transform - pos: 45.5,21.5 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 29470 components: - type: Transform pos: 49.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29471 components: - type: Transform pos: 45.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 31123 + components: + - type: Transform + pos: 49.5,28.5 + parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSmoking entities: - uid: 24212 @@ -168120,11 +171705,8 @@ entities: - type: Transform pos: -10.5,-33.5 parent: 2 - - uid: 29297 - components: - - type: Transform - pos: 62.5,12.5 - parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSpace entities: - uid: 880 @@ -168133,86 +171715,116 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 885 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 890 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7984 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8249 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8936 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9162 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9297 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23354 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28314 components: - type: Transform pos: 96.5,27.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28315 components: - type: Transform pos: 43.5,67.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28316 components: - type: Transform pos: 96.5,-4.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28317 components: - type: Transform pos: 47.5,-45.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28437 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28864 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSurgery entities: - uid: 8937 @@ -168221,6 +171833,8 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignTelecomms entities: - uid: 9562 @@ -168228,6 +171842,8 @@ entities: - type: Transform pos: -30.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignTheater entities: - uid: 2198 @@ -168235,6 +171851,8 @@ entities: - type: Transform pos: -32.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignToolStorage entities: - uid: 5794 @@ -168243,6 +171861,8 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignVirology entities: - uid: 28907 @@ -168251,6 +171871,8 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignXenobio entities: - uid: 7850 @@ -168259,6 +171881,8 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SingularityGenerator entities: - uid: 16956 @@ -168486,25 +172110,6 @@ entities: - type: Transform pos: 42.5,-45.5 parent: 2 - - uid: 10731 - components: - - type: MetaData - name: AI SMES B - - type: Transform - pos: 52.5,19.5 - parent: 2 - - uid: 10743 - components: - - type: MetaData - name: AI SMES A - - type: Transform - pos: 50.5,19.5 - parent: 2 - - uid: 13023 - components: - - type: Transform - pos: 49.5,27.5 - parent: 2 - uid: 19639 components: - type: MetaData @@ -168527,11 +172132,23 @@ entities: - type: Transform pos: 3.5,-6.5 parent: 21002 + - uid: 24125 + components: + - type: MetaData + name: E Solars + - type: Transform + pos: 51.5,30.5 + parent: 2 - uid: 24747 components: - type: Transform pos: 22.5,-24.5 parent: 21002 + - uid: 29167 + components: + - type: Transform + pos: 48.5,15.5 + parent: 2 - proto: SmokingPipe entities: - uid: 16103 @@ -170691,6 +174308,26 @@ entities: - type: Transform pos: -25.5,-41.5 parent: 2 + - uid: 30839 + components: + - type: Transform + pos: -27.5,-38.5 + parent: 2 + - uid: 30840 + components: + - type: Transform + pos: -27.5,-41.5 + parent: 2 + - uid: 30844 + components: + - type: Transform + pos: -25.5,-39.5 + parent: 2 + - uid: 30845 + components: + - type: Transform + pos: -24.5,-40.5 + parent: 2 - proto: SpawnMobCorgi entities: - uid: 24191 @@ -170810,11 +174447,6 @@ entities: - type: Transform pos: -16.5,34.5 parent: 2 - - uid: 4079 - components: - - type: Transform - pos: 45.5,28.5 - parent: 2 - uid: 23565 components: - type: Transform @@ -170830,6 +174462,11 @@ entities: - type: Transform pos: -52.5,-26.5 parent: 2 + - uid: 29452 + components: + - type: Transform + pos: 44.5,31.5 + parent: 2 - proto: SpawnMobParrot entities: - uid: 676 @@ -171024,12 +174661,6 @@ entities: - type: Transform pos: -57.5,-29.5 parent: 2 - - uid: 29074 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,18.5 - parent: 2 - uid: 30135 components: - type: Transform @@ -171871,6 +175502,12 @@ entities: rot: 1.5707963267948966 rad pos: 44.5,-12.5 parent: 2 + - uid: 3196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,13.5 + parent: 2 - uid: 4040 components: - type: Transform @@ -171893,6 +175530,12 @@ entities: rot: 1.5707963267948966 rad pos: 44.5,-13.5 parent: 2 + - uid: 12860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,13.5 + parent: 2 - uid: 20755 components: - type: Transform @@ -172066,6 +175709,11 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,-23.5 parent: 2 + - uid: 12856 + components: + - type: Transform + pos: 55.5,14.5 + parent: 2 - uid: 28344 components: - type: Transform @@ -172113,10 +175761,10 @@ entities: parent: 2 - proto: StationAiUploadComputer entities: - - uid: 10660 + - uid: 29468 components: - type: Transform - pos: 59.5,19.5 + pos: 55.5,16.5 parent: 2 - proto: StationAnchor entities: @@ -172130,8 +175778,7 @@ entities: - uid: 29450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.91259,22.59031 + pos: 61.487568,19.28684 parent: 2 - proto: StationMap entities: @@ -172141,62 +175788,84 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18574 components: - type: Transform pos: -47.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18643 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23439 components: - type: Transform pos: 51.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23449 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23451 components: - type: Transform pos: -1.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23452 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23453 components: - type: Transform pos: 2.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23462 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23493 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28042 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,0.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: StationMapCircuitboard entities: - uid: 5814 @@ -172543,13 +176212,6 @@ entities: - type: Transform pos: -52.5,-25.5 parent: 2 - - uid: 12831 - components: - - type: MetaData - name: AI substation - - type: Transform - pos: 51.5,19.5 - parent: 2 - uid: 12958 components: - type: MetaData @@ -172567,6 +176229,11 @@ entities: - type: Transform pos: 23.5,-24.5 parent: 21002 + - uid: 29166 + components: + - type: Transform + pos: 48.5,16.5 + parent: 2 - proto: SuitStorageAtmos entities: - uid: 8905 @@ -172835,21 +176502,11 @@ entities: - type: Transform pos: 39.5,-26.5 parent: 2 - - uid: 3953 - components: - - type: Transform - pos: 39.5,-24.5 - parent: 2 - uid: 3954 components: - type: Transform pos: 39.5,-28.5 parent: 2 - - uid: 3955 - components: - - type: Transform - pos: 39.5,-25.5 - parent: 2 - uid: 3956 components: - type: Transform @@ -172918,6 +176575,16 @@ entities: - type: Transform pos: 48.5,-20.5 parent: 2 + - uid: 15443 + components: + - type: Transform + pos: 39.5,-24.5 + parent: 2 + - uid: 21077 + components: + - type: Transform + pos: 39.5,-25.5 + parent: 2 - uid: 30024 components: - type: Transform @@ -173019,14 +176686,6 @@ entities: setupAvailableNetworks: - SurveillanceCameraCommand id: Captain's Bedroom - - uid: 20882 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,6.5 - parent: 2 - - type: SurveillanceCamera - id: EVA - uid: 20891 components: - type: Transform @@ -173054,40 +176713,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: Briefing - - uid: 20911 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,16.5 - parent: 2 - - type: SurveillanceCamera - id: AI Core - - uid: 20912 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,16.5 - parent: 2 - - type: SurveillanceCamera - id: AI Control - - uid: 20913 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,8.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - id: AI Spaceway - - uid: 20914 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,18.5 - parent: 2 - - type: SurveillanceCamera - id: AI - uid: 20963 components: - type: Transform @@ -173095,28 +176720,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Telecoms - - uid: 29135 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,23.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Compliance N - - uid: 29137 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,9.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Compliance S - uid: 29141 components: - type: Transform @@ -173138,17 +176741,82 @@ entities: - SurveillanceCameraCommand nameSet: True id: QM's Bedroom - - uid: 29457 + - uid: 31041 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,22.5 + pos: 54.5,13.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True - id: Law Storage + id: AI upload + - uid: 31042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI board storage 1 + - uid: 31043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI board Storage 2 + - uid: 31044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,25.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI core 1 + - uid: 31045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,25.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI core 2 + - uid: 31046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI bridge + - uid: 31047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,26.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI maints 1 - proto: SurveillanceCameraEngineering entities: - uid: 20897 @@ -173558,27 +177226,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Anchorage - - uid: 29484 - components: - - type: Transform - pos: 49.5,26.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: E Solars - - uid: 29485 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,28.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: E Solars Catwalk - proto: SurveillanceCameraGeneral entities: - uid: 7089 @@ -173630,6 +177277,11 @@ entities: rot: 1.5707963267948966 rad pos: 61.5,3.5 parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Evac 2 - uid: 20951 components: - type: Transform @@ -173748,6 +177400,11 @@ entities: rot: 1.5707963267948966 rad pos: 61.5,-4.5 parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Evac 1 - uid: 29035 components: - type: Transform @@ -174131,6 +177788,17 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Gambling Den + - uid: 31129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Evac 3 - proto: SurveillanceCameraMedical entities: - uid: 20915 @@ -174756,6 +178424,17 @@ entities: - SurveillanceCameraSecurity nameSet: True id: perma retention north + - uid: 31130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Lockerroom - proto: SurveillanceCameraService entities: - uid: 3264 @@ -175726,6 +179405,18 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,-34.5 parent: 2 + - uid: 13021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,19.5 + parent: 2 + - uid: 13073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,21.5 + parent: 2 - uid: 14253 components: - type: Transform @@ -175813,11 +179504,6 @@ entities: - type: Transform pos: 42.5,-15.5 parent: 2 - - uid: 20253 - components: - - type: Transform - pos: 51.5,22.5 - parent: 2 - uid: 22351 components: - type: Transform @@ -176021,36 +179707,66 @@ entities: - type: Transform pos: -14.5,19.5 parent: 2 - - uid: 29436 + - uid: 29023 components: - type: Transform - pos: 58.5,21.5 + rot: -1.5707963267948966 rad + pos: 50.5,13.5 parent: 2 - - uid: 29437 + - uid: 29137 components: - type: Transform - pos: 58.5,22.5 + rot: 3.141592653589793 rad + pos: 50.5,21.5 parent: 2 - - uid: 29438 + - uid: 29149 components: - type: Transform - pos: 59.5,22.5 + rot: 3.141592653589793 rad + pos: 61.5,18.5 parent: 2 - - uid: 29439 + - uid: 29152 components: - type: Transform - pos: 60.5,22.5 + rot: 3.141592653589793 rad + pos: 61.5,20.5 parent: 2 - - uid: 29440 + - uid: 29153 components: - type: Transform - pos: 61.5,22.5 + rot: 3.141592653589793 rad + pos: 61.5,19.5 parent: 2 - - uid: 29441 + - uid: 29426 components: - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,18.5 + parent: 2 + - uid: 29427 + components: + - type: Transform + rot: 3.141592653589793 rad pos: 61.5,21.5 parent: 2 + - uid: 29428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,14.5 + parent: 2 + - uid: 29433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,20.5 + parent: 2 + - uid: 29456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,21.5 + parent: 2 - uid: 30249 components: - type: Transform @@ -176089,6 +179805,21 @@ entities: - type: Transform pos: -45.5,-35.5 parent: 2 + - uid: 31058 + components: + - type: Transform + pos: 52.5,16.5 + parent: 2 + - uid: 31059 + components: + - type: Transform + pos: 60.5,16.5 + parent: 2 + - uid: 31060 + components: + - type: Transform + pos: 59.5,16.5 + parent: 2 - proto: TableCarpet entities: - uid: 7942 @@ -176339,48 +180070,34 @@ entities: - type: Transform pos: 43.5,-34.5 parent: 2 - - uid: 13006 - components: - - type: Transform - pos: 58.5,19.5 - parent: 2 - - uid: 13007 - components: - - type: Transform - pos: 61.5,19.5 - parent: 2 - - uid: 13011 - components: - - type: Transform - pos: 58.5,18.5 - parent: 2 - - uid: 13012 - components: - - type: Transform - pos: 58.5,13.5 - parent: 2 - - uid: 13014 - components: - - type: Transform - pos: 58.5,14.5 - parent: 2 - uid: 13070 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-16.5 parent: 2 - - uid: 29361 + - uid: 18415 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,13.5 + rot: 3.141592653589793 rad + pos: 52.5,13.5 parent: 2 - - uid: 29362 + - uid: 18416 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,14.5 + rot: 3.141592653589793 rad + pos: 53.5,13.5 + parent: 2 + - uid: 18432 + components: + - type: Transform + pos: 57.5,13.5 + parent: 2 + - uid: 29360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,13.5 parent: 2 - uid: 29909 components: @@ -178684,6 +182401,13 @@ entities: - type: Transform pos: -45.681465,-31.433119 parent: 2 +- proto: ToyAi + entities: + - uid: 31115 + components: + - type: Transform + pos: 55.475132,25.468586 + parent: 2 - proto: ToyAmongPequeno entities: - uid: 30091 @@ -178699,6 +182423,13 @@ entities: parent: 8002 - type: Physics canCollide: False +- proto: ToyReticence + entities: + - uid: 31124 + components: + - type: Transform + pos: 52.508877,21.605362 + parent: 2 - proto: ToyRubberDuck entities: - uid: 3734 @@ -178805,6 +182536,300 @@ entities: - type: Transform pos: 20.246368,3.9232254 parent: 21002 + - uid: 30848 + components: + - type: Transform + pos: -24.617859,-39.4461 + parent: 2 + - type: Storage + storedItems: + 30849: + position: 0,0 + _rotation: South + 30850: + position: 1,0 + _rotation: South + 30851: + position: 2,0 + _rotation: South + 30852: + position: 3,0 + _rotation: South + 30853: + position: 4,0 + _rotation: South + 30854: + position: 5,0 + _rotation: South + 30855: + position: 6,0 + _rotation: South + 30856: + position: 7,0 + _rotation: South + 30857: + position: 0,1 + _rotation: South + 30858: + position: 1,1 + _rotation: South + 30859: + position: 2,1 + _rotation: South + 30860: + position: 3,1 + _rotation: South + 30861: + position: 4,1 + _rotation: South + 30862: + position: 7,1 + _rotation: South + 30863: + position: 0,2 + _rotation: South + 30864: + position: 1,2 + _rotation: South + 30865: + position: 2,2 + _rotation: South + 30866: + position: 3,2 + _rotation: South + 30867: + position: 4,2 + _rotation: South + 30868: + position: 5,2 + _rotation: South + 30869: + position: 6,2 + _rotation: South + 30870: + position: 2,3 + _rotation: South + 30871: + position: 3,3 + _rotation: South + 30872: + position: 4,3 + _rotation: South + 30873: + position: 5,3 + _rotation: South + 30874: + position: 7,3 + _rotation: South + 30875: + position: 0,4 + _rotation: South + 30876: + position: 1,4 + _rotation: South + 30877: + position: 6,4 + _rotation: South + 30878: + position: 2,5 + _rotation: East + 30879: + position: 7,5 + _rotation: South + 30880: + position: 4,5 + _rotation: East + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 30849 + - 30850 + - 30851 + - 30852 + - 30853 + - 30854 + - 30855 + - 30856 + - 30857 + - 30858 + - 30859 + - 30860 + - 30861 + - 30862 + - 30863 + - 30864 + - 30865 + - 30866 + - 30867 + - 30868 + - 30869 + - 30870 + - 30871 + - 30872 + - 30873 + - 30874 + - 30875 + - 30876 + - 30877 + - 30878 + - 30879 + - 30880 + - uid: 30883 + components: + - type: Transform + pos: -26.711609,-40.050266 + parent: 2 + - type: Storage + storedItems: + 30884: + position: 0,0 + _rotation: South + 30885: + position: 1,0 + _rotation: South + 30886: + position: 2,0 + _rotation: South + 30887: + position: 3,0 + _rotation: South + 30888: + position: 4,0 + _rotation: South + 30889: + position: 5,0 + _rotation: South + 30890: + position: 6,0 + _rotation: South + 30891: + position: 7,0 + _rotation: South + 30892: + position: 2,1 + _rotation: South + 30893: + position: 3,1 + _rotation: South + 30894: + position: 4,1 + _rotation: South + 30895: + position: 5,1 + _rotation: South + 30896: + position: 6,1 + _rotation: South + 30897: + position: 7,1 + _rotation: South + 30898: + position: 0,2 + _rotation: South + 30899: + position: 1,2 + _rotation: South + 30900: + position: 2,2 + _rotation: South + 30901: + position: 3,2 + _rotation: South + 30902: + position: 4,2 + _rotation: South + 30903: + position: 5,2 + _rotation: South + 30904: + position: 6,2 + _rotation: South + 30905: + position: 7,2 + _rotation: South + 30906: + position: 0,3 + _rotation: South + 30907: + position: 1,3 + _rotation: South + 30908: + position: 6,3 + _rotation: South + 30909: + position: 7,3 + _rotation: South + 30910: + position: 2,4 + _rotation: South + 30911: + position: 3,4 + _rotation: South + 30912: + position: 4,4 + _rotation: South + 30913: + position: 7,4 + _rotation: East + 30914: + position: 0,5 + _rotation: South + 30915: + position: 1,5 + _rotation: South + 30916: + position: 3,5 + _rotation: South + 30917: + position: 4,5 + _rotation: East + 30918: + position: 6,5 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 30884 + - 30885 + - 30886 + - 30887 + - 30888 + - 30889 + - 30890 + - 30891 + - 30892 + - 30893 + - 30894 + - 30895 + - 30896 + - 30897 + - 30898 + - 30899 + - 30900 + - 30901 + - 30902 + - 30903 + - 30904 + - 30905 + - 30906 + - 30907 + - 30908 + - 30909 + - 30910 + - 30911 + - 30912 + - 30913 + - 30914 + - 30915 + - 30916 + - 30917 + - 30918 - proto: TrashBananaPeel entities: - uid: 3484 @@ -178817,6 +182842,12 @@ entities: - type: Transform pos: 13.830492,29.010149 parent: 2 + - uid: 30917 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False - proto: TrashCherryPit entities: - uid: 4046 @@ -178869,6 +182900,11 @@ entities: - type: Transform pos: -32.484524,43.639366 parent: 2 + - uid: 31126 + components: + - type: Transform + pos: 50.31656,14.556666 + parent: 2 - proto: TreasureCoinIron entities: - uid: 3752 @@ -179870,12 +183906,16 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1469 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: VendingMachineWinter entities: - uid: 11934 @@ -179910,29 +183950,39 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4329 components: - type: Transform pos: 40.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9895 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11386 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23602 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallmountTelescreenFrame entities: - uid: 2379 @@ -179940,6 +183990,8 @@ entities: - type: Transform pos: 25.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallmountTelevision entities: - uid: 3581 @@ -179947,56 +183999,76 @@ entities: - type: Transform pos: 3.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3582 components: - type: Transform pos: 27.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3583 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3585 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3587 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5408 components: - type: Transform pos: 48.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5420 components: - type: Transform pos: -18.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9936 components: - type: Transform pos: 7.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19457 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20658 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallReinforced entities: - uid: 3 @@ -181661,12 +185733,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,16.5 parent: 2 - - uid: 2364 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,21.5 - parent: 2 - uid: 2374 components: - type: Transform @@ -182549,26 +186615,6 @@ entities: - type: Transform pos: 45.5,19.5 parent: 2 - - uid: 3194 - components: - - type: Transform - pos: 45.5,20.5 - parent: 2 - - uid: 3195 - components: - - type: Transform - pos: 45.5,21.5 - parent: 2 - - uid: 3196 - components: - - type: Transform - pos: 45.5,22.5 - parent: 2 - - uid: 3197 - components: - - type: Transform - pos: 45.5,23.5 - parent: 2 - uid: 3198 components: - type: Transform @@ -182594,21 +186640,6 @@ entities: - type: Transform pos: 38.5,23.5 parent: 2 - - uid: 3207 - components: - - type: Transform - pos: 45.5,24.5 - parent: 2 - - uid: 3208 - components: - - type: Transform - pos: 45.5,25.5 - parent: 2 - - uid: 3210 - components: - - type: Transform - pos: 45.5,27.5 - parent: 2 - uid: 3211 components: - type: Transform @@ -183977,12 +188008,24 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,-44.5 parent: 2 + - uid: 5219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,27.5 + parent: 2 - uid: 5221 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,28.5 parent: 2 + - uid: 5222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,13.5 + parent: 2 - uid: 5223 components: - type: Transform @@ -184708,18 +188751,6 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,35.5 parent: 2 - - uid: 6541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,25.5 - parent: 2 - - uid: 6543 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,27.5 - parent: 2 - uid: 6544 components: - type: Transform @@ -184732,12 +188763,6 @@ entities: rot: 1.5707963267948966 rad pos: 47.5,28.5 parent: 2 - - uid: 6547 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,29.5 - parent: 2 - uid: 6548 components: - type: Transform @@ -185061,21 +189086,6 @@ entities: - type: Transform pos: 32.5,55.5 parent: 2 - - uid: 6812 - components: - - type: Transform - pos: 37.5,48.5 - parent: 2 - - uid: 6813 - components: - - type: Transform - pos: 37.5,50.5 - parent: 2 - - uid: 6814 - components: - - type: Transform - pos: 37.5,51.5 - parent: 2 - uid: 6815 components: - type: Transform @@ -188281,24 +192291,6 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,9.5 parent: 2 - - uid: 10958 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,9.5 - parent: 2 - - uid: 10959 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,9.5 - parent: 2 - - uid: 10960 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,9.5 - parent: 2 - uid: 10961 components: - type: Transform @@ -189100,182 +193092,151 @@ entities: rot: -1.5707963267948966 rad pos: -47.5,-42.5 parent: 2 + - uid: 12699 + components: + - type: Transform + pos: 57.5,28.5 + parent: 2 + - uid: 12700 + components: + - type: Transform + pos: 58.5,28.5 + parent: 2 + - uid: 12701 + components: + - type: Transform + pos: 60.5,28.5 + parent: 2 + - uid: 12702 + components: + - type: Transform + pos: 59.5,28.5 + parent: 2 - uid: 12703 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,25.5 + pos: 61.5,28.5 parent: 2 - - uid: 12704 + - uid: 12707 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,25.5 + pos: 54.5,26.5 parent: 2 - - uid: 12706 + - uid: 12712 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,25.5 + pos: 52.5,26.5 parent: 2 - - uid: 12709 + - uid: 12713 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,21.5 + pos: 50.5,26.5 parent: 2 - uid: 12714 components: - type: Transform - pos: 56.5,18.5 + pos: 51.5,26.5 parent: 2 - - uid: 12716 + - uid: 12715 components: - type: Transform - pos: 57.5,13.5 + pos: 53.5,26.5 parent: 2 - uid: 12718 components: - type: Transform - pos: 56.5,14.5 + pos: 49.5,26.5 parent: 2 - - uid: 12732 + - uid: 12719 components: - type: Transform - pos: 47.5,12.5 + pos: 61.5,26.5 parent: 2 - - uid: 12733 + - uid: 12720 components: - type: Transform - pos: 47.5,13.5 + pos: 59.5,26.5 parent: 2 - - uid: 12734 + - uid: 12721 components: - type: Transform - pos: 47.5,14.5 + pos: 60.5,26.5 parent: 2 - - uid: 12735 + - uid: 12722 components: - type: Transform - pos: 47.5,15.5 + pos: 57.5,26.5 parent: 2 - - uid: 12736 + - uid: 12723 components: - type: Transform - pos: 47.5,16.5 + pos: 58.5,26.5 parent: 2 - - uid: 12737 - components: - - type: Transform - pos: 47.5,17.5 - parent: 2 - - uid: 12738 - components: - - type: Transform - pos: 47.5,18.5 - parent: 2 - - uid: 12739 - components: - - type: Transform - pos: 47.5,19.5 - parent: 2 - - uid: 12740 - components: - - type: Transform - pos: 47.5,20.5 - parent: 2 - - uid: 12742 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,25.5 - parent: 2 - - uid: 12743 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,25.5 - parent: 2 - - uid: 12744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,25.5 - parent: 2 - - uid: 12749 - components: - - type: Transform - pos: 55.5,19.5 - parent: 2 - - uid: 12750 - components: - - type: Transform - pos: 55.5,18.5 - parent: 2 - - uid: 12751 - components: - - type: Transform - pos: 57.5,12.5 - parent: 2 - - uid: 12752 - components: - - type: Transform - pos: 57.5,14.5 - parent: 2 - - uid: 12754 - components: - - type: Transform - pos: 55.5,14.5 - parent: 2 - - uid: 12755 - components: - - type: Transform - pos: 55.5,13.5 - parent: 2 - - uid: 12756 - components: - - type: Transform - pos: 55.5,12.5 - parent: 2 - - uid: 12757 - components: - - type: Transform - pos: 54.5,12.5 - parent: 2 - - uid: 12758 - components: - - type: Transform - pos: 53.5,12.5 - parent: 2 - - uid: 12759 - components: - - type: Transform - pos: 52.5,12.5 - parent: 2 - - uid: 12760 - components: - - type: Transform - pos: 51.5,12.5 - parent: 2 - - uid: 12761 - components: - - type: Transform - pos: 50.5,12.5 - parent: 2 - - uid: 12762 + - uid: 12724 components: - type: Transform pos: 49.5,12.5 parent: 2 + - uid: 12725 + components: + - type: Transform + pos: 53.5,12.5 + parent: 2 + - uid: 12726 + components: + - type: Transform + pos: 52.5,12.5 + parent: 2 + - uid: 12727 + components: + - type: Transform + pos: 51.5,12.5 + parent: 2 + - uid: 12729 + components: + - type: Transform + pos: 56.5,12.5 + parent: 2 + - uid: 12730 + components: + - type: Transform + pos: 58.5,12.5 + parent: 2 + - uid: 12732 + components: + - type: Transform + pos: 57.5,12.5 + parent: 2 + - uid: 12733 + components: + - type: Transform + pos: 59.5,12.5 + parent: 2 + - uid: 12735 + components: + - type: Transform + pos: 59.5,11.5 + parent: 2 + - uid: 12753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,30.5 + parent: 2 + - uid: 12755 + components: + - type: Transform + pos: 48.5,26.5 + parent: 2 - uid: 12763 components: - type: Transform - pos: 48.5,12.5 + pos: 64.5,26.5 parent: 2 - uid: 12764 components: - type: Transform - pos: 57.5,11.5 + pos: 56.5,26.5 parent: 2 - uid: 12765 components: @@ -189310,161 +193271,55 @@ entities: - uid: 12771 components: - type: Transform - pos: 57.5,18.5 + pos: 55.5,26.5 parent: 2 - uid: 12772 components: - type: Transform - pos: 57.5,19.5 + pos: 64.5,27.5 parent: 2 - uid: 12773 components: - type: Transform - pos: 57.5,20.5 - parent: 2 - - uid: 12775 - components: - - type: Transform - pos: 57.5,22.5 - parent: 2 - - uid: 12776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,23.5 - parent: 2 - - uid: 12777 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,25.5 - parent: 2 - - uid: 12778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,25.5 + pos: 64.5,28.5 parent: 2 - uid: 12779 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,25.5 + pos: 63.5,28.5 parent: 2 - uid: 12780 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,25.5 + pos: 62.5,28.5 parent: 2 - uid: 12782 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,25.5 - parent: 2 - - uid: 12783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,20.5 + rot: 1.5707963267948966 rad + pos: 47.5,17.5 parent: 2 - uid: 12784 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,22.5 + rot: 1.5707963267948966 rad + pos: 47.5,15.5 parent: 2 - uid: 12790 components: - type: Transform - pos: 51.5,15.5 - parent: 2 - - uid: 12791 - components: - - type: Transform - pos: 51.5,17.5 - parent: 2 - - uid: 12792 - components: - - type: Transform - pos: 52.5,16.5 - parent: 2 - - uid: 12793 - components: - - type: Transform - pos: 52.5,15.5 - parent: 2 - - uid: 12794 - components: - - type: Transform - pos: 52.5,17.5 - parent: 2 - - uid: 12805 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,23.5 - parent: 2 - - uid: 12806 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,23.5 - parent: 2 - - uid: 12807 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,23.5 - parent: 2 - - uid: 12808 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,23.5 - parent: 2 - - uid: 12809 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,23.5 + pos: 48.5,12.5 parent: 2 - uid: 12810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,23.5 - parent: 2 - - uid: 12811 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,23.5 - parent: 2 - - uid: 12812 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,23.5 - parent: 2 - - uid: 12813 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,23.5 - parent: 2 - - uid: 12814 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,22.5 + pos: 50.5,12.5 parent: 2 - uid: 12815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,21.5 + rot: 1.5707963267948966 rad + pos: 47.5,16.5 parent: 2 - uid: 12819 components: @@ -189472,6 +193327,18 @@ entities: rot: 3.141592653589793 rad pos: 48.5,-10.5 parent: 2 + - uid: 12839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,14.5 + parent: 2 + - uid: 12841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,12.5 + parent: 2 - uid: 12844 components: - type: Transform @@ -189496,75 +193363,89 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-47.5 parent: 2 + - uid: 12865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,21.5 + parent: 2 + - uid: 12866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,19.5 + parent: 2 + - uid: 12891 + components: + - type: Transform + pos: 55.5,28.5 + parent: 2 + - uid: 12902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,23.5 + parent: 2 + - uid: 12904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,21.5 + parent: 2 + - uid: 12916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,17.5 + parent: 2 + - uid: 12917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,18.5 + parent: 2 + - uid: 12918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,22.5 + parent: 2 + - uid: 12922 + components: + - type: Transform + pos: 63.5,12.5 + parent: 2 + - uid: 12927 + components: + - type: Transform + pos: 54.5,12.5 + parent: 2 + - uid: 12932 + components: + - type: Transform + pos: 55.5,12.5 + parent: 2 - uid: 12940 components: - type: Transform - pos: 58.5,20.5 + rot: 1.5707963267948966 rad + pos: 55.5,21.5 parent: 2 - uid: 12941 components: - type: Transform - pos: 59.5,20.5 - parent: 2 - - uid: 12943 - components: - - type: Transform - pos: 61.5,20.5 - parent: 2 - - uid: 12944 - components: - - type: Transform - pos: 62.5,20.5 - parent: 2 - - uid: 12945 - components: - - type: Transform - pos: 62.5,19.5 - parent: 2 - - uid: 12946 - components: - - type: Transform - pos: 62.5,18.5 - parent: 2 - - uid: 12947 - components: - - type: Transform - pos: 62.5,17.5 - parent: 2 - - uid: 12948 - components: - - type: Transform - pos: 62.5,16.5 - parent: 2 - - uid: 12949 - components: - - type: Transform - pos: 62.5,15.5 - parent: 2 - - uid: 12950 - components: - - type: Transform - pos: 62.5,14.5 - parent: 2 - - uid: 12951 - components: - - type: Transform - pos: 62.5,13.5 - parent: 2 - - uid: 12952 - components: - - type: Transform - pos: 62.5,12.5 + rot: 1.5707963267948966 rad + pos: 54.5,21.5 parent: 2 - uid: 12953 components: - type: Transform - pos: 62.5,11.5 + pos: 38.5,51.5 parent: 2 - - uid: 12954 + - uid: 12957 components: - type: Transform - pos: 62.5,10.5 + pos: 62.5,16.5 parent: 2 - uid: 12986 components: @@ -189588,17 +193469,56 @@ entities: - type: Transform pos: 59.5,10.5 parent: 2 + - uid: 13006 + components: + - type: Transform + pos: 62.5,13.5 + parent: 2 + - uid: 13013 + components: + - type: Transform + pos: 62.5,22.5 + parent: 2 + - uid: 13014 + components: + - type: Transform + pos: 62.5,26.5 + parent: 2 + - uid: 13015 + components: + - type: Transform + pos: 62.5,25.5 + parent: 2 - uid: 13017 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,27.5 + pos: 62.5,24.5 parent: 2 - - uid: 13021 + - uid: 13020 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,27.5 + pos: 62.5,23.5 + parent: 2 + - uid: 13023 + components: + - type: Transform + pos: 62.5,15.5 + parent: 2 + - uid: 13026 + components: + - type: Transform + pos: 62.5,14.5 + parent: 2 + - uid: 13061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,21.5 + parent: 2 + - uid: 13064 + components: + - type: Transform + pos: 62.5,12.5 parent: 2 - uid: 13067 components: @@ -189709,6 +193629,11 @@ entities: - type: Transform pos: 30.5,31.5 parent: 2 + - uid: 13747 + components: + - type: Transform + pos: 51.5,28.5 + parent: 2 - uid: 13960 components: - type: Transform @@ -189778,12 +193703,6 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,-3.5 parent: 2 - - uid: 14683 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,25.5 - parent: 2 - uid: 14805 components: - type: Transform @@ -189856,6 +193775,11 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,48.5 parent: 2 + - uid: 17129 + components: + - type: Transform + pos: 62.5,19.5 + parent: 2 - uid: 17215 components: - type: Transform @@ -189903,6 +193827,26 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,-20.5 parent: 2 + - uid: 17437 + components: + - type: Transform + pos: 62.5,20.5 + parent: 2 + - uid: 17440 + components: + - type: Transform + pos: 62.5,21.5 + parent: 2 + - uid: 17455 + components: + - type: Transform + pos: 62.5,17.5 + parent: 2 + - uid: 17456 + components: + - type: Transform + pos: 62.5,18.5 + parent: 2 - uid: 18052 components: - type: Transform @@ -190002,6 +193946,11 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,9.5 parent: 2 + - uid: 18370 + components: + - type: Transform + pos: 52.5,28.5 + parent: 2 - uid: 18406 components: - type: Transform @@ -190014,6 +193963,18 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-79.5 parent: 2 + - uid: 18410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,24.5 + parent: 2 + - uid: 18424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,22.5 + parent: 2 - uid: 18628 components: - type: Transform @@ -190038,6 +193999,12 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,-50.5 parent: 2 + - uid: 18930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,28.5 + parent: 2 - uid: 19043 components: - type: Transform @@ -190186,18 +194153,63 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,-81.5 parent: 2 + - uid: 20259 + components: + - type: Transform + pos: 56.5,28.5 + parent: 2 + - uid: 20262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,31.5 + parent: 2 + - uid: 20267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,31.5 + parent: 2 - uid: 20273 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,28.5 parent: 2 + - uid: 20488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,21.5 + parent: 2 + - uid: 20495 + components: + - type: Transform + pos: 48.5,28.5 + parent: 2 + - uid: 20497 + components: + - type: Transform + pos: 49.5,28.5 + parent: 2 + - uid: 20500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,21.5 + parent: 2 - uid: 20610 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-8.5 parent: 2 + - uid: 20646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,19.5 + parent: 2 - uid: 20659 components: - type: Transform @@ -191301,6 +195313,12 @@ entities: rot: 3.141592653589793 rad pos: -0.5,44.5 parent: 2 + - uid: 23759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,25.5 + parent: 2 - uid: 23783 components: - type: Transform @@ -192505,61 +196523,26 @@ entities: rot: 1.5707963267948966 rad pos: 50.5,-20.5 parent: 2 - - uid: 29293 + - uid: 29196 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,25.5 + rot: 1.5707963267948966 rad + pos: 46.5,20.5 parent: 2 - uid: 29294 components: - type: Transform pos: -15.5,-61.5 parent: 2 - - uid: 29300 + - uid: 29297 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,22.5 + pos: 38.5,48.5 parent: 2 - - uid: 29301 + - uid: 29298 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,23.5 - parent: 2 - - uid: 29302 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,23.5 - parent: 2 - - uid: 29303 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,23.5 - parent: 2 - - uid: 29304 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,23.5 - parent: 2 - - uid: 29309 - components: - - type: Transform - pos: 63.5,10.5 - parent: 2 - - uid: 29310 - components: - - type: Transform - pos: 64.5,10.5 - parent: 2 - - uid: 29311 - components: - - type: Transform - pos: 64.5,11.5 + pos: 38.5,50.5 parent: 2 - uid: 29312 components: @@ -192616,17 +196599,17 @@ entities: - type: Transform pos: 64.5,22.5 parent: 2 - - uid: 29323 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,23.5 - parent: 2 - uid: 29334 components: - type: Transform pos: 63.5,6.5 parent: 2 + - uid: 29339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,22.5 + parent: 2 - uid: 29348 components: - type: Transform @@ -192642,30 +196625,12 @@ entities: - type: Transform pos: 63.5,5.5 parent: 2 - - uid: 29413 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,25.5 - parent: 2 - - uid: 29415 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,25.5 - parent: 2 - uid: 29421 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,25.5 parent: 2 - - uid: 29422 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,25.5 - parent: 2 - uid: 29423 components: - type: Transform @@ -192678,17 +196643,23 @@ entities: rot: 3.141592653589793 rad pos: 64.5,23.5 parent: 2 - - uid: 29425 + - uid: 29438 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,25.5 + pos: 48.5,20.5 parent: 2 - - uid: 29431 + - uid: 29453 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,21.5 + rot: 1.5707963267948966 rad + pos: 46.5,25.5 + parent: 2 + - uid: 29454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,24.5 parent: 2 - uid: 29481 components: @@ -192701,6 +196672,12 @@ entities: rot: 3.141592653589793 rad pos: -60.5,-9.5 parent: 2 + - uid: 29577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,23.5 + parent: 2 - uid: 29593 components: - type: Transform @@ -192717,6 +196694,18 @@ entities: - type: Transform pos: -14.5,-60.5 parent: 2 + - uid: 29833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,26.5 + parent: 2 + - uid: 29865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,22.5 + parent: 2 - uid: 29962 components: - type: Transform @@ -192794,6 +196783,18 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,24.5 parent: 2 + - uid: 31131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 21002 + - uid: 31132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 21002 - proto: WallReinforcedRust entities: - uid: 24425 @@ -195976,11 +199977,6 @@ entities: - type: Transform pos: 45.5,32.5 parent: 2 - - uid: 9739 - components: - - type: Transform - pos: 45.5,31.5 - parent: 2 - uid: 9750 components: - type: Transform @@ -196950,6 +200946,12 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,-52.5 parent: 2 + - uid: 13029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,26.5 + parent: 2 - uid: 13033 components: - type: Transform @@ -197120,11 +201122,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,33.5 parent: 2 - - uid: 17129 - components: - - type: Transform - pos: 44.5,24.5 - parent: 2 - uid: 17434 components: - type: Transform @@ -197532,6 +201529,12 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,-44.5 parent: 2 + - uid: 29195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,27.5 + parent: 2 - uid: 29369 components: - type: Transform @@ -198429,22 +202432,30 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28304 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,5.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28505 components: - type: Transform pos: 5.5,-0.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28552 components: - type: Transform pos: -25.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningCO2 entities: - uid: 8912 @@ -198453,6 +202464,8 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningN2 entities: - uid: 8913 @@ -198461,12 +202474,16 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28302 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-8.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: WarningN2O entities: - uid: 8914 @@ -198475,6 +202492,8 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningO2 entities: - uid: 8915 @@ -198483,12 +202502,16 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28303 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-12.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: WarningPlasma entities: - uid: 6196 @@ -198497,6 +202520,8 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningTritium entities: - uid: 8920 @@ -198505,6 +202530,8 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningWaste entities: - uid: 8699 @@ -198513,18 +202540,24 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8938 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9479 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WaterCooler entities: - uid: 593 @@ -198727,6 +202760,11 @@ entities: - type: Transform pos: 43.5,-35.5 parent: 2 + - uid: 31112 + components: + - type: Transform + pos: 49.5,21.5 + parent: 2 - proto: WeaponDisabler entities: - uid: 28507 @@ -198755,14 +202793,159 @@ entities: - type: Transform pos: 48.66992,-38.664413 parent: 2 +- proto: WeaponEnergyTurretAI + entities: + - uid: 17458 + components: + - type: Transform + pos: 60.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12911 + - uid: 24379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12911 + - uid: 30245 + components: + - type: Transform + pos: 63.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18428 + - 3208 + - uid: 31109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12911 + - uid: 31110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12911 +- proto: WeaponEnergyTurretAIControlPanel + entities: + - uid: 3208 + components: + - type: MetaData + name: AI bridge turret control + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 30245 + - uid: 12911 + components: + - type: MetaData + name: AI turret control + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 17458 + - 24379 + - 31109 + - 31110 + - uid: 18428 + components: + - type: MetaData + name: AI bridge turret + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 30245 - proto: WeaponEnergyTurretSecurity entities: + - uid: 21076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12903 - uid: 30411 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-0.5 parent: 21002 + - type: DeviceNetwork + deviceLists: + - 31093 + - 31090 + - 31091 + - 31092 +- proto: WeaponEnergyTurretSecurityControlPanel + entities: + - uid: 12903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-18.5 + parent: 2 + - type: DeviceList + devices: + - 21076 + - uid: 31090 + components: + - type: Transform + pos: -0.5,2.5 + parent: 21002 + - type: DeviceList + devices: + - 30411 + - uid: 31091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,1.5 + parent: 21002 + - type: DeviceList + devices: + - 30411 + - uid: 31092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 21002 + - type: DeviceList + devices: + - 30411 + - uid: 31093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 21002 + - type: DeviceList + devices: + - 30411 - proto: WeaponGrapplingGun entities: - uid: 10217 @@ -198901,38 +203084,6 @@ entities: rot: -1.5707963267948966 rad pos: 42.421173,-41.240723 parent: 2 -- proto: WeaponTurretSyndicateBroken - entities: - - uid: 20501 - components: - - type: Transform - pos: 63.5,8.5 - parent: 2 - - uid: 28812 - components: - - type: Transform - pos: 48.5,22.5 - parent: 2 - - uid: 28813 - components: - - type: Transform - pos: 48.5,13.5 - parent: 2 - - uid: 28814 - components: - - type: Transform - pos: 48.5,18.5 - parent: 2 - - uid: 29833 - components: - - type: Transform - pos: 54.5,13.5 - parent: 2 - - uid: 30245 - components: - - type: Transform - pos: 54.5,22.5 - parent: 2 - proto: WeldingFuelTankFull entities: - uid: 4298 @@ -199208,17 +203359,6 @@ entities: parent: 2 - proto: WindoorSecureCommandLocked entities: - - uid: 12796 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,16.5 - parent: 2 - - uid: 12841 - components: - - type: Transform - pos: 51.5,21.5 - parent: 2 - uid: 30289 components: - type: Transform @@ -200556,16 +204696,6 @@ entities: - type: Transform pos: 7.5,2.5 parent: 21002 - - uid: 21060 - components: - - type: Transform - pos: 2.5,4.5 - parent: 21002 - - uid: 21061 - components: - - type: Transform - pos: 3.5,4.5 - parent: 21002 - uid: 22277 components: - type: Transform @@ -200697,7 +204827,7 @@ entities: pos: 24.5,2.5 parent: 21002 - type: Door - secondsUntilStateChange: -660121.25 + secondsUntilStateChange: -685379.4 state: Opening - uid: 28863 components: diff --git a/Resources/Maps/packed.yml b/Resources/Maps/packed.yml index 69c83395d1..c371d2f04c 100644 --- a/Resources/Maps/packed.yml +++ b/Resources/Maps/packed.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 264.0.0 + engineVersion: 265.0.0 forkId: "" forkVersion: "" - time: 07/22/2025 16:27:25 - entityCount: 15464 + time: 08/17/2025 18:39:31 + entityCount: 15905 maps: - 126 grids: @@ -15,12 +15,15 @@ nullspace: [] tilemap: 0: Space 3: FloorArcadeRed + 11: FloorAstroAsteroidSandBorderless + 7: FloorAstroGrass 14: FloorBar 16: FloorBlue 17: FloorBlueCircuit 21: FloorCarpetOffice 29: FloorDark 1: FloorDarkDiagonal + 13: FloorDarkMini 34: FloorDarkMono 41: FloorEighties 44: FloorFreezer @@ -36,6 +39,7 @@ tilemap: 80: FloorShowroom 91: FloorSteel 5: FloorSteelCheckerDark + 12: FloorSteelDamaged 98: FloorSteelDirty 100: FloorSteelLime 101: FloorSteelMini @@ -43,11 +47,14 @@ tilemap: 106: FloorTechMaint 107: FloorTechMaint2 6: FloorTechMaint3 + 8: FloorTechMaintDark 110: FloorWhite 114: FloorWhiteMini + 9: FloorWhitePlastic 120: FloorWood 122: Lattice 123: Plating + 10: PlatingDamaged entities: - proto: "" entities: @@ -73,19 +80,19 @@ entities: version: 7 0,-1: ind: 0,-1 - tiles: ewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAMAHQAAAAADAB0AAAAAAgAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAADAB0AAAAAAQAdAAAAAAMAHQAAAAADAB0AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAMAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAEAHQAAAAABAB0AAAAAAwB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAAAAB0AAAAAAAAdAAAAAAIAewAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAOgAAAAAAADoAAAAAAAA6AAAAAAAAOgAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAACAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAIAHQAAAAAAAB0AAAAAAQB7AAAAAAAAHQAAAAACAB0AAAAAAgBrAAAAAAAAewAAAAAAAHsAAAAAAAA6AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAMAewAAAAAAAB0AAAAAAwAdAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAOgAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAABAHsAAAAAAAAdAAAAAAMAHQAAAAACAHsAAAAAAABbAAAAAAIAWwAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAQB7AAAAAAAAWwAAAAADAFsAAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAACAFsAAAAAAgBbAAAAAAIAWwAAAAACAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAEAWwAAAAADAFsAAAAAAwBbAAAAAAEAWwAAAAADAFsAAAAAAQBbAAAAAAMAWwAAAAAAAA== + tiles: ewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAMAHQAAAAADAB0AAAAAAgAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAADAB0AAAAAAQAdAAAAAAMAHQAAAAADAB0AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAMAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAEAHQAAAAABAB0AAAAAAwB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAAAAB0AAAAAAAAdAAAAAAIAewAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAOgAAAAAAADoAAAAAAAA6AAAAAAAAOgAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAACAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAIAHQAAAAAAAB0AAAAAAQB7AAAAAAAAHQAAAAACAB0AAAAAAgBrAAAAAAAAewAAAAAAAHsAAAAAAAA6AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAMAewAAAAAAAB0AAAAAAwAdAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAOgAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAABAHsAAAAAAAAdAAAAAAMAHQAAAAACAHsAAAAAAABbAAAAAAIAWwAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAQB7AAAAAAAAWwAAAAADAFsAAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAACAFsAAAAAAgBbAAAAAAIAWwAAAAACAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAEAWwAAAAADAFsAAAAAAwBbAAAAAAEAWwAAAAADAFsAAAAAAQBbAAAAAAMAWwAAAAAAAA== version: 7 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAGoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAABAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAAHsAAAAAAAAiAAAAAAIAWwAAAAADAFsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAGoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAABAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAAHsAAAAAAAAiAAAAAAIAWwAAAAADAFsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAA== version: 7 0,-2: ind: 0,-2 - tiles: ewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAABbAAAAAAMAWwAAAAACAFsAAAAAAgB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAIAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAACAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAwB6AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAGoAAAAAAABrAAAAAAAAagAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAagAAAAAAAGsAAAAAAABqAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAA== + tiles: ewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAABbAAAAAAMAWwAAAAACAFsAAAAAAgB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAIAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAACAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAwB6AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAGoAAAAAAABrAAAAAAAAagAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAagAAAAAAAGsAAAAAAABqAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAA== version: 7 0,1: ind: 0,1 - tiles: egAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB4AAAAAAIAeAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAMAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHgAAAAAAgB4AAAAAAAAeAAAAAAAAHgAAAAAAQB4AAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB4AAAAAAEAeAAAAAACAHgAAAAAAAB4AAAAAAMAeAAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAgBbAAAAAAIAWwAAAAABAFsAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAIAWwAAAAAAAFsAAAAAAQBbAAAAAAMAWwAAAAADAFsAAAAAAABbAAAAAAAAWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAEAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAADAFsAAAAAAgBbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAgBbAAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAEAWwAAAAADAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAABAFsAAAAAAQBrAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAwB7AAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAIAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAQBbAAAAAAEAewAAAAAAACIAAAAAAwAiAAAAAAEAIgAAAAACAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAAAiAAAAAAEAIgAAAAADACIAAAAAAQB7AAAAAAAAewAAAAAAAA== + tiles: egAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB4AAAAAAIAeAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAMAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHgAAAAAAgB4AAAAAAAAeAAAAAAAAHgAAAAAAQB4AAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB4AAAAAAEAeAAAAAACAHgAAAAAAAB4AAAAAAMAeAAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAgBbAAAAAAIAWwAAAAABAFsAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAIAWwAAAAAAAFsAAAAAAQBbAAAAAAMAWwAAAAADAFsAAAAAAABbAAAAAAAAWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAEAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAADAFsAAAAAAgBbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAgBbAAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAEAWwAAAAADAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAABAFsAAAAAAQBrAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAIAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAQBbAAAAAAEAewAAAAAAACIAAAAAAwAiAAAAAAEAIgAAAAACAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAAAiAAAAAAEAIgAAAAADACIAAAAAAQB7AAAAAAAAewAAAAAAAA== version: 7 1,0: ind: 1,0 @@ -93,15 +100,15 @@ entities: version: 7 1,-1: ind: 1,-1 - tiles: ewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAADAB0AAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAACAHgAAAAAAAB4AAAAAAAAHQAAAAABAB0AAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAQBbAAAAAAIAewAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAwB4AAAAAAIAeAAAAAABAB0AAAAAAAAdAAAAAAMAHQAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAACAHsAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAMAeAAAAAAAAHgAAAAAAQAdAAAAAAEAHQAAAAADAB0AAAAAAQBbAAAAAAAAWwAAAAADAFsAAAAAAgAdAAAAAAMALAAAAAAAACwAAAAAAAAsAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAABAHgAAAAAAAB4AAAAAAAAHQAAAAACAB0AAAAAAgB7AAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAEAewAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAACAFsAAAAAAAB7AAAAAAAAPgAAAAAAAD4AAAAAAAAOAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAEAewAAAAAAAD4AAAAAAAA+AAAAAAAADgAAAAACAB0AAAAAAgAdAAAAAAAAeAAAAAACAHgAAAAAAwB4AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAABQAAAAACAFsAAAAAAQBbAAAAAAMAWwAAAAABAFsAAAAAAwAOAAAAAAMADgAAAAABAA4AAAAAAwAdAAAAAAIAHQAAAAADAHgAAAAAAAB4AAAAAAAAeAAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAAUAAAAAAwBbAAAAAAIAWwAAAAADAFsAAAAAAAB7AAAAAAAADgAAAAABAA4AAAAAAAAOAAAAAAMAHQAAAAAAAB0AAAAAAwB4AAAAAAEAeAAAAAADAHgAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAABbAAAAAAIAewAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAFsAAAAAAAB7AAAAAAAAeAAAAAABAHgAAAAAAgB4AAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAACAHsAAAAAAAAOAAAAAAMADgAAAAAAAA4AAAAAAgBbAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAgBbAAAAAAIAWwAAAAADAFsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAACAFsAAAAAAgBbAAAAAAAAWwAAAAACAFsAAAAAAgBbAAAAAAEAWwAAAAABAA== + tiles: EQAAAAAAABEAAAAAAAAdAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAADAB0AAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAAB7AAAAAAAAHQAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAACAHgAAAAAAAB4AAAAAAAAHQAAAAABAB0AAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAQBbAAAAAAIAewAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAwB4AAAAAAIAeAAAAAABAB0AAAAAAAAdAAAAAAMAHQAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAACAHsAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAMAeAAAAAAAAHgAAAAAAQAdAAAAAAEAHQAAAAADAB0AAAAAAQBbAAAAAAAAWwAAAAADAFsAAAAAAgAdAAAAAAMALAAAAAAAACwAAAAAAAAsAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAABAHgAAAAAAAB4AAAAAAAAHQAAAAACAB0AAAAAAgB7AAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAEAewAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAACAFsAAAAAAAB7AAAAAAAAPgAAAAAAAD4AAAAAAAAOAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAEAewAAAAAAAD4AAAAAAAA+AAAAAAAADgAAAAACAB0AAAAAAgAdAAAAAAAAeAAAAAACAHgAAAAAAwB4AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAABQAAAAACAFsAAAAAAQBbAAAAAAMAWwAAAAABAFsAAAAAAwAOAAAAAAMADgAAAAABAA4AAAAAAwAdAAAAAAIAHQAAAAADAHgAAAAAAAB4AAAAAAAAeAAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAAUAAAAAAwBbAAAAAAIAWwAAAAADAFsAAAAAAAB7AAAAAAAADgAAAAABAA4AAAAAAAAOAAAAAAMAHQAAAAAAAB0AAAAAAwB4AAAAAAEAeAAAAAADAHgAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAABbAAAAAAIAewAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAFsAAAAAAAB7AAAAAAAAeAAAAAABAHgAAAAAAgB4AAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAACAHsAAAAAAAAOAAAAAAMADgAAAAAAAA4AAAAAAgBbAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAgBbAAAAAAIAWwAAAAADAFsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAACAFsAAAAAAgBbAAAAAAAAWwAAAAACAFsAAAAAAgBbAAAAAAEAWwAAAAABAA== version: 7 1,-2: ind: 1,-2 - tiles: agAAAAAAAFsAAAAAAwBbAAAAAAEAewAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAEAWwAAAAABAHsAAAAAAABbAAAAAAIAWwAAAAACAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAgBbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAwB7AAAAAAAAWwAAAAADAFsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAABAFsAAAAAAgBbAAAAAAEAWwAAAAACAFsAAAAAAwBbAAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAMAWwAAAAADAFsAAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAQBbAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAIAWwAAAAAAAFsAAAAAAQBbAAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAADAHsAAAAAAABbAAAAAAEAWwAAAAADAFsAAAAAAwBbAAAAAAIAWwAAAAABAFsAAAAAAQBbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAEAWwAAAAADAHsAAAAAAAB7AAAAAAAAWwAAAAABAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAADAFsAAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAABAFsAAAAAAQBbAAAAAAMAWwAAAAADAFsAAAAAAABbAAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAABbAAAAAAEAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAACAFsAAAAAAwBbAAAAAAEAWwAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAACAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAADAB0AAAAAAwB7AAAAAAAAWwAAAAABAFsAAAAAAwBbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAABEAAAAAAAB7AAAAAAAAHQAAAAACAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAAAdAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAMAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAARAAAAAAAAawAAAAAAAB0AAAAAAwB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAIAHQAAAAACAB0AAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAQB7AAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAEAEQAAAAAAAHsAAAAAAAAdAAAAAAEAewAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAABAB0AAAAAAwB7AAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAABAA== + tiles: agAAAAAAAFsAAAAAAwBbAAAAAAEAewAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAEAWwAAAAABAHsAAAAAAABbAAAAAAIAWwAAAAACAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAgBbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAwB7AAAAAAAAWwAAAAADAFsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAABAFsAAAAAAgBbAAAAAAEAWwAAAAACAFsAAAAAAwBbAAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAMAWwAAAAADAFsAAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAQBbAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAIAWwAAAAAAAFsAAAAAAQBbAAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAADAHsAAAAAAABbAAAAAAEAWwAAAAADAFsAAAAAAwBbAAAAAAIAWwAAAAABAFsAAAAAAQBbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAEAWwAAAAADAHsAAAAAAAB7AAAAAAAAWwAAAAABAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAADAFsAAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAABAFsAAAAAAQBbAAAAAAMAWwAAAAADAFsAAAAAAABbAAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAABbAAAAAAEAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAACAFsAAAAAAwBbAAAAAAEAWwAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAACAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAEQAAAAAAABEAAAAAAAAdAAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAB0AAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAwBbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAAAdAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAMAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAARAAAAAAAAEQAAAAAAAB0AAAAAAwB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAIAHQAAAAACAB0AAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAQB7AAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAABAB0AAAAAAwB7AAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAABAA== version: 7 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAB4AAAAAAEAeAAAAAABAHgAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB7AAAAAAAAeAAAAAADAHgAAAAAAAB4AAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAHgAAAAAAQB4AAAAAAEAeAAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAwB7AAAAAAAAegAAAAAAAHsAAAAAAABbAAAAAAIAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAAdAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAAAHQAAAAADAHsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHgAAAAAAgB4AAAAAAMAeAAAAAADAB0AAAAAAQB7AAAAAAAAWwAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB4AAAAAAIAeAAAAAADAHgAAAAAAgAdAAAAAAMAHQAAAAABAFsAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAQB4AAAAAAIAHQAAAAADAHsAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAB4AAAAAAEAeAAAAAABAHgAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB7AAAAAAAAeAAAAAADAHgAAAAAAAB4AAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAHgAAAAAAQB4AAAAAAEAeAAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAwB7AAAAAAAAegAAAAAAAHsAAAAAAABbAAAAAAIAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAAdAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAAAHQAAAAADAHsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHgAAAAAAgB4AAAAAAMAeAAAAAADAB0AAAAAAQB7AAAAAAAAWwAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB4AAAAAAIAeAAAAAADAHgAAAAAAgAdAAAAAAMAHQAAAAABAFsAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAQB4AAAAAAIAHQAAAAADAHsAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== version: 7 1,-3: ind: 1,-3 @@ -117,15 +124,15 @@ entities: version: 7 1,1: ind: 1,1 - tiles: eAAAAAABAHsAAAAAAAAFAAAAAAEAewAAAAAAAHsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAwB7AAAAAAAABQAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAABAHsAAAAAAABbAAAAAAMAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAEAewAAAAAAAAUAAAAAAQBbAAAAAAIAWwAAAAAAAFsAAAAAAQB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAACAFsAAAAAAQBbAAAAAAIAWwAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAABAHsAAAAAAABbAAAAAAMAWwAAAAADAFsAAAAAAQBbAAAAAAMAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAIAWwAAAAABAFsAAAAAAQBbAAAAAAEAWwAAAAADAFsAAAAAAgB7AAAAAAAAWwAAAAAAAFsAAAAAAwB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAABAFsAAAAAAABbAAAAAAMAWwAAAAACAFsAAAAAAwBbAAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAgBbAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAMAWwAAAAACAFsAAAAAAwBbAAAAAAIAWwAAAAADAFsAAAAAAwBbAAAAAAMAWwAAAAABAFsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAABbAAAAAAMAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAADAFsAAAAAAgBbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAACAFsAAAAAAABbAAAAAAAAWwAAAAABAB0AAAAAAgAdAAAAAAEAHQAAAAABAHsAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAADAHsAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAAAewAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAADAHsAAAAAAAB4AAAAAAIAeAAAAAACAHgAAAAAAgB4AAAAAAMAeAAAAAAAAHgAAAAAAAB4AAAAAAEAWwAAAAADAFsAAAAAAQBbAAAAAAIAWwAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAAAAB0AAAAAAwB7AAAAAAAAeAAAAAAAAHgAAAAAAgB4AAAAAAIAeAAAAAAAAHgAAAAAAAB4AAAAAAIAeAAAAAADAFsAAAAAAgBbAAAAAAAAWwAAAAADAFsAAAAAAwB7AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAMAewAAAAAAAHgAAAAAAgB4AAAAAAIAeAAAAAACAHgAAAAAAAB4AAAAAAMAeAAAAAACAHgAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== + tiles: eAAAAAABAHsAAAAAAAAFAAAAAAEAewAAAAAAAHsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAwB7AAAAAAAABQAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAABAHsAAAAAAAAIAAAAAAAACAAAAAAAAB0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAEAewAAAAAAAAUAAAAAAQBbAAAAAAIAWwAAAAAAAFsAAAAAAQB7AAAAAAAACAAAAAAAAAgAAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAACAFsAAAAAAQBbAAAAAAIAWwAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAABAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAIAWwAAAAABAFsAAAAAAQBbAAAAAAEAWwAAAAADAFsAAAAAAgB7AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAABAFsAAAAAAABbAAAAAAMAWwAAAAACAFsAAAAAAwBbAAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAgBbAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAMAWwAAAAACAFsAAAAAAwBbAAAAAAIAWwAAAAADAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAABbAAAAAAMAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAwBrAAAAAAAAHQAAAAAAAAUAAAAAAAAFAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAACAFsAAAAAAABbAAAAAAAAewAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAgBrAAAAAAAAHQAAAAAAAB0AAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAAAawAAAAAAAB0AAAAAAQAdAAAAAAAAawAAAAAAAHsAAAAAAAB4AAAAAAIAeAAAAAACAHgAAAAAAgB4AAAAAAMAeAAAAAAAAHgAAAAAAAB4AAAAAAEAeAAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAgB4AAAAAAIAeAAAAAAAAHgAAAAAAAB4AAAAAAIAeAAAAAADAHgAAAAAAABbAAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAewAAAAAAAHgAAAAAAgB4AAAAAAIAeAAAAAACAHgAAAAAAAB4AAAAAAMAeAAAAAACAHgAAAAAAAB4AAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAA== version: 7 2,0: ind: 2,0 - tiles: WwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAEAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAADAFsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAACAFsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAABbAAAAAAMAewAAAAAAAHsAAAAAAAAFAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAACAHsAAAAAAABuAAAAAAMAbgAAAAABAG4AAAAAAABuAAAAAAMAewAAAAAAAHsAAAAAAAA+AAAAAAAAewAAAAAAAD4AAAAAAAB7AAAAAAAAPgAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAABAFsAAAAAAAB7AAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAEAbgAAAAACAB0AAAAAAQB7AAAAAAAAHQAAAAADAHsAAAAAAAAdAAAAAAEAewAAAAAAAD4AAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAEAewAAAAAAAG4AAAAAAgBuAAAAAAEAbgAAAAADAG4AAAAAAwAdAAAAAAAAewAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAEAewAAAAAAAFsAAAAAAABbAAAAAAEAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAPgAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAADAHsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAD4AAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAIAWwAAAAABAFsAAAAAAABbAAAAAAEAawAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAA+AAAAAAAAewAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAACAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAgB7AAAAAAAANgAAAAAAADYAAAAAAAAdAAAAAAMAHQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAABbAAAAAAIAHQAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAAAAB0AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAwAdAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAADAFsAAAAAAAB7AAAAAAAAawAAAAAAAGsAAAAAAAB7AAAAAAAAHQAAAAACAFsAAAAAAgBbAAAAAAIAWwAAAAACAFsAAAAAAABbAAAAAAIAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAQBbAAAAAAIAWwAAAAABAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAQBbAAAAAAEAWwAAAAABAFsAAAAAAQBbAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAADAFsAAAAAAABbAAAAAAEAWwAAAAABAFsAAAAAAABbAAAAAAEAWwAAAAACAA== + tiles: WwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAEAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAADAFsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAACAFsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAABbAAAAAAMAewAAAAAAAHsAAAAAAAAFAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAACAHsAAAAAAABuAAAAAAMAbgAAAAABAG4AAAAAAABuAAAAAAMAewAAAAAAAHsAAAAAAAA+AAAAAAAAewAAAAAAAD4AAAAAAAB7AAAAAAAAPgAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAABAFsAAAAAAAB7AAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAEAbgAAAAACAB0AAAAAAQB7AAAAAAAAHQAAAAADAHsAAAAAAAAdAAAAAAEAewAAAAAAAD4AAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAEAewAAAAAAAG4AAAAAAgBuAAAAAAEAbgAAAAADAG4AAAAAAwAdAAAAAAAAewAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAEAewAAAAAAAFsAAAAAAABbAAAAAAEAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAPgAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAADAHsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAD4AAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAIAWwAAAAABAFsAAAAAAABbAAAAAAEAawAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAA+AAAAAAAAewAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAACAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAgB7AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAABbAAAAAAIAHQAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAADAFsAAAAAAAB7AAAAAAAAawAAAAAAAGsAAAAAAAB7AAAAAAAAHQAAAAACAFsAAAAAAgBbAAAAAAIAWwAAAAACAFsAAAAAAABbAAAAAAIAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAQBbAAAAAAIAWwAAAAABAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAQBbAAAAAAEAWwAAAAABAFsAAAAAAQBbAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAADAFsAAAAAAABbAAAAAAEAWwAAAAABAFsAAAAAAABbAAAAAAEAWwAAAAACAA== version: 7 2,-1: ind: 2,-1 - tiles: WwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAIATQAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAHQAAAAACAE0AAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAAdAAAAAAIAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAACAFsAAAAAAAB7AAAAAAAAeAAAAAACAHgAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAMAewAAAAAAAC8AAAAAAAAvAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAEAeAAAAAACAHgAAAAAAwB4AAAAAAMAewAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAABAHsAAAAAAAAvAAAAAAAALwAAAAAAAHsAAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAMAewAAAAAAAB0AAAAAAwAdAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAALwAAAAAAAC8AAAAAAAAOAAAAAAAADgAAAAADAA4AAAAAAwAOAAAAAAIADgAAAAABAB0AAAAAAwAdAAAAAAIAHQAAAAABAB0AAAAAAgBbAAAAAAMAWwAAAAACAFsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAABbAAAAAAAADgAAAAABAA4AAAAAAwAOAAAAAAIADgAAAAACAA4AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAEAWwAAAAABADoAAAAAAAA6AAAAAAAAOgAAAAAAADoAAAAAAAA6AAAAAAAAWwAAAAABAA4AAAAAAQAOAAAAAAMADgAAAAACAA4AAAAAAgAOAAAAAAIAHQAAAAACAB0AAAAAAgAdAAAAAAMAewAAAAAAAFsAAAAAAwA6AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAMAOgAAAAAAAFsAAAAAAQAOAAAAAAMADgAAAAACAA4AAAAAAQAOAAAAAAIADgAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAABAHsAAAAAAABbAAAAAAAAOgAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAAAADoAAAAAAABbAAAAAAMADgAAAAACAA4AAAAAAgAOAAAAAAMADgAAAAABAA4AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAQAdAAAAAAEAWwAAAAACADoAAAAAAAA6AAAAAAAAOgAAAAAAADoAAAAAAAA6AAAAAAAAWwAAAAAAAA4AAAAAAgAOAAAAAAIADgAAAAACAA4AAAAAAAAOAAAAAAMAewAAAAAAAB0AAAAAAQAdAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAQB7AAAAAAAAOgAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAHsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAEAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAEAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAACAFsAAAAAAgBbAAAAAAIAWwAAAAADAFsAAAAAAgBbAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAAAAA== + tiles: WwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAIATQAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAHQAAAAACAE0AAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAAdAAAAAAIAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAACAFsAAAAAAAB4AAAAAAAAeAAAAAACAHgAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAMAewAAAAAAAC8AAAAAAAAvAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAEAeAAAAAACAHgAAAAAAwB4AAAAAAMAewAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAABAHsAAAAAAAAvAAAAAAAALwAAAAAAAHsAAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAMAewAAAAAAAB0AAAAAAwAdAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAALwAAAAAAAC8AAAAAAAAOAAAAAAAADgAAAAADAA4AAAAAAwAOAAAAAAIADgAAAAABAB0AAAAAAwAdAAAAAAIAHQAAAAABAB0AAAAAAgBbAAAAAAMAWwAAAAACAFsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAABbAAAAAAAADgAAAAABAA4AAAAAAwAOAAAAAAIADgAAAAACAA4AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAEAWwAAAAABADoAAAAAAAA6AAAAAAAAOgAAAAAAADoAAAAAAAA6AAAAAAAAWwAAAAABAA4AAAAAAQAOAAAAAAMADgAAAAACAA4AAAAAAgAOAAAAAAIAHQAAAAACAB0AAAAAAgAdAAAAAAMAewAAAAAAAFsAAAAAAwA6AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAMAOgAAAAAAAFsAAAAAAQAOAAAAAAMADgAAAAACAA4AAAAAAQAOAAAAAAIADgAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAABAHsAAAAAAABbAAAAAAAAOgAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAAAADoAAAAAAABbAAAAAAMADgAAAAACAA4AAAAAAgAOAAAAAAMADgAAAAABAA4AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAQAdAAAAAAEAWwAAAAACADoAAAAAAAA6AAAAAAAAOgAAAAAAADoAAAAAAAA6AAAAAAAAWwAAAAAAAA4AAAAAAgAOAAAAAAIADgAAAAACAA4AAAAAAAAOAAAAAAMAewAAAAAAAB0AAAAAAQAdAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAQB7AAAAAAAAOgAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAHsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAEAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAEAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAACAFsAAAAAAgBbAAAAAAIAWwAAAAADAFsAAAAAAgBbAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAAAAA== version: 7 1,-4: ind: 1,-4 @@ -141,11 +148,11 @@ entities: version: 7 -1,-3: ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAA== version: 7 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAA== version: 7 3,-1: ind: 3,-1 @@ -161,23 +168,23 @@ entities: version: 7 1,2: ind: 1,2 - tiles: ewAAAAAAAHgAAAAAAwB4AAAAAAMAeAAAAAABAHgAAAAAAAB4AAAAAAEAeAAAAAADAHgAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAABbAAAAAAIAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAMAeAAAAAADAHgAAAAAAAB4AAAAAAEAeAAAAAACAHgAAAAAAAB4AAAAAAIAWwAAAAADAFsAAAAAAgBbAAAAAAIAWwAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAADAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAAAAHsAAAAAAAA2AAAAAAAANgAAAAAAAFsAAAAAAwBbAAAAAAEAWwAAAAACAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAQB7AAAAAAAAWwAAAAACAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAQBbAAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAAAewAAAAAAABEAAAAAAAARAAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAQB7AAAAAAAAHQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAgB7AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAQB7AAAAAAAAHQAAAAABAHgAAAAAAQB7AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAEAewAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAIAewAAAAAAAB0AAAAAAQB4AAAAAAEAewAAAAAAAB0AAAAAAQA2AAAAAAAAHQAAAAAAAHsAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAAAAHsAAAAAAAAdAAAAAAAAeAAAAAAAAHsAAAAAAAAdAAAAAAMANgAAAAAAAB0AAAAAAgB7AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAwB7AAAAAAAAHQAAAAADAHgAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAABAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAMAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAMAewAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAEAHQAAAAADAB0AAAAAAwAdAAAAAAMAHQAAAAADAB0AAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAQAAAAAAAAAAegAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAMAHQAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAEAHQAAAAACAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAABAA== + tiles: ewAAAAAAAHgAAAAAAwB4AAAAAAMAeAAAAAABAHgAAAAAAAB4AAAAAAEAeAAAAAADAHgAAAAAAAB4AAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAMAeAAAAAADAHgAAAAAAAB4AAAAAAEAeAAAAAACAHgAAAAAAAB4AAAAAAIAeAAAAAAAAFsAAAAAAgBbAAAAAAIAWwAAAAACAFsAAAAAAABbAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAADAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAEAWwAAAAACAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAABbAAAAAAAAewAAAAAAAFsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAQBbAAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAAAWwAAAAAAAHsAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAQB7AAAAAAAAHQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAgB7AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAQB7AAAAAAAAeAAAAAAAAHgAAAAAAQB7AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAEAewAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAIAewAAAAAAAHgAAAAAAAB4AAAAAAEAewAAAAAAAB0AAAAAAQA2AAAAAAAAHQAAAAAAAHsAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAAAAHsAAAAAAAB4AAAAAAAAeAAAAAAAAHsAAAAAAAAdAAAAAAMANgAAAAAAAB0AAAAAAgB7AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAwB7AAAAAAAAeAAAAAAAAHgAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAABAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAMAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAEAHQAAAAABAB0AAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAEAHQAAAAADAB0AAAAAAwAdAAAAAAMAHQAAAAADAB0AAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAQAAAAAAAAAAegAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAMAHQAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAEAHQAAAAACAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAABAA== version: 7 2,1: ind: 2,1 - tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAQB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAAAAFsAAAAAAgAdAAAAAAIAHQAAAAACAB0AAAAAAAAdAAAAAAIAewAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAgBbAAAAAAAAWwAAAAAAAFsAAAAAAQBbAAAAAAMAHQAAAAACAB0AAAAAAQAdAAAAAAAAHQAAAAACAHsAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAEAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAABAB0AAAAAAAB7AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAACAFsAAAAAAABbAAAAAAMAWwAAAAABAFsAAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHsAAAAAAABbAAAAAAAAewAAAAAAAGsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAQBbAAAAAAIAWwAAAAABAHsAAAAAAAAdAAAAAAEAHQAAAAADAHsAAAAAAAAdAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAIAWwAAAAADAFsAAAAAAQAdAAAAAAMAHQAAAAACAB0AAAAAAAAdAAAAAAMAHQAAAAACAHsAAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAgB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAEAewAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAADAB0AAAAAAgAdAAAAAAMAewAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAABNAAAAAAAAHQAAAAABAB0AAAAAAgBNAAAAAAAAewAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAACAB0AAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAwAdAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAwB7AAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAADAFsAAAAAAQAdAAAAAAAAewAAAAAAAE0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAgBNAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAABbAAAAAAMAHQAAAAABAHsAAAAAAABNAAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAEATQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAwBbAAAAAAEAWwAAAAABAB0AAAAAAAB7AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAABAFsAAAAAAwBbAAAAAAAAWwAAAAADAFsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAwBbAAAAAAIAWwAAAAABAFsAAAAAAQBrAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAEAWwAAAAABAFsAAAAAAwBbAAAAAAMAWwAAAAABAFsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAEAawAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAA== + tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAACAB0AAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB7AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHQAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAgAdAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAewAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAB0AAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAEAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAawAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAFsAAAAAAgB7AAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAawAAAAAAAFAAAAAAAABQAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAABQAAAAAAAAUAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAFAAAAAAAABQAAAAAAAB0AAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAB0AAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAAdAAAAAAAAawAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAHQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAAB7AAAAAAAAHQAAAAABAFsAAAAAAABbAAAAAAAAWwAAAAAAAB0AAAAAAAB7AAAAAAAACQAAAAAAAG4AAAAAAAAJAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAwBbAAAAAAEAewAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAADAFsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAADAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAAAAGsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAABAFsAAAAAAwBbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAABrAAAAAAAAWwAAAAAAAA== version: 7 2,2: ind: 2,2 - tiles: ewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAEAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAABrAAAAAAAANgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAABAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAawAAAAAAAB0AAAAAAQB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAARAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAwB4AAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAEAeAAAAAAAAHgAAAAAAgB4AAAAAAMAeAAAAAACAHgAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAACAHgAAAAAAAB4AAAAAAMAewAAAAAAAHgAAAAAAAB4AAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHgAAAAAAwB4AAAAAAEAeAAAAAACAHsAAAAAAAB4AAAAAAIAeAAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB4AAAAAAIAeAAAAAADAHgAAAAAAQB7AAAAAAAAHQAAAAAAAHgAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAHQAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAQB7AAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAIAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAawAAAAAAAGoAAAAAAABqAAAAAAAAHQAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== + tiles: ewAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAGoAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAAB7AAAAAAAATQAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAFsAAAAAAAB7AAAAAAAAWwAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAHgAAAAAAwB4AAAAAAEAewAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAB4AAAAAAEAeAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAACAHgAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAAB7AAAAAAAADAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAGsAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAwB4AAAAAAEAeAAAAAAAAHgAAAAAAAB4AAAAAAIAewAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAHQAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAYgAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAQB7AAAAAAAAAAAAAAAAAHsAAAAAAABiAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAADAAAAAAAAGIAAAAAAABbAAAAAAAAewAAAAAAAFsAAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAIAewAAAAAAAAAAAAAAAAB7AAAAAAAAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAYgAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAA== version: 7 1,3: ind: 1,3 - tiles: AAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAIAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAIAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 2,3: ind: 2,3 - tiles: HQAAAAADAHsAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: HQAAAAADAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,-1: ind: 4,-1 @@ -185,59 +192,59 @@ entities: version: 7 4,-2: ind: 4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAwB4AAAAAAAAeAAAAAABAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAagAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAwB4AAAAAAAAeAAAAAABAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAagAAAAAAAA== version: 7 3,0: ind: 3,0 - tiles: bgAAAAABAG4AAAAAAABuAAAAAAMAbgAAAAACAG4AAAAAAwBuAAAAAAMAbgAAAAACAG4AAAAAAwBuAAAAAAMAHQAAAAABAB0AAAAAAQAdAAAAAAEAHQAAAAACAB0AAAAAAwBuAAAAAAAAbgAAAAAAAHsAAAAAAABuAAAAAAMAbgAAAAABAG4AAAAAAQB7AAAAAAAAewAAAAAAAG4AAAAAAQBuAAAAAAIAbgAAAAADAG4AAAAAAgBuAAAAAAIAbgAAAAAAAG4AAAAAAwBuAAAAAAIAbgAAAAADAG4AAAAAAQB7AAAAAAAAbgAAAAACAG4AAAAAAQBuAAAAAAEAbgAAAAAAAG4AAAAAAwBuAAAAAAEAbgAAAAAAAG4AAAAAAQBuAAAAAAEAbgAAAAADAG4AAAAAAABuAAAAAAEAbgAAAAACAG4AAAAAAwBuAAAAAAIAbgAAAAABAG4AAAAAAwBuAAAAAAEAbgAAAAACAG4AAAAAAQBuAAAAAAAAbgAAAAAAAG4AAAAAAQBuAAAAAAAAbgAAAAAAAG4AAAAAAQBuAAAAAAAAbgAAAAACAG4AAAAAAABuAAAAAAMAbgAAAAABAHsAAAAAAABuAAAAAAEAbgAAAAACAG4AAAAAAQBuAAAAAAIAbgAAAAABAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAACAG4AAAAAAgBuAAAAAAEAbgAAAAAAAG4AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAGsAAAAAAABrAAAAAAAAHQAAAAABAG4AAAAAAABuAAAAAAEAbgAAAAABAHsAAAAAAAAdAAAAAAEAHQAAAAAAAHsAAAAAAAAdAAAAAAAAeAAAAAADAHgAAAAAAwB4AAAAAAMAHQAAAAAAAGsAAAAAAABrAAAAAAAAawAAAAAAAB0AAAAAAwBuAAAAAAEAbgAAAAAAAG4AAAAAAgB7AAAAAAAAHQAAAAABAGsAAAAAAAB7AAAAAAAAHQAAAAABAHgAAAAAAQB4AAAAAAMAeAAAAAACAB0AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAAAewAAAAAAAB0AAAAAAABrAAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAADAB0AAAAAAQAdAAAAAAIAHQAAAAABAB0AAAAAAgAdAAAAAAAAHQAAAAADAHsAAAAAAAAdAAAAAAMAawAAAAAAAHsAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAAAdAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAACAHsAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAEAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAHQAAAAADAG4AAAAAAQBuAAAAAAIAbgAAAAADAG4AAAAAAwBuAAAAAAIAbgAAAAABAG4AAAAAAwBuAAAAAAEAbgAAAAACAG4AAAAAAABuAAAAAAMAbgAAAAADAG4AAAAAAABuAAAAAAIAbgAAAAAAAB0AAAAAAgBuAAAAAAEAbgAAAAABAG4AAAAAAQBuAAAAAAEAbgAAAAADAG4AAAAAAwBuAAAAAAAAbgAAAAACAG4AAAAAAwBuAAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAAdAAAAAAMAbgAAAAAAAG4AAAAAAgBuAAAAAAMAbgAAAAABAG4AAAAAAgBuAAAAAAEAbgAAAAACAG4AAAAAAgBuAAAAAAEAbgAAAAABAA== + tiles: bgAAAAABAG4AAAAAAABuAAAAAAMAbgAAAAACAG4AAAAAAwBuAAAAAAMAbgAAAAACAG4AAAAAAwBuAAAAAAMAHQAAAAABAB0AAAAAAQAdAAAAAAEAHQAAAAACAB0AAAAAAwBuAAAAAAAAbgAAAAAAAHsAAAAAAABuAAAAAAMAbgAAAAABAG4AAAAAAQB7AAAAAAAAewAAAAAAAG4AAAAAAQBuAAAAAAIAbgAAAAADAG4AAAAAAgBuAAAAAAIAbgAAAAAAAG4AAAAAAwBuAAAAAAIAbgAAAAADAG4AAAAAAQB7AAAAAAAAbgAAAAACAG4AAAAAAQBuAAAAAAEAbgAAAAAAAG4AAAAAAwBuAAAAAAEAbgAAAAAAAG4AAAAAAQBuAAAAAAEAbgAAAAADAG4AAAAAAABuAAAAAAEAbgAAAAACAG4AAAAAAwBuAAAAAAIAbgAAAAABAG4AAAAAAwBuAAAAAAEAbgAAAAACAG4AAAAAAQBuAAAAAAAAbgAAAAAAAG4AAAAAAQBuAAAAAAAAbgAAAAAAAG4AAAAAAQBuAAAAAAAAbgAAAAACAG4AAAAAAABuAAAAAAMAbgAAAAABAHsAAAAAAABuAAAAAAEAbgAAAAACAG4AAAAAAQBuAAAAAAIAbgAAAAABAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAACAG4AAAAAAgBuAAAAAAEAbgAAAAAAAG4AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAcgAAAAAAAHIAAAAAAAByAAAAAAAAewAAAAAAAGsAAAAAAAANAAAAAAAAawAAAAAAAHsAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHsAAAAAAABrAAAAAAAADQAAAAAAAGsAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAewAAAAAAAFsAAAAAAABrAAAAAAAAewAAAAAAAGsAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAABrAAAAAAAAawAAAAAAAA0AAAAAAABrAAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAABbAAAAAAAAawAAAAAAAHsAAAAAAABrAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAewAAAAAAAGsAAAAAAAANAAAAAAAAawAAAAAAAHsAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABrAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAawAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAFsAAAAAAABbAAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAA== version: 7 4,0: ind: 4,0 - tiles: bgAAAAACAG4AAAAAAwBuAAAAAAMAbgAAAAACAG4AAAAAAABuAAAAAAMAewAAAAAAAHsAAAAAAAAdAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAgBuAAAAAAIAbgAAAAAAAG4AAAAAAwBuAAAAAAAAbgAAAAABAB0AAAAAAAAdAAAAAAIAHQAAAAACAB0AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAACAB0AAAAAAQBuAAAAAAMAbgAAAAAAAG4AAAAAAwBuAAAAAAEAbgAAAAABAG4AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAAAdAAAAAAMAHQAAAAABAB0AAAAAAwAdAAAAAAIAbgAAAAADAG4AAAAAAABuAAAAAAIAbgAAAAADAG4AAAAAAQB7AAAAAAAAewAAAAAAAG4AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAAAewAAAAAAAG4AAAAAAQBuAAAAAAIAbgAAAAADAG4AAAAAAwBuAAAAAAIAewAAAAAAAG4AAAAAAQBuAAAAAAMAbgAAAAABAG4AAAAAAABuAAAAAAMAewAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAACAHsAAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAgBuAAAAAAMAbgAAAAADAHsAAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAQB7AAAAAAAAbgAAAAABAG4AAAAAAwBuAAAAAAMAbgAAAAABAG4AAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAG4AAAAAAABuAAAAAAMAbgAAAAACAG4AAAAAAgBuAAAAAAEAbgAAAAACAFsAAAAAAgBuAAAAAAEAbgAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAwBuAAAAAAEAbgAAAAAAAG4AAAAAAAB7AAAAAAAAbgAAAAAAAG4AAAAAAwB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAG4AAAAAAwBuAAAAAAMAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAMAbgAAAAACAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAQB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAIAewAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAbgAAAAABAG4AAAAAAwAdAAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAIAHQAAAAABAB0AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: bgAAAAACAG4AAAAAAwBuAAAAAAMAbgAAAAACAG4AAAAAAABuAAAAAAMAewAAAAAAAHsAAAAAAAAdAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAgBuAAAAAAIAbgAAAAAAAG4AAAAAAwBuAAAAAAAAbgAAAAABAB0AAAAAAAAdAAAAAAIAHQAAAAACAB0AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAACAB0AAAAAAQBuAAAAAAMAbgAAAAAAAG4AAAAAAwBuAAAAAAEAbgAAAAABAG4AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAAAdAAAAAAMAHQAAAAABAB0AAAAAAwAdAAAAAAIAbgAAAAADAG4AAAAAAABuAAAAAAIAbgAAAAADAG4AAAAAAQB7AAAAAAAAewAAAAAAAG4AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAAAewAAAAAAAG4AAAAAAQBuAAAAAAIAbgAAAAADAG4AAAAAAwBuAAAAAAIAewAAAAAAAG4AAAAAAQBuAAAAAAMAbgAAAAABAG4AAAAAAABuAAAAAAMAewAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAACAHsAAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAgBuAAAAAAMAbgAAAAADAHsAAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAQB7AAAAAAAAbgAAAAABAG4AAAAAAwBuAAAAAAMAbgAAAAABAG4AAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAG4AAAAAAABuAAAAAAMAbgAAAAACAG4AAAAAAgBuAAAAAAEAbgAAAAACAGsAAAAAAABuAAAAAAEAbgAAAAABAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAwBuAAAAAAEAbgAAAAAAAG4AAAAAAAB7AAAAAAAAbgAAAAAAAG4AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAG4AAAAAAwBuAAAAAAMAewAAAAAAAD4AAAAAAAA+AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAA+AAAAAAAAPgAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAewAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAWwAAAAAAAGsAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 5,0: ind: 5,0 - tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAQAdAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAIAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAwB7AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGoAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAwB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAACAHsAAAAAAAB4AAAAAAIAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAQB7AAAAAAAAeAAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAQAdAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAIAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAwB7AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAwB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAACAHsAAAAAAAB4AAAAAAIAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAQB7AAAAAAAAeAAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 3,1: ind: 3,1 - tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAACAHsAAAAAAABuAAAAAAMAbgAAAAACAHsAAAAAAABuAAAAAAMAbgAAAAABABEAAAAAAAAdAAAAAAMAEQAAAAAAAG4AAAAAAABuAAAAAAIAbgAAAAABAG4AAAAAAQBuAAAAAAMAbgAAAAAAAG4AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAbgAAAAACAG4AAAAAAgARAAAAAAAAHQAAAAADABEAAAAAAABuAAAAAAEAbgAAAAAAAG4AAAAAAgBuAAAAAAAAbgAAAAABAG4AAAAAAwBuAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAwBuAAAAAAIAbgAAAAAAAG4AAAAAAQBuAAAAAAEAbgAAAAABAG4AAAAAAwBuAAAAAAMAbgAAAAADAG4AAAAAAwBuAAAAAAEAbgAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAIAbgAAAAADAG4AAAAAAQBuAAAAAAIAbgAAAAACAG4AAAAAAABuAAAAAAIAbgAAAAAAAG4AAAAAAwBuAAAAAAIAbgAAAAABAG4AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAbgAAAAADAG4AAAAAAABuAAAAAAEAEQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAADAG4AAAAAAABuAAAAAAIAbgAAAAACAG4AAAAAAQBuAAAAAAMAbgAAAAACAHsAAAAAAABuAAAAAAMAbgAAAAADAHsAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAB7AAAAAAAAbgAAAAACAG4AAAAAAABuAAAAAAMAbgAAAAABAG4AAAAAAQBuAAAAAAAAbgAAAAABAG4AAAAAAABuAAAAAAEAbgAAAAADAG4AAAAAAgB7AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAMAHQAAAAACAG4AAAAAAgBuAAAAAAEAbgAAAAADAG4AAAAAAQBuAAAAAAIAbgAAAAACAG4AAAAAAABuAAAAAAIAbgAAAAAAAG4AAAAAAgBuAAAAAAIAewAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAHsAAAAAAABuAAAAAAMAbgAAAAAAAG4AAAAAAwBuAAAAAAEAbgAAAAAAAG4AAAAAAQBuAAAAAAEAbgAAAAABAG4AAAAAAgBuAAAAAAEAbgAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAE0AAAAAAABNAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAABNAAAAAAAATQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAAQAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAMAHQAAAAABAB0AAAAAAQB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAA== + tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAABrAAAAAAAAawAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAHsAAAAAAABuAAAAAAMAbgAAAAABABEAAAAAAAB7AAAAAAAAEQAAAAAAAG4AAAAAAABuAAAAAAIAbgAAAAABAG4AAAAAAQBuAAAAAAMAbgAAAAAAAG4AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAbgAAAAACAG4AAAAAAgBuAAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAEAbgAAAAAAAG4AAAAAAgBuAAAAAAAAbgAAAAABAG4AAAAAAwBuAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAwBuAAAAAAIAbgAAAAAAAG4AAAAAAQBuAAAAAAEAbgAAAAABAG4AAAAAAwBuAAAAAAMAbgAAAAADAG4AAAAAAwBuAAAAAAEAbgAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAIAbgAAAAADABEAAAAAAAB7AAAAAAAAEQAAAAAAAG4AAAAAAABuAAAAAAIAbgAAAAAAAG4AAAAAAwBuAAAAAAIAbgAAAAABAG4AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAbgAAAAADAG4AAAAAAAARAAAAAAAAewAAAAAAABEAAAAAAAB7AAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAACAHsAAAAAAABuAAAAAAMAbgAAAAACAG4AAAAAAABuAAAAAAAAagAAAAAAAHsAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAB7AAAAAAAAbgAAAAACAG4AAAAAAABuAAAAAAMAbgAAAAAAAG4AAAAAAQBrAAAAAAAAbgAAAAABAG4AAAAAAABuAAAAAAAAbgAAAAAAAGoAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAMAawAAAAAAAG4AAAAAAgBuAAAAAAEAbgAAAAADAG4AAAAAAQBuAAAAAAIAawAAAAAAAG4AAAAAAABuAAAAAAIAbgAAAAAAAG4AAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAMAbgAAAAAAAG4AAAAAAwBuAAAAAAEAbgAAAAAAAHsAAAAAAABuAAAAAAEAbgAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA0AAAAAAAANAAAAAAAAawAAAAAAAE0AAAAAAABNAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABNAAAAAAAATQAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAATQAAAAAAAE0AAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAABrAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAAWwAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAA== version: 7 3,3: ind: 3,3 - tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ewAAAAAAAFsAAAAAAABiAAAAAAAAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAGIAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAHsAAAAAAABbAAAAAAAAYgAAAAAAAFsAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAGIAAAAAAAB7AAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAADAAAAAAAAHsAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 3,2: ind: 3,2 - tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAACAB0AAAAAAQAdAAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAACAFsAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAMAewAAAAAAAB0AAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAAAAB0AAAAAAQBbAAAAAAEAWwAAAAADAFsAAAAAAgACAAAAAAIAWwAAAAACAHsAAAAAAAAdAAAAAAMAewAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAIAWwAAAAAAAFsAAAAAAwAdAAAAAAAAHQAAAAACAHsAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAABAFsAAAAAAQBbAAAAAAAAewAAAAAAAB0AAAAAAwB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAwBbAAAAAAIAWwAAAAABAHsAAAAAAAAdAAAAAAIAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAIAWwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAB0AAAAAAgAdAAAAAAEAHQAAAAACAFsAAAAAAQBbAAAAAAIAHQAAAAAAAB0AAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAgB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== + tiles: TAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAAWwAAAAAAAGsAAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAHsAAAAAAAALAAAAAAAACwAAAAAAAHsAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAAB7AAAAAAAACwAAAAAAAAsAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAAsAAAAAAAALAAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAAAAHsAAAAAAAAGAAAAAAAABgAAAAAAAHsAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAAAAB0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHsAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHsAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB7AAAAAAAABQAAAAAAAAoAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAB7AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAAAewAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAewAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABiAAAAAAAAYgAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAAAYgAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABqAAAAAAAAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== version: 7 4,1: ind: 4,1 - tiles: bgAAAAADAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAABiAAAAAAAAewAAAAAAAHsAAAAAAABiAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAWwAAAAADAFsAAAAAAgB7AAAAAAAAYgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAIAHQAAAAADAGoAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAGIAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAgB7AAAAAAAAHQAAAAABAB0AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAbgAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAABAHsAAAAAAAAdAAAAAAAAewAAAAAAAB0AAAAAAgAdAAAAAAIAAQAAAAACAAEAAAAAAwB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAG4AAAAAAwB7AAAAAAAAewAAAAAAAGIAAAAAAABrAAAAAAAAHQAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAABAAEAAAAAAAABAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAAAewAAAAAAAHsAAAAAAABiAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAbgAAAAACAHsAAAAAAABiAAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGIAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABNAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAQB7AAAAAAAAeAAAAAACAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAATQAAAAAAAHsAAAAAAABiAAAAAAAAewAAAAAAAGsAAAAAAAB4AAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAAQAAAAAAAB7AAAAAAAAYgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAEAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAB0AAAAAAAB6AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAEAeAAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAIAegAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAADAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAHQAAAAACAA== + tiles: WwAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAWwAAAAADAGIAAAAAAABiAAAAAAAAYgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAIAHQAAAAADAGoAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAGIAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAgB7AAAAAAAAHQAAAAABAB0AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAagAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAABAHsAAAAAAAAdAAAAAAAAewAAAAAAAB0AAAAAAgAdAAAAAAIAAQAAAAACAAEAAAAAAwB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAGIAAAAAAABrAAAAAAAAHQAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAABAAEAAAAAAAABAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAbgAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGIAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABNAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAGoAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAATQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAE0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAB0AAAAAAABrAAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAIAegAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAHsAAAAAAABbAAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAHQAAAAACAA== version: 7 4,2: ind: 4,2 - tiles: AAAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAGsAAAAAAAB4AAAAAAMAeAAAAAAAAHgAAAAAAgB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAACAHsAAAAAAAB4AAAAAAIAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAMAeAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAMAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAgB7AAAAAAAAeAAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABrAAAAAAAAeAAAAAACAHgAAAAAAgB7AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAIAeAAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAAB6AAAAAAAATAAAAAADAHoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAAAAAMAegAAAAAAAEwAAAAAAgBrAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABAHoAAAAAAABMAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAgB6AAAAAAAATAAAAAABAA== + tiles: egAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAWwAAAAAAAHsAAAAAAAAHAAAAAAAAWwAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAABwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAAABwAAAAAAAAcAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHgAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAeAAAAAACAHgAAAAAAgB4AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAIAeAAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAA== version: 7 4,3: ind: 4,3 - tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAgB6AAAAAAAATAAAAAACAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAAAAAEAegAAAAAAAEwAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 5,-1: ind: 5,-1 - tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABuAAAAAAMAbgAAAAACAG4AAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABAG4AAAAAAQBuAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG4AAAAAAwBuAAAAAAAAbgAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABuAAAAAAEAbgAAAAACAG4AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADAG4AAAAAAQBuAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG4AAAAAAABuAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABuAAAAAAAAbgAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADAG4AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABuAAAAAAMAbgAAAAACAG4AAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABAG4AAAAAAQBuAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG4AAAAAAwBuAAAAAAAAbgAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABuAAAAAAEAbgAAAAACAG4AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADAG4AAAAAAQBuAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG4AAAAAAABuAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABuAAAAAAAAbgAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADAG4AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 5,-2: ind: 5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAEwAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAEwAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAEwAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAEwAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 5,2: ind: 5,2 - tiles: ewAAAAAAAB0AAAAAAQB7AAAAAAAAewAAAAAAAE0AAAAAAAA2AAAAAAAATQAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAIAHQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAE0AAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAwB7AAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAAHoAAAAAAABMAAAAAAIAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAQB6AAAAAAAATAAAAAACAAAAAAAAAABMAAAAAAEAegAAAAAAAEwAAAAAAQAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAAAAAEAegAAAAAAAEwAAAAAAgB6AAAAAAAATAAAAAACAHoAAAAAAABMAAAAAAMAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABAHoAAAAAAABMAAAAAAIAegAAAAAAAEwAAAAAAQB6AAAAAAAATAAAAAABAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAAB6AAAAAAAATAAAAAACAAAAAAAAAABMAAAAAAAAegAAAAAAAEwAAAAAAQB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ewAAAAAAAB0AAAAAAQB7AAAAAAAAewAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAIAHQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAwB7AAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 5,3: ind: 5,3 - tiles: egAAAAAAAEwAAAAAAwB6AAAAAAAATAAAAAADAHoAAAAAAABMAAAAAAAAegAAAAAAAEwAAAAAAQAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAABMAAAAAAIAegAAAAAAAEwAAAAAAgAAAAAAAAAATAAAAAAAAHoAAAAAAABMAAAAAAIAAAAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAATAAAAAACAHoAAAAAAABMAAAAAAEAegAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 3,-3: ind: 3,-3 @@ -245,11 +252,11 @@ entities: version: 7 6,-2: ind: 6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAACkAAAAAAAApAAAAAAAAKQAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAApAAAAAAAAKQAAAAAAACkAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAKQAAAAAAACkAAAAAAAApAAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAEwAAAAAAwBMAAAAAAEATAAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAACkAAAAAAAApAAAAAAAAKQAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAMAbgAAAAABAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAADAG4AAAAAAABuAAAAAAMAbgAAAAAAAG4AAAAAAABuAAAAAAMAbgAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAEwAAAAAAgBMAAAAAAAATAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAQBuAAAAAAAAbgAAAAACAG4AAAAAAwBuAAAAAAAAbgAAAAABAG4AAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAAAbgAAAAABAG4AAAAAAgBuAAAAAAEAbgAAAAACAG4AAAAAAQBuAAAAAAAAHQAAAAACAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAbgAAAAADAG4AAAAAAABuAAAAAAAAbgAAAAACAG4AAAAAAABuAAAAAAAAbgAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAACkAAAAAAAApAAAAAAAAKQAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAApAAAAAAAAKQAAAAAAACkAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAKQAAAAAAACkAAAAAAAApAAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAEwAAAAAAwBMAAAAAAEATAAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAACkAAAAAAAApAAAAAAAAKQAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAGsAAAAAAABuAAAAAAMAbgAAAAABAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAABrAAAAAAAAbgAAAAADAG4AAAAAAABuAAAAAAMAbgAAAAAAAG4AAAAAAABuAAAAAAMAbgAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAEwAAAAAAgBMAAAAAAAATAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAQBuAAAAAAAAbgAAAAACAG4AAAAAAwBuAAAAAAAAbgAAAAABAG4AAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAAAbgAAAAABAG4AAAAAAgBuAAAAAAEAbgAAAAACAG4AAAAAAQBuAAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAbgAAAAADAG4AAAAAAABuAAAAAAAAbgAAAAACAG4AAAAAAABuAAAAAAAAbgAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== version: 7 6,-1: ind: 6,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAbgAAAAADAG4AAAAAAgBuAAAAAAMAbgAAAAAAAG4AAAAAAQBuAAAAAAMAbgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAABQAAAAAAAAUAAAAAAAAHsAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAUAAAAAAAAFAAAAAAAABbAAAAAAIAFQAAAAAAABUAAAAAAAAVAAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAbgAAAAADAG4AAAAAAgBuAAAAAAMAbgAAAAAAAG4AAAAAAQBuAAAAAAMAbgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAABQAAAAAAAAUAAAAAAAAHsAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAUAAAAAAAAFAAAAAAAABrAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 7,-2: ind: 7,-2 @@ -261,7 +268,7 @@ entities: version: 7 5,1: ind: 5,1 - tiles: egAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABNAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAMAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAABEAAAAAAAA2AAAAAAAAEQAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAIAHQAAAAABABEAAAAAAAARAAAAAAAAEQAAAAAAAB0AAAAAAgAdAAAAAAIATQAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAQB7AAAAAAAAEQAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAABADYAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAiAAAAAAMAHQAAAAABAB0AAAAAAQAdAAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAADADYAAAAAAAAdAAAAAAIAIgAAAAAAAB0AAAAAAgARAAAAAAAAewAAAAAAAHsAAAAAAAA2AAAAAAAAHQAAAAACAB0AAAAAAwBNAAAAAAAAewAAAAAAABEAAAAAAAAdAAAAAAEAEQAAAAAAAHsAAAAAAAARAAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAMANgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== + tiles: egAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAMAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAADYAAAAAAAA2AAAAAAAANgAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAIAHQAAAAABABEAAAAAAAARAAAAAAAAEQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAQB7AAAAAAAAEQAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAABADYAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAiAAAAAAMAHQAAAAABAB0AAAAAAQAdAAAAAAAAHQAAAAACAE0AAAAAAAAdAAAAAAMAHQAAAAADADYAAAAAAAAdAAAAAAIAIgAAAAAAAB0AAAAAAgBNAAAAAAAAewAAAAAAAHsAAAAAAAA2AAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAAAAHsAAAAAAAARAAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAMANgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== version: 7 3,-4: ind: 3,-4 @@ -269,7 +276,7 @@ entities: version: 7 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGoAAAAAAAB7AAAAAAAAIgAAAAACAFsAAAAAAABbAAAAAAAAWwAAAAABAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAAHsAAAAAAAAiAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAIAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAABAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAABAFsAAAAAAgB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAADACIAAAAAAgB7AAAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGoAAAAAAAB7AAAAAAAAIgAAAAACAFsAAAAAAABbAAAAAAAAWwAAAAABAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAAHsAAAAAAAAiAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAIAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAABAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAABAFsAAAAAAgB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAADACIAAAAAAgB7AAAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -2,-1: ind: -2,-1 @@ -458,7 +465,7 @@ entities: 1,-5: 0: 53486 2,-4: - 0: 7399 + 0: 7271 2,-3: 0: 62379 2,-2: @@ -466,26 +473,26 @@ entities: 2,-5: 0: 30310 3,-4: - 0: 11136 + 0: 43791 3,-3: - 0: 40174 + 0: 40162 3,-2: 0: 52573 3,-5: - 0: 61152 + 0: 65535 4,-4: - 0: 37332 + 0: 37319 4,-3: - 0: 10923 + 0: 10937 4,-2: 0: 65295 4,-1: 0: 61919 -4,-8: - 1: 61688 - 0: 4 + 1: 61624 + 0: 68 -5,-8: - 1: 34944 + 1: 34952 -4,-7: 1: 112 0: 29184 @@ -497,8 +504,8 @@ entities: 0: 17408 1: 35807 -3,-8: - 0: 69 - 1: 61624 + 0: 85 + 1: 61608 -3,-7: 1: 3840 -3,-6: @@ -508,8 +515,8 @@ entities: 0: 21760 1: 43759 -2,-8: - 0: 21 - 1: 61674 + 0: 85 + 1: 61610 -2,-7: 1: 768 -2,-6: @@ -518,8 +525,8 @@ entities: 0: 21760 1: 35471 -1,-8: - 0: 34953 - 1: 12848 + 0: 34969 + 1: 12832 -1,-6: 0: 3840 1: 8 @@ -552,7 +559,7 @@ entities: 2,-7: 0: 7406 2,-6: - 0: 60655 + 0: 27887 2,-8: 0: 61166 3,-8: @@ -568,25 +575,25 @@ entities: 4,-6: 0: 3855 4,-5: - 0: 22352 + 0: 30583 0,6: 0: 2056 - 1,6: - 0: 53199 1,5: + 0: 56512 1: 16 - 0: 52416 + 1,6: + 0: 57295 1,7: 1: 16 - 0: 60428 + 0: 60620 1,8: - 0: 15086 + 0: 47854 2,5: 0: 65529 2,6: 0: 65535 2,7: - 0: 48063 + 0: 47903 2,8: 0: 35763 3,5: @@ -594,7 +601,7 @@ entities: 3,6: 0: 46079 3,7: - 0: 48063 + 0: 48015 4,4: 0: 3845 4,5: @@ -718,11 +725,12 @@ entities: 8,-5: 0: 64287 0,-11: - 1: 14080 + 1: 4368 -1,-11: - 1: 14896 + 1: 58608 + 0: 4096 0,-10: - 1: 243 + 1: 241 0: 49152 1,-10: 1: 3316 @@ -931,24 +939,22 @@ entities: 0: 65534 6,8: 0: 65279 - 7,5: - 0: 61550 7,6: - 0: 3839 - 7,4: - 0: 3680 + 0: 61679 7,7: - 0: 3822 - 7,8: - 0: 53703 + 0: 65295 + 7,4: + 0: 36576 + 7,5: + 0: 58606 8,4: 0: 65520 8,5: - 0: 65535 + 0: 29439 8,6: - 0: 65535 + 0: 29303 8,7: - 0: 65407 + 0: 65527 9,0: 0: 20735 9,1: @@ -969,8 +975,6 @@ entities: 0: 65527 10,-1: 0: 65167 - 10,4: - 0: 61156 11,0: 0: 65327 11,1: @@ -986,13 +990,13 @@ entities: 12,0: 0: 65263 12,1: - 0: 3854 + 0: 36622 12,2: 0: 65534 12,3: 0: 61408 9,-3: - 0: 57275 + 0: 57339 9,-2: 0: 65535 10,-3: @@ -1094,31 +1098,32 @@ entities: 2,-14: 1: 21847 -4,-11: - 1: 62448 + 1: 46064 + 0: 16384 -5,-11: 1: 34944 -4,-10: 1: 48008 0: 1092 -5,-10: - 1: 44768 + 1: 44776 -5,-9: 1: 60074 -3,-11: - 1: 45296 - 0: 16384 + 1: 41200 + 0: 20480 -3,-10: 0: 1365 1: 64168 -2,-11: - 1: 57584 - 0: 4096 + 1: 41200 + 0: 20480 -2,-10: 0: 1365 1: 47752 -1,-10: 0: 273 - 1: 28672 + 1: 29764 12,-3: 0: 58470 13,-4: @@ -1188,13 +1193,13 @@ entities: 1: 9728 0,9: 1: 9826 - 0: 2176 0,10: 1: 59938 1,9: - 0: 32754 + 3: 32752 + 0: 2 1,10: - 0: 7 + 3: 7 1: 63488 2,10: 1: 15906 @@ -1238,121 +1243,114 @@ entities: 6,12: 0: 15 1: 61440 + 7,8: + 0: 49072 7,9: - 0: 53727 + 0: 53691 7,10: - 0: 7645 + 0: 40413 7,11: - 0: 65527 + 0: 65523 7,12: 0: 15 1: 61440 8,8: - 0: 21746 + 0: 7644 8,9: - 0: 14557 + 0: 47359 8,10: - 0: 30591 + 0: 65459 8,11: 0: 8177 9,4: - 0: 65520 + 0: 65248 9,5: - 0: 57296 + 0: 4095 9,6: - 0: 56733 + 0: 65535 9,7: - 0: 65293 + 0: 65358 + 9,8: + 0: 35763 + 10,4: + 0: 64976 10,5: - 0: 64302 + 0: 3057 10,6: - 0: 30491 + 0: 53757 10,7: - 0: 65287 + 0: 65485 10,8: - 0: 13105 - 1: 34944 + 0: 64433 11,5: - 0: 48010 + 0: 52692 11,6: - 0: 59579 + 0: 56541 11,7: - 0: 30574 - 11,8: - 0: 61030 + 0: 65309 12,4: - 0: 61408 + 0: 61424 12,5: 0: 57598 12,6: - 0: 28910 + 0: 65294 12,7: - 1: 3840 - 0: 6 + 0: 65327 + 11,8: + 0: 48056 8,12: 0: 1 - 1: 12800 - 9,8: - 0: 35760 + 1: 61952 9,9: - 0: 36795 + 0: 65339 9,10: - 0: 15291 - 9,12: - 1: 4369 + 0: 56796 9,11: - 0: 8 + 0: 34952 10,9: - 0: 3 - 1: 3720 + 0: 57867 10,10: - 0: 40944 + 0: 56768 10,11: - 0: 2203 - 10,12: - 1: 50244 - 11,10: - 0: 4914 - 1: 34944 - 11,11: - 0: 53009 - 1: 12 + 0: 65521 11,9: - 0: 26214 + 0: 56331 + 11,10: + 0: 7676 + 11,11: + 0: 65532 12,8: - 0: 65392 + 0: 56831 12,9: - 1: 16624 + 0: 7645 12,10: - 1: 36804 + 0: 35771 12,11: - 0: 13056 - 1: 2052 + 0: 63347 + 4,13: + 1: 226 5,13: - 1: 36066 - 5,14: - 1: 236 + 1: 242 6,13: - 1: 63728 - 6,14: - 1: 241 + 1: 240 7,13: - 1: 63728 - 7,14: - 1: 252 + 1: 240 8,13: - 1: 318 - 8,14: - 1: 49 + 1: 242 + 9,12: + 1: 62528 9,13: - 1: 15 + 1: 244 + 10,12: + 1: 61440 10,13: - 1: 7 + 1: 240 11,12: 1: 61440 - 12,12: - 1: 12800 - 0: 14 + 11,13: + 1: 240 + 12,13: + 1: 241 16,-3: 0: 61166 16,0: @@ -1378,7 +1376,7 @@ entities: 18,-1: 0: 65399 18,-5: - 0: 62692 + 0: 62702 18,0: 0: 4081 19,-4: @@ -1406,40 +1404,45 @@ entities: 1: 65024 18,-7: 1: 63232 + 18,-6: + 1: 1 + 0: 16384 19,-7: 1: 63488 + 19,-6: + 1: 1 20,-7: 1: 7936 20,-5: 0: 61440 13,1: - 0: 12163 + 0: 3971 13,2: - 0: 65535 + 0: 32631 13,3: - 0: 61412 + 0: 61408 14,1: 0: 12089 - 14,3: - 0: 65526 14,2: - 0: 26214 + 0: 30583 + 14,3: + 0: 65527 14,4: 0: 65532 15,1: 0: 3855 15,2: - 0: 65535 + 0: 65399 15,3: 0: 65524 15,4: - 0: 21789 + 0: 54557 16,1: - 0: 26383 + 0: 30479 + 16,2: + 0: 48015 16,3: 0: 64976 - 16,2: - 0: 61166 16,4: 0: 65309 17,1: @@ -1447,7 +1450,7 @@ entities: 17,2: 0: 65309 17,3: - 0: 65520 + 0: 65522 17,4: 0: 3855 18,1: @@ -1460,11 +1463,11 @@ entities: 0: 1894 19,1: 0: 28791 + 19,2: + 0: 61542 19,3: 0: 15 1: 16128 - 19,2: - 0: 1638 19,4: 1: 16025 20,0: @@ -1479,9 +1482,9 @@ entities: 20,4: 1: 19 21,0: - 0: 20985 + 0: 46073 21,1: - 0: 12639 + 0: 12735 21,2: 0: 30499 21,3: @@ -1490,120 +1493,129 @@ entities: 21,-1: 0: 48127 22,0: - 0: 51 + 0: 4147 + 22,1: + 0: 19 + 1: 8192 22,3: 1: 3874 22,-1: 0: 12919 1: 32768 - 22,1: - 1: 8192 22,2: 1: 8738 + 23,0: + 0: 256 + 1: 17 + 23,1: + 0: 256 + 1: 4096 23,3: 1: 273 - 23,0: - 1: 4369 23,-1: 1: 4352 - 23,1: - 1: 4369 23,2: 1: 4369 13,4: 0: 65520 13,5: - 0: 60447 + 0: 59583 13,6: - 0: 239 - 1: 61440 + 0: 61679 13,7: - 1: 273 - 0: 49152 + 0: 30479 13,8: - 0: 65518 + 0: 57983 14,5: - 0: 65487 + 0: 64319 14,6: - 0: 255 - 1: 61440 + 0: 47295 14,7: - 0: 28672 + 0: 47603 14,8: - 0: 47935 + 0: 29115 15,5: - 0: 64789 + 0: 65285 15,6: - 0: 50431 - 1: 4096 + 0: 61695 15,7: - 1: 44817 - 0: 12 + 0: 4572 + 1: 49152 15,8: - 1: 25668 + 0: 12049 + 1: 12 16,5: 0: 56783 16,6: 0: 56541 16,7: - 0: 50381 - 1: 4352 + 0: 50397 + 1: 4096 + 12,12: + 0: 3822 13,12: - 0: 34959 - 1: 768 + 0: 36351 + 13,13: + 1: 48 + 0: 2184 13,11: - 0: 49152 - 1: 302 + 0: 62207 14,12: - 0: 8751 - 1: 2048 + 0: 14335 14,11: - 0: 28672 - 1: 143 + 0: 61694 + 14,13: + 0: 546 + 1: 128 15,12: - 0: 15 - 1: 256 + 0: 4095 + 15,13: + 1: 240 15,11: - 0: 34816 - 1: 768 + 0: 65263 + 16,13: + 1: 17 13,10: - 1: 12544 - 0: 206 + 0: 65535 13,9: - 0: 61166 + 0: 3822 14,9: - 0: 15295 + 0: 61007 14,10: - 0: 127 - 1: 32768 - 15,10: - 1: 8100 + 0: 61152 15,9: - 1: 17510 - 16,10: - 1: 272 - 0: 56524 - 16,11: - 0: 32669 + 0: 60934 + 15,10: + 0: 57582 16,8: - 0: 52428 + 1: 1 + 0: 65484 + 16,9: + 0: 64961 + 16,10: + 0: 64733 + 16,11: + 0: 61007 17,5: 0: 47790 - 17,7: - 0: 61167 17,6: + 0: 45056 1: 224 - 0: 57344 + 17,7: + 0: 61098 17,8: - 0: 3823 + 0: 61166 18,5: 0: 30495 18,6: - 1: 57360 - 0: 3584 + 1: 49168 + 0: 7168 18,7: - 1: 57568 - 0: 3584 + 0: 7441 + 1: 49344 + 18,8: + 0: 3089 + 1: 57536 19,5: 1: 3955 0: 61440 @@ -1620,50 +1632,52 @@ entities: 1: 92 20,7: 0: 30578 - 16,9: - 0: 52428 + 16,12: + 0: 4 17,9: - 0: 61679 + 0: 65248 17,10: 0: 9998 17,11: 0: 3822 18,11: 0: 112 - 1: 2176 - 18,8: - 1: 57568 - 0: 3584 + 1: 16512 18,9: - 1: 11810 + 1: 28194 18,10: - 1: 14 + 1: 17476 18,12: - 1: 61713 + 1: 29764 19,8: 1: 12336 0: 2944 19,9: - 1: 3852 - 19,10: - 1: 17487 - 0: 43680 + 1: 20236 19,11: - 1: 20468 + 1: 17652 0: 40960 + 19,10: + 0: 43690 + 1: 17476 19,12: - 0: 170 - 1: 65092 + 0: 2730 + 1: 17476 20,8: 0: 1906 20,9: - 1: 3855 + 1: 20303 20,11: - 1: 19964 + 1: 17652 0: 40960 - 20,12: - 1: 62805 - 0: 2730 + 17,12: + 1: 57344 + 18,13: + 1: 12 + 19,13: + 1: 15 + 20,13: + 1: 15 21,-4: 0: 54479 21,-3: @@ -1700,41 +1714,48 @@ entities: 20,10: 0: 43690 1: 17476 + 20,12: + 0: 2730 + 1: 17476 21,8: 0: 7 1: 24576 21,9: - 1: 3843 - 21,10: - 1: 21831 - 0: 43680 + 1: 20227 21,11: - 1: 18429 + 1: 17652 0: 40960 21,7: 0: 30583 + 21,10: + 0: 43690 + 1: 17476 21,12: - 0: 170 - 1: 64325 + 0: 2730 + 1: 17476 22,9: - 1: 30472 - 22,10: - 1: 65126 + 1: 9002 22,11: - 1: 39611 + 1: 43770 22,7: 0: 65534 22,8: 0: 24590 + 22,10: + 1: 44578 + 22,12: + 1: 8750 23,8: 0: 255 - 22,12: - 1: 14190 23,7: 0: 7455 24,8: 0: 17 1: 18440 + 21,13: + 1: 15 + 22,13: + 1: 3 13,-11: 1: 12835 13,-10: @@ -2030,12 +2051,14 @@ entities: decals: 2727: -22,-17 2728: -22,-10 + 5972: 29,24 - node: color: '#FFFFFFFF' id: Arrows decals: 753: 21,-16 2729: -15,-2 + 6846: 33,23 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -2054,6 +2077,7 @@ entities: 4811: 26.969461,-36.186703 4812: 24.969461,-32.249786 4813: 26.969461,-32.249786 + 6847: 30,21 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -2088,19 +2112,13 @@ entities: 1468: 22,24 1469: 22,25 1470: 23,25 - 2085: 52,17 - 2086: 52,18 2199: 68,13 2200: 66,13 - 2201: 67,13 2564: 46,-46 2574: 44,-43 2575: 43,-43 2576: 42,-43 2577: 41,-43 - 2835: 38,24 - 2836: 41,24 - 2845: 38,21 3094: 96,30 3179: 11,31 3180: 12,31 @@ -2132,10 +2150,6 @@ entities: 4358: 41,-41 4506: 35,-31 4569: 58,9 - 4570: 58,10 - 4582: 31,26 - 4583: 38,26 - 4584: 38,27 4600: 17,39 4601: 19,39 4727: 20,-32 @@ -2163,9 +2177,11 @@ entities: 5175: 6,-19 5192: 30,-35 5193: 32,-35 - 5258: 42,26 - 5259: 42,27 - 5266: 41,28 + 6182: 58,8 + 6577: 66,16 + 6578: 68,16 + 6836: 56,9 + 6837: 56,8 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -2198,16 +2214,12 @@ entities: 1873: 10,-6 1874: 11,-6 1875: 12,-6 - 2196: 68,16 - 2197: 67,16 - 2198: 66,16 3151: 14,-51 3152: 14,-52 3153: 14,-53 3154: 28,-51 3155: 28,-52 3156: 28,-53 - 4589: 38,28 4842: 9,-30 4843: 9,-31 4844: 9,-32 @@ -2217,7 +2229,6 @@ entities: 5063: 25,-43 5180: 5,-21 5181: 7,-19 - 5260: 42,28 - node: color: '#FFFFFFFF' id: BotLeftGreyscale @@ -2246,6 +2257,7 @@ entities: 1547: 15,39 1871: 8,-8 1872: 8,-6 + 6535: 8,-5 - node: color: '#FFFFFFFF' id: Box @@ -2254,31 +2266,169 @@ entities: 4100: 25,-35 4101: 25,-34 4102: 27,-34 + 5876: 39,33 + 6292: 41,33 + 6331: 46,38 + 6390: 41,33 - node: color: '#FFFFFFFF' id: BoxGreyscale decals: 1552: 14,40 + 5379: 12,-18 + 5881: 18,-18 + - node: + color: '#DE3A3A96' + id: BrickCornerOverlayNE + decals: + 6279: 45,36 + - node: + color: '#DE3A3A96' + id: BrickCornerOverlayNW + decals: + 6283: 43,36 + - node: + color: '#DE3A3A96' + id: BrickCornerOverlaySE + decals: + 6281: 41,33 + - node: + color: '#DE3A3A96' + id: BrickLineOverlayE + decals: + 6280: 45,35 + - node: + color: '#DE3A3A96' + id: BrickLineOverlayN + decals: + 6284: 44,36 + 6286: 44,31 + 6287: 45,31 + - node: + color: '#DE3A3A96' + id: BrickLineOverlayS + decals: + 6288: 44,30 + 6289: 45,30 + - node: + color: '#DE3A3A96' + id: BrickLineOverlayW + decals: + 6285: 39,34 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: 3076: 74,23 + 5275: 35,18 + 5276: 38,22 + 5295: 39,18 + 5374: 39,27 + 5688: 40,20 + 5868: 30,18 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: 3075: 73,23 + 5277: 36,22 + 5278: 37,18 + 5279: 33,18 + 5364: 37,27 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: 3078: 74,22 + 5282: 35,17 + 5284: 38,21 + 5296: 39,17 + 5367: 39,25 + 5687: 40,19 + 5867: 30,17 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: 3077: 73,22 + 5285: 36,21 + 5286: 37,17 + 5287: 33,17 + 5365: 37,25 + 5872: 31,19 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndE + decals: + 5651: 33,24 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndW + decals: + 5654: 30,24 + 5689: 29,20 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + decals: + 5873: 31,20 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 5370: 39,26 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 5289: 37,22 + 5290: 34,18 + 5294: 38,18 + 5363: 38,27 + 5655: 31,24 + 5656: 32,24 + 5677: 30,20 + 5680: 33,20 + 5681: 34,20 + 5685: 38,20 + 5686: 39,20 + 5828: 35,20 + 5829: 36,20 + 5830: 37,20 + 5869: 31,20 + 5870: 32,20 + 6619: 50,13 + 6620: 51,13 + 6621: 49,13 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 5291: 34,17 + 5292: 37,21 + 5293: 38,17 + 5369: 38,25 + 5443: 55,43 + 5445: 53.98346,42.996826 + 5447: 52.990402,43.003773 + 5449: 52,43 + 5652: 32,24 + 5653: 31,24 + 5690: 30,20 + 5692: 33,19 + 5693: 34,19 + 5697: 38,19 + 5698: 39,19 + 5831: 35,19 + 5832: 36,19 + 5833: 37,19 + 5871: 32,19 + 6298: 50.961994,43.007206 + 6406: 50,35 + 6407: 51,35 + 6622: 49,15 + 6623: 50,15 + 6624: 51,15 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW @@ -2287,16 +2437,50 @@ entities: 1782: 22,-12 1783: 22,-11 1784: 22,-10 - 2885: 56,39 - 2889: 56,40 - 2969: 56,36 - 2970: 56,37 - 2971: 56,38 + 5368: 37,26 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: 4345: 30,-7 + 5817: 53,32 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 6398: 48,32 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 5810: 53,31 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 6399: 48,31 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndE + decals: + 6783: 61,14 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileSteelEndE + decals: + 6442: 57,49 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndW + decals: + 6784: 57,14 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileSteelEndW + decals: + 6439: 55,49 - node: color: '#D381C996' id: BrickTileSteelLineE @@ -2322,6 +2506,45 @@ entities: 836: 47,-9 4044: 29,-39 4344: 29,-7 + 5376: 44,29 + 5377: 42,29 + 5815: 52,32 + 6330: 51,32 + 6402: 50,32 + 6403: 49,32 + 6780: 58,14 + 6781: 59,14 + 6782: 60,14 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 6441: 56,49 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 5441: 52,43 + 5444: 54.49735,43.003773 + 5446: 53.50429,43.003773 + 5448: 52.490402,42.996826 + 5450: 51.496826,43.003773 + 5811: 52,31 + 5812: 51,31 + 6299: 50.493244,43.02283 + 6400: 50,31 + 6506: 49,31 + 6776: 58,14 + 6777: 59,14 + 6778: 60,14 + 6789: 54,11 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 6440: 56,49 - node: color: '#D381C996' id: BrickTileSteelLineW @@ -2341,26 +2564,85 @@ entities: id: BrickTileWhiteCornerNe decals: 1844: 17,-4 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNe + decals: + 5882: 44,29 - node: color: '#A4610696' id: BrickTileWhiteCornerNe decals: 1447: 20,24 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNe + decals: + 6654: 64,16 + 6666: 60,20 + 6697: 57,25 + 6706: 62,25 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe + decals: + 5550: 31,31 + 5603: 37,34 + 5719: 40,28 + 5756: 41,36 + 6486: 34,25 + 6498: 57,33 + 6503: 54,33 + 6850: 30,28 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: 1849: 14,-4 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNw + decals: + 5884: 42,29 - node: color: '#A4610696' id: BrickTileWhiteCornerNw decals: 1446: 17,24 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNw + decals: + 6601: 44,11 + 6631: 53,15 + 6655: 62,16 + 6682: 49,21 + 6693: 53,25 + 6699: 59,25 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNw + decals: + 5542: 29,25 + 5548: 29,31 + 5552: 32,31 + 5716: 36,27 + 5758: 39,36 + 6395: 34,34 + 6479: 47,36 + 6483: 37,28 + 6500: 56,33 + 6857: 29,28 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: 1843: 17,-6 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSe + decals: + 5887: 44,27 - node: color: '#9FED583B' id: BrickTileWhiteCornerSe @@ -2371,11 +2653,37 @@ entities: id: BrickTileWhiteCornerSe decals: 1451: 20,20 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSe + decals: + 6590: 47,13 + 6652: 64,13 + 6703: 62,22 + 6812: 51,8 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSe + decals: + 5573: 35,29 + 5582: 54,30 + 5601: 37,32 + 5779: 45,33 + 6487: 31,30 + 6493: 40,24 + 6497: 57,31 + 6841: 34,23 + 6852: 30,27 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: 1845: 14,-6 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSw + decals: + 5886: 42,27 - node: color: '#9FED583B' id: BrickTileWhiteCornerSw @@ -2386,6 +2694,27 @@ entities: id: BrickTileWhiteCornerSw decals: 1452: 17,20 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSw + decals: + 6600: 44,9 + 6632: 53,13 + 6683: 49,17 + 6692: 53,23 + 6700: 59,22 + 6796: 49,8 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 5547: 29,30 + 5723: 36,24 + 5761: 39,33 + 5859: 29,23 + 6396: 34,32 + 6501: 56,31 + 6853: 29,27 - node: color: '#9FED5847' id: BrickTileWhiteEndE @@ -2410,7 +2739,14 @@ entities: color: '#D381C996' id: BrickTileWhiteInnerNe decals: - 2089: 51,20 + 6596: 42,8 + 6669: 57,20 + 6672: 60,15 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNe + decals: + 6328: 48,33 - node: color: '#9FED5847' id: BrickTileWhiteInnerNw @@ -2420,17 +2756,34 @@ entities: color: '#D381C996' id: BrickTileWhiteInnerNw decals: - 2088: 53,20 + 6658: 62,15 + 6673: 58,15 + 6687: 55,20 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNw + decals: + 5583: 47,31 + 6484: 37,27 - node: color: '#D381C996' id: BrickTileWhiteInnerSe decals: - 2084: 50,19 + 6831: 51,9 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSe + decals: + 5571: 35,30 + 5572: 34,29 + 6478: 48,36 - node: color: '#D381C996' id: BrickTileWhiteInnerSw decals: - 2083: 54,19 + 6674: 58,17 + 6690: 55,23 + 6814: 49,9 - node: color: '#334E6DC8' id: BrickTileWhiteLineE @@ -2442,6 +2795,7 @@ entities: decals: 2687: -23,-10 2688: -23,-17 + 5883: 44,28 - node: color: '#9FED583B' id: BrickTileWhiteLineE @@ -2468,9 +2822,51 @@ entities: color: '#D381C996' id: BrickTileWhiteLineE decals: - 2076: 50,17 - 2077: 50,18 - 2090: 51,21 + 6584: 47,19 + 6585: 47,18 + 6586: 47,17 + 6587: 47,16 + 6588: 47,15 + 6593: 42,11 + 6595: 42,9 + 6653: 64,14 + 6663: 60,17 + 6664: 60,18 + 6665: 60,19 + 6670: 57,21 + 6671: 57,22 + 6704: 62,23 + 6705: 62,24 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 5483: 27,32 + 5484: 27,31 + 5485: 27,30 + 5494: 27,21 + 5495: 27,20 + 5496: 27,19 + 5497: 27,18 + 5498: 27,17 + 5499: 27,22 + 5537: 34,24 + 5593: 57,32 + 5602: 37,33 + 5726: 40,27 + 5782: 45,34 + 6290: 34,28 + 6291: 34,27 + 6320: 48,34 + 6321: 48,35 + 6494: 40,26 + 6504: 54,31 + 6528: 27,27 + 6529: 27,26 + 6530: 27,28 + 6531: 27,29 + 6838: 27,25 + 6839: 27,23 - node: color: '#334E6DC8' id: BrickTileWhiteLineN @@ -2481,7 +2877,6 @@ entities: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 2741: 32,36 3117: -3,1 - node: color: '#9FED5847' @@ -2507,23 +2902,61 @@ entities: decals: 1458: 18,24 1459: 19,24 - 2739: 30,36 3121: -11,1 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 2056: 52,14 - 2057: 51,14 - 2058: 50,14 - 2059: 49,14 - 2060: 48,14 - 2087: 52,20 - 2182: 66,15 - 2183: 67,15 - 2184: 68,15 - 2740: 31,36 3120: -13,1 + 6225: 60,25 + 6597: 48,11 + 6598: 47,11 + 6599: 46,11 + 6604: 45,11 + 6633: 54,15 + 6634: 55,15 + 6635: 56,15 + 6636: 57,15 + 6656: 63,16 + 6657: 61,15 + 6667: 59,20 + 6668: 58,20 + 6685: 50,21 + 6686: 54,20 + 6694: 54,25 + 6695: 55,25 + 6696: 56,25 + 6707: 61,25 + 6708: 60,25 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 5540: 30,25 + 5541: 31,25 + 5549: 30,31 + 5555: 37,31 + 5556: 38,31 + 5559: 42,31 + 5560: 43,31 + 5562: 46,31 + 5606: 35,34 + 5607: 36,34 + 5704: 35,21 + 5757: 40,36 + 5861: 32,21 + 5862: 34,21 + 6378: 33,31 + 6485: 32,25 + 6489: 34,31 + 6490: 36,31 + 6495: 39,28 + 6512: 41,31 + 6522: 39,31 + 6842: 31,21 + 6843: 29,21 + 6859: 52,33 + 6860: 49,33 - node: color: '#EFB34196' id: BrickTileWhiteLineN @@ -2538,13 +2971,6 @@ entities: 418: 44,-40 419: 45,-40 420: 46,-40 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineN - decals: - 2039: 50,13 - 2040: 49,13 - 2044: 51,13 - node: color: '#334E6DC8' id: BrickTileWhiteLineS @@ -2552,10 +2978,10 @@ entities: 1851: 16,-6 1852: 15,-6 - node: - color: '#334E6DFF' + color: '#52B4E996' id: BrickTileWhiteLineS decals: - 2736: 32,36 + 5888: 43,27 - node: color: '#9FED583B' id: BrickTileWhiteLineS @@ -2584,34 +3010,55 @@ entities: color: '#D381C996' id: BrickTileWhiteLineS decals: - 2051: 49,14 - 2052: 50,14 - 2053: 51,14 - 2054: 52,14 - 2055: 48,14 - 2078: 51,19 - 2079: 52,19 - 2080: 53,19 - 2185: 68,14 - 2186: 67,14 - 2187: 66,14 + 6606: 45,9 + 6607: 46,9 + 6608: 47,9 + 6609: 48,9 + 6637: 54,13 + 6647: 59,13 + 6648: 60,13 + 6649: 61,13 + 6651: 63,13 + 6675: 57,17 + 6676: 56,17 + 6677: 54,17 + 6678: 55,17 + 6679: 50,17 + 6691: 54,23 + 6701: 60,22 + 6702: 61,22 + 6798: 50,8 + 6828: 52,9 + 6829: 53,9 + 6830: 54,9 + 6872: 46,13 + 6873: 43,13 + 6874: 55,13 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 2737: 31,36 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineS - decals: - 2738: 30,36 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineS - decals: - 2041: 51,15 - 2042: 50,15 - 2043: 49,15 + 5551: 30,30 + 5563: 36,30 + 5570: 46,30 + 5576: 47,30 + 5579: 51,30 + 5580: 52,30 + 5581: 53,30 + 5599: 36,32 + 5720: 37,24 + 5721: 38,24 + 5722: 39,24 + 5780: 44,33 + 5860: 31,23 + 6480: 42,30 + 6482: 37,30 + 6496: 48,30 + 6505: 50,30 + 6523: 39,30 + 6524: 40,30 + 6525: 41,30 + 6840: 32,23 - node: color: '#334E6DC8' id: BrickTileWhiteLineW @@ -2623,6 +3070,7 @@ entities: decals: 2689: -7,-17 2690: -7,-10 + 5885: 42,28 - node: color: '#9FED583B' id: BrickTileWhiteLineW @@ -2660,20 +3108,73 @@ entities: color: '#D381C996' id: BrickTileWhiteLineW decals: - 2081: 54,17 - 2082: 54,18 + 6553: 69,33 + 6554: 69,32 + 6555: 69,31 + 6680: 49,19 + 6681: 49,20 + 6684: 49,18 + 6688: 55,21 + 6689: 55,22 + 6698: 53,24 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 5717: 36,26 + 5718: 36,25 + 5759: 39,35 + 6324: 47,35 + 6325: 47,34 + 6326: 47,33 + 6327: 47,32 + 6397: 34,33 + 6488: 32,30 + 6499: 56,32 + 6532: 32,29 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: 2224: 78,-2 2225: 78,-1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BushAOne + decals: + 6458: 61,49 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BushAThree + decals: + 6461: 51,49 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Busha1 + decals: + 6460: 63,48 + - node: + angle: 0.4014257279586958 rad + color: '#FF140922' + id: Bushn1 + decals: + 5415: 54.875694,44.926968 - node: color: '#FFFFFFFF' id: Caution decals: 4814: 26.000326,-32.342445 4815: 26.000326,-36.049404 + 6807: 52.9952,10.188756 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Caution + decals: + 6808: 59.910686,26.985073 - node: color: '#52B4E996' id: CheckerNESW @@ -2733,6 +3234,13 @@ entities: 2237: 76,-8 2238: 76,-7 2239: 77,-7 + - node: + color: '#D381C996' + id: CheckerNESW + decals: + 6709: 60.495213,23.502304 + 6735: 56,21 + 6736: 56,22 - node: color: '#D4D4D428' id: CheckerNESW @@ -2772,6 +3280,11 @@ entities: 4686: 26,-37 4772: 26,-36 4773: 26,-32 + - node: + color: '#52B4E996' + id: CheckerNWSE + decals: + 5890: 43,28 - node: color: '#9FED5822' id: CheckerNWSE @@ -2789,12 +3302,26 @@ entities: 2222: 77,-2 2223: 77,-1 - node: - color: '#EFB34196' + color: '#DE3A3A96' id: CheckerNWSE decals: - 3921: 18,-19 - 3922: 18,-18 - 3923: 18,-17 + 5728: 38,26 + 5802: 56.498737,31.993965 + 5803: 37.003437,30.50393 + 5804: 38.004116,30.50393 + 5808: 42.002586,30.50393 + 5818: 33.004704,19.493225 + 5819: 34.003857,19.493225 + 5823: 37.996056,19.493225 + 5824: 39.002533,19.493225 + 5825: 36.0029,19.497932 + 5826: 35.0029,19.497932 + 5827: 37.0029,19.497932 + 6391: 44,34 + 6392: 44,35 + 6393: 40,34 + 6394: 40,35 + 6858: 29.49797,27.479872 - node: color: '#FFFFFF93' id: CheckerNWSE @@ -2828,8 +3355,6 @@ entities: 203: 5,-4 204: 6,-4 205: 6,-5 - 241: 51,8 - 242: 49,8 385: 5,-7 413: 46,-39 414: 46,-38 @@ -2851,7 +3376,6 @@ entities: 1182: 17,1 1694: 40,12 1695: 41,12 - 1696: 42,12 1771: 39,-1 1772: 39,0 1773: 39,1 @@ -2863,15 +3387,9 @@ entities: 1938: 38,13 1939: 38,14 1940: 38,15 - 2061: 53,13 - 2062: 53,14 - 2063: 53,15 2096: 58,16 2097: 59,16 2098: 60,16 - 2099: 58,21 - 2100: 59,21 - 2101: 60,21 3182: 11,30 3183: 12,30 3184: 13,30 @@ -2895,8 +3413,16 @@ entities: 4360: 39,-41 4432: 21,16 4505: 35,-33 - 4571: 58,11 5176: 6,-20 + 6579: 42,12 + 6713: 58,23 + 6714: 58,24 + 6799: 56,12 + 6800: 57,12 + 6801: 58,12 + 6806: 53,11 + 6832: 48,14 + 6835: 55,10 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -2907,8 +3433,8 @@ entities: color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 2064: 52,14 - 2065: 48,14 + 6223: 48,18 + 6224: 48,17 - node: color: '#334E6DC8' id: DiagonalCheckerBOverlay @@ -2917,6 +3443,19 @@ entities: 3062: 73,23 3063: 74,23 3064: 74,22 + - node: + color: '#FF1409FF' + id: Dirt + decals: + 5413: 55.06262,44.98224 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 6463: 61,49 + 6464: 63,48 + 6465: 51,49 - node: cleanable: True zIndex: 1 @@ -2951,29 +3490,13 @@ entities: 1524: 23,22 1525: 23,23 1526: 23,21 - 1623: 32,17 - 1624: 32,18 - 1625: 33,17 - 1626: 35,20 - 1627: 35,21 - 1628: 33,23 - 1629: 34,24 - 1633: 30,23 - 1634: 30,18 - 1635: 29,17 - 1636: 29,20 - 1637: 30,20 1653: 25,18 1654: 25,19 1655: 25,20 1656: 25,22 - 1657: 27,20 1658: 25,23 1659: 25,24 - 1660: 26,24 - 1661: 27,23 1662: 25,25 - 1663: 27,26 2256: 55,-16 2257: 55,-16 2258: 56,-16 @@ -2985,15 +3508,10 @@ entities: 2306: 33,-17 2307: 31,-16 2308: 29,-17 - 3031: 36,31 - 3128: 56,35 - 3129: 57,40 3288: 12,28 3289: 11,27 3290: 13,27 3297: 8,20 - 3298: 6,22 - 3299: 6,24 3300: 7,23 3301: 7,27 3302: 10,24 @@ -3007,11 +3525,8 @@ entities: 3310: 13,24 3311: 12,25 3312: 9,22 - 3313: 8,27 3315: 10,25 3316: 9,23 - 3317: 8,24 - 3318: 6,26 3319: 12,23 3320: 10,22 3325: 11,20 @@ -3025,10 +3540,8 @@ entities: 3444: 5,31 3445: 9,34 3446: 8,34 - 3447: 9,29 3448: 5,35 3455: 7,28 - 3456: 6,27 3538: 6,33 3539: 8,33 3601: 4,37 @@ -3039,7 +3552,6 @@ entities: 4083: 25,-26 4084: 24,-24 4085: 27,-25 - 4617: 32,25 4780: 24,-32 4784: 29,-33 4790: 22,-31 @@ -3053,7 +3565,6 @@ entities: 5098: 23,-39 5099: 17,-39 5100: 16,-42 - 5101: 19,-44 5102: 23,-42 5103: 25,-42 5104: 25,-41 @@ -3072,6 +3583,26 @@ entities: 5160: 22,-28 5207: 22,-37 5208: 20,-37 + - node: + color: '#FF1409FF' + id: DirtHeavy + decals: + 5403: 55,41 + 5412: 54.00012,44.997864 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 6424: 38,41 + 6429: 45,45 + 6430: 49,44 + 6431: 49,49 + 6432: 57,50 + 6437: 39,46 + 6466: 48,26 + 6546: 71,31 + 6547: 71,32 - node: cleanable: True zIndex: 1 @@ -3084,24 +3615,9 @@ entities: 1485: 18,21 1507: 23,23 2260: 55,-15 - 2895: 41,34 - 2901: 39,34 2906: 46,27 - 2922: 49,33 - 2995: 54,32 - 2996: 53,37 - 2997: 58,36 - 3007: 59,34 - 3008: 59,38 - 3009: 58,32 - 3010: 59,32 - 3011: 59,40 - 3029: 38,22 - 3041: 54,47 - 3132: 58,31 3251: 7,22 3252: 6,25 - 3253: 8,26 3254: 11,28 3256: 13,30 3257: 14,23 @@ -3109,14 +3625,12 @@ entities: 3259: 10,23 3260: 13,21 3261: 11,25 - 3262: 7,24 3263: 13,26 3264: 11,21 3265: 16,20 3330: 11,29 3418: 8,29 3419: 6,28 - 3433: 9,29 3526: 7,34 3540: 7,33 3605: 5,37 @@ -3137,12 +3651,6 @@ entities: 3864: 72,-4 3898: 4,38 3909: 30,-27 - 3931: 35,31 - 3934: 31,23 - 3937: 31,29 - 3948: 47,35 - 3949: 52,34 - 3952: 46,35 4076: 29,-27 4086: 24,-25 4274: 30,-37 @@ -3157,9 +3665,7 @@ entities: 5009: 13,-25 5014: 15,-24 5035: 19,-35 - 5046: 19,-44 5047: 20,-40 - 5048: 22,-44 5049: 22,-39 5050: 22,-41 5055: 22,-43 @@ -3179,32 +3685,34 @@ entities: 5182: 5,-21 5253: 30,-26 5256: 30,-25 + - node: + color: '#FF1409FF' + id: DirtHeavyMonotile + decals: + 5402: 54,40 + 5407: 55,45 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 6425: 38,42 + 6433: 59,49 + 6438: 40,47 + 6462: 62,48 + 6470: 67,33 + 6548: 70,32 - node: cleanable: True zIndex: 1 color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 2894: 39,33 - 2904: 40,35 - 2932: 37,19 - 2933: 38,17 - 3000: 55,34 - 3001: 54,35 - 3002: 56,38 3003: 54,39 - 3024: 37,31 - 3025: 40,30 - 3033: 59,36 - 3039: 50,34 - 3044: 58,47 - 3131: 58,31 3268: 7,26 3269: 13,25 3271: 9,21 3272: 14,21 - 3273: 6,23 - 3274: 6,26 3275: 9,25 3276: 13,28 3277: 12,29 @@ -3216,7 +3724,6 @@ entities: 3421: 8,28 3435: 6,31 3437: 8,30 - 3457: 6,23 3592: 4,40 3608: 4,38 3609: 6,37 @@ -3233,13 +3740,6 @@ entities: 3904: 6,32 3905: 8,30 3908: 29,-27 - 3932: 35,30 - 3933: 28,24 - 3938: 29,30 - 3942: 29,28 - 3950: 47,34 - 3951: 52,35 - 3953: 46,36 4075: 29,-29 4080: 31,-27 4089: 25,-24 @@ -3271,7 +3771,6 @@ entities: 5034: 16,-37 5036: 21,-35 5044: 21,-36 - 5051: 20,-44 5052: 23,-41 5053: 22,-40 5054: 20,-43 @@ -3298,6 +3797,20 @@ entities: 5184: 7,-19 5238: 31,-24 5254: 31,-26 + - node: + color: '#FF1409FF' + id: DirtLight + decals: + 5405: 55,45 + 5406: 55,45 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 6428: 44,45 + 6435: 55,49 + 6467: 50,26 - node: cleanable: True zIndex: 1 @@ -3344,29 +3857,12 @@ entities: 1516: 23,23 1517: 23,22 1518: 22,25 - 1638: 30,17 - 1639: 30,21 - 1640: 33,18 - 1641: 35,19 - 1642: 34,23 - 1644: 35,23 - 1645: 30,24 - 1646: 29,23 - 1647: 35,28 - 1648: 34,27 - 1650: 33,29 - 1652: 36,22 1664: 25,21 1665: 26,22 - 1666: 26,23 - 1667: 27,20 1668: 26,19 1669: 25,15 1788: 25,27 - 1789: 26,28 - 1790: 27,30 1793: 26,34 - 1794: 27,34 2263: 55,-15 2264: 55,-14 2265: 54,-14 @@ -3374,42 +3870,7 @@ entities: 2267: 57,-16 2268: 57,-15 2269: 57,-14 - 2896: 39,35 - 2897: 41,36 - 2900: 41,33 - 2902: 39,36 - 2903: 40,34 - 2908: 49,35 - 2935: 39,18 - 2982: 54,34 - 2983: 55,37 - 2984: 55,40 - 2985: 53,40 - 2986: 57,37 - 2987: 56,33 - 2988: 54,33 - 2989: 58,36 - 2990: 58,40 - 2991: 55,41 - 2992: 54,40 - 2993: 53,34 - 2994: 53,33 - 2999: 55,35 - 3004: 57,39 - 3006: 55,32 - 3012: 55,38 - 3013: 46,33 - 3015: 36,30 - 3016: 39,31 - 3017: 41,30 - 3018: 43,31 - 3028: 40,22 - 3030: 39,24 - 3040: 51,35 - 3042: 57,47 - 3133: 55,39 3279: 7,25 - 3280: 8,23 3281: 12,21 3282: 14,24 3283: 10,27 @@ -3434,19 +3895,12 @@ entities: 3902: 4,37 3903: 5,33 3906: 8,32 - 3935: 31,24 - 3936: 28,23 - 3940: 31,30 - 3941: 30,29 - 3943: 29,29 4078: 30,-29 4081: 31,-28 4087: 26,-25 4090: 27,-24 4275: 30,-36 4462: 39,-37 - 4613: 33,25 - 4614: 34,27 4745: 26,-37 4779: 24,-33 4782: 28,-32 @@ -3503,6 +3957,27 @@ entities: 5210: 19,-37 5212: 19,-29 5236: 31,-25 + - node: + color: '#FF1409FF' + id: DirtMedium + decals: + 5401: 53,41 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 6544: 70,33 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 6426: 39,43 + 6427: 42,45 + 6434: 58,50 + 6468: 49,26 + 6469: 67,31 + 6549: 72,32 - node: cleanable: True zIndex: 1 @@ -3526,23 +4001,6 @@ entities: 1506: 23,21 2261: 56,-14 2262: 55,-16 - 2891: 33,30 - 2898: 40,33 - 2899: 39,35 - 2918: 58,40 - 2936: 37,18 - 2975: 53,32 - 2976: 56,34 - 2977: 54,37 - 2978: 58,40 - 2979: 56,32 - 2981: 55,31 - 3019: 37,30 - 3020: 39,30 - 3021: 43,30 - 3022: 38,31 - 3023: 42,31 - 3043: 56,47 3291: 8,25 3292: 8,22 3293: 7,21 @@ -3570,15 +4028,11 @@ entities: 3880: 71,-6 3882: 74,-4 3895: 30,-29 - 3939: 30,28 - 3954: 46,34 4077: 29,-28 4088: 25,-25 4362: 41,-39 4363: 35,-44 4463: 40,-37 - 4615: 33,27 - 4616: 32,26 4746: 25,-37 4778: 24,-34 4783: 26,-32 @@ -3619,6 +4073,11 @@ entities: id: Flowersy1 decals: 798: 46.528667,-10.391078 + - node: + color: '#DE3A3A96' + id: Flowersy4 + decals: + 6295: 57.77299,36.672016 - node: color: '#FFFFFFFF' id: Flowersy4 @@ -3696,18 +4155,6 @@ entities: 1713: 24,48 1714: 23,48 1715: 22,48 - - node: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - decals: - 92: 31,18 - 93: 31,20 - 1613: 27,23 - 1614: 27,24 - 3944: 47,34 - 3945: 47,35 - 3946: 52,35 - 3947: 52,34 - node: color: '#EFB34196' id: FullTileOverlayGreyscale @@ -3731,6 +4178,33 @@ entities: 4768: 22,-33 4877: 18,-40 4878: 24,-40 + - node: + color: '#FFFFFFFF' + id: Grassa1 + decals: + 6552: 70,32 + - node: + color: '#FFFFFFFF' + id: Grassa3 + decals: + 6536: 71,35 + 6551: 71,33 + - node: + color: '#FFFFFFFF' + id: Grassa4 + decals: + 6541: 71,33 + 6550: 71,32 + - node: + color: '#FFFFFFFF' + id: Grassa5 + decals: + 6537: 71,34 + - node: + color: '#FFFFFFFF' + id: Grassb2 + decals: + 6538: 70,35 - node: color: '#FFFFFFFF' id: Grassd1 @@ -3753,6 +4227,12 @@ entities: 791: 46.966167,-10.891078 792: 46.091167,-10.859828 793: 46.263042,-10.062953 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineN + decals: + 6404: 50,37 + 6405: 51,37 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale @@ -3763,8 +4243,6 @@ entities: 1723: 26,37 1724: 27,37 1725: 28,37 - 1726: 27,36 - 1727: 27,35 1863: 10,-6 1864: 11,-6 1865: 12,-6 @@ -3813,33 +4291,6 @@ entities: decals: 3210: 14,25 3214: 10,28 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale - decals: - 26: 62,25 - 27: 63,25 - 28: 64,25 - 2066: 53,11 - 2067: 52,11 - 2068: 51,11 - 2069: 50,11 - 2070: 48,11 - 2071: 49,11 - 2072: 55,11 - 2615: 61,25 - 2616: 54,20 - 2617: 55,20 - 2618: 56,20 - 2619: 57,20 - 4530: 60,11 - 4531: 61,11 - 4532: 62,11 - 4533: 63,11 - 4543: 47,11 - 4544: 46,11 - 4545: 45,11 - 4561: 44,11 - node: color: '#D4D4D428' id: HalfTileOverlayGreyscale @@ -3855,21 +4306,7 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 74: 31,24 - 75: 30,24 - 76: 29,24 - 77: 28,24 - 178: 36,24 1149: -2,-4 - 2744: 33,31 - 2808: 34,31 - 2823: 36,19 - 2824: 37,19 - 2825: 38,19 - 2826: 39,19 - 2939: 36,31 - 2940: 43,31 - 3930: 35,31 - node: color: '#EFB34128' id: HalfTileOverlayGreyscale @@ -3968,18 +4405,6 @@ entities: 3199: 10,21 3202: 12,20 3203: 13,20 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale180 - decals: - 32: 62,13 - 2620: 57,17 - 2621: 56,17 - 2622: 55,17 - 2623: 54,17 - 4548: 48,9 - 4549: 47,9 - 4562: 46,9 - node: color: '#D4D4D428' id: HalfTileOverlayGreyscale180 @@ -3989,21 +4414,7 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 decals: - 39: 36,21 - 78: 28,23 - 79: 29,23 - 80: 30,23 - 81: 31,23 - 90: 33,17 - 91: 34,17 1150: -2,-6 - 2819: 36,17 - 2820: 37,17 - 2821: 38,17 - 2822: 39,17 - 2937: 36,30 - 2938: 43,30 - 3929: 35,30 - node: color: '#EFB34166' id: HalfTileOverlayGreyscale180 @@ -4016,9 +4427,6 @@ entities: id: HalfTileOverlayGreyscale180 decals: 4722: 21,-31 - 4868: 20,-44 - 4869: 21,-44 - 4870: 22,-44 4918: 16,-37 4919: 17,-37 4920: 18,-37 @@ -4031,6 +4439,9 @@ entities: 5199: 19,-37 5200: 20,-37 5201: 21,-37 + 6413: 20,-44 + 6414: 21,-44 + 6415: 22,-44 - node: color: '#FA750096' id: HalfTileOverlayGreyscale180 @@ -4084,45 +4495,12 @@ entities: color: '#A4610696' id: HalfTileOverlayGreyscale270 decals: - 3219: 6,22 3220: 6,25 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale270 - decals: - 18: 49,21 - 19: 49,20 - 20: 49,19 - 21: 49,18 - 22: 49,17 - 23: 53,25 - 24: 53,24 - 25: 53,23 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 83: 32,22 - 84: 32,21 - 85: 32,20 - 86: 32,19 - 87: 32,18 - 88: 32,17 1148: -3,-5 - 2745: 32,30 - 2815: 32,29 - 2816: 29,28 - 2817: 29,29 - 2818: 29,30 - 2829: 35,23 - 2830: 35,22 - 2840: 38,23 - 2841: 38,22 - 2842: 38,21 - 4609: 32,25 - 4610: 32,26 - 4611: 32,27 - 4612: 32,28 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 @@ -4210,48 +4588,11 @@ entities: 3208: 15,24 3212: 13,26 3213: 13,27 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale90 - decals: - 11: 47,19 - 12: 47,18 - 13: 47,17 - 14: 47,16 - 15: 47,15 - 16: 47,14 - 17: 47,13 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 decals: - 36: 35,18 - 37: 35,19 - 38: 35,20 - 41: 35,17 - 44: 36,22 - 50: 35,25 - 51: 35,26 - 52: 35,27 - 53: 35,28 - 56: 34,29 - 179: 36,23 1147: -1,-5 - 1600: 27,17 - 1601: 27,18 - 1602: 27,19 - 1603: 27,20 - 1604: 27,21 - 1605: 27,26 - 1606: 27,27 - 1609: 27,30 - 1610: 27,31 - 2813: 27,29 - 2814: 27,28 - 2827: 33,23 - 2828: 33,22 - 2843: 41,23 - 2844: 41,22 - node: color: '#EFB34166' id: HalfTileOverlayGreyscale90 @@ -4290,15 +4631,17 @@ entities: id: LoadingArea decals: 1473: 23,25 - 1621: 31,18 - 1622: 31,20 - 3235: 8,26 + 6573: 7,26 - node: color: '#FFFFFFFF' id: LoadingArea decals: 1471: 22,23 1472: 22,24 + 6418: 20,-44 + 6419: 21,-44 + 6420: 22,-44 + 6845: 33,21 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -4308,14 +4651,75 @@ entities: 1177: 14,-2 1178: 15,-2 3096: 82,30 - 3236: 8,24 + 6572: 7,24 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: LoadingArea decals: - 2838: 39,24 - 2839: 40,24 + 6844: 30,23 + - node: + color: '#827F8896' + id: MiniTileCheckerAOverlay + decals: + 6765: 66,15 + 6766: 67,15 + 6767: 68,15 + 6768: 68,14 + 6769: 67,14 + 6770: 66,14 + 6772: 50,14 + 6773: 51,14 + 6790: 52,11 + 6791: 52,10 + 6792: 53,10 + 6793: 53,11 + 6794: 54,11 + 6795: 54,10 + - node: + color: '#85828896' + id: MiniTileCheckerAOverlay + decals: + 6834: 49,14 + - node: + color: '#88818B96' + id: MiniTileCheckerAOverlay + decals: + 6802: 57,8 + 6803: 57,9 + 6804: 57,10 + 6805: 57,11 + - node: + color: '#D4D4D428' + id: MiniTileCheckerBOverlay + decals: + 6556: 72,29 + 6557: 71,29 + 6558: 71,28 + 6559: 72,28 + 6560: 72,27 + 6561: 71,27 + 6562: 70,34 + 6563: 69,34 + 6564: 69,35 + - node: + cleanable: True + color: '#D4D4D428' + id: MiniTileCheckerBOverlay + decals: + 6443: 52,50 + 6444: 51,50 + 6445: 50,50 + 6446: 49,50 + 6447: 60,50 + 6448: 61,50 + 6449: 62,50 + 6450: 63,50 + 6451: 54,47 + 6452: 55,47 + 6453: 56,47 + 6454: 57,47 + 6455: 58,47 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale @@ -4362,20 +4766,6 @@ entities: 3837: 62,2 3838: 65,2 3840: 59,2 - - node: - color: '#797C8250' - id: QuarterTileOverlayGreyscale - decals: - 2130: 54,15 - 2131: 54,15 - 2132: 55,15 - 2133: 55,15 - 2134: 56,15 - 2135: 56,15 - 2136: 57,15 - 2137: 57,15 - 2138: 58,15 - 2139: 58,15 - node: color: '#80C71FFF' id: QuarterTileOverlayGreyscale @@ -4428,7 +4818,6 @@ entities: 1540: 25,23 1541: 25,24 1542: 25,25 - 1543: 35,29 1753: 25,26 1947: 18,1 1948: 19,1 @@ -4451,8 +4840,6 @@ entities: 2013: 45,17 2014: 45,18 2015: 45,19 - 2016: 46,19 - 2017: 47,19 2018: 40,11 2019: 40,10 2020: 40,8 @@ -4505,7 +4892,6 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: - 54: 35,28 739: 24,-25 740: 24,-24 955: 27,5 @@ -4537,19 +4923,6 @@ entities: 1111: 0,0 1112: 1,0 1113: 2,0 - 2768: 48,35 - 2769: 49,35 - 2770: 50,35 - 2771: 51,35 - 2780: 39,36 - 2781: 40,36 - 2788: 41,36 - 2941: 37,31 - 2942: 38,31 - 2943: 39,31 - 2944: 40,31 - 2945: 41,31 - 2946: 42,31 4367: -6,0 4368: -7,0 4369: -8,0 @@ -4563,7 +4936,6 @@ entities: 4377: -19,0 4378: -20,0 4379: -21,0 - 4581: 32,24 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale @@ -4619,36 +4991,6 @@ entities: 988: 25,8 989: 26,8 990: 27,8 - - node: - color: '#797C8250' - id: QuarterTileOverlayGreyscale180 - decals: - 2102: 60,13 - 2103: 60,13 - 2104: 59,13 - 2105: 59,13 - 2106: 58,13 - 2107: 58,13 - 2140: 64,13 - 2141: 64,13 - 2142: 64,14 - 2143: 64,14 - 2150: 60,17 - 2151: 60,17 - 2152: 60,18 - 2153: 60,18 - 2154: 60,19 - 2155: 60,19 - 2156: 60,20 - 2157: 60,20 - 2174: 54,22 - 2175: 54,22 - 2176: 55,22 - 2177: 55,22 - 2178: 56,22 - 2179: 56,22 - 2180: 57,22 - 2181: 57,22 - node: color: '#80C71FFF' id: QuarterTileOverlayGreyscale180 @@ -4686,7 +5028,6 @@ entities: color: '#D381C996' id: QuarterTileOverlayGreyscale180 decals: - 33: 61,13 2531: 106,-19 2532: 108,-17 2533: 108,-19 @@ -4717,7 +5058,6 @@ entities: 1141: 0,-2 1142: 1,-2 1754: 27,33 - 1755: 27,34 1756: 28,34 1757: 28,35 1758: 28,36 @@ -4785,9 +5125,6 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 decals: - 40: 35,21 - 89: 32,17 - 180: 36,24 2471: 105,-19 2472: 104,-18 2473: 106,-16 @@ -4796,20 +5133,6 @@ entities: 2476: 103,-17 2477: 102,-18 2478: 103,-20 - 2764: 48,34 - 2765: 49,34 - 2766: 50,34 - 2767: 51,34 - 2778: 40,33 - 2779: 41,33 - 2787: 39,33 - 2807: 34,30 - 2947: 37,30 - 2948: 38,30 - 2949: 39,30 - 2950: 40,30 - 2951: 41,30 - 2952: 42,30 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale180 @@ -4819,6 +5142,11 @@ entities: 1904: 9,-7 4912: 18,-31 4967: 26,-30 + 5385: 22,-20 + 5386: 22,-19 + 5387: 22,-18 + 5388: 22,-17 + 5389: 22,-16 - node: color: '#EFCC2E82' id: QuarterTileOverlayGreyscale180 @@ -4835,28 +5163,6 @@ entities: 732: 27,-23 733: 27,-24 734: 27,-25 - - node: - color: '#EFCC4593' - id: QuarterTileOverlayGreyscale180 - decals: - 748: 22,-20 - 749: 22,-19 - 750: 22,-18 - 751: 22,-17 - 752: 22,-16 - - node: - color: '#FA750096' - id: QuarterTileOverlayGreyscale180 - decals: - 2955: 57,40 - 2956: 57,39 - 2957: 57,38 - 2958: 57,37 - 2959: 57,36 - 2960: 57,35 - 2965: 57,32 - 2967: 57,34 - 2968: 57,33 - node: color: '#FED83DFF' id: QuarterTileOverlayGreyscale180 @@ -4902,28 +5208,6 @@ entities: decals: 2685: -22,-15 3688: 54,2 - - node: - color: '#797C8250' - id: QuarterTileOverlayGreyscale270 - decals: - 2112: 57,8 - 2113: 57,8 - 2114: 57,9 - 2115: 57,9 - 2116: 57,10 - 2117: 57,10 - 2118: 57,11 - 2119: 57,11 - 2120: 57,12 - 2121: 57,12 - 2122: 57,13 - 2123: 57,13 - 2124: 56,13 - 2125: 56,13 - 2126: 55,13 - 2127: 55,13 - 2128: 54,13 - 2129: 54,13 - node: color: '#951710FF' id: QuarterTileOverlayGreyscale270 @@ -4967,7 +5251,6 @@ entities: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 34: 63,13 4563: 55,5 4564: 56,5 4565: 57,5 @@ -5033,14 +5316,6 @@ entities: 1990: 19,-1 1991: 18,-1 1996: 39,13 - 1997: 40,13 - 1998: 41,13 - 1999: 42,13 - 2000: 43,13 - 2001: 44,13 - 2002: 45,13 - 2003: 46,13 - 2004: 47,13 2465: 40,-1 2466: 41,-1 2467: 41,-2 @@ -5060,11 +5335,6 @@ entities: 4404: -19,-2 4405: -20,-2 4406: -21,-2 - 4604: 24,33 - 4605: 24,32 - 4606: 24,31 - 4607: 24,30 - 4608: 24,29 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale270 @@ -5101,16 +5371,21 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: - 42: 36,16 - 43: 35,17 - 82: 32,23 - 2831: 34,23 + 6519: 39,31 + 6520: 40,31 + 6521: 41,31 + 6527: 32,20 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 decals: 4886: 16,-40 4911: 17,-31 + 5380: 20,-20 + 5381: 20,-19 + 5382: 20,-18 + 5383: 20,-17 + 5384: 20,-16 - node: color: '#EFCC2E82' id: QuarterTileOverlayGreyscale270 @@ -5127,15 +5402,6 @@ entities: 720: 25,-16 721: 25,-15 722: 25,-14 - - node: - color: '#EFCC4593' - id: QuarterTileOverlayGreyscale270 - decals: - 743: 20,-20 - 744: 20,-19 - 745: 20,-18 - 746: 20,-17 - 747: 20,-16 - node: color: '#F9801DFF' id: QuarterTileOverlayGreyscale270 @@ -5153,7 +5419,6 @@ entities: 223: 26,41 224: 26,42 3079: 69,22 - 3080: 69,23 3084: 79,31 3085: 80,31 3086: 81,31 @@ -5192,30 +5457,6 @@ entities: 3835: 64,2 3836: 67,2 3841: 58,2 - - node: - color: '#797C8250' - id: QuarterTileOverlayGreyscale90 - decals: - 2144: 64,16 - 2145: 64,16 - 2146: 63,16 - 2147: 63,16 - 2148: 62,16 - 2149: 62,16 - 2160: 60,25 - 2161: 60,25 - 2162: 59,25 - 2163: 59,25 - 2164: 58,25 - 2165: 58,25 - 2166: 57,25 - 2167: 57,25 - 2168: 56,25 - 2169: 56,25 - 2170: 55,25 - 2171: 55,25 - 2172: 54,25 - 2173: 54,25 - node: color: '#8932B8FF' id: QuarterTileOverlayGreyscale90 @@ -5269,7 +5510,6 @@ entities: 1675: 33,15 1676: 34,15 1677: 35,15 - 1678: 36,15 1679: 37,15 1728: 25,37 1729: 24,37 @@ -5321,9 +5561,6 @@ entities: 2030: 42,6 2031: 42,7 2032: 42,8 - 2033: 42,9 - 2034: 42,10 - 2035: 42,11 2458: 47,0 2459: 46,0 2460: 45,0 @@ -5373,9 +5610,10 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: - 45: 36,21 - 55: 34,28 - 177: 35,24 + 6516: 39,30 + 6517: 40,30 + 6518: 41,30 + 6526: 32,19 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 @@ -5472,7 +5710,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 1144: -3,-4 - 2743: 32,31 - node: color: '#EFB34128' id: ThreeQuarterTileOverlayGreyscale @@ -5530,7 +5767,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale180 decals: 1146: -1,-6 - 1612: 27,25 - node: color: '#EFB34166' id: ThreeQuarterTileOverlayGreyscale180 @@ -5540,10 +5776,10 @@ entities: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 decals: - 4867: 23,-44 4880: 17,-43 4964: 23,-29 5197: 22,-37 + 6423: 23,-44 - node: color: '#EFCC2E82' id: ThreeQuarterTileOverlayGreyscale180 @@ -5593,12 +5829,12 @@ entities: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 decals: - 4866: 19,-44 4879: 16,-43 4885: 15,-40 4906: 15,-37 4930: 13,-29 4966: 25,-30 + 6417: 19,-44 - node: color: '#EFCC2E82' id: ThreeQuarterTileOverlayGreyscale270 @@ -5645,7 +5881,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale90 decals: 1143: -1,-4 - 1611: 27,22 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 @@ -5667,6 +5902,12 @@ entities: 1785: 23,-12 1786: 26,-8 1787: 30,-11 + - node: + color: '#FFFFFFFF' + id: WarnBox + decals: + 5262: 85,30 + 6750: 51,15 - node: color: '#52B4E996' id: WarnCornerGreyscaleNE @@ -5692,17 +5933,14 @@ entities: id: WarnCornerNE decals: 2249: 57,-14 - 3101: 92,27 4516: 3,-30 - 5265: 41,27 + 6294: 43,33 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 1586: 39,27 2248: 54,-14 2580: 36,-44 - 3098: 82,29 3102: 96,27 4517: 2,-30 - node: @@ -5710,7 +5948,6 @@ entities: id: WarnCornerSE decals: 2246: 57,-16 - 3104: 92,33 3108: 80,33 4518: 3,-33 - node: @@ -5718,9 +5955,8 @@ entities: id: WarnCornerSW decals: 2247: 54,-16 - 3097: 82,31 - 3103: 96,33 4519: 2,-33 + 5264: 96,33 - node: color: '#334E6DC8' id: WarnCornerSmallGreyscaleNE @@ -5731,6 +5967,15 @@ entities: id: WarnCornerSmallGreyscaleNE decals: 1890: 9,-7 + 6117: 10,28 + 6118: 7,28 + 6389: 41,33 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleNW + decals: + 6119: 9,28 + 6226: 60,25 - node: color: '#334E6DC8' id: WarnCornerSmallGreyscaleSE @@ -5741,38 +5986,49 @@ entities: id: WarnCornerSmallGreyscaleSE decals: 1891: 9,-8 + 6107: 20,22 + 6114: 15,22 + 6115: 13,20 + 6121: 7,21 + 6388: 41,36 + - node: + color: '#FFFFFFDC' + id: WarnCornerSmallGreyscaleSW + decals: + 5616: 36,32 + 5639: 29,25 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleSW + decals: + 6106: 17,22 + 6116: 15,20 + 6120: 9,21 + 6387: 43,36 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 1620: 27,21 2561: 39,-49 - 3014: 46,33 3533: 6,33 3919: 18,-46 - 4578: 57,8 4831: 24,-36 - 4859: 19,-44 + 6422: 19,-44 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: 2560: 41,-49 - 2974: 53,33 3920: 24,-46 4827: 28,-36 - 4860: 23,-44 + 6421: 23,-44 + 6731: 60,25 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 1619: 27,26 2563: 39,-45 - 2848: 46,36 3653: 6,39 - 4542: 48,10 - 4560: 52,10 - 4577: 57,12 4807: 24,-32 4862: 19,-42 5206: 19,-37 @@ -5781,19 +6037,23 @@ entities: id: WarnCornerSmallSW decals: 2562: 41,-45 - 2852: 53,36 - 4559: 52,10 4808: 28,-32 4861: 23,-42 5205: 23,-37 + 6811: 60,27 + - node: + color: '#FFFFFFFF' + id: WarnEndW + decals: + 5263: 92,30 - node: color: '#FFFFFFFF' id: WarnFull decals: - 1594: 40,25 - 1595: 39,25 2242: 77,0 2245: 77,-3 + 6727: 59,26 + 6728: 61,27 - node: color: '#52B4E996' id: WarnFullGreyscale @@ -5801,6 +6061,12 @@ entities: 2436: 71,3 3832: 70,2 3833: 70,1 + - node: + color: '#FFFFFF93' + id: WarnFullGreyscale + decals: + 5511: 33,26 + 5742: 40,32 - node: color: '#FFFFFFFF' id: WarnFullGreyscale @@ -5822,14 +6088,14 @@ entities: 4983: 31,-34 4984: 31,-30 5169: 14,-35 + 6095: 45,12 + 6096: 44,12 + 6381: 42,34 + 6382: 42,35 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 1615: 27,22 - 1616: 27,23 - 1617: 27,24 - 1618: 27,25 2251: 57,-15 2557: 39,-48 2558: 39,-46 @@ -5838,8 +6104,6 @@ entities: 2643: 40,-16 2644: 40,-15 2731: -23,-23 - 2846: 46,35 - 2847: 46,34 3110: 80,34 3651: 6,38 3652: 6,37 @@ -5853,17 +6117,13 @@ entities: 4501: 36,-33 4520: 3,-32 4521: 3,-31 - 4551: 48,9 - 4556: 52,9 - 4557: 52,8 - 4572: 57,9 - 4573: 57,10 - 4574: 57,11 4800: 24,-35 4801: 24,-34 4802: 24,-33 4855: 19,-43 - 5264: 41,26 + 5265: 65,47 + 5266: 65,46 + 6809: 60,27 - node: color: '#334E6DC8' id: WarnLineGreyscaleE @@ -5875,11 +6135,32 @@ entities: decals: 3770: 62,-6 3849: 61,-1 + - node: + color: '#D381C996' + id: WarnLineGreyscaleE + decals: + 6745: 57,23 + 6746: 57,24 + 6747: 64,15 + 6820: 42,10 + 6826: 47,14 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleE + decals: + 6492: 40,25 + 6509: 54,32 + 6855: 27,24 - node: color: '#FA750096' id: WarnLineGreyscaleE decals: 3767: 53,-7 + - node: + color: '#FFFFFFDC' + id: WarnLineGreyscaleE + decals: + 5623: 31,30 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE @@ -5900,6 +6181,12 @@ entities: 4891: 23,-40 4902: 27,-29 4988: 28,-37 + 6108: 20,21 + 6109: 20,20 + 6110: 15,20 + 6111: 15,21 + 6383: 41,34 + 6384: 41,35 - node: color: '#52B4E996' id: WarnLineGreyscaleN @@ -5908,11 +6195,17 @@ entities: 3850: 58,0 3851: 59,0 3852: 60,0 + 6869: 43,29 - node: - color: '#D381C996' + color: '#DE3A3A96' id: WarnLineGreyscaleN decals: - 4552: 54,11 + 6471: 33,25 + 6472: 35,31 + 6474: 38,28 + 6477: 48,36 + 6508: 53,33 + 6510: 40,31 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN @@ -5945,11 +6238,35 @@ entities: 3846: 58,-2 3847: 59,-2 3848: 60,-2 + - node: + color: '#D381C996' + id: WarnLineGreyscaleS + decals: + 6870: 44,13 + 6871: 45,13 + 6875: 56,13 + 6876: 57,13 + 6877: 58,13 + 6878: 62,13 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleS + decals: + 6473: 38,30 + 6475: 43,30 + 6476: 49,30 + 6854: 40,33 - node: color: '#FA750096' id: WarnLineGreyscaleS decals: 3768: 50,-9 + - node: + color: '#FFFFFFDC' + id: WarnLineGreyscaleS + decals: + 5613: 34,32 + 5614: 35,32 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS @@ -5978,6 +6295,20 @@ entities: id: WarnLineGreyscaleW decals: 3853: 57,-1 + - node: + color: '#D381C996' + id: WarnLineGreyscaleW + decals: + 6744: 53,14 + 6748: 59,24 + 6749: 59,23 + 6817: 44,10 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleW + decals: + 6533: 32,27 + 6534: 32,28 - node: color: '#FA750096' id: WarnLineGreyscaleW @@ -6003,13 +6334,16 @@ entities: 4892: 16,-42 4900: 15,-35 4971: 25,-29 + 6104: 22,20 + 6105: 22,21 + 6112: 17,20 + 6113: 17,21 + 6385: 43,34 + 6386: 43,35 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 2045: 51,13 - 2046: 50,13 - 2047: 49,13 2243: 78,-2 2244: 77,-2 2252: 56,-16 @@ -6018,16 +6352,7 @@ entities: 2600: 49,-12 2601: 50,-12 2732: -6,-20 - 3099: 84,32 - 3100: 86,32 3109: 79,33 - 4534: 49,10 - 4535: 50,10 - 4536: 51,10 - 4538: 53,10 - 4539: 54,10 - 4540: 55,10 - 4575: 58,12 4793: 25,-32 4794: 26,-32 4795: 27,-32 @@ -6037,6 +6362,9 @@ entities: 5202: 21,-37 5203: 20,-37 5204: 22,-37 + 6751: 50,15 + 6752: 49,15 + 6810: 59,27 - node: color: '#FFFFFFFF' id: WarnLineS @@ -6053,12 +6381,6 @@ entities: 2591: 36,-47 2592: 36,-46 2593: 36,-45 - 2972: 53,34 - 2973: 53,35 - 3221: 6,27 - 3222: 6,26 - 3223: 6,24 - 3224: 6,23 4047: 46,-49 4478: 46,-45 4502: 34,-31 @@ -6066,9 +6388,6 @@ entities: 4504: 34,-33 4522: 2,-32 4523: 2,-31 - 4554: 52,8 - 4558: 52,9 - 4590: 39,26 4803: 28,-35 4804: 28,-34 4805: 28,-33 @@ -6078,6 +6397,18 @@ entities: 5220: 33,-25 5221: 33,-24 5222: 33,-23 + 5267: 67,47 + 5268: 67,46 + 6569: 6,27 + 6570: 6,26 + 6574: 6,24 + 6575: 6,23 + - node: + color: '#DE3A3A96' + id: WarnLineW + decals: + 6867: 50,33 + 6868: 51,33 - node: color: '#FFFFFFFF' id: WarnLineW @@ -6085,12 +6416,7 @@ entities: 218: 13,37 219: 14,37 220: 15,37 - 754: 22,-16 755: 21,-16 - 756: 20,-16 - 2048: 51,15 - 2049: 50,15 - 2050: 49,15 2240: 77,-1 2241: 78,-1 2254: 56,-14 @@ -6104,9 +6430,6 @@ entities: 2586: 42,-44 2587: 44,-44 2588: 43,-44 - 2854: 48,33 - 2855: 49,33 - 2856: 50,33 3530: 7,33 3531: 8,33 3537: 9,33 @@ -6115,23 +6438,17 @@ entities: 3916: 21,-46 3917: 22,-46 3918: 23,-46 - 4576: 58,8 4797: 25,-36 4798: 26,-36 4799: 27,-36 - 4852: 20,-44 - 4853: 21,-44 - 4854: 22,-44 - 5263: 40,27 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 175: 36,21 - 176: 36,22 - 181: 36,23 - 182: 36,24 + 5390: 20,-16 + 5391: 21,-16 + 5392: 22,-16 + 5393: 23,-16 + 6726: 59,25 + 6753: 49,13 + 6754: 50,13 + 6755: 51,13 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -6139,6 +6456,13 @@ entities: 1858: 20,-3 3240: 9,19 3249: 6,16 + 5297: 44,25 + 6240: 65,11 + 6307: 49,42 + 6317: 44,43 + 6340: 55,38 + 6350: 59,39 + 6359: 55,38 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw @@ -6146,6 +6470,13 @@ entities: 1856: 18,-3 3237: 5,19 3250: 5,16 + 5300: 42,25 + 6244: 64,11 + 6256: 60,11 + 6306: 46,42 + 6318: 42,43 + 6341: 53,38 + 6351: 57,39 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe @@ -6154,6 +6485,13 @@ entities: 3239: 9,18 3248: 6,15 5213: 21,-12 + 5299: 44,24 + 6241: 65,10 + 6261: 62,8 + 6308: 49,40 + 6316: 44,41 + 6348: 59,38 + 6362: 58,35 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw @@ -6161,6 +6499,22 @@ entities: 1853: 18,-6 3238: 5,18 3247: 5,15 + 5298: 42,24 + 6245: 64,10 + 6259: 60,8 + 6319: 42,41 + 6349: 57,38 + 6367: 53,35 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndE + decals: + 6360: 59,36 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 6356: 55,36 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw @@ -6170,8 +6524,10 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 4529: 60,10 5215: 20,-12 + 6264: 62,10 + 6309: 48,40 + 6361: 58,36 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -6180,9 +6536,11 @@ entities: 1780: 21,-10 1859: 20,-4 1860: 20,-5 - 4524: 60,8 - 4525: 60,9 5214: 20,-13 + 6262: 62,9 + 6310: 49,41 + 6311: 44,42 + 6357: 55,37 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -6197,6 +6555,20 @@ entities: 5143: 10,-37 5144: 11,-37 5145: 12,-37 + 5302: 43,25 + 6265: 61,11 + 6266: 62,11 + 6267: 63,11 + 6300: 48,39 + 6301: 47,39 + 6302: 46,39 + 6303: 43,43 + 6312: 47,42 + 6313: 48,42 + 6353: 58,39 + 6354: 57,36 + 6355: 56,36 + 6358: 54,38 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -6206,9 +6578,19 @@ entities: 3244: 6,18 3245: 7,18 3246: 8,18 - 4526: 61,10 - 4527: 62,10 - 4528: 63,10 + 5301: 43,24 + 6260: 61,8 + 6263: 63,10 + 6304: 43,41 + 6344: 54,35 + 6345: 55,35 + 6346: 56,35 + 6347: 57,35 + 6352: 58,38 + 6363: 57,35 + 6364: 56,35 + 6365: 55,35 + 6366: 54,35 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -6218,6 +6600,25 @@ entities: 5146: 13,-36 5147: 13,-35 5148: 13,-34 + 6257: 60,10 + 6258: 60,9 + 6305: 46,40 + 6314: 46,41 + 6315: 42,42 + 6342: 53,37 + 6343: 53,36 + - node: + angle: 0.4014257279586958 rad + color: '#FFFFFFFF' + id: body + decals: + 5414: 54.859493,45.13849 + - node: + color: '#FFFFFFFF' + id: burnt1 + decals: + 5433: 55,41 + 5435: 52,40 - node: cleanable: True color: '#FFFFFFFF' @@ -6245,6 +6646,13 @@ entities: 4496: 47,-49 4508: 35,-31 4512: 36,-32 + - node: + color: '#FFFFFFFF' + id: burnt3 + decals: + 5430: 52,42 + 5431: 52,42 + 5434: 52,42 - node: cleanable: True color: '#FFFFFFFF' @@ -6255,6 +6663,11 @@ entities: 4492: 47,-48 4509: 36,-31 4513: 34,-33 + - node: + color: '#FFFFFFFF' + id: burnt4 + decals: + 5432: 54,41 - node: cleanable: True color: '#FFFFFFFF' @@ -6268,28 +6681,11 @@ entities: 4510: 34,-32 4514: 35,-33 - node: - cleanable: True - angle: -1.5707963267948966 rad - color: '#1206120F' - id: footprint + angle: 0.13962634015954636 rad + color: '#9C2020FF' + id: danger decals: - 3038: 37.85091,30.216513 - - node: - cleanable: True - angle: -1.5707963267948966 rad - color: '#12061228' - id: footprint - decals: - 3037: 37.455074,30.584824 - - node: - cleanable: True - angle: -1.5707963267948966 rad - color: '#12061247' - id: footprint - decals: - 3034: 36.107853,30.160917 - 3035: 36.482853,30.550077 - 3036: 37.08702,30.258207 + 6457: 62.048172,49.059433 - node: cleanable: True angle: -1.5707963267948966 rad @@ -6358,7 +6754,6 @@ entities: color: '#4632327F' id: footprint decals: - 3459: 7.786436,27.447971 3460: 8.098936,28.059507 3461: 7.765602,28.810028 3462: 8.182269,29.303427 @@ -6411,7 +6806,6 @@ entities: 3359: 7.8475504,21.302177 3360: 8.173939,21.823374 3361: 7.7850504,22.497452 - 3362: 8.132273,23.053394 3478: 5.7794914,30.754562 3479: 6.140602,31.234062 3480: 5.79338,31.73441 @@ -6424,8 +6818,6 @@ entities: 3506: 8.198838,29.574697 3507: 7.7405043,30.297422 3508: 7.976616,30.756943 - 3509: 8.210273,27.260662 - 3510: 7.793606,26.725567 3542: 5.813014,32.55113 3543: 6.104681,33.051476 3544: 8.569844,32.77003 @@ -6450,7 +6842,6 @@ entities: 3356: 12.595434,24.818508 3357: 11.762101,25.263262 3368: 6.7781057,25.172922 - 3369: 7.125328,24.776814 3370: 7.7642174,25.20072 3385: 13.443252,22.368464 3386: 13.033529,22.01405 @@ -6475,7 +6866,6 @@ entities: 3517: 14.683398,20.187449 3518: 14.183398,20.656523 3519: 13.641731,20.27084 - 3520: 8.2431135,24.784645 3521: 8.8368635,25.201601 3522: 17.269722,20.829908 3523: 16.759306,20.339985 @@ -6541,10 +6931,15 @@ entities: decals: 509: 19.872448,-39.76645 - node: - color: '#FFFFFFFF' - id: ghost + color: '#DE3A3A96' + id: grasssnow03 decals: - 2468: 13,-11 + 6296: 58.069866,36.640766 + - node: + color: '#DE3A3A96' + id: grasssnow10 + decals: + 6297: 58.007366,36.859516 - node: color: '#D4D4D428' id: guy @@ -6637,6 +7032,57 @@ entities: - type: Transform pos: 12.501018,-34.058125 parent: 2 +- proto: ActionToggleInternals + entities: + - uid: 6295 + mapInit: true + paused: true + components: + - type: Transform + parent: 10308 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 10308 +- proto: ActionToggleJetpack + entities: + - uid: 6125 + mapInit: true + paused: true + components: + - type: Transform + parent: 10308 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 10308 +- proto: ActionToggleLight + entities: + - uid: 6399 + mapInit: true + paused: true + components: + - type: Transform + parent: 10814 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 10814 + - uid: 6731 + mapInit: true + paused: true + components: + - type: Transform + parent: 8472 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 8472 + - uid: 11094 + mapInit: true + paused: true + components: + - type: Transform + parent: 11032 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 11032 - proto: AirAlarm entities: - uid: 5 @@ -6656,12 +7102,6 @@ entities: - 14736 - 429 - 8203 - - uid: 129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-33.5 - parent: 2 - uid: 138 components: - type: Transform @@ -6672,19 +7112,6 @@ entities: devices: - 4027 - 4092 - - uid: 151 - components: - - type: Transform - pos: 56.5,16.5 - parent: 2 - - type: DeviceList - devices: - - 10418 - - 10417 - - 10416 - - 12554 - - 10358 - - 10403 - uid: 170 components: - type: Transform @@ -6695,16 +7122,6 @@ entities: devices: - 4460 - 4447 - - uid: 182 - components: - - type: Transform - pos: 67.5,17.5 - parent: 2 - - type: DeviceList - devices: - - 12564 - - 10347 - - 10400 - uid: 195 components: - type: Transform @@ -6768,26 +7185,16 @@ entities: - 5657 - uid: 1520 components: + - type: MetaData + name: Telecomms Air Monitor - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-15.5 parent: 2 - type: DeviceList devices: - - 1560 - - uid: 1647 - components: - - type: Transform - pos: 53.5,26.5 - parent: 2 - - type: DeviceList - devices: - - 10413 - - 10414 - - 10415 - - 10412 - - 12559 - - 10352 + - 6881 + - 5820 - uid: 2124 components: - type: Transform @@ -6804,23 +7211,37 @@ entities: - 241 - 14065 - 14064 - - uid: 2296 + - uid: 2132 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,20.5 + rot: 3.141592653589793 rad + pos: 82.5,28.5 + parent: 2 + - uid: 2602 + components: + - type: Transform + pos: 91.5,33.5 parent: 2 - type: DeviceList devices: - - 10416 - - 10417 - - 10418 - - 185 - - 10413 - - 10414 - - 10415 - - 10356 - - 10375 + - 14548 + - 14421 + - 14420 + - 14433 + - 14432 + - 14549 + - uid: 2614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,40.5 + parent: 2 + - uid: 3090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,42.5 + parent: 2 - uid: 5020 components: - type: Transform @@ -6858,22 +7279,40 @@ entities: parent: 2 - type: DeviceList devices: - - 10402 - - 10331 - 12989 - - uid: 5859 + - 5392 + - 10662 + - 12485 + - 13435 + - 10324 + - 3481 + - uid: 5242 components: + - type: MetaData + name: air alarm (Sci - RD Office) - type: Transform - pos: 34.5,32.5 + rot: 1.5707963267948966 rad + pos: 59.5,9.5 parent: 2 - type: DeviceList devices: - - 2691 - - 8575 - - 10452 - - 2263 - - 2265 - - 12529 + - 9454 + - 12563 + - 4280 + - uid: 5398 + components: + - type: MetaData + name: air alarm (Sec - East) + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,29.5 + parent: 2 + - type: DeviceList + devices: + - 15375 + - 15368 + - 5450 + - 15524 - uid: 6126 components: - type: Transform @@ -6969,17 +7408,27 @@ entities: - 7708 - uid: 8571 components: - - type: MetaData - name: Head of Security Room Air Alarm - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,21.5 + pos: 42.5,32.5 parent: 2 - type: DeviceList devices: - - 2330 - - 8595 - - 8596 + - 1231 + - 8706 + - 11683 + - 15368 + - 14941 + - 14939 + - 2334 + - 10527 + - 9589 + - 10613 + - 10612 + - 5395 + - 15554 + - 73 + - 248 + - 15375 - uid: 8922 components: - type: Transform @@ -6999,22 +7448,6 @@ entities: - 6804 - 10206 - 10205 - - uid: 9587 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,31.5 - parent: 2 - - type: DeviceList - devices: - - 9586 - - 9585 - - 9584 - - 9589 - - 9570 - - 9569 - - 9236 - - 13510 - uid: 9637 components: - type: Transform @@ -7024,6 +7457,18 @@ entities: devices: - 9636 - 9635 + - uid: 10135 + components: + - type: MetaData + name: air alarm (Armory) + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 5426 + - 13644 - uid: 10201 components: - type: Transform @@ -7086,16 +7531,97 @@ entities: devices: - 10249 - 10248 + - uid: 10409 + components: + - type: MetaData + name: air alarm (Sci - Anomaly) + - type: Transform + pos: 67.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 1622 + - 10080 + - 3 + - 15898 - uid: 10419 components: + - type: MetaData + name: air alarm (Artifact Chamber) - type: Transform rot: -1.5707963267948966 rad pos: 65.5,24.5 parent: 2 - type: DeviceList devices: - - 10411 - - 10355 + - 5651 + - 10671 + - 15476 + - 15492 + - 15535 + - uid: 10469 + components: + - type: MetaData + name: air alarm (Sci - South Hall) + - type: Transform + pos: 55.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 10418 + - 8460 + - 10416 + - 15492 + - 15898 + - 10340 + - 9442 + - 10662 + - 5478 + - 12485 + - uid: 10524 + components: + - type: MetaData + name: air alarm (Sec - Brig) + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 5395 + - 15368 + - 15554 + - 15490 + - 15491 + - 10598 + - 12553 + - 14330 + - 15552 + - 5390 + - 12516 + - 12518 + - uid: 10576 + components: + - type: MetaData + name: air alarm (Sci - North) + - type: Transform + pos: 58.5,21.5 + parent: 2 + - type: DeviceList + devices: + - 8601 + - 15492 + - 10058 + - 10418 + - 8460 + - 10416 + - 15898 + - 5651 + - 10671 + - 15476 + - 12087 + - 7267 + - 12485 - uid: 10653 components: - type: Transform @@ -7120,18 +7646,6 @@ entities: - 5774 - 5775 - 5776 - - uid: 10988 - components: - - type: Transform - pos: 37.5,32.5 - parent: 2 - - type: DeviceList - devices: - - 6774 - - 9456 - - 7760 - - 2301 - - 1812 - uid: 11165 components: - type: Transform @@ -7143,20 +7657,27 @@ entities: - 1103 - 1104 - 11250 - - 11249 - - 11248 - 11322 - 11323 - 11324 - 12516 - - 12085 - 8240 - - 8810 - 8242 - 8243 - - 9586 - - 9585 - - 9584 + - 8625 + - 11249 + - 11248 + - 12518 + - uid: 11289 + components: + - type: MetaData + name: air monitor (Artifact Chamber) + - type: Transform + pos: 61.5,26.5 + parent: 2 + - type: DeviceList + devices: + - 8980 - uid: 11508 components: - type: Transform @@ -7193,6 +7714,18 @@ entities: - 14994 - 14992 - 12161 + - uid: 11680 + components: + - type: Transform + pos: 82.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 14373 + - 14385 + - 14547 + - 14384 + - 14377 - uid: 11730 components: - type: Transform @@ -7310,10 +7843,10 @@ entities: - 3459 - 9359 - 9358 - - 9351 - 9353 - 9352 - 2690 + - 3224 - uid: 12480 components: - type: Transform @@ -7361,11 +7894,15 @@ entities: - 9364 - 9363 - 9362 - - 9351 - 9353 - 9352 - 5103 - 10365 + - 3224 + - 7267 + - 15492 + - 5478 + - 15898 - uid: 12488 components: - type: Transform @@ -7407,36 +7944,6 @@ entities: devices: - 11957 - 11956 - - uid: 12528 - components: - - type: Transform - pos: 37.5,20.5 - parent: 2 - - type: DeviceList - devices: - - 8629 - - 8630 - - uid: 12530 - components: - - type: MetaData - name: Armory Air Alarm - - type: Transform - pos: 41.5,29.5 - parent: 2 - - type: DeviceList - devices: - - 8607 - - 8610 - - 15477 - - uid: 12532 - components: - - type: Transform - pos: 42.5,21.5 - parent: 2 - - type: DeviceList - devices: - - 8684 - - 8685 - uid: 12537 components: - type: Transform @@ -7458,44 +7965,6 @@ entities: - 12540 - 9558 - 9557 - - uid: 12548 - components: - - type: Transform - pos: 54.5,21.5 - parent: 2 - - type: DeviceList - devices: - - 12550 - - 12087 - - 10366 - - 10351 - - uid: 12562 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,10.5 - parent: 2 - - type: DeviceList - devices: - - 12563 - - 10346 - - 10401 - - uid: 13512 - components: - - type: Transform - pos: 48.5,36.5 - parent: 2 - - type: DeviceList - devices: - - 8349 - - 13511 - - 4414 - - 13515 - - 13517 - - 3152 - - 13523 - - 13514 - - 13507 - uid: 13984 components: - type: Transform @@ -7544,27 +8013,31 @@ entities: - 7895 - 6854 - 7663 - - uid: 14247 + - uid: 14171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,31.5 + rot: 1.5707963267948966 rad + pos: 52.5,35.5 parent: 2 - type: DeviceList devices: - - 14547 - - 14385 - - 14373 - - 14377 - - 14384 - - 14420 - - 14421 - - 14433 - - 14432 - - 14549 - - 14552 - - 14551 - - 14553 + - 2145 + - 8485 + - 8498 + - uid: 14521 + components: + - type: MetaData + name: air alarm (Security - Warden) + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,27.5 + parent: 2 + - type: DeviceList + devices: + - 14871 + - 14850 + - 14852 + - 15465 - uid: 14615 components: - type: Transform @@ -7576,7 +8049,17 @@ entities: - 14614 - 14613 - 14616 - - 14622 + - uid: 14653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-18.5 + parent: 2 + - type: DeviceList + devices: + - 7269 + - 5866 + - 5821 - uid: 14670 components: - type: Transform @@ -7612,45 +8095,92 @@ entities: devices: - 15296 - 15298 - - uid: 15476 + - uid: 15466 components: - type: MetaData - name: Armory Entrance Air Alarm + name: air alarm (North Hall) - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,21.5 + rot: -1.5707963267948966 rad + pos: 28.5,23.5 parent: 2 - type: DeviceList devices: - - 12531 - - 8597 - - 8598 + - 2334 + - 10527 + - 15368 + - 9589 + - 8243 + - 8625 + - 8240 + - 8242 + - 9570 + - 9569 + - 12516 + - 1103 + - 1104 + - 11250 + - 11249 + - 11248 + - 11322 + - 11323 + - 11324 + - 10613 + - 10612 + - 5390 + - 15554 + - 12518 + - uid: 15520 + components: + - type: MetaData + name: air alarm (Sec - HOS Office) + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,35.5 + parent: 2 + - type: DeviceList + devices: + - 12770 + - uid: 15578 + components: + - type: MetaData + name: air alarm (Sci - Can Storage) + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,7.5 + parent: 2 + - type: DeviceList + devices: + - 15879 + - 15880 + - 15882 + - 10336 + - 2421 + - 10585 + - 5392 - proto: AirCanister entities: - uid: 2078 components: - type: Transform + anchored: True pos: 28.5,-23.5 parent: 2 + - type: Physics + bodyType: Static - uid: 4572 components: - type: Transform pos: 32.5,-26.5 parent: 2 - - uid: 5518 - components: - - type: Transform - pos: 66.5,44.5 - parent: 2 - uid: 5706 components: - type: Transform pos: 85.5,-1.5 parent: 2 - - uid: 8337 + - uid: 9003 components: - type: Transform - pos: 46.5,38.5 + pos: 56.5,9.5 parent: 2 - uid: 9900 components: @@ -7672,11 +8202,6 @@ entities: - type: Transform pos: 14.5,-9.5 parent: 2 - - uid: 13571 - components: - - type: Transform - pos: 46.5,37.5 - parent: 2 - uid: 14401 components: - type: Transform @@ -7689,6 +8214,12 @@ entities: - type: Transform pos: 11.5,11.5 parent: 2 + - uid: 613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,19.5 + parent: 2 - uid: 1079 components: - type: Transform @@ -7699,23 +8230,30 @@ entities: - type: Transform pos: 17.5,13.5 parent: 2 + - uid: 4124 + components: + - type: Transform + pos: 42.5,21.5 + parent: 2 - uid: 8842 components: - type: Transform pos: 104.5,-12.5 parent: 2 -- proto: AirlockArmoryGlassLocked +- proto: AirlockArmoryLocked entities: - - uid: 37 + - uid: 2217 components: - type: Transform - pos: 40.5,25.5 + rot: 1.5707963267948966 rad + pos: 41.5,25.5 parent: 2 - - uid: 150 +- proto: AirlockAssembly + entities: + - uid: 10659 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,25.5 + pos: 56.5,45.5 parent: 2 - proto: AirlockAtmosphericsGlassLocked entities: @@ -7748,36 +8286,76 @@ entities: parent: 2 - proto: AirlockBrigGlassLocked entities: - - uid: 232 + - uid: 257 components: - type: Transform - pos: 31.5,23.5 + pos: 28.5,28.5 parent: 2 - - uid: 896 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8414: + - - DoorStatus + - Close + 8412: + - - DoorStatus + - Close + - uid: 318 components: - type: Transform - pos: 31.5,24.5 + pos: 28.5,27.5 parent: 2 - - uid: 1152 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8412: + - - DoorStatus + - Close + 8414: + - - DoorStatus + - Close + - uid: 2117 components: - type: Transform - pos: 35.5,30.5 + pos: 46.5,31.5 parent: 2 - - uid: 1153 + - uid: 3082 components: - type: Transform - pos: 35.5,31.5 + pos: 46.5,30.5 parent: 2 - - uid: 2188 + - uid: 8412 components: - type: Transform - pos: 28.5,24.5 + pos: 31.5,27.5 parent: 2 - - uid: 2189 + - type: DeviceLinkSource + linkedPorts: + 318: + - - DoorStatus + - Close + 257: + - - DoorStatus + - Close + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 8414 components: - type: Transform - pos: 28.5,23.5 + pos: 31.5,28.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 318: + - - DoorStatus + - Close + 257: + - - DoorStatus + - Close + - type: DeviceLinkSink + invokeCounter: 1 - proto: AirlockBrigLocked entities: - uid: 32 @@ -7796,11 +8374,6 @@ entities: parent: 2 - proto: AirlockCaptainLocked entities: - - uid: 389 - components: - - type: Transform - pos: 35.5,40.5 - parent: 2 - uid: 2616 components: - type: Transform @@ -7863,16 +8436,16 @@ entities: parent: 2 - proto: AirlockCommandGlassLocked entities: + - uid: 348 + components: + - type: Transform + pos: 26.5,38.5 + parent: 2 - uid: 2756 components: - type: Transform pos: 28.5,38.5 parent: 2 - - uid: 2757 - components: - - type: Transform - pos: 26.5,38.5 - parent: 2 - uid: 2758 components: - type: Transform @@ -7901,13 +8474,6 @@ entities: - type: Transform pos: 16.5,36.5 parent: 2 - - uid: 8592 - components: - - type: MetaData - name: Camera Servers - - type: Transform - pos: 29.5,36.5 - parent: 2 - uid: 14087 components: - type: Transform @@ -7920,17 +8486,17 @@ entities: parent: 2 - proto: AirlockDetectiveGlassLocked entities: - - uid: 2004 + - uid: 628 components: - type: Transform - pos: 42.5,16.5 + pos: 53.5,34.5 parent: 2 - proto: AirlockDetectiveLocked entities: - - uid: 11279 + - uid: 3158 components: - type: Transform - pos: 41.5,21.5 + pos: 56.5,34.5 parent: 2 - proto: AirlockEngineering entities: @@ -8019,11 +8585,22 @@ entities: - type: Transform pos: 3.5,-9.5 parent: 2 + - uid: 413 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 - uid: 596 components: - type: Transform pos: 15.5,6.5 parent: 2 + - uid: 662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-14.5 + parent: 2 - uid: 815 components: - type: Transform @@ -8049,11 +8626,6 @@ entities: - type: Transform pos: 18.5,-39.5 parent: 2 - - uid: 3208 - components: - - type: Transform - pos: 35.5,33.5 - parent: 2 - uid: 3267 components: - type: Transform @@ -8064,20 +8636,22 @@ entities: - type: Transform pos: 69.5,43.5 parent: 2 - - uid: 3490 + - uid: 4012 components: - type: Transform - pos: 48.5,27.5 + rot: 3.141592653589793 rad + pos: 63.5,19.5 parent: 2 - uid: 5824 components: - type: Transform pos: 24.5,-17.5 parent: 2 - - uid: 6899 + - uid: 8500 components: - type: Transform - pos: 16.5,-12.5 + rot: -1.5707963267948966 rad + pos: 61.5,35.5 parent: 2 - uid: 11212 components: @@ -8094,18 +8668,22 @@ entities: - type: Transform pos: 52.5,-12.5 parent: 2 +- proto: AirlockEVALocked + entities: + - uid: 142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 2 + - uid: 203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 2 - proto: AirlockExternal entities: - - uid: 1889 - components: - - type: Transform - pos: 85.5,4.5 - parent: 2 - - uid: 3072 - components: - - type: Transform - pos: 74.5,-17.5 - parent: 2 - uid: 11758 components: - type: Transform @@ -8146,11 +8724,6 @@ entities: - type: Transform pos: 101.5,-20.5 parent: 2 - - uid: 15456 - components: - - type: Transform - pos: 40.5,43.5 - parent: 2 - proto: AirlockExternalAtmosphericsLocked entities: - uid: 4391 @@ -8179,35 +8752,6 @@ entities: 225: - - DoorStatus - DoorBolt - - uid: 226 - components: - - type: Transform - pos: 17.5,-17.5 - parent: 2 - - uid: 1902 - components: - - type: Transform - pos: 74.5,45.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 2128: - - - DoorStatus - - DoorBolt - - uid: 2128 - components: - - type: Transform - pos: 72.5,45.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 1902: - - - DoorStatus - - DoorBolt - uid: 4392 components: - type: Transform @@ -8252,30 +8796,89 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-1.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 509: + - - DoorStatus + - DoorBolt + - uid: 418 + components: + - type: Transform + pos: 59.5,26.5 + parent: 2 + - type: AccessReader + access: + - - Research + - - ResearchDirector + - uid: 427 + components: + - type: Transform + pos: 61.5,27.5 + parent: 2 + - type: AccessReader + access: + - - Research + - - ResearchDirector + - uid: 565 + components: + - type: Transform + pos: 74.5,-17.5 + parent: 2 + - uid: 3137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,45.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 3321 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-9.5 parent: 2 - - uid: 4873 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,49.5 - parent: 2 - - uid: 5298 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,49.5 - parent: 2 - uid: 7610 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,0.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 4518: + - - DoorStatus + - DoorBolt + - uid: 9283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,52.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9303: + - - DoorStatus + - DoorBolt + - uid: 10771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,52.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11675: + - - DoorStatus + - DoorBolt - uid: 13291 components: - type: Transform @@ -8293,6 +8896,13 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-20.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13305: + - - DoorStatus + - DoorBolt - uid: 13300 components: - type: Transform @@ -8305,6 +8915,20 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-22.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13294: + - - DoorStatus + - DoorBolt + - uid: 14764 + components: + - type: Transform + pos: 86.5,4.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - proto: AirlockExternalGlassAtmosphericsLocked entities: - uid: 1078 @@ -8319,12 +8943,26 @@ entities: - type: Transform pos: 5.5,24.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 607: + - - DoorStatus + - DoorBolt - uid: 428 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,26.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 451: + - - DoorStatus + - DoorBolt - uid: 974 components: - type: Transform @@ -8364,17 +9002,35 @@ entities: 173: - - DoorStatus - DoorBolt - - uid: 662 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-15.5 - parent: 2 - uid: 1216 components: - type: Transform pos: 33.5,-39.5 parent: 2 + - uid: 14522 + components: + - type: Transform + pos: 72.5,45.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 14523: + - - DoorStatus + - DoorBolt + - uid: 14523 + components: + - type: Transform + pos: 74.5,45.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 14522: + - - DoorStatus + - DoorBolt - proto: AirlockExternalGlassLocked entities: - uid: 941 @@ -8480,61 +9136,149 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleEscape entities: - - uid: 8327 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,4.5 - parent: 2 - - uid: 15442 - components: - - type: Transform - pos: 74.5,-19.5 - parent: 2 - - uid: 15457 + - uid: 389 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,45.5 + pos: 66.5,48.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 4920 + components: + - type: Transform + pos: 74.5,-20.5 + parent: 2 + - uid: 9708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,4.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - proto: AirlockExternalGlassShuttleLocked entities: + - uid: 451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 10982: + - - DoorStatus + - InputA + - - DockStatus + - InputB + - type: DeviceLinkSink + invokeCounter: 1 - uid: 509 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-1.5 parent: 2 - - uid: 4506 + - type: DeviceLinkSource + linkedPorts: + 8663: + - - DoorStatus + - InputA + - - DockStatus + - InputB + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 607 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,51.5 + rot: -1.5707963267948966 rad + pos: 3.5,24.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 553: + - - DoorStatus + - InputA + - - DockStatus + - InputB + - type: DeviceLinkSink + invokeCounter: 1 - uid: 4518 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,0.5 parent: 2 - - uid: 4914 + - type: DeviceLinkSource + linkedPorts: + 6639: + - - DoorStatus + - InputA + - - DockStatus + - InputB + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 9303 components: - type: Transform rot: 3.141592653589793 rad - pos: 57.5,51.5 + pos: 57.5,54.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13328: + - - DoorStatus + - InputA + - - DockStatus + - InputB + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 11675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,54.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13329: + - - DoorStatus + - InputA + - - DockStatus + - InputB + - type: DeviceLinkSink + invokeCounter: 1 - uid: 13294 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-22.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13297: + - - DoorStatus + - InputA + - - DockStatus + - InputB + - type: DeviceLinkSink + invokeCounter: 1 - uid: 13305 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-20.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9402: + - - DoorStatus + - InputA + - - DockStatus + - InputB + - type: DeviceLinkSink + invokeCounter: 1 - proto: AirlockExternalLocked entities: - uid: 1369 @@ -8585,18 +9329,6 @@ entities: 4556: - - DoorStatus - DoorBolt - - uid: 7759 - components: - - type: Transform - pos: 64.5,45.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 13556: - - - DoorStatus - - DoorBolt - uid: 8728 components: - type: Transform @@ -8621,18 +9353,6 @@ entities: 8728: - - DoorStatus - DoorBolt - - uid: 13556 - components: - - type: Transform - pos: 64.5,43.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 7759: - - - DoorStatus - - DoorBolt - uid: 13780 components: - type: Transform @@ -8669,16 +9389,6 @@ entities: - type: Transform pos: 9.5,12.5 parent: 2 - - uid: 6066 - components: - - type: Transform - pos: 59.5,35.5 - parent: 2 - - uid: 9927 - components: - - type: Transform - pos: 59.5,37.5 - parent: 2 - proto: AirlockFreezerKitchenHydroLocked entities: - uid: 559 @@ -8907,32 +9617,6 @@ entities: - type: Transform pos: -21.5,-1.5 parent: 2 -- proto: AirlockGlassShuttle - entities: - - uid: 7965 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,24.5 - parent: 2 - - uid: 8030 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,26.5 - parent: 2 -- proto: AirlockHeadOfPersonnelGlassLocked - entities: - - uid: 203 - components: - - type: Transform - pos: 9.5,-2.5 - parent: 2 - - uid: 205 - components: - - type: Transform - pos: 8.5,-2.5 - parent: 2 - proto: AirlockHeadOfPersonnelLocked entities: - uid: 222 @@ -8942,10 +9626,17 @@ entities: parent: 2 - proto: AirlockHeadOfSecurityLocked entities: - - uid: 2375 + - uid: 2338 components: - type: Transform - pos: 42.5,23.5 + rot: -1.5707963267948966 rad + pos: 48.5,37.5 + parent: 2 + - uid: 3394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,41.5 parent: 2 - proto: AirlockHydroGlassLocked entities: @@ -8975,11 +9666,6 @@ entities: parent: 2 - proto: AirlockMaint entities: - - uid: 178 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 2 - uid: 295 components: - type: Transform @@ -8995,11 +9681,6 @@ entities: - type: Transform pos: 22.5,-1.5 parent: 2 - - uid: 6639 - components: - - type: Transform - pos: 66.5,30.5 - parent: 2 - uid: 11785 components: - type: Transform @@ -9045,6 +9726,14 @@ entities: - type: Transform pos: 50.5,-9.5 parent: 2 +- proto: AirlockMaintCommandLocked + entities: + - uid: 205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 2 - proto: AirlockMaintEngiLocked entities: - uid: 810 @@ -9063,11 +9752,6 @@ entities: parent: 2 - proto: AirlockMaintHOPLocked entities: - - uid: 221 - components: - - type: Transform - pos: 9.5,-10.5 - parent: 2 - uid: 577 components: - type: MetaData @@ -9108,6 +9792,12 @@ entities: - type: Transform pos: 2.5,-15.5 parent: 2 + - uid: 653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,-1.5 + parent: 2 - uid: 1110 components: - type: Transform @@ -9123,11 +9813,6 @@ entities: - type: Transform pos: 26.5,11.5 parent: 2 - - uid: 1705 - components: - - type: Transform - pos: 47.5,20.5 - parent: 2 - uid: 1745 components: - type: Transform @@ -9143,11 +9828,31 @@ entities: - type: Transform pos: 55.5,-16.5 parent: 2 + - uid: 2067 + components: + - type: Transform + pos: 46.5,20.5 + parent: 2 - uid: 2168 components: - type: Transform pos: 19.5,18.5 parent: 2 + - uid: 2298 + components: + - type: Transform + pos: 60.5,44.5 + parent: 2 + - uid: 2370 + components: + - type: Transform + pos: 65.5,39.5 + parent: 2 + - uid: 2450 + components: + - type: Transform + pos: 66.5,30.5 + parent: 2 - uid: 2540 components: - type: Transform @@ -9178,51 +9883,11 @@ entities: - type: Transform pos: 68.5,-16.5 parent: 2 - - uid: 3386 - components: - - type: Transform - pos: 68.5,39.5 - parent: 2 - - uid: 3412 - components: - - type: Transform - pos: 68.5,28.5 - parent: 2 - - uid: 3413 - components: - - type: Transform - pos: 68.5,32.5 - parent: 2 - - uid: 4729 - components: - - type: Transform - pos: 28.5,32.5 - parent: 2 - - uid: 5444 - components: - - type: Transform - pos: 68.5,36.5 - parent: 2 - - uid: 5469 - components: - - type: Transform - pos: 67.5,45.5 - parent: 2 - uid: 5519 components: - type: Transform pos: 88.5,-10.5 parent: 2 - - uid: 5520 - components: - - type: Transform - pos: 87.5,-1.5 - parent: 2 - - uid: 5650 - components: - - type: Transform - pos: 45.5,46.5 - parent: 2 - uid: 5716 components: - type: Transform @@ -9258,6 +9923,18 @@ entities: - type: Transform pos: 13.5,15.5 parent: 2 + - uid: 7822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,46.5 + parent: 2 + - uid: 9444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,39.5 + parent: 2 - uid: 9609 components: - type: Transform @@ -9268,6 +9945,12 @@ entities: - type: Transform pos: 1.5,-18.5 parent: 2 + - uid: 13587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,34.5 + parent: 2 - uid: 13769 components: - type: Transform @@ -9278,6 +9961,11 @@ entities: - type: Transform pos: -21.5,-22.5 parent: 2 + - uid: 15629 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 - proto: AirlockMaintMedLocked entities: - uid: 5120 @@ -9317,11 +10005,6 @@ entities: - type: Transform pos: 64.5,17.5 parent: 2 - - uid: 5398 - components: - - type: Transform - pos: 53.5,7.5 - parent: 2 - proto: AirlockMaintRnDMedLocked entities: - uid: 1470 @@ -9329,6 +10012,16 @@ entities: - type: Transform pos: 57.5,7.5 parent: 2 + - uid: 8189 + components: + - type: Transform + pos: 51.5,7.5 + parent: 2 + - uid: 13092 + components: + - type: Transform + pos: 69.5,12.5 + parent: 2 - uid: 15364 components: - type: Transform @@ -9336,21 +10029,22 @@ entities: parent: 2 - proto: AirlockMaintSecLocked entities: - - uid: 365 + - uid: 2460 components: - type: Transform - pos: 39.5,37.5 - parent: 2 - - uid: 3206 - components: - - type: Transform - pos: 33.5,32.5 + pos: 56.5,30.5 parent: 2 - uid: 7737 components: - type: Transform pos: 0.5,-4.5 parent: 2 + - uid: 14626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,29.5 + parent: 2 - proto: AirlockMaintTheatreLocked entities: - uid: 1160 @@ -9466,10 +10160,33 @@ entities: parent: 2 - proto: AirlockScienceGlassLocked entities: - - uid: 5244 + - uid: 1041 components: - type: Transform - pos: 54.5,12.5 + pos: 58.5,24.5 + parent: 2 + - uid: 1252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,15.5 + parent: 2 + - uid: 3035 + components: + - type: Transform + pos: 52.5,14.5 + parent: 2 + - uid: 11477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,23.5 + parent: 2 + - uid: 12564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,10.5 parent: 2 - proto: AirlockScienceLocked entities: @@ -9478,75 +10195,51 @@ entities: - type: Transform pos: 43.5,10.5 parent: 2 - - uid: 5249 + - uid: 9258 components: - type: Transform - pos: 65.5,15.5 - parent: 2 - - uid: 10448 - components: - - type: Transform - pos: 52.5,14.5 + pos: 68.5,27.5 parent: 2 - uid: 10449 components: - type: Transform pos: 48.5,14.5 parent: 2 + - uid: 12168 + components: + - type: Transform + pos: 69.5,29.5 + parent: 2 - proto: AirlockSecurityGlassLocked entities: - - uid: 613 + - uid: 2284 components: - type: Transform - pos: 52.5,34.5 - parent: 2 - - uid: 2402 - components: - - type: Transform - pos: 37.5,22.5 - parent: 2 - - uid: 4132 - components: - - type: Transform - pos: 52.5,35.5 + rot: 3.141592653589793 rad + pos: 38.5,29.5 parent: 2 - proto: AirlockSecurityLocked entities: - - uid: 1660 + - uid: 2337 components: - type: Transform - pos: 47.5,34.5 - parent: 2 - - uid: 1831 - components: - - type: Transform - pos: 44.5,30.5 - parent: 2 - - type: Door - secondsUntilStateChange: -4092.861 - state: Opening - - type: DeviceLinkSource - lastSignals: - DoorStatus: True - - uid: 3259 - components: - - type: Transform - pos: 47.5,35.5 + rot: -1.5707963267948966 rad + pos: 33.5,26.5 parent: 2 - uid: 7736 components: - type: Transform pos: -0.5,-2.5 parent: 2 - - uid: 8430 + - uid: 8550 components: - type: Transform pos: 40.5,32.5 parent: 2 - - uid: 12450 + - uid: 8699 components: - type: Transform - pos: 44.5,31.5 + pos: 55.5,32.5 parent: 2 - proto: AirlockServiceLocked entities: @@ -9590,11 +10283,6 @@ entities: deviceLists: - 7013 - 14754 - - uid: 185 - components: - - type: Transform - pos: 59.5,18.5 - parent: 2 - uid: 202 components: - type: Transform @@ -9612,14 +10300,14 @@ entities: deviceLists: - 14737 - 5 - - uid: 1812 + - uid: 1622 components: - type: Transform - pos: 39.5,35.5 + pos: 67.5,13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 10988 + - 10409 - uid: 2125 components: - type: Transform @@ -9628,27 +10316,27 @@ entities: - type: DeviceNetwork deviceLists: - 14067 - - uid: 2265 + - uid: 2145 components: - type: Transform - pos: 30.5,29.5 + pos: 56.5,36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 5859 - - uid: 2330 - components: - - type: Transform - pos: 44.5,22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 8571 + - 14171 - uid: 4554 components: - type: Transform pos: 26.5,-27.5 parent: 2 + - uid: 5820 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1520 - uid: 6636 components: - type: Transform @@ -9669,6 +10357,14 @@ entities: - type: Transform pos: 44.5,-6.5 parent: 2 + - uid: 7269 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14653 - uid: 8008 components: - type: Transform @@ -9679,6 +10375,16 @@ entities: - type: Transform pos: 21.5,0.5 parent: 2 + - uid: 8555 + components: + - type: Transform + pos: 58.5,38.5 + parent: 2 + - uid: 8615 + components: + - type: Transform + pos: 47.5,41.5 + parent: 2 - uid: 8659 components: - type: Transform @@ -9692,24 +10398,46 @@ entities: - type: Transform pos: 26.5,-5.5 parent: 2 - - uid: 9456 + - uid: 8980 components: - type: Transform - pos: 40.5,30.5 + pos: 63.5,29.5 parent: 2 - type: DeviceNetwork deviceLists: - - 10988 + - 11289 + - uid: 9409 + components: + - type: Transform + pos: 35.5,42.5 + parent: 2 - uid: 9589 components: - type: Transform pos: 26.5,32.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 + - 7720 + - 8571 + - 15172 - uid: 10216 components: - type: Transform pos: 22.5,-12.5 parent: 2 + - uid: 10662 + components: + - type: Transform + pos: 50.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5101 + - 8570 + - 10469 + - 2296 - uid: 10950 components: - type: Transform @@ -9720,6 +10448,15 @@ entities: - type: Transform pos: 47.5,-0.5 parent: 2 + - uid: 11683 + components: + - type: Transform + pos: 35.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8571 + - 15172 - uid: 11746 components: - type: Transform @@ -9778,6 +10515,14 @@ entities: - type: Transform pos: 43.5,14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 10078 + - 10576 + - 2296 + - 5101 + - 10469 + - 8570 - uid: 12490 components: - type: Transform @@ -9803,32 +10548,29 @@ entities: - type: Transform pos: 26.5,19.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7720 + - 15466 + - 10524 + - 12517 - uid: 12518 components: - type: Transform pos: 24.5,25.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2045 + - 10524 + - 7720 + - 15466 + - 11165 - uid: 12519 components: - type: Transform pos: 18.5,23.5 parent: 2 - - uid: 12529 - components: - - type: Transform - pos: 33.5,21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 5859 - - uid: 12531 - components: - - type: Transform - pos: 41.5,23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15476 - uid: 12538 components: - type: Transform @@ -9847,38 +10589,25 @@ entities: - uid: 12544 components: - type: Transform - pos: 37.5,43.5 - parent: 2 - - uid: 12550 - components: - - type: Transform - pos: 52.5,18.5 - parent: 2 - - uid: 12553 - components: - - type: Transform - pos: 49.5,9.5 - parent: 2 - - uid: 12554 - components: - - type: Transform - pos: 62.5,14.5 - parent: 2 - - uid: 12559 - components: - - type: Transform - pos: 58.5,24.5 + rot: -1.5707963267948966 rad + pos: 43.5,42.5 parent: 2 - uid: 12563 components: - type: Transform pos: 61.5,10.5 parent: 2 - - uid: 12564 + - type: DeviceNetwork + deviceLists: + - 5242 + - uid: 12770 components: - type: Transform - pos: 67.5,13.5 + pos: 49.5,41.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 15520 - uid: 12833 components: - type: Transform @@ -9887,22 +10616,14 @@ entities: - type: DeviceNetwork deviceLists: - 7962 - - uid: 13511 + - uid: 13644 components: - type: Transform - pos: 48.5,35.5 + pos: 41.5,35.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13512 - - uid: 13515 - components: - - type: Transform - pos: 56.5,35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13512 + - 10135 - uid: 14061 components: - type: Transform @@ -9957,6 +10678,15 @@ entities: deviceLists: - 7662 - 14067 + - uid: 14330 + components: + - type: Transform + pos: 43.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 + - 2045 - uid: 14547 components: - type: Transform @@ -9964,12 +10694,15 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 11680 - uid: 14548 components: - type: Transform pos: 90.5,30.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2602 - uid: 14549 components: - type: Transform @@ -9977,7 +10710,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 2602 - uid: 14614 components: - type: Transform @@ -9994,6 +10727,19 @@ entities: - type: DeviceNetwork deviceLists: - 14670 + - uid: 14871 + components: + - type: Transform + pos: 38.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14521 + - uid: 14940 + components: + - type: Transform + pos: 44.5,38.5 + parent: 2 - uid: 15298 components: - type: Transform @@ -10007,14 +10753,112 @@ entities: - type: Transform pos: 35.5,-16.5 parent: 2 - - uid: 15477 + - uid: 15368 components: - type: Transform - pos: 41.5,27.5 + pos: 38.5,31.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12530 + - 2248 + - 5398 + - 15466 + - 7720 + - 10524 + - 2045 + - 8571 + - 15172 + - uid: 15375 + components: + - type: Transform + pos: 50.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2248 + - 5398 + - 8571 + - 15172 + - uid: 15465 + components: + - type: Transform + pos: 43.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14521 + - uid: 15476 + components: + - type: Transform + pos: 61.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15585 + - 10419 + - 10078 + - 10576 + - uid: 15492 + components: + - type: Transform + pos: 55.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10576 + - 10078 + - 10469 + - 8570 + - 15585 + - 10419 + - 12487 + - 12486 + - uid: 15552 + components: + - type: Transform + pos: 42.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 + - 2045 + - uid: 15554 + components: + - type: Transform + pos: 35.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 + - 15466 + - 7720 + - 2045 + - 8571 + - 15172 + - uid: 15882 + components: + - type: Transform + pos: 57.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15578 + - 15897 + - uid: 15898 + components: + - type: Transform + pos: 59.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8570 + - 10469 + - 15897 + - 12487 + - 12486 + - 10576 + - 10078 + - 10409 - proto: AltarSpawner entities: - uid: 2526 @@ -10034,32 +10878,35 @@ entities: - uid: 15328 components: - type: Transform - pos: 28.354391,-41.23593 - parent: 2 + parent: 5235 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 15329 components: - type: Transform - pos: 28.416891,-41.64218 - parent: 2 + parent: 5235 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 15330 components: - type: Transform - pos: 28.698141,-41.39218 - parent: 2 + parent: 5235 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: AnalysisComputerCircuitboard entities: - uid: 13492 components: - type: Transform - pos: 63.442497,9.333562 - parent: 2 + parent: 14590 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: AnomalyScanner entities: - - uid: 1838 - components: - - type: Transform - pos: 71.66338,14.074104 - parent: 2 - uid: 5381 components: - type: Transform @@ -10072,13 +10919,20 @@ entities: parent: 2 - proto: APCBasic entities: - - uid: 257 + - uid: 43 components: - type: MetaData - name: Head of Security Room APC + name: APC (Main Hall West) - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,21.5 + pos: 9.5,11.5 + parent: 2 + - uid: 64 + components: + - type: MetaData + name: APC (Sci - RD Office) + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,10.5 parent: 2 - uid: 340 components: @@ -10104,14 +10958,6 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-6.5 parent: 2 - - uid: 466 - components: - - type: MetaData - name: Bathroom APC - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,11.5 - parent: 2 - uid: 598 components: - type: MetaData @@ -10144,14 +10990,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-35.5 parent: 2 - - uid: 1111 - components: - - type: MetaData - name: Laundry APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,5.5 - parent: 2 - uid: 1177 components: - type: MetaData @@ -10186,14 +11024,6 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,-15.5 parent: 2 - - uid: 1748 - components: - - type: MetaData - name: Technical Storage APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-15.5 - parent: 2 - uid: 2378 components: - type: MetaData @@ -10202,20 +11032,26 @@ entities: rot: 1.5707963267948966 rad pos: 43.5,3.5 parent: 2 - - uid: 2451 + - uid: 2464 components: - type: MetaData - name: Bridge Hallway APC + name: APC (Armory) - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,33.5 + pos: 44.5,37.5 parent: 2 - - uid: 2481 + - uid: 2603 components: - type: MetaData - name: Courtroom APC + name: APC (Maints NW) - type: Transform - pos: 20.5,34.5 + pos: 9.5,17.5 + parent: 2 + - uid: 2612 + components: + - type: MetaData + name: APC (Sec - HOS) + - type: Transform + pos: 47.5,43.5 parent: 2 - uid: 2721 components: @@ -10225,28 +11061,6 @@ entities: rot: -1.5707963267948966 rad pos: 68.5,-15.5 parent: 2 - - uid: 2902 - components: - - type: MetaData - name: Solar North East APC - - type: Transform - pos: 69.5,47.5 - parent: 2 - - uid: 3221 - components: - - type: MetaData - name: Perma APC - - type: Transform - pos: 51.5,36.5 - parent: 2 - - uid: 3250 - components: - - type: MetaData - name: Detective APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,20.5 - parent: 2 - uid: 3333 components: - type: MetaData @@ -10263,22 +11077,35 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-8.5 parent: 2 - - uid: 4116 + - uid: 3687 components: - type: MetaData - name: Maint North West APC + name: APC (Sci - R&D) - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,16.5 + pos: 52.5,22.5 parent: 2 - uid: 4186 components: - type: MetaData - name: Theatre APC + name: APC (Central - Theatre) - type: Transform rot: -1.5707963267948966 rad pos: 28.5,7.5 parent: 2 + - uid: 4351 + components: + - type: MetaData + name: APC (Solars NE) + - type: Transform + pos: 70.5,47.5 + parent: 2 + - uid: 4367 + components: + - type: MetaData + name: APC (Maints NE) + - type: Transform + pos: 61.5,37.5 + parent: 2 - uid: 4647 components: - type: MetaData @@ -10378,37 +11205,6 @@ entities: - type: Transform pos: 74.5,9.5 parent: 2 - - uid: 5201 - components: - - type: MetaData - name: RD Office APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,11.5 - parent: 2 - - uid: 5236 - components: - - type: MetaData - name: Robotics APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,11.5 - parent: 2 - - uid: 5269 - components: - - type: MetaData - name: RND APC - - type: Transform - pos: 53.5,21.5 - parent: 2 - - uid: 5270 - components: - - type: MetaData - name: Sci Server Room APC - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,22.5 - parent: 2 - uid: 5271 components: - type: MetaData @@ -10426,6 +11222,13 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 5 supplyRampPosition: 2.4463015 + - uid: 5333 + components: + - type: MetaData + name: APC (Sci - Server) + - type: Transform + pos: 51.5,25.5 + parent: 2 - uid: 5427 components: - type: MetaData @@ -10434,14 +11237,6 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-4.5 parent: 2 - - uid: 5648 - components: - - type: MetaData - name: Maint Dorms APC - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,41.5 - parent: 2 - uid: 5689 components: - type: MetaData @@ -10480,14 +11275,6 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,-19.5 parent: 2 - - uid: 6095 - components: - - type: MetaData - name: Maint Central APC - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,9.5 - parent: 2 - uid: 6099 components: - type: MetaData @@ -10496,13 +11283,6 @@ entities: rot: 3.141592653589793 rad pos: 43.5,12.5 parent: 2 - - uid: 6172 - components: - - type: MetaData - name: Maint North East APC - - type: Transform - pos: 66.5,45.5 - parent: 2 - uid: 6342 components: - type: MetaData @@ -10535,14 +11315,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-11.5 parent: 2 - - uid: 6697 - components: - - type: MetaData - name: Library APC - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,2.5 - parent: 2 - uid: 6717 components: - type: MetaData @@ -10551,14 +11323,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,3.5 parent: 2 - - uid: 6954 - components: - - type: MetaData - name: Main Hall West APC - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,8.5 - parent: 2 - uid: 6960 components: - type: MetaData @@ -10566,13 +11330,41 @@ entities: - type: Transform pos: 22.5,-22.5 parent: 2 - - uid: 8061 + - uid: 6965 components: - type: MetaData - name: Camera Server APC + name: APC (Dorms) - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,36.5 + rot: 3.141592653589793 rad + pos: 21.5,11.5 + parent: 2 + - uid: 6968 + components: + - type: MetaData + name: APC (Maints Central) + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 6990 + components: + - type: MetaData + name: APC (Sci - Robotics) + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,7.5 + parent: 2 + - uid: 8043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,11.5 + parent: 2 + - uid: 8062 + components: + - type: MetaData + name: Inner AI Core APC + - type: Transform + pos: 94.5,34.5 parent: 2 - uid: 8228 components: @@ -10617,13 +11409,13 @@ entities: rot: -1.5707963267948966 rad pos: 63.5,-7.5 parent: 2 - - uid: 10545 + - uid: 10319 components: - type: MetaData - name: Science APC + name: APC (Maints North) - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,18.5 + rot: 3.141592653589793 rad + pos: 42.5,44.5 parent: 2 - uid: 10924 components: @@ -10633,29 +11425,21 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,6.5 parent: 2 - - uid: 10970 - components: - - type: MetaData - name: Interrogation APC - - type: Transform - pos: 42.5,32.5 - parent: 2 - - uid: 12151 - components: - - type: MetaData - name: XenoArch APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,23.5 - parent: 2 - uid: 12522 components: - type: MetaData - name: Grav Gen APC + name: APC (Bridge - Gravity Generator) - type: Transform rot: 1.5707963267948966 rad pos: 12.5,36.5 parent: 2 + - uid: 12751 + components: + - type: MetaData + name: APC (Sec - Warden) + - type: Transform + pos: 42.5,26.5 + parent: 2 - uid: 12934 components: - type: MetaData @@ -10671,12 +11455,36 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-3.5 parent: 2 - - uid: 13497 + - uid: 13117 components: - type: MetaData - name: North Maint APC + name: APC (Sec - East) - type: Transform - pos: 47.5,29.5 + rot: 3.141592653589793 rad + pos: 52.5,29.5 + parent: 2 + - uid: 13173 + components: + - type: MetaData + name: Telecomms APC + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-20.5 + parent: 2 + - uid: 13549 + components: + - type: MetaData + name: APC (Sec - Hallway West) + - type: Transform + pos: 38.5,32.5 + parent: 2 + - uid: 14084 + components: + - type: MetaData + name: APC (North Hall) + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,36.5 parent: 2 - uid: 14150 components: @@ -10692,13 +11500,13 @@ entities: - type: Transform pos: 80.5,32.5 parent: 2 - - uid: 14434 + - uid: 14569 components: - type: MetaData - name: AI Core Inner APC + name: APC (Sec - Detective) - type: Transform - rot: 3.141592653589793 rad - pos: 88.5,28.5 + rot: 1.5707963267948966 rad + pos: 52.5,36.5 parent: 2 - uid: 14691 components: @@ -10708,6 +11516,30 @@ entities: rot: 3.141592653589793 rad pos: 6.5,17.5 parent: 2 + - uid: 15562 + components: + - type: MetaData + name: APC (Sec - Brig) + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,22.5 + parent: 2 + - uid: 15579 + components: + - type: MetaData + name: APC (Sci - XenoArch) + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,22.5 + parent: 2 + - uid: 15806 + components: + - type: MetaData + name: APC (Tech Vault Secure) + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-14.5 + parent: 2 - proto: APCElectronics entities: - uid: 6656 @@ -10717,14 +11549,6 @@ entities: parent: 2 - proto: APCHighCapacity entities: - - uid: 43 - components: - - type: MetaData - name: Dorms APC - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,11.5 - parent: 2 - uid: 775 components: - type: MetaData @@ -10746,23 +11570,16 @@ entities: - type: Transform pos: 29.5,-37.5 parent: 2 - - uid: 6914 + - uid: 15878 components: - type: MetaData - name: Chapel APC + name: APC (Central - Chapel) - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,7.5 + rot: -1.5707963267948966 rad + pos: 33.5,8.5 parent: 2 - proto: APCHyperCapacity entities: - - uid: 301 - components: - - type: MetaData - name: Telecomms APC - - type: Transform - pos: 19.5,-13.5 - parent: 2 - uid: 8254 components: - type: MetaData @@ -10771,13 +11588,13 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,33.5 parent: 2 - - uid: 13690 + - uid: 15818 components: - type: MetaData - name: Cargo Bay APC + name: APC (Supply - Cargo Bay) - type: Transform rot: 3.141592653589793 rad - pos: 13.5,19.5 + pos: 10.5,20.5 parent: 2 - proto: APCSuperCapacity entities: @@ -10788,13 +11605,6 @@ entities: - type: Transform pos: 36.5,-21.5 parent: 2 - - uid: 14639 - components: - - type: MetaData - name: Security APC - - type: Transform - pos: 35.5,29.5 - parent: 2 - proto: ArrivalsShuttleTimer entities: - uid: 13576 @@ -10812,14 +11622,16 @@ entities: - uid: 15428 components: - type: Transform - pos: 63.531895,9.595779 - parent: 2 + parent: 14590 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ArtistCircuitBoard entities: - uid: 14277 components: - type: Transform - pos: 84.42593,28.765135 + pos: 84.53071,32.620792 parent: 2 - proto: Ashtray entities: @@ -10838,7 +11650,7 @@ entities: - uid: 14276 components: - type: Transform - pos: 85.47454,28.607038 + pos: 86.51151,28.70847 parent: 2 - proto: AtmosDeviceFanDirectional entities: @@ -10854,18 +11666,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,2.5 parent: 2 - - uid: 258 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,26.5 - parent: 2 - - uid: 320 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,24.5 - parent: 2 - uid: 332 components: - type: Transform @@ -10884,24 +11684,12 @@ entities: rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 2 - - uid: 2450 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-22.5 - parent: 2 - uid: 2609 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-16.5 parent: 2 - - uid: 2628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-1.5 - parent: 2 - uid: 2666 components: - type: Transform @@ -10914,65 +11702,23 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-9.5 parent: 2 - - uid: 4920 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,0.5 - parent: 2 - uid: 5262 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-10.5 parent: 2 - - uid: 5754 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-20.5 - parent: 2 - uid: 6591 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-10.5 parent: 2 - - uid: 6876 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,4.5 - parent: 2 - - uid: 10982 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,27.5 - parent: 2 - - uid: 14979 + - uid: 14551 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,51.5 - parent: 2 - - uid: 14980 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,51.5 - parent: 2 - - uid: 14989 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,23.5 - parent: 2 - - uid: 15466 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,45.5 + pos: 66.5,48.5 parent: 2 - proto: AtmosFixBlockerMarker entities: @@ -11006,6 +11752,16 @@ entities: - type: Transform pos: 50.5,-33.5 parent: 2 + - uid: 2037 + components: + - type: Transform + pos: 4.5,37.5 + parent: 2 + - uid: 2041 + components: + - type: Transform + pos: 4.5,39.5 + parent: 2 - uid: 4157 components: - type: Transform @@ -11021,6 +11777,41 @@ entities: - type: Transform pos: 50.5,-27.5 parent: 2 + - uid: 8067 + components: + - type: Transform + pos: 4.5,38.5 + parent: 2 + - uid: 13731 + components: + - type: Transform + pos: 4.5,40.5 + parent: 2 + - uid: 14660 + components: + - type: Transform + pos: 5.5,40.5 + parent: 2 + - uid: 14738 + components: + - type: Transform + pos: 5.5,39.5 + parent: 2 + - uid: 14743 + components: + - type: Transform + pos: 6.5,40.5 + parent: 2 + - uid: 14765 + components: + - type: Transform + pos: 6.5,39.5 + parent: 2 + - uid: 14989 + components: + - type: Transform + pos: 6.5,38.5 + parent: 2 - uid: 15188 components: - type: Transform @@ -11166,6 +11957,31 @@ entities: - type: Transform pos: 49.5,-48.5 parent: 2 + - uid: 15792 + components: + - type: Transform + pos: 5.5,38.5 + parent: 2 + - uid: 15793 + components: + - type: Transform + pos: 5.5,37.5 + parent: 2 + - uid: 15794 + components: + - type: Transform + pos: 6.5,37.5 + parent: 2 + - uid: 15795 + components: + - type: Transform + pos: 7.5,37.5 + parent: 2 + - uid: 15796 + components: + - type: Transform + pos: 7.5,38.5 + parent: 2 - proto: AtmosFixFreezerMarker entities: - uid: 6535 @@ -11281,16 +12097,22 @@ entities: parent: 2 - proto: Autolathe entities: - - uid: 474 - components: - - type: Transform - pos: 51.5,18.5 - parent: 2 - uid: 942 components: - type: Transform pos: 15.5,-23.5 parent: 2 + - uid: 5383 + components: + - type: Transform + pos: 51.5,21.5 + parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - uid: 6910 components: - type: Transform @@ -11305,6 +12127,11 @@ entities: parent: 2 - proto: Barricade entities: + - uid: 1889 + components: + - type: Transform + pos: 43.5,45.5 + parent: 2 - uid: 2913 components: - type: Transform @@ -11336,6 +12163,55 @@ entities: rot: 3.141592653589793 rad pos: 82.5,-14.5 parent: 2 + - uid: 14796 + components: + - type: Transform + pos: 64.5,43.5 + parent: 2 +- proto: BarricadeBlock + entities: + - uid: 9452 + components: + - type: Transform + pos: 68.5,27.5 + parent: 2 + - uid: 10426 + components: + - type: Transform + pos: 56.5,45.5 + parent: 2 + - uid: 13446 + components: + - type: Transform + pos: 69.5,29.5 + parent: 2 +- proto: BarricadeDirectional + entities: + - uid: 10681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,45.5 + parent: 2 + - uid: 15680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,50.5 + parent: 2 +- proto: BarSign + entities: + - uid: 9244 + components: + - type: MetaData + name: Kitchen sign + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,43.5 + parent: 2 + - type: AccessReader + access: + - - Maintenance - proto: BarSignMaidCafe entities: - uid: 6528 @@ -11350,6 +12226,9 @@ entities: - type: Transform pos: 66.5,-18.5 parent: 2 + - type: AccessReader + access: + - - Maintenance - proto: BaseGasCondenser entities: - uid: 585 @@ -11366,20 +12245,25 @@ entities: parent: 2 - proto: Beaker entities: + - uid: 2573 + components: + - type: Transform + pos: 52.654243,40.651337 + parent: 2 - uid: 4247 components: - type: Transform - pos: 35.89168,-12.492103 + pos: 36.31066,-10.451814 parent: 2 - uid: 5202 components: - type: Transform pos: 63.66416,-9.582929 parent: 2 - - uid: 5324 + - uid: 10887 components: - type: Transform - pos: 54.76479,17.614588 + pos: 63.28595,25.773993 parent: 2 - uid: 11423 components: @@ -11393,66 +12277,56 @@ entities: parent: 2 - proto: Bed entities: - - uid: 388 + - uid: 1014 components: - type: Transform - pos: 36.5,42.5 + pos: 43.5,17.5 parent: 2 - uid: 2014 components: - type: Transform pos: 6.5,15.5 parent: 2 - - uid: 2250 + - uid: 2128 components: - type: Transform - pos: 29.5,18.5 + pos: 70.5,40.5 parent: 2 - - uid: 2251 + - uid: 2456 components: - type: Transform - pos: 29.5,20.5 - parent: 2 - - uid: 4365 - components: - - type: Transform - pos: 59.5,40.5 - parent: 2 - - uid: 5445 - components: - - type: Transform - pos: 71.5,36.5 - parent: 2 - - uid: 5446 - components: - - type: Transform - pos: 71.5,39.5 + pos: 59.5,39.5 parent: 2 - uid: 5709 components: - type: Transform pos: 77.5,-12.5 parent: 2 - - uid: 6873 - components: - - type: Transform - pos: 59.5,32.5 - parent: 2 - uid: 8434 components: - type: Transform pos: 59.5,-4.5 parent: 2 - - uid: 9623 + - uid: 8669 components: - type: Transform - pos: 47.5,4.5 + pos: 43.5,19.5 + parent: 2 + - uid: 9420 + components: + - type: Transform + pos: 71.5,27.5 parent: 2 - uid: 10669 components: - type: Transform pos: 11.5,-42.5 parent: 2 + - uid: 12048 + components: + - type: Transform + pos: 62.5,8.5 + parent: 2 - uid: 12245 components: - type: Transform @@ -11513,6 +12387,16 @@ entities: - type: Transform pos: 107.5,-23.5 parent: 2 + - uid: 13179 + components: + - type: Transform + pos: 36.5,41.5 + parent: 2 + - uid: 14826 + components: + - type: Transform + pos: 43.5,43.5 + parent: 2 - uid: 15388 components: - type: Transform @@ -11520,10 +12404,10 @@ entities: parent: 2 - proto: BedsheetCaptain entities: - - uid: 379 + - uid: 14854 components: - type: Transform - pos: 36.5,42.5 + pos: 36.5,41.5 parent: 2 - proto: BedsheetCE entities: @@ -11577,6 +12461,14 @@ entities: parent: 9438 - type: Physics canCollide: False +- proto: BedsheetHOS + entities: + - uid: 2348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,43.5 + parent: 2 - proto: BedsheetMedical entities: - uid: 5197 @@ -11584,10 +12476,11 @@ entities: - type: Transform pos: 62.5,-10.5 parent: 2 - - uid: 9624 + - uid: 10654 components: - type: Transform - pos: 47.5,4.5 + rot: -1.5707963267948966 rad + pos: 44.5,27.5 parent: 2 - uid: 11299 components: @@ -11618,29 +12511,15 @@ entities: parent: 2 - proto: BedsheetOrange entities: - - uid: 5253 + - uid: 2225 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,32.5 + pos: 43.5,19.5 parent: 2 - - uid: 6333 + - uid: 3454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,40.5 - parent: 2 - - uid: 14656 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,18.5 - parent: 2 - - uid: 14657 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,20.5 + pos: 43.5,17.5 parent: 2 - proto: BedsheetQM entities: @@ -11671,20 +12550,22 @@ entities: - uid: 4300 components: - type: Transform - parent: 565 - - type: Physics - canCollide: False + pos: 62.5,8.5 + parent: 2 +- proto: BedsheetRed + entities: + - uid: 2462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,39.5 + parent: 2 - proto: BedsheetSpawner entities: - - uid: 5447 + - uid: 8482 components: - type: Transform - pos: 71.5,36.5 - parent: 2 - - uid: 5448 - components: - - type: Transform - pos: 71.5,39.5 + pos: 70.5,40.5 parent: 2 - uid: 12271 components: @@ -11740,11 +12621,17 @@ entities: parent: 2 - proto: Biogenerator entities: - - uid: 13612 + - uid: 6265 components: - type: Transform - pos: 57.5,41.5 + pos: 35.5,21.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - uid: 13653 components: - type: Transform @@ -11757,6 +12644,11 @@ entities: - type: Transform pos: 35.5,-29.5 parent: 2 + - uid: 365 + components: + - type: Transform + pos: 62.5,30.5 + parent: 2 - uid: 779 components: - type: Transform @@ -11777,36 +12669,43 @@ entities: - type: Transform pos: 12.5,-26.5 parent: 2 + - uid: 2000 + components: + - type: Transform + pos: 5.5,23.5 + parent: 2 + - uid: 2009 + components: + - type: Transform + pos: 5.5,27.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 3357 + components: + - type: Transform + pos: 3.5,27.5 + parent: 2 + - uid: 3561 + components: + - type: Transform + pos: 3.5,38.5 + parent: 2 + - uid: 3562 + components: + - type: Transform + pos: 3.5,37.5 + parent: 2 - uid: 4257 components: - type: Transform pos: 35.5,-33.5 parent: 2 - - uid: 5351 - components: - - type: Transform - pos: 63.5,29.5 - parent: 2 - - uid: 5361 - components: - - type: Transform - pos: 64.5,29.5 - parent: 2 - uid: 5875 components: - type: Transform pos: -0.5,-27.5 parent: 2 - - uid: 8067 - components: - - type: Transform - pos: 4.5,23.5 - parent: 2 - - uid: 8103 - components: - - type: Transform - pos: 4.5,27.5 - parent: 2 - uid: 8248 components: - type: Transform @@ -11815,6 +12714,16 @@ entities: - type: AccessReader access: - - Research + - uid: 8520 + components: + - type: Transform + pos: 63.5,30.5 + parent: 2 + - uid: 8557 + components: + - type: Transform + pos: 64.5,30.5 + parent: 2 - uid: 11022 components: - type: Transform @@ -11843,8 +12752,19 @@ entities: - type: Transform pos: 47.5,-11.5 parent: 2 + - uid: 15789 + components: + - type: Transform + pos: 3.5,23.5 + parent: 2 - proto: BlockGameArcade entities: + - uid: 5457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,20.5 + parent: 2 - uid: 6617 components: - type: Transform @@ -11853,12 +12773,6 @@ entities: parent: 2 - type: SpamEmitSound enabled: False - - uid: 14655 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,39.5 - parent: 2 - proto: Bonfire entities: - uid: 12709 @@ -11871,7 +12785,7 @@ entities: - uid: 297 components: - type: Transform - pos: 35.484184,-12.498516 + pos: 35.37316,-10.326814 parent: 2 - proto: BookshelfFilled entities: @@ -11905,21 +12819,24 @@ entities: - type: Transform pos: 10.5,7.5 parent: 2 - - uid: 3193 - components: - - type: Transform - pos: 57.5,34.5 - parent: 2 - uid: 5100 components: - type: Transform pos: 29.5,6.5 parent: 2 - - uid: 13607 + - uid: 10834 components: - type: Transform - pos: 57.5,33.5 + pos: 41.5,22.5 parent: 2 + - uid: 11946 + components: + - type: Transform + anchored: False + pos: 58.5,37.5 + parent: 2 + - type: Physics + bodyType: Dynamic - proto: BoozeDispenser entities: - uid: 2921 @@ -11960,21 +12877,20 @@ entities: parent: 2 - proto: BorgCharger entities: - - uid: 12911 + - uid: 8505 components: - type: Transform - pos: 44.5,9.5 + pos: 79.5,31.5 parent: 2 - - uid: 13431 + - uid: 14789 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,9.5 + pos: 51.5,11.5 parent: 2 - - uid: 14630 + - uid: 15873 components: - type: Transform - pos: 82.5,31.5 + pos: 49.5,11.5 parent: 2 - proto: BoxBeaker entities: @@ -11983,13 +12899,6 @@ entities: - type: Transform pos: 82.3458,-6.40663 parent: 2 -- proto: BoxBeanbag - entities: - - uid: 8432 - components: - - type: Transform - pos: 39.509068,21.682957 - parent: 2 - proto: BoxBodyBag entities: - uid: 11987 @@ -11997,29 +12906,25 @@ entities: - type: Transform pos: 75.5329,-0.39068663 parent: 2 + - uid: 14263 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 44.667503,29.610659 + parent: 2 - proto: BoxFlare entities: - uid: 7714 components: - type: Transform - pos: 4.504114,40.66977 - parent: 2 - - uid: 8690 - components: - - type: Transform - pos: 32.455227,27.041605 + pos: 7.5811415,29.417955 parent: 2 - proto: BoxFlashbang entities: - - uid: 6340 + - uid: 10541 components: - type: Transform - pos: 36.349575,28.40067 - parent: 2 - - uid: 8689 - components: - - type: Transform - pos: 32.47085,27.36973 + pos: 39.424168,28.449154 parent: 2 - proto: BoxFolderBlack entities: @@ -12040,6 +12945,20 @@ entities: - type: Transform pos: -1.3771312,-12.370462 parent: 2 +- proto: BoxFolderClipboard + entities: + - uid: 2173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.41103,8.401679 + parent: 2 + - uid: 15686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.41794,37.811577 + parent: 2 - proto: BoxFolderGreen entities: - uid: 14568 @@ -12056,16 +12975,6 @@ entities: parent: 2 - proto: BoxFolderRed entities: - - uid: 3138 - components: - - type: Transform - pos: 39.5,17.5 - parent: 2 - - uid: 6900 - components: - - type: Transform - pos: 43.442894,20.146849 - parent: 2 - uid: 8249 components: - type: Transform @@ -12076,6 +12985,12 @@ entities: - type: Transform pos: -1.5646312,-12.245462 parent: 2 + - uid: 15178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.057922,37.57559 + parent: 2 - proto: BoxFolderWhite entities: - uid: 11421 @@ -12095,10 +13010,11 @@ entities: - type: Transform pos: 12.5,-35.5 parent: 2 - - uid: 6888 + - uid: 9014 components: - type: Transform - pos: 43.630394,20.021849 + rot: 3.141592653589793 rad + pos: 54.792297,37.653713 parent: 2 - uid: 14766 components: @@ -12107,17 +13023,10 @@ entities: parent: 2 - proto: BoxHandcuff entities: - - uid: 12242 + - uid: 2313 components: - type: Transform - pos: 36.634296,28.185242 - parent: 2 -- proto: BoxHeadset - entities: - - uid: 7269 - components: - - type: Transform - pos: 20.523739,-19.345793 + pos: 40.412716,28.626993 parent: 2 - proto: BoxLatexGloves entities: @@ -12143,11 +13052,6 @@ entities: - type: Transform pos: 72.5,-9.5 parent: 2 - - uid: 10834 - components: - - type: Transform - pos: 65.52434,11.667425 - parent: 2 - proto: BoxMouthSwab entities: - uid: 2091 @@ -12162,13 +13066,6 @@ entities: - type: Transform pos: 19.585323,-12.603194 parent: 2 -- proto: BoxSechud - entities: - - uid: 7681 - components: - - type: Transform - pos: 36.641243,28.595247 - parent: 2 - proto: BoxSterileMask entities: - uid: 5246 @@ -12176,6 +13073,13 @@ entities: - type: Transform pos: 78.44771,-7.014811 parent: 2 +- proto: BoxStinger + entities: + - uid: 10773 + components: + - type: Transform + pos: 39.40727,28.773674 + parent: 2 - proto: BoxSyringe entities: - uid: 7810 @@ -12183,12 +13087,19 @@ entities: - type: Transform pos: 82.5958,-6.203505 parent: 2 -- proto: BoxZiptie +- proto: BoxTearGas entities: - - uid: 2131 + - uid: 6066 components: - type: Transform - pos: 36.363464,27.983711 + pos: 39.662716,28.625252 + parent: 2 +- proto: BoxZiptie + entities: + - uid: 2326 + components: + - type: Transform + pos: 40.67834,28.767618 parent: 2 - proto: BrbSign entities: @@ -12221,36 +13132,6 @@ entities: - type: Transform pos: 22.465576,48.64228 parent: 2 -- proto: BrigTimer - entities: - - uid: 7716 - components: - - type: Transform - pos: 31.5,22.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2258: - - - Start - - Close - - - Timer - - AutoClose - - - Timer - - Open - - uid: 7718 - components: - - type: Transform - pos: 31.5,19.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2259: - - - Start - - Close - - - Timer - - AutoClose - - - Timer - - Open - proto: Brutepack entities: - uid: 5712 @@ -12275,6 +13156,17 @@ entities: - type: Transform pos: 46.49411,-7.5341444 parent: 2 + - uid: 8393 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 39.761497,22.483047 + parent: 2 + - uid: 14844 + components: + - type: Transform + pos: 39.759853,22.763851 + parent: 2 - proto: ButtonFrameCaution entities: - uid: 1233 @@ -12282,11 +13174,17 @@ entities: - type: Transform pos: 49.5,-49.5 parent: 2 - - uid: 2045 + - uid: 2060 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,33.5 + pos: 5.5,28.5 + parent: 2 + - uid: 3993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-37.5 parent: 2 - uid: 4150 components: @@ -12294,40 +13192,39 @@ entities: rot: 3.141592653589793 rad pos: 44.5,-49.5 parent: 2 + - uid: 4636 + components: + - type: Transform + pos: 6.5,34.5 + parent: 2 + - uid: 5046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,34.5 + parent: 2 + - uid: 7673 + components: + - type: Transform + pos: 3.5,39.5 + parent: 2 - uid: 8334 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,11.5 parent: 2 - - uid: 8428 - components: - - type: Transform - pos: 31.77084,21.463516 - parent: 2 - - uid: 8429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.777786,17.53082 - parent: 2 - uid: 8529 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-29.5 parent: 2 - - uid: 10991 + - uid: 12824 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-40.5 - parent: 2 - - uid: 11000 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-37.5 + pos: 64.5,25.5 parent: 2 - uid: 12987 components: @@ -12335,16 +13232,6 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,-9.5 parent: 2 - - uid: 13115 - components: - - type: Transform - pos: 6.5,34.5 - parent: 2 - - uid: 13446 - components: - - type: Transform - pos: 61.5,26.5 - parent: 2 - uid: 13474 components: - type: Transform @@ -12363,34 +13250,12 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-25.5 parent: 2 - - uid: 13483 - components: - - type: Transform - pos: 11.5,-32.5 - parent: 2 - - uid: 13484 - components: - - type: Transform - pos: 10.5,-39.5 - parent: 2 - - uid: 14914 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,15.5 - parent: 2 - uid: 15103 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,44.5 parent: 2 - - uid: 15285 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,36.5 - parent: 2 - uid: 15397 components: - type: Transform @@ -12405,24 +13270,30 @@ entities: rot: 1.5707963267948966 rad pos: 53.5,-0.5 parent: 2 + - uid: 15805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,16.5 + parent: 2 - proto: ButtonFrameGrey entities: - - uid: 6862 + - uid: 705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,39.5 + parent: 2 + - uid: 2010 components: - type: Transform pos: 10.5,29.5 parent: 2 - - uid: 6912 + - uid: 2480 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,28.5 - parent: 2 - - uid: 7885 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,22.5 + pos: 4.5,15.5 parent: 2 - uid: 8986 components: @@ -12430,25 +13301,20 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,-43.5 parent: 2 - - uid: 11145 + - uid: 13470 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,27.5 + pos: 11.5,-32.5 parent: 2 - - uid: 11208 +- proto: ButtonFrameJanitor + entities: + - uid: 15511 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,16.5 + pos: 29.5,32.5 parent: 2 - proto: CableApcExtension entities: - - uid: 42 - components: - - type: Transform - pos: 11.5,2.5 - parent: 2 - uid: 59 components: - type: Transform @@ -12479,6 +13345,16 @@ entities: - type: Transform pos: 55.5,50.5 parent: 2 + - uid: 150 + components: + - type: Transform + pos: 74.5,17.5 + parent: 2 + - uid: 151 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 - uid: 200 components: - type: Transform @@ -12509,16 +13385,21 @@ entities: - type: Transform pos: 59.5,-3.5 parent: 2 - - uid: 349 + - uid: 319 components: - type: Transform - pos: 35.5,18.5 + pos: 11.5,15.5 parent: 2 - uid: 368 components: - type: Transform pos: 29.5,-54.5 parent: 2 + - uid: 412 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 - uid: 420 components: - type: Transform @@ -12649,15 +13530,15 @@ entities: - type: Transform pos: 22.5,-57.5 parent: 2 - - uid: 1109 + - uid: 1111 components: - type: Transform - pos: 40.5,20.5 + pos: 24.5,10.5 parent: 2 - - uid: 1173 + - uid: 1162 components: - type: Transform - pos: 19.5,-13.5 + pos: 74.5,11.5 parent: 2 - uid: 1182 components: @@ -12684,15 +13565,10 @@ entities: - type: Transform pos: 18.5,22.5 parent: 2 - - uid: 1286 + - uid: 1254 components: - type: Transform - pos: 42.5,32.5 - parent: 2 - - uid: 1287 - components: - - type: Transform - pos: 40.5,32.5 + pos: 40.5,-14.5 parent: 2 - uid: 1319 components: @@ -12704,6 +13580,21 @@ entities: - type: Transform pos: 6.5,16.5 parent: 2 + - uid: 1325 + components: + - type: Transform + pos: 74.5,10.5 + parent: 2 + - uid: 1551 + components: + - type: Transform + pos: 40.5,-16.5 + parent: 2 + - uid: 1578 + components: + - type: Transform + pos: 39.5,-14.5 + parent: 2 - uid: 1699 components: - type: Transform @@ -12729,10 +13620,10 @@ entities: - type: Transform pos: 50.5,-13.5 parent: 2 - - uid: 1815 + - uid: 1749 components: - type: Transform - pos: 41.5,31.5 + pos: 74.5,14.5 parent: 2 - uid: 1940 components: @@ -12799,46 +13690,136 @@ entities: - type: Transform pos: 17.5,24.5 parent: 2 - - uid: 2224 + - uid: 2202 components: - type: Transform - pos: 30.5,29.5 + pos: 42.5,25.5 parent: 2 - - uid: 2225 + - uid: 2216 components: - type: Transform - pos: 47.5,29.5 + pos: 38.5,25.5 parent: 2 - - uid: 2295 + - uid: 2226 components: - type: Transform - pos: 37.5,31.5 + pos: 66.5,47.5 parent: 2 - - uid: 2297 + - uid: 2232 components: - type: Transform - pos: 38.5,31.5 + pos: 47.5,43.5 parent: 2 - - uid: 2298 + - uid: 2236 components: - type: Transform - pos: 33.5,33.5 + pos: 30.5,20.5 parent: 2 - - uid: 2303 + - uid: 2241 components: - type: Transform - pos: 39.5,31.5 + pos: 64.5,44.5 + parent: 2 + - uid: 2243 + components: + - type: Transform + pos: 64.5,34.5 + parent: 2 + - uid: 2246 + components: + - type: Transform + pos: 32.5,36.5 + parent: 2 + - uid: 2260 + components: + - type: Transform + pos: 65.5,44.5 + parent: 2 + - uid: 2290 + components: + - type: Transform + pos: 29.5,20.5 parent: 2 - uid: 2323 components: - type: Transform pos: 70.5,-12.5 parent: 2 + - uid: 2324 + components: + - type: Transform + pos: 46.5,22.5 + parent: 2 - uid: 2325 components: - type: Transform pos: 69.5,-12.5 parent: 2 + - uid: 2332 + components: + - type: Transform + pos: 46.5,27.5 + parent: 2 + - uid: 2339 + components: + - type: Transform + pos: 43.5,42.5 + parent: 2 + - uid: 2342 + components: + - type: Transform + pos: 31.5,20.5 + parent: 2 + - uid: 2343 + components: + - type: Transform + pos: 22.5,23.5 + parent: 2 + - uid: 2344 + components: + - type: Transform + pos: 65.5,39.5 + parent: 2 + - uid: 2345 + components: + - type: Transform + pos: 64.5,39.5 + parent: 2 + - uid: 2346 + components: + - type: Transform + pos: 34.5,37.5 + parent: 2 + - uid: 2349 + components: + - type: Transform + pos: 46.5,41.5 + parent: 2 + - uid: 2352 + components: + - type: Transform + pos: 70.5,47.5 + parent: 2 + - uid: 2359 + components: + - type: Transform + pos: 40.5,21.5 + parent: 2 + - uid: 2364 + components: + - type: Transform + pos: 54.5,40.5 + parent: 2 + - uid: 2369 + components: + - type: Transform + pos: 70.5,44.5 + parent: 2 + - uid: 2371 + components: + - type: Transform + pos: 63.5,39.5 + parent: 2 - uid: 2389 components: - type: Transform @@ -12859,10 +13840,30 @@ entities: - type: Transform pos: 52.5,-9.5 parent: 2 - - uid: 2428 + - uid: 2405 components: - type: Transform - pos: 36.5,31.5 + pos: 70.5,40.5 + parent: 2 + - uid: 2408 + components: + - type: Transform + pos: 63.5,24.5 + parent: 2 + - uid: 2420 + components: + - type: Transform + pos: 23.5,10.5 + parent: 2 + - uid: 2426 + components: + - type: Transform + pos: 59.5,25.5 + parent: 2 + - uid: 2430 + components: + - type: Transform + pos: 94.5,33.5 parent: 2 - uid: 2438 components: @@ -12874,25 +13875,45 @@ entities: - type: Transform pos: 45.5,-26.5 parent: 2 - - uid: 2466 + - uid: 2451 components: - type: Transform - pos: 35.5,31.5 + pos: 47.5,33.5 parent: 2 - - uid: 2470 + - uid: 2457 components: - type: Transform - pos: 42.5,31.5 + pos: 32.5,6.5 + parent: 2 + - uid: 2461 + components: + - type: Transform + pos: 71.5,34.5 + parent: 2 + - uid: 2469 + components: + - type: Transform + pos: 46.5,25.5 parent: 2 - uid: 2471 components: - type: Transform - pos: 33.5,31.5 + pos: 46.5,24.5 parent: 2 - - uid: 2477 + - uid: 2474 components: - type: Transform - pos: 34.5,31.5 + pos: 46.5,23.5 + parent: 2 + - uid: 2482 + components: + - type: Transform + pos: 71.5,33.5 + parent: 2 + - uid: 2592 + components: + - type: Transform + pos: 30.5,36.5 parent: 2 - uid: 2607 components: @@ -12904,6 +13925,21 @@ entities: - type: Transform pos: 45.5,-33.5 parent: 2 + - uid: 2678 + components: + - type: Transform + pos: 52.5,22.5 + parent: 2 + - uid: 2679 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 2 + - uid: 2715 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 - uid: 2717 components: - type: Transform @@ -12959,6 +13995,11 @@ entities: - type: Transform pos: 51.5,-19.5 parent: 2 + - uid: 2909 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 - uid: 2950 components: - type: Transform @@ -12969,6 +14010,66 @@ entities: - type: Transform pos: 5.5,39.5 parent: 2 + - uid: 3044 + components: + - type: Transform + pos: 55.5,10.5 + parent: 2 + - uid: 3055 + components: + - type: Transform + pos: 51.5,25.5 + parent: 2 + - uid: 3068 + components: + - type: Transform + pos: 50.5,47.5 + parent: 2 + - uid: 3070 + components: + - type: Transform + pos: 62.5,27.5 + parent: 2 + - uid: 3075 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - uid: 3085 + components: + - type: Transform + pos: 71.5,32.5 + parent: 2 + - uid: 3094 + components: + - type: Transform + pos: 22.5,22.5 + parent: 2 + - uid: 3098 + components: + - type: Transform + pos: 46.5,26.5 + parent: 2 + - uid: 3104 + components: + - type: Transform + pos: 43.5,34.5 + parent: 2 + - uid: 3108 + components: + - type: Transform + pos: 45.5,41.5 + parent: 2 + - uid: 3114 + components: + - type: Transform + pos: 61.5,39.5 + parent: 2 + - uid: 3116 + components: + - type: Transform + pos: 62.5,10.5 + parent: 2 - uid: 3118 components: - type: Transform @@ -12984,170 +14085,150 @@ entities: - type: Transform pos: -23.5,-16.5 parent: 2 + - uid: 3126 + components: + - type: Transform + pos: 62.5,9.5 + parent: 2 - uid: 3132 components: - type: Transform pos: -23.5,-11.5 parent: 2 - - uid: 3151 + - uid: 3138 components: - type: Transform - pos: 43.5,31.5 + pos: 43.5,28.5 parent: 2 - uid: 3154 components: - type: Transform pos: 9.5,22.5 parent: 2 - - uid: 3156 + - uid: 3159 components: - type: Transform - pos: 35.5,33.5 + pos: 65.5,34.5 parent: 2 - - uid: 3157 + - uid: 3160 components: - type: Transform - pos: 36.5,33.5 + pos: 55.5,24.5 parent: 2 - uid: 3167 components: - type: Transform pos: 12.5,21.5 parent: 2 + - uid: 3170 + components: + - type: Transform + pos: 56.5,22.5 + parent: 2 - uid: 3173 components: - type: Transform pos: 8.5,25.5 parent: 2 - - uid: 3177 + - uid: 3188 components: - type: Transform - pos: 40.5,36.5 + pos: 66.5,39.5 + parent: 2 + - uid: 3189 + components: + - type: Transform + pos: 42.5,44.5 + parent: 2 + - uid: 3191 + components: + - type: Transform + pos: 70.5,38.5 + parent: 2 + - uid: 3195 + components: + - type: Transform + pos: 43.5,31.5 + parent: 2 + - uid: 3196 + components: + - type: Transform + pos: 43.5,30.5 parent: 2 - uid: 3202 components: - type: Transform pos: -23.5,-9.5 parent: 2 - - uid: 3205 + - uid: 3207 components: - type: Transform - pos: 38.5,18.5 + pos: 56.5,10.5 parent: 2 - uid: 3209 components: - type: Transform pos: -6.5,-8.5 parent: 2 + - uid: 3211 + components: + - type: Transform + pos: 41.5,21.5 + parent: 2 + - uid: 3213 + components: + - type: Transform + pos: 56.5,23.5 + parent: 2 + - uid: 3217 + components: + - type: Transform + pos: 42.5,21.5 + parent: 2 + - uid: 3218 + components: + - type: Transform + pos: 43.5,21.5 + parent: 2 + - uid: 3219 + components: + - type: Transform + pos: 41.5,19.5 + parent: 2 + - uid: 3220 + components: + - type: Transform + pos: 42.5,19.5 + parent: 2 + - uid: 3221 + components: + - type: Transform + pos: 42.5,18.5 + parent: 2 - uid: 3222 components: - type: Transform - pos: 51.5,35.5 - parent: 2 - - uid: 3224 - components: - - type: Transform - pos: 49.5,35.5 - parent: 2 - - uid: 3225 - components: - - type: Transform - pos: 48.5,35.5 - parent: 2 - - uid: 3226 - components: - - type: Transform - pos: 52.5,35.5 - parent: 2 - - uid: 3227 - components: - - type: Transform - pos: 53.5,35.5 - parent: 2 - - uid: 3228 - components: - - type: Transform - pos: 54.5,35.5 - parent: 2 - - uid: 3229 - components: - - type: Transform - pos: 55.5,35.5 - parent: 2 - - uid: 3230 - components: - - type: Transform - pos: 56.5,35.5 + pos: 61.5,34.5 parent: 2 - uid: 3231 components: - type: Transform - pos: 56.5,31.5 - parent: 2 - - uid: 3233 - components: - - type: Transform - pos: 56.5,34.5 - parent: 2 - - uid: 3237 - components: - - type: Transform - pos: 56.5,32.5 + pos: 48.5,27.5 parent: 2 - uid: 3238 components: - type: Transform - pos: 56.5,33.5 + pos: 57.5,24.5 parent: 2 - - uid: 3242 + - uid: 3258 components: - type: Transform - pos: 56.5,39.5 + pos: 35.5,37.5 parent: 2 - - uid: 3243 + - uid: 3270 components: - type: Transform - pos: 56.5,40.5 - parent: 2 - - uid: 3244 - components: - - type: Transform - pos: 58.5,36.5 - parent: 2 - - uid: 3245 - components: - - type: Transform - pos: 55.5,39.5 - parent: 2 - - uid: 3246 - components: - - type: Transform - pos: 56.5,36.5 - parent: 2 - - uid: 3247 - components: - - type: Transform - pos: 57.5,36.5 - parent: 2 - - uid: 3248 - components: - - type: Transform - pos: 56.5,41.5 - parent: 2 - - uid: 3249 - components: - - type: Transform - pos: 56.5,38.5 - parent: 2 - - uid: 3260 - components: - - type: Transform - pos: 40.5,31.5 - parent: 2 - - uid: 3261 - components: - - type: Transform - pos: 40.5,34.5 + pos: 22.5,24.5 parent: 2 - uid: 3284 components: @@ -13179,20 +14260,75 @@ entities: - type: Transform pos: -22.5,-9.5 parent: 2 + - uid: 3320 + components: + - type: Transform + pos: 50.5,34.5 + parent: 2 + - uid: 3325 + components: + - type: Transform + pos: 67.5,42.5 + parent: 2 + - uid: 3326 + components: + - type: Transform + pos: 63.5,34.5 + parent: 2 + - uid: 3329 + components: + - type: Transform + pos: 42.5,17.5 + parent: 2 + - uid: 3335 + components: + - type: Transform + pos: 50.5,35.5 + parent: 2 - uid: 3339 components: - type: Transform pos: -24.5,-18.5 parent: 2 + - uid: 3341 + components: + - type: Transform + pos: 50.5,36.5 + parent: 2 + - uid: 3345 + components: + - type: Transform + pos: 50.5,37.5 + parent: 2 - uid: 3404 components: - type: Transform - pos: 22.5,9.5 + pos: 34.5,22.5 parent: 2 - - uid: 3428 + - uid: 3462 components: - type: Transform - pos: 69.5,29.5 + pos: 40.5,25.5 + parent: 2 + - uid: 3497 + components: + - type: Transform + pos: 39.5,25.5 + parent: 2 + - uid: 3498 + components: + - type: Transform + pos: 44.5,37.5 + parent: 2 + - uid: 3501 + components: + - type: Transform + pos: 47.5,46.5 + parent: 2 + - uid: 3502 + components: + - type: Transform + pos: 48.5,46.5 parent: 2 - uid: 3515 components: @@ -13219,11 +14355,26 @@ entities: - type: Transform pos: 22.5,4.5 parent: 2 + - uid: 3822 + components: + - type: Transform + pos: 45.5,46.5 + parent: 2 + - uid: 3972 + components: + - type: Transform + pos: 46.5,46.5 + parent: 2 - uid: 3982 components: - type: Transform pos: 32.5,-27.5 parent: 2 + - uid: 3992 + components: + - type: Transform + pos: 44.5,46.5 + parent: 2 - uid: 3999 components: - type: Transform @@ -13249,6 +14400,11 @@ entities: - type: Transform pos: 46.5,-27.5 parent: 2 + - uid: 4026 + components: + - type: Transform + pos: 71.5,35.5 + parent: 2 - uid: 4040 components: - type: Transform @@ -13259,6 +14415,16 @@ entities: - type: Transform pos: -6.5,-7.5 parent: 2 + - uid: 4116 + components: + - type: Transform + pos: 67.5,39.5 + parent: 2 + - uid: 4133 + components: + - type: Transform + pos: 70.5,37.5 + parent: 2 - uid: 4190 components: - type: Transform @@ -13324,26 +14490,11 @@ entities: - type: Transform pos: 12.5,33.5 parent: 2 - - uid: 4351 - components: - - type: Transform - pos: 51.5,36.5 - parent: 2 - - uid: 4366 - components: - - type: Transform - pos: 50.5,35.5 - parent: 2 - uid: 4505 components: - type: Transform pos: 14.5,33.5 parent: 2 - - uid: 4644 - components: - - type: Transform - pos: 16.5,-14.5 - parent: 2 - uid: 4648 components: - type: Transform @@ -13712,7 +14863,7 @@ entities: - uid: 4791 components: - type: Transform - pos: 8.5,16.5 + pos: 33.5,6.5 parent: 2 - uid: 4882 components: @@ -14004,6 +15155,11 @@ entities: - type: Transform pos: 41.5,-35.5 parent: 2 + - uid: 5194 + components: + - type: Transform + pos: 40.5,44.5 + parent: 2 - uid: 5205 components: - type: Transform @@ -14039,6 +15195,11 @@ entities: - type: Transform pos: 55.5,-3.5 parent: 2 + - uid: 5236 + components: + - type: Transform + pos: 8.5,16.5 + parent: 2 - uid: 5251 components: - type: Transform @@ -14049,6 +15210,21 @@ entities: - type: Transform pos: 60.5,-3.5 parent: 2 + - uid: 5270 + components: + - type: Transform + pos: 63.5,28.5 + parent: 2 + - uid: 5272 + components: + - type: Transform + pos: 63.5,29.5 + parent: 2 + - uid: 5282 + components: + - type: Transform + pos: 61.5,27.5 + parent: 2 - uid: 5287 components: - type: Transform @@ -14059,6 +15235,21 @@ entities: - type: Transform pos: 57.5,50.5 parent: 2 + - uid: 5305 + components: + - type: Transform + pos: 30.5,23.5 + parent: 2 + - uid: 5311 + components: + - type: Transform + pos: 30.5,21.5 + parent: 2 + - uid: 5312 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 - uid: 5315 components: - type: Transform @@ -14069,6 +15260,11 @@ entities: - type: Transform pos: 35.5,-40.5 parent: 2 + - uid: 5342 + components: + - type: Transform + pos: 62.5,24.5 + parent: 2 - uid: 5345 components: - type: Transform @@ -14099,11 +15295,6 @@ entities: - type: Transform pos: 37.5,-43.5 parent: 2 - - uid: 5367 - components: - - type: Transform - pos: 53.5,21.5 - parent: 2 - uid: 5371 components: - type: Transform @@ -14129,11 +15320,21 @@ entities: - type: Transform pos: 41.5,-29.5 parent: 2 + - uid: 5380 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 - uid: 5396 components: - type: Transform pos: 41.5,-43.5 parent: 2 + - uid: 5404 + components: + - type: Transform + pos: 22.5,25.5 + parent: 2 - uid: 5412 components: - type: Transform @@ -14144,11 +15345,56 @@ entities: - type: Transform pos: 41.5,-31.5 parent: 2 + - uid: 5446 + components: + - type: Transform + pos: 47.5,42.5 + parent: 2 + - uid: 5452 + components: + - type: Transform + pos: 38.5,21.5 + parent: 2 + - uid: 5455 + components: + - type: Transform + pos: 15.5,5.5 + parent: 2 + - uid: 5462 + components: + - type: Transform + pos: 23.5,25.5 + parent: 2 + - uid: 5463 + components: + - type: Transform + pos: 40.5,42.5 + parent: 2 + - uid: 5476 + components: + - type: Transform + pos: 61.5,35.5 + parent: 2 + - uid: 5511 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 5520 + components: + - type: Transform + pos: 39.5,39.5 + parent: 2 - uid: 5527 components: - type: Transform pos: 41.5,-28.5 parent: 2 + - uid: 5530 + components: + - type: Transform + pos: 39.5,41.5 + parent: 2 - uid: 5579 components: - type: Transform @@ -14274,6 +15520,16 @@ entities: - type: Transform pos: 23.5,-40.5 parent: 2 + - uid: 5652 + components: + - type: Transform + pos: 19.5,-18.5 + parent: 2 + - uid: 5704 + components: + - type: Transform + pos: 41.5,34.5 + parent: 2 - uid: 5889 components: - type: Transform @@ -14324,6 +15580,16 @@ entities: - type: Transform pos: 8.5,-23.5 parent: 2 + - uid: 5928 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 6008 + components: + - type: Transform + pos: 24.5,25.5 + parent: 2 - uid: 6024 components: - type: Transform @@ -14349,10 +15615,55 @@ entities: - type: Transform pos: 51.5,-13.5 parent: 2 - - uid: 6334 + - uid: 6095 components: - type: Transform - pos: 40.5,35.5 + pos: 8.5,10.5 + parent: 2 + - uid: 6117 + components: + - type: Transform + pos: 40.5,43.5 + parent: 2 + - uid: 6231 + components: + - type: Transform + pos: 66.5,6.5 + parent: 2 + - uid: 6287 + components: + - type: Transform + pos: 59.5,26.5 + parent: 2 + - uid: 6289 + components: + - type: Transform + pos: 62.5,8.5 + parent: 2 + - uid: 6294 + components: + - type: Transform + pos: 62.5,47.5 + parent: 2 + - uid: 6296 + components: + - type: Transform + pos: 61.5,47.5 + parent: 2 + - uid: 6332 + components: + - type: Transform + pos: 49.5,47.5 + parent: 2 + - uid: 6350 + components: + - type: Transform + pos: 39.5,19.5 + parent: 2 + - uid: 6352 + components: + - type: Transform + pos: 38.5,18.5 parent: 2 - uid: 6460 components: @@ -14364,11 +15675,6 @@ entities: - type: Transform pos: 18.5,-16.5 parent: 2 - - uid: 6462 - components: - - type: Transform - pos: 18.5,-17.5 - parent: 2 - uid: 6463 components: - type: Transform @@ -14419,6 +15725,21 @@ entities: - type: Transform pos: 22.5,-17.5 parent: 2 + - uid: 6474 + components: + - type: Transform + pos: 59.5,10.5 + parent: 2 + - uid: 6486 + components: + - type: Transform + pos: 60.5,10.5 + parent: 2 + - uid: 6529 + components: + - type: Transform + pos: 70.5,32.5 + parent: 2 - uid: 6592 components: - type: Transform @@ -14474,6 +15795,11 @@ entities: - type: Transform pos: 30.5,-11.5 parent: 2 + - uid: 6697 + components: + - type: Transform + pos: 11.5,12.5 + parent: 2 - uid: 6698 components: - type: Transform @@ -14744,6 +16070,11 @@ entities: - type: Transform pos: 20.5,-57.5 parent: 2 + - uid: 6914 + components: + - type: Transform + pos: 11.5,11.5 + parent: 2 - uid: 6920 components: - type: Transform @@ -14759,6 +16090,91 @@ entities: - type: Transform pos: 12.5,-30.5 parent: 2 + - uid: 6966 + components: + - type: Transform + pos: 21.5,12.5 + parent: 2 + - uid: 6967 + components: + - type: Transform + pos: 25.5,10.5 + parent: 2 + - uid: 6969 + components: + - type: Transform + pos: 15.5,6.5 + parent: 2 + - uid: 6970 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 6971 + components: + - type: Transform + pos: 34.5,6.5 + parent: 2 + - uid: 6972 + components: + - type: Transform + pos: 11.5,18.5 + parent: 2 + - uid: 6979 + components: + - type: Transform + pos: 12.5,15.5 + parent: 2 + - uid: 6981 + components: + - type: Transform + pos: 13.5,18.5 + parent: 2 + - uid: 6982 + components: + - type: Transform + pos: 12.5,31.5 + parent: 2 + - uid: 6983 + components: + - type: Transform + pos: 69.5,39.5 + parent: 2 + - uid: 6984 + components: + - type: Transform + pos: 68.5,39.5 + parent: 2 + - uid: 6986 + components: + - type: Transform + pos: 72.5,31.5 + parent: 2 + - uid: 6987 + components: + - type: Transform + pos: 72.5,32.5 + parent: 2 + - uid: 6992 + components: + - type: Transform + pos: 50.5,7.5 + parent: 2 + - uid: 6993 + components: + - type: Transform + pos: 50.5,8.5 + parent: 2 + - uid: 7030 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 7036 + components: + - type: Transform + pos: 15.5,21.5 + parent: 2 - uid: 7040 components: - type: Transform @@ -14794,11 +16210,6 @@ entities: - type: Transform pos: 13.5,5.5 parent: 2 - - uid: 7047 - components: - - type: Transform - pos: 14.5,5.5 - parent: 2 - uid: 7048 components: - type: Transform @@ -14814,26 +16225,6 @@ entities: - type: Transform pos: 9.5,6.5 parent: 2 - - uid: 7051 - components: - - type: Transform - pos: 9.5,4.5 - parent: 2 - - uid: 7052 - components: - - type: Transform - pos: 10.5,11.5 - parent: 2 - - uid: 7053 - components: - - type: Transform - pos: 10.5,12.5 - parent: 2 - - uid: 7054 - components: - - type: Transform - pos: 10.5,13.5 - parent: 2 - uid: 7055 components: - type: Transform @@ -14889,11 +16280,6 @@ entities: - type: Transform pos: 18.5,10.5 parent: 2 - - uid: 7066 - components: - - type: Transform - pos: 21.5,5.5 - parent: 2 - uid: 7067 components: - type: Transform @@ -14924,11 +16310,6 @@ entities: - type: Transform pos: 19.5,7.5 parent: 2 - - uid: 7073 - components: - - type: Transform - pos: 20.5,6.5 - parent: 2 - uid: 7074 components: - type: Transform @@ -14979,16 +16360,6 @@ entities: - type: Transform pos: 22.5,8.5 parent: 2 - - uid: 7087 - components: - - type: Transform - pos: 22.5,11.5 - parent: 2 - - uid: 7088 - components: - - type: Transform - pos: 22.5,12.5 - parent: 2 - uid: 7089 components: - type: Transform @@ -15124,11 +16495,6 @@ entities: - type: Transform pos: 26.5,8.5 parent: 2 - - uid: 7116 - components: - - type: Transform - pos: 28.5,9.5 - parent: 2 - uid: 7117 components: - type: Transform @@ -15192,23 +16558,13 @@ entities: - uid: 7129 components: - type: Transform - pos: 33.5,7.5 - parent: 2 - - uid: 7130 - components: - - type: Transform - pos: 32.5,7.5 + pos: 9.5,9.5 parent: 2 - uid: 7131 components: - type: Transform pos: 31.5,7.5 parent: 2 - - uid: 7132 - components: - - type: Transform - pos: 30.5,7.5 - parent: 2 - uid: 7133 components: - type: Transform @@ -15219,11 +16575,6 @@ entities: - type: Transform pos: 30.5,5.5 parent: 2 - - uid: 7135 - components: - - type: Transform - pos: 34.5,7.5 - parent: 2 - uid: 7136 components: - type: Transform @@ -15419,20 +16770,10 @@ entities: - type: Transform pos: -22.5,-3.5 parent: 2 - - uid: 7452 + - uid: 7457 components: - type: Transform - pos: 13.5,16.5 - parent: 2 - - uid: 7453 - components: - - type: Transform - pos: 12.5,16.5 - parent: 2 - - uid: 7454 - components: - - type: Transform - pos: 12.5,17.5 + pos: 43.5,46.5 parent: 2 - uid: 7551 components: @@ -15674,6 +17015,11 @@ entities: - type: Transform pos: -6.5,-0.5 parent: 2 + - uid: 7679 + components: + - type: Transform + pos: 47.5,38.5 + parent: 2 - uid: 7682 components: - type: Transform @@ -15779,11 +17125,21 @@ entities: - type: Transform pos: 4.5,-11.5 parent: 2 + - uid: 7707 + components: + - type: Transform + pos: 34.5,36.5 + parent: 2 - uid: 7713 components: - type: Transform pos: -13.5,-0.5 parent: 2 + - uid: 7717 + components: + - type: Transform + pos: 62.5,34.5 + parent: 2 - uid: 7719 components: - type: Transform @@ -15819,10 +17175,15 @@ entities: - type: Transform pos: -15.5,-0.5 parent: 2 - - uid: 7752 + - uid: 7760 components: - type: Transform - pos: 39.5,25.5 + pos: 28.5,36.5 + parent: 2 + - uid: 7799 + components: + - type: Transform + pos: 29.5,36.5 parent: 2 - uid: 7823 components: @@ -15849,11 +17210,6 @@ entities: - type: Transform pos: 13.5,-50.5 parent: 2 - - uid: 7972 - components: - - type: Transform - pos: 7.5,38.5 - parent: 2 - uid: 8024 components: - type: Transform @@ -15897,7 +17253,7 @@ entities: - uid: 8037 components: - type: Transform - pos: 21.5,21.5 + pos: 25.5,25.5 parent: 2 - uid: 8038 components: @@ -15907,27 +17263,22 @@ entities: - uid: 8039 components: - type: Transform - pos: 23.5,21.5 + pos: 26.5,17.5 parent: 2 - uid: 8040 components: - type: Transform - pos: 23.5,22.5 + pos: 32.5,20.5 parent: 2 - uid: 8041 components: - type: Transform - pos: 23.5,23.5 + pos: 17.5,31.5 parent: 2 - uid: 8042 components: - type: Transform - pos: 23.5,24.5 - parent: 2 - - uid: 8043 - components: - - type: Transform - pos: 22.5,24.5 + pos: 22.5,20.5 parent: 2 - uid: 8046 components: @@ -15939,16 +17290,6 @@ entities: - type: Transform pos: 12.5,25.5 parent: 2 - - uid: 8049 - components: - - type: Transform - pos: 11.5,25.5 - parent: 2 - - uid: 8050 - components: - - type: Transform - pos: 10.5,25.5 - parent: 2 - uid: 8051 components: - type: Transform @@ -15989,11 +17330,6 @@ entities: - type: Transform pos: 5.5,26.5 parent: 2 - - uid: 8062 - components: - - type: Transform - pos: 39.5,41.5 - parent: 2 - uid: 8064 components: - type: Transform @@ -16334,11 +17670,6 @@ entities: - type: Transform pos: 11.5,-40.5 parent: 2 - - uid: 8189 - components: - - type: Transform - pos: 3.5,26.5 - parent: 2 - uid: 8220 components: - type: Transform @@ -16357,468 +17688,113 @@ entities: - uid: 8285 components: - type: Transform - pos: 41.5,21.5 + pos: 43.5,27.5 + parent: 2 + - uid: 8304 + components: + - type: Transform + pos: 57.5,51.5 parent: 2 - uid: 8305 components: - type: Transform pos: 52.5,-8.5 parent: 2 - - uid: 8347 + - uid: 8360 components: - type: Transform - pos: 63.5,48.5 + pos: 74.5,16.5 parent: 2 - - uid: 8358 + - uid: 8364 components: - type: Transform - pos: 37.5,18.5 + pos: 52.5,47.5 parent: 2 - - uid: 8385 + - uid: 8365 components: - type: Transform - pos: 35.5,28.5 + pos: 51.5,47.5 parent: 2 - - uid: 8386 + - uid: 8374 components: - type: Transform - pos: 35.5,24.5 + pos: 62.5,44.5 parent: 2 - - uid: 8387 + - uid: 8433 components: - type: Transform - pos: 35.5,25.5 - parent: 2 - - uid: 8388 - components: - - type: Transform - pos: 35.5,26.5 - parent: 2 - - uid: 8394 - components: - - type: Transform - pos: 36.5,18.5 - parent: 2 - - uid: 8396 - components: - - type: Transform - pos: 39.5,24.5 - parent: 2 - - uid: 8407 - components: - - type: Transform - pos: 59.5,36.5 - parent: 2 - - uid: 8448 - components: - - type: Transform - pos: 41.5,20.5 - parent: 2 - - uid: 8449 - components: - - type: Transform - pos: 41.5,19.5 - parent: 2 - - uid: 8450 - components: - - type: Transform - pos: 41.5,18.5 - parent: 2 - - uid: 8451 - components: - - type: Transform - pos: 41.5,17.5 - parent: 2 - - uid: 8452 - components: - - type: Transform - pos: 41.5,16.5 - parent: 2 - - uid: 8453 - components: - - type: Transform - pos: 42.5,17.5 - parent: 2 - - uid: 8454 - components: - - type: Transform - pos: 43.5,17.5 + pos: 60.5,27.5 parent: 2 - uid: 8455 components: - type: Transform - pos: 43.5,16.5 - parent: 2 - - uid: 8472 - components: - - type: Transform - pos: 35.5,27.5 - parent: 2 - - uid: 8476 - components: - - type: Transform - pos: 33.5,25.5 - parent: 2 - - uid: 8477 - components: - - type: Transform - pos: 33.5,26.5 - parent: 2 - - uid: 8478 - components: - - type: Transform - pos: 33.5,27.5 - parent: 2 - - uid: 8479 - components: - - type: Transform - pos: 33.5,28.5 - parent: 2 - - uid: 8480 - components: - - type: Transform - pos: 33.5,29.5 - parent: 2 - - uid: 8481 - components: - - type: Transform - pos: 32.5,29.5 - parent: 2 - - uid: 8482 - components: - - type: Transform - pos: 31.5,29.5 - parent: 2 - - uid: 8484 - components: - - type: Transform - pos: 32.5,25.5 - parent: 2 - - uid: 8485 - components: - - type: Transform - pos: 31.5,25.5 - parent: 2 - - uid: 8486 - components: - - type: Transform - pos: 30.5,25.5 - parent: 2 - - uid: 8487 - components: - - type: Transform - pos: 29.5,25.5 - parent: 2 - - uid: 8488 - components: - - type: Transform - pos: 33.5,24.5 - parent: 2 - - uid: 8489 - components: - - type: Transform - pos: 33.5,23.5 - parent: 2 - - uid: 8490 - components: - - type: Transform - pos: 33.5,22.5 - parent: 2 - - uid: 8491 - components: - - type: Transform - pos: 33.5,21.5 - parent: 2 - - uid: 8492 - components: - - type: Transform - pos: 33.5,20.5 - parent: 2 - - uid: 8493 - components: - - type: Transform - pos: 33.5,19.5 - parent: 2 - - uid: 8494 - components: - - type: Transform - pos: 33.5,18.5 - parent: 2 - - uid: 8495 - components: - - type: Transform - pos: 33.5,17.5 - parent: 2 - - uid: 8497 - components: - - type: Transform - pos: 39.5,18.5 - parent: 2 - - uid: 8499 - components: - - type: Transform - pos: 37.5,18.5 - parent: 2 - - uid: 8500 - components: - - type: Transform - pos: 34.5,18.5 - parent: 2 - - uid: 8501 - components: - - type: Transform - pos: 32.5,18.5 - parent: 2 - - uid: 8502 - components: - - type: Transform - pos: 31.5,18.5 - parent: 2 - - uid: 8503 - components: - - type: Transform - pos: 30.5,18.5 - parent: 2 - - uid: 8504 - components: - - type: Transform - pos: 29.5,18.5 - parent: 2 - - uid: 8505 - components: - - type: Transform - pos: 32.5,20.5 - parent: 2 - - uid: 8506 - components: - - type: Transform - pos: 31.5,20.5 - parent: 2 - - uid: 8507 - components: - - type: Transform - pos: 30.5,20.5 - parent: 2 - - uid: 8508 - components: - - type: Transform - pos: 29.5,20.5 - parent: 2 - - uid: 8509 - components: - - type: Transform - pos: 34.5,22.5 - parent: 2 - - uid: 8510 - components: - - type: Transform - pos: 35.5,22.5 - parent: 2 - - uid: 8511 - components: - - type: Transform - pos: 36.5,22.5 - parent: 2 - - uid: 8512 - components: - - type: Transform - pos: 34.5,28.5 - parent: 2 - - uid: 8513 - components: - - type: Transform - pos: 32.5,23.5 - parent: 2 - - uid: 8514 - components: - - type: Transform - pos: 31.5,23.5 - parent: 2 - - uid: 8515 - components: - - type: Transform - pos: 30.5,23.5 - parent: 2 - - uid: 8516 - components: - - type: Transform - pos: 29.5,23.5 - parent: 2 - - uid: 8520 - components: - - type: Transform - pos: 43.5,23.5 - parent: 2 - - uid: 8521 - components: - - type: Transform - pos: 42.5,23.5 - parent: 2 - - uid: 8522 - components: - - type: Transform - pos: 41.5,23.5 + pos: 70.5,46.5 parent: 2 - uid: 8523 components: - type: Transform - pos: 40.5,23.5 + pos: 94.5,34.5 parent: 2 - - uid: 8524 + - uid: 8560 components: - type: Transform - pos: 39.5,23.5 + pos: 53.5,32.5 parent: 2 - - uid: 8525 + - uid: 8577 components: - type: Transform - pos: 39.5,22.5 + pos: 41.5,46.5 parent: 2 - - uid: 8533 + - uid: 8604 components: - type: Transform - pos: 40.5,26.5 + pos: 42.5,34.5 parent: 2 - - uid: 8535 + - uid: 8607 components: - type: Transform - pos: 39.5,26.5 + pos: 44.5,21.5 parent: 2 - - uid: 8661 + - uid: 8618 components: - type: Transform - pos: 55.5,32.5 + pos: 66.5,45.5 + parent: 2 + - uid: 8623 + components: + - type: Transform + pos: 37.5,21.5 + parent: 2 + - uid: 8628 + components: + - type: Transform + pos: 66.5,44.5 + parent: 2 + - uid: 8672 + components: + - type: Transform + pos: 57.5,32.5 + parent: 2 + - uid: 8675 + components: + - type: Transform + pos: 47.5,41.5 parent: 2 - uid: 8676 components: - type: Transform - pos: 56.5,37.5 + pos: 47.5,34.5 + parent: 2 + - uid: 8697 + components: + - type: Transform + pos: 66.5,43.5 parent: 2 - uid: 8704 components: - type: Transform pos: 47.5,27.5 parent: 2 - - uid: 8705 - components: - - type: Transform - pos: 47.5,26.5 - parent: 2 - - uid: 8706 - components: - - type: Transform - pos: 47.5,25.5 - parent: 2 - - uid: 8707 - components: - - type: Transform - pos: 47.5,24.5 - parent: 2 - - uid: 8710 - components: - - type: Transform - pos: 47.5,23.5 - parent: 2 - - uid: 8712 - components: - - type: Transform - pos: 47.5,22.5 - parent: 2 - - uid: 8714 - components: - - type: Transform - pos: 46.5,28.5 - parent: 2 - - uid: 8715 - components: - - type: Transform - pos: 46.5,29.5 - parent: 2 - - uid: 8716 - components: - - type: Transform - pos: 46.5,30.5 - parent: 2 - - uid: 8717 - components: - - type: Transform - pos: 46.5,31.5 - parent: 2 - - uid: 8718 - components: - - type: Transform - pos: 46.5,32.5 - parent: 2 - - uid: 8730 - components: - - type: Transform - pos: 46.5,33.5 - parent: 2 - - uid: 8731 - components: - - type: Transform - pos: 46.5,34.5 - parent: 2 - - uid: 8759 - components: - - type: Transform - pos: 46.5,35.5 - parent: 2 - - uid: 8766 - components: - - type: Transform - pos: 46.5,36.5 - parent: 2 - - uid: 8779 - components: - - type: Transform - pos: 46.5,37.5 - parent: 2 - - uid: 8791 - components: - - type: Transform - pos: 46.5,38.5 - parent: 2 - - uid: 8795 - components: - - type: Transform - pos: 46.5,39.5 - parent: 2 - - uid: 8796 - components: - - type: Transform - pos: 45.5,39.5 - parent: 2 - - uid: 8797 - components: - - type: Transform - pos: 45.5,40.5 - parent: 2 - - uid: 8798 - components: - - type: Transform - pos: 45.5,41.5 - parent: 2 - - uid: 8934 - components: - - type: Transform - pos: 69.5,30.5 - parent: 2 - - uid: 9131 - components: - - type: Transform - pos: 20.5,34.5 - parent: 2 - - uid: 9132 - components: - - type: Transform - pos: 20.5,33.5 - parent: 2 - - uid: 9133 - components: - - type: Transform - pos: 20.5,32.5 - parent: 2 - uid: 9134 components: - type: Transform @@ -16849,36 +17825,6 @@ entities: - type: Transform pos: 23.5,31.5 parent: 2 - - uid: 9143 - components: - - type: Transform - pos: 23.5,30.5 - parent: 2 - - uid: 9144 - components: - - type: Transform - pos: 23.5,32.5 - parent: 2 - - uid: 9145 - components: - - type: Transform - pos: 21.5,30.5 - parent: 2 - - uid: 9146 - components: - - type: Transform - pos: 21.5,32.5 - parent: 2 - - uid: 9147 - components: - - type: Transform - pos: 18.5,30.5 - parent: 2 - - uid: 9148 - components: - - type: Transform - pos: 18.5,32.5 - parent: 2 - uid: 9149 components: - type: Transform @@ -16904,16 +17850,6 @@ entities: - type: Transform pos: 18.5,39.5 parent: 2 - - uid: 9154 - components: - - type: Transform - pos: 28.5,33.5 - parent: 2 - - uid: 9155 - components: - - type: Transform - pos: 27.5,33.5 - parent: 2 - uid: 9156 components: - type: Transform @@ -17009,26 +17945,6 @@ entities: - type: Transform pos: 26.5,26.5 parent: 2 - - uid: 9176 - components: - - type: Transform - pos: 30.5,37.5 - parent: 2 - - uid: 9177 - components: - - type: Transform - pos: 30.5,36.5 - parent: 2 - - uid: 9178 - components: - - type: Transform - pos: 30.5,35.5 - parent: 2 - - uid: 9179 - components: - - type: Transform - pos: 54.5,39.5 - parent: 2 - uid: 9180 components: - type: Transform @@ -17189,25 +18105,10 @@ entities: - type: Transform pos: 31.5,42.5 parent: 2 - - uid: 9212 - components: - - type: Transform - pos: 34.5,40.5 - parent: 2 - - uid: 9213 - components: - - type: Transform - pos: 35.5,40.5 - parent: 2 - - uid: 9214 - components: - - type: Transform - pos: 36.5,40.5 - parent: 2 - uid: 9215 components: - type: Transform - pos: 36.5,41.5 + pos: 47.5,39.5 parent: 2 - uid: 9216 components: @@ -17259,95 +18160,30 @@ entities: - type: Transform pos: 28.5,44.5 parent: 2 - - uid: 9234 - components: - - type: Transform - pos: 29.5,32.5 - parent: 2 - uid: 9235 components: - type: Transform - pos: 30.5,32.5 - parent: 2 - - uid: 9237 - components: - - type: Transform - pos: 58.5,32.5 - parent: 2 - - uid: 9240 - components: - - type: Transform - pos: 34.5,33.5 - parent: 2 - - uid: 9241 - components: - - type: Transform - pos: 34.5,34.5 - parent: 2 - - uid: 9242 - components: - - type: Transform - pos: 34.5,35.5 - parent: 2 - - uid: 9244 - components: - - type: Transform - pos: 34.5,37.5 - parent: 2 - - uid: 9245 - components: - - type: Transform - pos: 35.5,37.5 + pos: 47.5,35.5 parent: 2 - uid: 9246 components: - type: Transform pos: 35.5,38.5 parent: 2 - - uid: 9247 - components: - - type: Transform - pos: 36.5,38.5 - parent: 2 - - uid: 9248 - components: - - type: Transform - pos: 37.5,38.5 - parent: 2 - - uid: 9249 - components: - - type: Transform - pos: 38.5,38.5 - parent: 2 - - uid: 9250 - components: - - type: Transform - pos: 39.5,38.5 - parent: 2 - uid: 9251 components: - type: Transform - pos: 39.5,39.5 + pos: 60.5,24.5 parent: 2 - - uid: 9252 + - uid: 9254 components: - type: Transform - pos: 39.5,40.5 + pos: 55.5,52.5 parent: 2 - - uid: 9267 + - uid: 9255 components: - type: Transform - pos: 69.5,47.5 - parent: 2 - - uid: 9268 - components: - - type: Transform - pos: 69.5,45.5 - parent: 2 - - uid: 9269 - components: - - type: Transform - pos: 69.5,46.5 + pos: 59.5,27.5 parent: 2 - uid: 9270 components: @@ -17369,71 +18205,11 @@ entities: - type: Transform pos: 73.5,45.5 parent: 2 - - uid: 9274 - components: - - type: Transform - pos: 66.5,45.5 - parent: 2 - - uid: 9275 - components: - - type: Transform - pos: 66.5,46.5 - parent: 2 - - uid: 9276 - components: - - type: Transform - pos: 66.5,44.5 - parent: 2 - - uid: 9277 - components: - - type: Transform - pos: 67.5,44.5 - parent: 2 - - uid: 9278 - components: - - type: Transform - pos: 65.5,46.5 - parent: 2 - - uid: 9279 - components: - - type: Transform - pos: 64.5,46.5 - parent: 2 - - uid: 9280 - components: - - type: Transform - pos: 63.5,46.5 - parent: 2 - - uid: 9281 - components: - - type: Transform - pos: 63.5,47.5 - parent: 2 - - uid: 9282 - components: - - type: Transform - pos: 62.5,48.5 - parent: 2 - - uid: 9283 - components: - - type: Transform - pos: 61.5,48.5 - parent: 2 - - uid: 9284 - components: - - type: Transform - pos: 60.5,48.5 - parent: 2 - uid: 9285 components: - type: Transform pos: 59.5,48.5 parent: 2 - - uid: 9286 - components: - - type: Transform - pos: 58.5,48.5 - parent: 2 - uid: 9287 components: - type: Transform @@ -17459,80 +18235,10 @@ entities: - type: Transform pos: 53.5,48.5 parent: 2 - - uid: 9292 - components: - - type: Transform - pos: 52.5,48.5 - parent: 2 - - uid: 9293 - components: - - type: Transform - pos: 51.5,48.5 - parent: 2 - - uid: 9294 - components: - - type: Transform - pos: 50.5,48.5 - parent: 2 - - uid: 9295 - components: - - type: Transform - pos: 49.5,48.5 - parent: 2 - - uid: 9298 - components: - - type: Transform - pos: 44.5,45.5 - parent: 2 - - uid: 9299 - components: - - type: Transform - pos: 49.5,47.5 - parent: 2 - - uid: 9300 - components: - - type: Transform - pos: 48.5,47.5 - parent: 2 - uid: 9301 components: - type: Transform - pos: 47.5,47.5 - parent: 2 - - uid: 9302 - components: - - type: Transform - pos: 46.5,47.5 - parent: 2 - - uid: 9303 - components: - - type: Transform - pos: 46.5,46.5 - parent: 2 - - uid: 9304 - components: - - type: Transform - pos: 45.5,46.5 - parent: 2 - - uid: 9305 - components: - - type: Transform - pos: 44.5,46.5 - parent: 2 - - uid: 9310 - components: - - type: Transform - pos: 68.5,41.5 - parent: 2 - - uid: 9311 - components: - - type: Transform - pos: 68.5,42.5 - parent: 2 - - uid: 9312 - components: - - type: Transform - pos: 67.5,42.5 + pos: 61.5,24.5 parent: 2 - uid: 9313 components: @@ -17549,11 +18255,6 @@ entities: - type: Transform pos: 66.5,40.5 parent: 2 - - uid: 9316 - components: - - type: Transform - pos: 66.5,39.5 - parent: 2 - uid: 9317 components: - type: Transform @@ -17564,16 +18265,6 @@ entities: - type: Transform pos: 66.5,37.5 parent: 2 - - uid: 9319 - components: - - type: Transform - pos: 66.5,36.5 - parent: 2 - - uid: 9320 - components: - - type: Transform - pos: 66.5,35.5 - parent: 2 - uid: 9321 components: - type: Transform @@ -17622,87 +18313,52 @@ entities: - uid: 9330 components: - type: Transform - pos: 67.5,28.5 - parent: 2 - - uid: 9331 - components: - - type: Transform - pos: 68.5,28.5 - parent: 2 - - uid: 9332 - components: - - type: Transform - pos: 69.5,28.5 - parent: 2 - - uid: 9335 - components: - - type: Transform - pos: 69.5,31.5 + pos: 57.5,53.5 parent: 2 - uid: 9336 components: - type: Transform pos: 69.5,32.5 parent: 2 - - uid: 9337 - components: - - type: Transform - pos: 69.5,33.5 - parent: 2 - - uid: 9338 - components: - - type: Transform - pos: 68.5,32.5 - parent: 2 - uid: 9339 components: - type: Transform - pos: 67.5,32.5 - parent: 2 - - uid: 9340 - components: - - type: Transform - pos: 67.5,36.5 - parent: 2 - - uid: 9341 - components: - - type: Transform - pos: 68.5,36.5 - parent: 2 - - uid: 9342 - components: - - type: Transform - pos: 69.5,36.5 + pos: 21.5,11.5 parent: 2 - uid: 9343 components: - type: Transform - pos: 70.5,36.5 - parent: 2 - - uid: 9344 - components: - - type: Transform - pos: 67.5,39.5 + pos: 22.5,10.5 parent: 2 - uid: 9345 components: - type: Transform - pos: 68.5,39.5 - parent: 2 - - uid: 9346 - components: - - type: Transform - pos: 69.5,39.5 + pos: 57.5,52.5 parent: 2 - uid: 9347 components: - type: Transform pos: 70.5,39.5 parent: 2 - - uid: 9454 + - uid: 9351 components: - type: Transform - pos: 32.5,33.5 + pos: 55.5,51.5 + parent: 2 + - uid: 9499 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 2 + - uid: 9586 + components: + - type: Transform + pos: 38.5,26.5 + parent: 2 + - uid: 9587 + components: + - type: Transform + pos: 33.5,36.5 parent: 2 - uid: 9694 components: @@ -18004,6 +18660,11 @@ entities: - type: Transform pos: 26.5,-12.5 parent: 2 + - uid: 9895 + components: + - type: Transform + pos: 32.5,35.5 + parent: 2 - uid: 9905 components: - type: Transform @@ -18109,10 +18770,10 @@ entities: - type: Transform pos: 32.5,-17.5 parent: 2 - - uid: 9926 + - uid: 9928 components: - type: Transform - pos: 39.5,-15.5 + pos: 47.5,37.5 parent: 2 - uid: 9929 components: @@ -18459,16 +19120,6 @@ entities: - type: Transform pos: 17.5,-10.5 parent: 2 - - uid: 10001 - components: - - type: Transform - pos: 17.5,-11.5 - parent: 2 - - uid: 10002 - components: - - type: Transform - pos: 16.5,-11.5 - parent: 2 - uid: 10003 components: - type: Transform @@ -18524,11 +19175,6 @@ entities: - type: Transform pos: 13.5,-11.5 parent: 2 - - uid: 10014 - components: - - type: Transform - pos: 14.5,-11.5 - parent: 2 - uid: 10015 components: - type: Transform @@ -18639,6 +19285,11 @@ entities: - type: Transform pos: 32.5,-32.5 parent: 2 + - uid: 10048 + components: + - type: Transform + pos: 40.5,45.5 + parent: 2 - uid: 10075 components: - type: Transform @@ -18654,11 +19305,6 @@ entities: - type: Transform pos: 61.5,-2.5 parent: 2 - - uid: 10084 - components: - - type: Transform - pos: 40.5,33.5 - parent: 2 - uid: 10103 components: - type: Transform @@ -18689,10 +19335,50 @@ entities: - type: Transform pos: 61.5,-10.5 parent: 2 - - uid: 10454 + - uid: 10290 components: - type: Transform - pos: 53.5,20.5 + pos: 42.5,46.5 + parent: 2 + - uid: 10292 + components: + - type: Transform + pos: 38.5,17.5 + parent: 2 + - uid: 10316 + components: + - type: Transform + pos: 41.5,31.5 + parent: 2 + - uid: 10339 + components: + - type: Transform + pos: 74.5,15.5 + parent: 2 + - uid: 10348 + components: + - type: Transform + pos: 49.5,24.5 + parent: 2 + - uid: 10407 + components: + - type: Transform + pos: 61.5,44.5 + parent: 2 + - uid: 10408 + components: + - type: Transform + pos: 60.5,44.5 + parent: 2 + - uid: 10435 + components: + - type: Transform + pos: 29.5,24.5 + parent: 2 + - uid: 10438 + components: + - type: Transform + pos: 34.5,24.5 parent: 2 - uid: 10455 components: @@ -18724,26 +19410,6 @@ entities: - type: Transform pos: 49.5,19.5 parent: 2 - - uid: 10461 - components: - - type: Transform - pos: 48.5,19.5 - parent: 2 - - uid: 10462 - components: - - type: Transform - pos: 49.5,18.5 - parent: 2 - - uid: 10463 - components: - - type: Transform - pos: 49.5,17.5 - parent: 2 - - uid: 10464 - components: - - type: Transform - pos: 48.5,17.5 - parent: 2 - uid: 10465 components: - type: Transform @@ -18754,20 +19420,10 @@ entities: - type: Transform pos: 55.5,18.5 parent: 2 - - uid: 10467 - components: - - type: Transform - pos: 51.5,22.5 - parent: 2 - uid: 10468 components: - type: Transform - pos: 56.5,11.5 - parent: 2 - - uid: 10469 - components: - - type: Transform - pos: 51.5,23.5 + pos: 26.5,10.5 parent: 2 - uid: 10470 components: @@ -18782,17 +19438,7 @@ entities: - uid: 10472 components: - type: Transform - pos: 55.5,11.5 - parent: 2 - - uid: 10473 - components: - - type: Transform - pos: 54.5,11.5 - parent: 2 - - uid: 10475 - components: - - type: Transform - pos: 54.5,10.5 + pos: 31.5,6.5 parent: 2 - uid: 10476 components: @@ -19014,45 +19660,15 @@ entities: - type: Transform pos: 26.5,14.5 parent: 2 - - uid: 10520 - components: - - type: Transform - pos: 65.5,23.5 - parent: 2 - - uid: 10521 - components: - - type: Transform - pos: 64.5,23.5 - parent: 2 - - uid: 10522 - components: - - type: Transform - pos: 63.5,23.5 - parent: 2 - - uid: 10523 - components: - - type: Transform - pos: 62.5,23.5 - parent: 2 - - uid: 10524 - components: - - type: Transform - pos: 62.5,24.5 - parent: 2 - uid: 10525 components: - type: Transform - pos: 62.5,25.5 + pos: 40.5,20.5 parent: 2 - uid: 10526 components: - type: Transform - pos: 62.5,26.5 - parent: 2 - - uid: 10527 - components: - - type: Transform - pos: 62.5,27.5 + pos: 40.5,19.5 parent: 2 - uid: 10528 components: @@ -19104,51 +19720,16 @@ entities: - type: Transform pos: 70.5,14.5 parent: 2 - - uid: 10538 - components: - - type: Transform - pos: 64.5,11.5 - parent: 2 - - uid: 10539 - components: - - type: Transform - pos: 63.5,11.5 - parent: 2 - uid: 10540 components: - type: Transform pos: 62.5,11.5 parent: 2 - - uid: 10541 - components: - - type: Transform - pos: 61.5,11.5 - parent: 2 - uid: 10542 components: - type: Transform pos: 61.5,10.5 parent: 2 - - uid: 10543 - components: - - type: Transform - pos: 61.5,9.5 - parent: 2 - - uid: 10544 - components: - - type: Transform - pos: 61.5,8.5 - parent: 2 - - uid: 10546 - components: - - type: Transform - pos: 61.5,18.5 - parent: 2 - - uid: 10547 - components: - - type: Transform - pos: 60.5,18.5 - parent: 2 - uid: 10548 components: - type: Transform @@ -19177,7 +19758,7 @@ entities: - uid: 10553 components: - type: Transform - pos: 59.5,13.5 + pos: 57.5,12.5 parent: 2 - uid: 10554 components: @@ -19254,51 +19835,11 @@ entities: - type: Transform pos: 59.5,20.5 parent: 2 - - uid: 10569 - components: - - type: Transform - pos: 59.5,21.5 - parent: 2 - - uid: 10570 - components: - - type: Transform - pos: 59.5,22.5 - parent: 2 - - uid: 10571 - components: - - type: Transform - pos: 59.5,23.5 - parent: 2 - uid: 10572 components: - type: Transform pos: 59.5,24.5 parent: 2 - - uid: 10573 - components: - - type: Transform - pos: 58.5,24.5 - parent: 2 - - uid: 10574 - components: - - type: Transform - pos: 57.5,24.5 - parent: 2 - - uid: 10575 - components: - - type: Transform - pos: 56.5,24.5 - parent: 2 - - uid: 10576 - components: - - type: Transform - pos: 55.5,24.5 - parent: 2 - - uid: 10577 - components: - - type: Transform - pos: 54.5,24.5 - parent: 2 - uid: 10578 components: - type: Transform @@ -19334,6 +19875,146 @@ entities: - type: Transform pos: 56.5,6.5 parent: 2 + - uid: 10596 + components: + - type: Transform + pos: 66.5,7.5 + parent: 2 + - uid: 10599 + components: + - type: Transform + pos: 57.5,28.5 + parent: 2 + - uid: 10672 + components: + - type: Transform + pos: 50.5,38.5 + parent: 2 + - uid: 10696 + components: + - type: Transform + pos: 15.5,4.5 + parent: 2 + - uid: 10711 + components: + - type: Transform + pos: 66.5,46.5 + parent: 2 + - uid: 10765 + components: + - type: Transform + pos: 32.5,17.5 + parent: 2 + - uid: 10769 + components: + - type: Transform + pos: 32.5,19.5 + parent: 2 + - uid: 10805 + components: + - type: Transform + pos: 49.5,27.5 + parent: 2 + - uid: 10838 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 + - uid: 10841 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 + - uid: 10844 + components: + - type: Transform + pos: 53.5,27.5 + parent: 2 + - uid: 10845 + components: + - type: Transform + pos: 54.5,27.5 + parent: 2 + - uid: 10846 + components: + - type: Transform + pos: 55.5,27.5 + parent: 2 + - uid: 10847 + components: + - type: Transform + pos: 56.5,27.5 + parent: 2 + - uid: 10848 + components: + - type: Transform + pos: 57.5,27.5 + parent: 2 + - uid: 10850 + components: + - type: Transform + pos: 57.5,29.5 + parent: 2 + - uid: 10851 + components: + - type: Transform + pos: 58.5,29.5 + parent: 2 + - uid: 10852 + components: + - type: Transform + pos: 59.5,29.5 + parent: 2 + - uid: 10854 + components: + - type: Transform + pos: 60.5,29.5 + parent: 2 + - uid: 10855 + components: + - type: Transform + pos: 60.5,30.5 + parent: 2 + - uid: 10857 + components: + - type: Transform + pos: 60.5,31.5 + parent: 2 + - uid: 10858 + components: + - type: Transform + pos: 60.5,32.5 + parent: 2 + - uid: 10859 + components: + - type: Transform + pos: 60.5,33.5 + parent: 2 + - uid: 10860 + components: + - type: Transform + pos: 60.5,34.5 + parent: 2 + - uid: 10862 + components: + - type: Transform + pos: 31.5,24.5 + parent: 2 + - uid: 10865 + components: + - type: Transform + pos: 35.5,19.5 + parent: 2 + - uid: 10883 + components: + - type: Transform + pos: 55.5,53.5 + parent: 2 + - uid: 10917 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 - uid: 10925 components: - type: Transform @@ -19447,23 +20128,33 @@ entities: - uid: 10953 components: - type: Transform - pos: 50.5,6.5 + pos: 15.5,7.5 parent: 2 - uid: 10954 components: - type: Transform - pos: 51.5,6.5 + pos: 16.5,3.5 parent: 2 - uid: 10955 components: - type: Transform - pos: 52.5,6.5 + pos: 19.5,10.5 parent: 2 - uid: 10957 components: - type: Transform pos: 54.5,4.5 parent: 2 + - uid: 10974 + components: + - type: Transform + pos: 30.5,24.5 + parent: 2 + - uid: 10989 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 - uid: 11008 components: - type: Transform @@ -19489,6 +20180,11 @@ entities: - type: Transform pos: 51.5,3.5 parent: 2 + - uid: 11019 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 - uid: 11023 components: - type: Transform @@ -19529,6 +20225,11 @@ entities: - type: Transform pos: 52.5,-0.5 parent: 2 + - uid: 11033 + components: + - type: Transform + pos: 12.5,18.5 + parent: 2 - uid: 11034 components: - type: Transform @@ -19944,6 +20645,76 @@ entities: - type: Transform pos: 66.5,-11.5 parent: 2 + - uid: 11158 + components: + - type: Transform + pos: 62.5,39.5 + parent: 2 + - uid: 11208 + components: + - type: Transform + pos: 63.5,44.5 + parent: 2 + - uid: 11209 + components: + - type: Transform + pos: 59.5,44.5 + parent: 2 + - uid: 11210 + components: + - type: Transform + pos: 55.5,45.5 + parent: 2 + - uid: 11217 + components: + - type: Transform + pos: 58.5,44.5 + parent: 2 + - uid: 11224 + components: + - type: Transform + pos: 57.5,44.5 + parent: 2 + - uid: 11273 + components: + - type: Transform + pos: 57.5,45.5 + parent: 2 + - uid: 11274 + components: + - type: Transform + pos: 56.5,45.5 + parent: 2 + - uid: 11279 + components: + - type: Transform + pos: 54.5,45.5 + parent: 2 + - uid: 11283 + components: + - type: Transform + pos: 53.5,45.5 + parent: 2 + - uid: 11284 + components: + - type: Transform + pos: 53.5,46.5 + parent: 2 + - uid: 11285 + components: + - type: Transform + pos: 53.5,47.5 + parent: 2 + - uid: 11286 + components: + - type: Transform + pos: 54.5,44.5 + parent: 2 + - uid: 11333 + components: + - type: Transform + pos: 54.5,43.5 + parent: 2 - uid: 11368 components: - type: Transform @@ -20039,21 +20810,76 @@ entities: - type: Transform pos: 61.5,0.5 parent: 2 - - uid: 11473 + - uid: 11465 components: - type: Transform - pos: 7.5,37.5 + pos: 54.5,42.5 + parent: 2 + - uid: 11475 + components: + - type: Transform + pos: 54.5,41.5 parent: 2 - uid: 11632 components: - type: Transform pos: -25.5,-18.5 parent: 2 + - uid: 11665 + components: + - type: Transform + pos: 34.5,19.5 + parent: 2 + - uid: 11667 + components: + - type: Transform + pos: 33.5,19.5 + parent: 2 + - uid: 11668 + components: + - type: Transform + pos: 32.5,18.5 + parent: 2 + - uid: 11669 + components: + - type: Transform + pos: 36.5,19.5 + parent: 2 + - uid: 11671 + components: + - type: Transform + pos: 33.5,24.5 + parent: 2 + - uid: 11673 + components: + - type: Transform + pos: 47.5,40.5 + parent: 2 + - uid: 11698 + components: + - type: Transform + pos: 27.5,36.5 + parent: 2 - uid: 11750 components: - type: Transform pos: 41.5,-34.5 parent: 2 + - uid: 11943 + components: + - type: Transform + pos: 38.5,19.5 + parent: 2 + - uid: 11953 + components: + - type: Transform + pos: 37.5,19.5 + parent: 2 + - uid: 11979 + components: + - type: Transform + pos: 32.5,24.5 + parent: 2 - uid: 11981 components: - type: Transform @@ -20124,11 +20950,6 @@ entities: - type: Transform pos: 74.5,7.5 parent: 2 - - uid: 11998 - components: - - type: Transform - pos: 74.5,6.5 - parent: 2 - uid: 11999 components: - type: Transform @@ -20282,12 +21103,12 @@ entities: - uid: 12029 components: - type: Transform - pos: 65.5,8.5 + pos: 53.5,24.5 parent: 2 - uid: 12030 components: - type: Transform - pos: 65.5,7.5 + pos: 56.5,24.5 parent: 2 - uid: 12031 components: @@ -20347,42 +21168,12 @@ entities: - uid: 12042 components: - type: Transform - pos: 73.5,11.5 + pos: 54.5,24.5 parent: 2 - uid: 12043 components: - type: Transform - pos: 73.5,12.5 - parent: 2 - - uid: 12044 - components: - - type: Transform - pos: 73.5,13.5 - parent: 2 - - uid: 12045 - components: - - type: Transform - pos: 73.5,14.5 - parent: 2 - - uid: 12046 - components: - - type: Transform - pos: 73.5,15.5 - parent: 2 - - uid: 12047 - components: - - type: Transform - pos: 73.5,16.5 - parent: 2 - - uid: 12048 - components: - - type: Transform - pos: 73.5,17.5 - parent: 2 - - uid: 12049 - components: - - type: Transform - pos: 73.5,18.5 + pos: 52.5,24.5 parent: 2 - uid: 12050 components: @@ -20654,16 +21445,66 @@ entities: - type: Transform pos: -21.5,-3.5 parent: 2 + - uid: 12231 + components: + - type: Transform + pos: 44.5,41.5 + parent: 2 + - uid: 12304 + components: + - type: Transform + pos: 19.5,-17.5 + parent: 2 + - uid: 12331 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - uid: 12371 + components: + - type: Transform + pos: 43.5,29.5 + parent: 2 + - uid: 12379 + components: + - type: Transform + pos: 39.5,21.5 + parent: 2 + - uid: 12395 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 12430 + components: + - type: Transform + pos: 49.5,46.5 + parent: 2 + - uid: 12439 + components: + - type: Transform + pos: 42.5,45.5 + parent: 2 - uid: 12448 components: - type: Transform pos: -7.5,-16.5 parent: 2 + - uid: 12450 + components: + - type: Transform + pos: 42.5,26.5 + parent: 2 - uid: 12454 components: - type: Transform pos: -7.5,-9.5 parent: 2 + - uid: 12478 + components: + - type: Transform + pos: 52.5,31.5 + parent: 2 - uid: 12500 components: - type: Transform @@ -20744,6 +21585,21 @@ entities: - type: Transform pos: 101.5,-19.5 parent: 2 + - uid: 12528 + components: + - type: Transform + pos: 56.5,32.5 + parent: 2 + - uid: 12531 + components: + - type: Transform + pos: 56.5,35.5 + parent: 2 + - uid: 12532 + components: + - type: Transform + pos: 55.5,35.5 + parent: 2 - uid: 12533 components: - type: Transform @@ -20809,6 +21665,11 @@ entities: - type: Transform pos: 110.5,-15.5 parent: 2 + - uid: 12559 + components: + - type: Transform + pos: 54.5,35.5 + parent: 2 - uid: 12560 components: - type: Transform @@ -20954,20 +21815,90 @@ entities: - type: Transform pos: 114.5,-16.5 parent: 2 + - uid: 12652 + components: + - type: Transform + pos: 54.5,36.5 + parent: 2 + - uid: 12661 + components: + - type: Transform + pos: 57.5,35.5 + parent: 2 + - uid: 12662 + components: + - type: Transform + pos: 57.5,36.5 + parent: 2 - uid: 12666 components: - type: Transform pos: 29.5,-47.5 parent: 2 + - uid: 12669 + components: + - type: Transform + pos: 57.5,37.5 + parent: 2 + - uid: 12670 + components: + - type: Transform + pos: 57.5,38.5 + parent: 2 + - uid: 12738 + components: + - type: Transform + pos: 58.5,38.5 + parent: 2 + - uid: 12739 + components: + - type: Transform + pos: 54.5,37.5 + parent: 2 + - uid: 12741 + components: + - type: Transform + pos: 55.5,32.5 + parent: 2 - uid: 12742 components: - type: Transform - pos: 31.5,33.5 + pos: 54.5,32.5 parent: 2 - - uid: 12743 + - uid: 12744 components: - type: Transform - pos: 30.5,33.5 + pos: 52.5,32.5 + parent: 2 + - uid: 12747 + components: + - type: Transform + pos: 52.5,30.5 + parent: 2 + - uid: 12748 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 12749 + components: + - type: Transform + pos: 50.5,32.5 + parent: 2 + - uid: 12750 + components: + - type: Transform + pos: 50.5,33.5 + parent: 2 + - uid: 12759 + components: + - type: Transform + pos: 41.5,25.5 + parent: 2 + - uid: 12766 + components: + - type: Transform + pos: 51.5,31.5 parent: 2 - uid: 12779 components: @@ -21109,6 +22040,21 @@ entities: - type: Transform pos: 43.5,-48.5 parent: 2 + - uid: 13125 + components: + - type: Transform + pos: 50.5,31.5 + parent: 2 + - uid: 13132 + components: + - type: Transform + pos: 49.5,31.5 + parent: 2 + - uid: 13138 + components: + - type: Transform + pos: 48.5,31.5 + parent: 2 - uid: 13140 components: - type: Transform @@ -21144,6 +22090,16 @@ entities: - type: Transform pos: -23.5,-3.5 parent: 2 + - uid: 13154 + components: + - type: Transform + pos: 47.5,31.5 + parent: 2 + - uid: 13177 + components: + - type: Transform + pos: 46.5,31.5 + parent: 2 - uid: 13181 components: - type: Transform @@ -21154,6 +22110,11 @@ entities: - type: Transform pos: -23.5,-7.5 parent: 2 + - uid: 13183 + components: + - type: Transform + pos: 40.5,31.5 + parent: 2 - uid: 13244 components: - type: Transform @@ -21204,6 +22165,11 @@ entities: - type: Transform pos: -12.5,0.5 parent: 2 + - uid: 13288 + components: + - type: Transform + pos: 40.5,46.5 + parent: 2 - uid: 13304 components: - type: Transform @@ -21224,30 +22190,200 @@ entities: - type: Transform pos: 10.5,-42.5 parent: 2 - - uid: 13509 + - uid: 13497 components: - type: Transform - pos: 54.5,32.5 + pos: 53.5,36.5 parent: 2 - - uid: 13513 + - uid: 13500 components: - type: Transform - pos: 57.5,40.5 + pos: 52.5,36.5 parent: 2 - - uid: 13516 + - uid: 13504 components: - type: Transform - pos: 58.5,40.5 + pos: 54.5,38.5 parent: 2 - - uid: 13528 + - uid: 13532 components: - type: Transform - pos: 57.5,32.5 + pos: 40.5,34.5 + parent: 2 + - uid: 13560 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 13566 + components: + - type: Transform + pos: 38.5,32.5 + parent: 2 + - uid: 13567 + components: + - type: Transform + pos: 39.5,31.5 parent: 2 - uid: 13570 components: - type: Transform - pos: 47.5,28.5 + pos: 44.5,34.5 + parent: 2 + - uid: 13571 + components: + - type: Transform + pos: 44.5,35.5 + parent: 2 + - uid: 13573 + components: + - type: Transform + pos: 44.5,36.5 + parent: 2 + - uid: 13582 + components: + - type: Transform + pos: 35.5,42.5 + parent: 2 + - uid: 13589 + components: + - type: Transform + pos: 39.5,42.5 + parent: 2 + - uid: 13599 + components: + - type: Transform + pos: 38.5,27.5 + parent: 2 + - uid: 13600 + components: + - type: Transform + pos: 38.5,28.5 + parent: 2 + - uid: 13601 + components: + - type: Transform + pos: 37.5,31.5 + parent: 2 + - uid: 13602 + components: + - type: Transform + pos: 36.5,31.5 + parent: 2 + - uid: 13603 + components: + - type: Transform + pos: 35.5,31.5 + parent: 2 + - uid: 13604 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - uid: 13605 + components: + - type: Transform + pos: 33.5,31.5 + parent: 2 + - uid: 13606 + components: + - type: Transform + pos: 34.5,32.5 + parent: 2 + - uid: 13607 + components: + - type: Transform + pos: 34.5,33.5 + parent: 2 + - uid: 13610 + components: + - type: Transform + pos: 35.5,33.5 + parent: 2 + - uid: 13611 + components: + - type: Transform + pos: 36.5,33.5 + parent: 2 + - uid: 13612 + components: + - type: Transform + pos: 33.5,30.5 + parent: 2 + - uid: 13613 + components: + - type: Transform + pos: 32.5,30.5 + parent: 2 + - uid: 13619 + components: + - type: Transform + pos: 31.5,30.5 + parent: 2 + - uid: 13620 + components: + - type: Transform + pos: 30.5,30.5 + parent: 2 + - uid: 13621 + components: + - type: Transform + pos: 29.5,30.5 + parent: 2 + - uid: 13622 + components: + - type: Transform + pos: 33.5,29.5 + parent: 2 + - uid: 13623 + components: + - type: Transform + pos: 33.5,28.5 + parent: 2 + - uid: 13624 + components: + - type: Transform + pos: 33.5,27.5 + parent: 2 + - uid: 13625 + components: + - type: Transform + pos: 32.5,27.5 + parent: 2 + - uid: 13626 + components: + - type: Transform + pos: 31.5,27.5 + parent: 2 + - uid: 13627 + components: + - type: Transform + pos: 30.5,27.5 + parent: 2 + - uid: 13628 + components: + - type: Transform + pos: 29.5,27.5 + parent: 2 + - uid: 13631 + components: + - type: Transform + pos: 26.5,24.5 + parent: 2 + - uid: 13632 + components: + - type: Transform + pos: 51.5,27.5 + parent: 2 + - uid: 13633 + components: + - type: Transform + pos: 26.5,25.5 + parent: 2 + - uid: 13636 + components: + - type: Transform + pos: 55.5,11.5 parent: 2 - uid: 13669 components: @@ -21299,10 +22435,10 @@ entities: - type: Transform pos: -26.5,-20.5 parent: 2 - - uid: 13706 + - uid: 13690 components: - type: Transform - pos: 3.5,24.5 + pos: 19.5,9.5 parent: 2 - uid: 13707 components: @@ -21564,6 +22700,11 @@ entities: - type: Transform pos: 73.5,23.5 parent: 2 + - uid: 14443 + components: + - type: Transform + pos: 26.5,23.5 + parent: 2 - uid: 14444 components: - type: Transform @@ -21622,12 +22763,7 @@ entities: - uid: 14455 components: - type: Transform - pos: 88.5,28.5 - parent: 2 - - uid: 14456 - components: - - type: Transform - pos: 88.5,29.5 + pos: 26.5,22.5 parent: 2 - uid: 14457 components: @@ -21744,15 +22880,10 @@ entities: - type: Transform pos: 96.5,29.5 parent: 2 - - uid: 14625 + - uid: 14633 components: - type: Transform - pos: 64.5,45.5 - parent: 2 - - uid: 14626 - components: - - type: Transform - pos: 64.5,44.5 + pos: 18.5,-18.5 parent: 2 - uid: 14634 components: @@ -21779,20 +22910,25 @@ entities: - type: Transform pos: 81.5,24.5 parent: 2 + - uid: 14639 + components: + - type: Transform + pos: 18.5,-19.5 + parent: 2 - uid: 14640 components: - type: Transform - pos: 35.5,29.5 + pos: 18.5,-20.5 parent: 2 - - uid: 14681 + - uid: 14654 components: - type: Transform - pos: 13.5,19.5 + pos: 74.5,18.5 parent: 2 - uid: 14682 components: - type: Transform - pos: 13.5,20.5 + pos: 9.5,17.5 parent: 2 - uid: 14683 components: @@ -21914,20 +23050,50 @@ entities: - type: Transform pos: 6.5,31.5 parent: 2 - - uid: 14743 - components: - - type: Transform - pos: 6.5,38.5 - parent: 2 - uid: 14744 components: - type: Transform pos: 5.5,38.5 parent: 2 - - uid: 14763 + - uid: 14786 components: - type: Transform - pos: 9.5,18.5 + pos: 26.5,21.5 + parent: 2 + - uid: 14791 + components: + - type: Transform + pos: 26.5,20.5 + parent: 2 + - uid: 14794 + components: + - type: Transform + pos: 26.5,19.5 + parent: 2 + - uid: 14836 + components: + - type: Transform + pos: 43.5,41.5 + parent: 2 + - uid: 14842 + components: + - type: Transform + pos: 47.5,32.5 + parent: 2 + - uid: 14848 + components: + - type: Transform + pos: 34.5,42.5 + parent: 2 + - uid: 14862 + components: + - type: Transform + pos: 34.5,23.5 + parent: 2 + - uid: 14885 + components: + - type: Transform + pos: 39.5,40.5 parent: 2 - uid: 14905 components: @@ -21954,60 +23120,10 @@ entities: - type: Transform pos: 8.5,21.5 parent: 2 - - uid: 14915 + - uid: 14962 components: - type: Transform - pos: 18.5,18.5 - parent: 2 - - uid: 14931 - components: - - type: Transform - pos: 36.5,34.5 - parent: 2 - - uid: 14932 - components: - - type: Transform - pos: 33.5,32.5 - parent: 2 - - uid: 14936 - components: - - type: Transform - pos: 31.5,36.5 - parent: 2 - - uid: 14937 - components: - - type: Transform - pos: 32.5,36.5 - parent: 2 - - uid: 14938 - components: - - type: Transform - pos: 33.5,36.5 - parent: 2 - - uid: 14939 - components: - - type: Transform - pos: 41.5,41.5 - parent: 2 - - uid: 14940 - components: - - type: Transform - pos: 42.5,41.5 - parent: 2 - - uid: 14941 - components: - - type: Transform - pos: 43.5,41.5 - parent: 2 - - uid: 14942 - components: - - type: Transform - pos: 44.5,41.5 - parent: 2 - - uid: 14943 - components: - - type: Transform - pos: 40.5,41.5 + pos: 49.5,14.5 parent: 2 - uid: 15008 components: @@ -22039,6 +23155,11 @@ entities: - type: Transform pos: 41.5,-12.5 parent: 2 + - uid: 15085 + components: + - type: Transform + pos: 57.5,13.5 + parent: 2 - uid: 15319 components: - type: Transform @@ -22064,11 +23185,6 @@ entities: - type: Transform pos: 28.5,-32.5 parent: 2 - - uid: 15387 - components: - - type: Transform - pos: 39.5,27.5 - parent: 2 - uid: 15402 components: - type: Transform @@ -22084,6 +23200,11 @@ entities: - type: Transform pos: 11.5,-29.5 parent: 2 + - uid: 15449 + components: + - type: Transform + pos: 26.5,18.5 + parent: 2 - uid: 15463 components: - type: Transform @@ -22094,33 +23215,263 @@ entities: - type: Transform pos: 55.5,-19.5 parent: 2 - - uid: 15465 + - uid: 15499 components: - type: Transform - pos: 40.5,42.5 + pos: 19.5,-16.5 parent: 2 - - uid: 15474 + - uid: 15500 components: - type: Transform - pos: 43.5,22.5 + pos: 17.5,-18.5 parent: 2 - - uid: 15475 + - uid: 15580 components: - type: Transform - pos: 43.5,21.5 + pos: 74.5,13.5 + parent: 2 + - uid: 15592 + components: + - type: Transform + pos: 64.5,24.5 + parent: 2 + - uid: 15593 + components: + - type: Transform + pos: 64.5,23.5 + parent: 2 + - uid: 15594 + components: + - type: Transform + pos: 64.5,22.5 + parent: 2 + - uid: 15595 + components: + - type: Transform + pos: 65.5,22.5 + parent: 2 + - uid: 15617 + components: + - type: Transform + pos: 44.5,10.5 + parent: 2 + - uid: 15633 + components: + - type: Transform + pos: 24.5,31.5 + parent: 2 + - uid: 15636 + components: + - type: Transform + pos: 25.5,31.5 + parent: 2 + - uid: 15637 + components: + - type: Transform + pos: 69.5,44.5 + parent: 2 + - uid: 15640 + components: + - type: Transform + pos: 60.5,47.5 + parent: 2 + - uid: 15641 + components: + - type: Transform + pos: 59.5,47.5 + parent: 2 + - uid: 15642 + components: + - type: Transform + pos: 69.5,43.5 + parent: 2 + - uid: 15643 + components: + - type: Transform + pos: 69.5,42.5 + parent: 2 + - uid: 15645 + components: + - type: Transform + pos: 68.5,42.5 + parent: 2 + - uid: 15647 + components: + - type: Transform + pos: 61.5,36.5 + parent: 2 + - uid: 15648 + components: + - type: Transform + pos: 61.5,37.5 + parent: 2 + - uid: 15650 + components: + - type: Transform + pos: 51.5,38.5 + parent: 2 + - uid: 15664 + components: + - type: Transform + pos: 37.5,38.5 + parent: 2 + - uid: 15665 + components: + - type: Transform + pos: 38.5,38.5 + parent: 2 + - uid: 15666 + components: + - type: Transform + pos: 39.5,38.5 + parent: 2 + - uid: 15692 + components: + - type: Transform + pos: 32.5,34.5 + parent: 2 + - uid: 15693 + components: + - type: Transform + pos: 31.5,34.5 + parent: 2 + - uid: 15711 + components: + - type: Transform + pos: 62.5,46.5 + parent: 2 + - uid: 15712 + components: + - type: Transform + pos: 62.5,45.5 + parent: 2 + - uid: 15814 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 2 + - uid: 15820 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - uid: 15821 + components: + - type: Transform + pos: 10.5,20.5 + parent: 2 + - uid: 15822 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 + - uid: 15827 + components: + - type: Transform + pos: 67.5,27.5 + parent: 2 + - uid: 15828 + components: + - type: Transform + pos: 68.5,27.5 + parent: 2 + - uid: 15829 + components: + - type: Transform + pos: 37.5,20.5 + parent: 2 + - uid: 15830 + components: + - type: Transform + pos: 69.5,27.5 + parent: 2 + - uid: 15831 + components: + - type: Transform + pos: 69.5,28.5 + parent: 2 + - uid: 15832 + components: + - type: Transform + pos: 69.5,29.5 + parent: 2 + - uid: 15833 + components: + - type: Transform + pos: 69.5,30.5 + parent: 2 + - uid: 15834 + components: + - type: Transform + pos: 69.5,31.5 + parent: 2 + - uid: 15835 + components: + - type: Transform + pos: 72.5,30.5 + parent: 2 + - uid: 15836 + components: + - type: Transform + pos: 72.5,29.5 + parent: 2 + - uid: 15837 + components: + - type: Transform + pos: 72.5,28.5 + parent: 2 + - uid: 15838 + components: + - type: Transform + pos: 72.5,27.5 + parent: 2 + - uid: 15850 + components: + - type: Transform + pos: 9.5,10.5 + parent: 2 + - uid: 15852 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 + - uid: 15853 + components: + - type: Transform + pos: 9.5,8.5 + parent: 2 + - uid: 15854 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 15866 + components: + - type: Transform + pos: 19.5,8.5 + parent: 2 + - uid: 15888 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - uid: 15889 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 15890 + components: + - type: Transform + pos: 33.5,8.5 + parent: 2 + - uid: 15891 + components: + - type: Transform + pos: 29.5,8.5 parent: 2 - proto: CableApcStack entities: - - uid: 5386 - components: - - type: Transform - pos: 50.555935,8.595494 - parent: 2 - - uid: 5387 - components: - - type: Transform - pos: 50.555935,8.595494 - parent: 2 - uid: 5627 components: - type: Transform @@ -22129,15 +23480,43 @@ entities: - uid: 11130 components: - type: Transform - pos: 54.504898,-15.262592 + pos: 54.44119,-15.013644 + parent: 2 + - uid: 15892 + components: + - type: Transform + pos: 45.046143,9.516216 + parent: 2 + - uid: 15893 + components: + - type: Transform + pos: 44.968018,9.688091 parent: 2 - proto: CableApcStack1 entities: + - uid: 3248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.185898,38.850254 + parent: 2 - uid: 6180 components: - type: Transform pos: 84.31913,7.409586 parent: 2 + - uid: 9286 + components: + - type: Transform + pos: 58.250378,48.64745 + parent: 2 +- proto: CablecuffsBroken + entities: + - uid: 15704 + components: + - type: Transform + pos: 61.707733,50.42947 + parent: 2 - proto: CableHV entities: - uid: 11 @@ -22150,21 +23529,6 @@ entities: - type: Transform pos: 15.5,-13.5 parent: 2 - - uid: 63 - components: - - type: Transform - pos: 16.5,-11.5 - parent: 2 - - uid: 64 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 2 - - uid: 65 - components: - - type: Transform - pos: 14.5,-11.5 - parent: 2 - uid: 66 components: - type: Transform @@ -22190,26 +23554,36 @@ entities: - type: Transform pos: 26.5,-32.5 parent: 2 + - uid: 232 + components: + - type: Transform + pos: 85.5,40.5 + parent: 2 - uid: 338 components: - type: Transform pos: 24.5,-32.5 parent: 2 - - uid: 603 + - uid: 625 components: - type: Transform - pos: 42.5,41.5 + pos: 11.5,-21.5 parent: 2 - - uid: 628 + - uid: 629 components: - type: Transform - pos: 60.5,18.5 + pos: 16.5,-11.5 parent: 2 - uid: 682 components: - type: Transform pos: 25.5,-31.5 parent: 2 + - uid: 780 + components: + - type: Transform + pos: 62.5,45.5 + parent: 2 - uid: 828 components: - type: Transform @@ -22275,76 +23649,61 @@ entities: - type: Transform pos: 17.5,-33.5 parent: 2 - - uid: 2319 + - uid: 2134 components: - type: Transform - pos: 45.5,34.5 + pos: -3.5,-30.5 parent: 2 - - uid: 2324 + - uid: 2188 components: - type: Transform - pos: 45.5,38.5 + pos: 40.5,43.5 parent: 2 - - uid: 2332 + - uid: 2200 components: - type: Transform - pos: 43.5,41.5 + pos: 32.5,36.5 parent: 2 - - uid: 2347 + - uid: 2209 components: - type: Transform - pos: 45.5,37.5 + pos: 30.5,34.5 parent: 2 - - uid: 2353 + - uid: 2211 components: - type: Transform - pos: 45.5,35.5 + pos: 28.5,34.5 parent: 2 - - uid: 2354 + - uid: 2238 components: - type: Transform - pos: 45.5,32.5 + pos: 33.5,36.5 parent: 2 - - uid: 2355 + - uid: 2277 components: - type: Transform - pos: 45.5,33.5 + pos: 87.5,40.5 parent: 2 - - uid: 2356 + - uid: 2301 components: - type: Transform - pos: 45.5,31.5 + pos: 32.5,34.5 parent: 2 - - uid: 2360 + - uid: 2375 components: - type: Transform - pos: 45.5,30.5 - parent: 2 - - uid: 2361 - components: - - type: Transform - pos: 45.5,29.5 - parent: 2 - - uid: 2362 - components: - - type: Transform - pos: 45.5,28.5 - parent: 2 - - uid: 2366 - components: - - type: Transform - pos: 45.5,27.5 - parent: 2 - - uid: 2380 - components: - - type: Transform - pos: 45.5,36.5 + pos: 77.5,50.5 parent: 2 - uid: 2387 components: - type: Transform pos: 25.5,-28.5 parent: 2 + - uid: 2470 + components: + - type: Transform + pos: 54.5,27.5 + parent: 2 - uid: 2564 components: - type: Transform @@ -22355,6 +23714,16 @@ entities: - type: Transform pos: 70.5,-12.5 parent: 2 + - uid: 2676 + components: + - type: Transform + pos: 39.5,40.5 + parent: 2 + - uid: 2677 + components: + - type: Transform + pos: 39.5,39.5 + parent: 2 - uid: 2711 components: - type: Transform @@ -22390,30 +23759,105 @@ entities: - type: Transform pos: 22.5,9.5 parent: 2 + - uid: 3074 + components: + - type: Transform + pos: 77.5,40.5 + parent: 2 + - uid: 3099 + components: + - type: Transform + pos: 55.5,27.5 + parent: 2 + - uid: 3100 + components: + - type: Transform + pos: 51.5,27.5 + parent: 2 + - uid: 3111 + components: + - type: Transform + pos: 29.5,34.5 + parent: 2 + - uid: 3151 + components: + - type: Transform + pos: 39.5,41.5 + parent: 2 - uid: 3163 components: - type: Transform pos: 67.5,19.5 parent: 2 - - uid: 3165 + - uid: 3185 components: - type: Transform - pos: 31.5,33.5 + pos: 40.5,46.5 parent: 2 - - uid: 3171 + - uid: 3223 components: - type: Transform - pos: 30.5,33.5 + pos: 63.5,34.5 parent: 2 - - uid: 3183 + - uid: 3228 components: - type: Transform - pos: 35.5,33.5 + pos: 10.5,-22.5 parent: 2 - - uid: 3184 + - uid: 3254 components: - type: Transform - pos: 36.5,33.5 + pos: 66.5,43.5 + parent: 2 + - uid: 3255 + components: + - type: Transform + pos: 66.5,44.5 + parent: 2 + - uid: 3256 + components: + - type: Transform + pos: 65.5,44.5 + parent: 2 + - uid: 3278 + components: + - type: Transform + pos: 31.5,34.5 + parent: 2 + - uid: 3281 + components: + - type: Transform + pos: 32.5,35.5 + parent: 2 + - uid: 3315 + components: + - type: Transform + pos: 51.5,47.5 + parent: 2 + - uid: 3386 + components: + - type: Transform + pos: 46.5,27.5 + parent: 2 + - uid: 3453 + components: + - type: Transform + pos: 79.5,50.5 + parent: 2 + - uid: 3477 + components: + - type: Transform + pos: 53.5,27.5 + parent: 2 + - uid: 3844 + components: + - type: Transform + pos: 52.5,47.5 + parent: 2 + - uid: 3965 + components: + - type: Transform + pos: 46.5,19.5 parent: 2 - uid: 3980 components: @@ -22425,15 +23869,20 @@ entities: - type: Transform pos: 27.5,-32.5 parent: 2 - - uid: 4123 + - uid: 4127 components: - type: Transform - pos: 64.5,17.5 + pos: 46.5,25.5 + parent: 2 + - uid: 4128 + components: + - type: Transform + pos: 46.5,24.5 parent: 2 - uid: 4129 components: - type: Transform - pos: 60.5,25.5 + pos: 46.5,23.5 parent: 2 - uid: 4213 components: @@ -22455,6 +23904,16 @@ entities: - type: Transform pos: 22.5,-36.5 parent: 2 + - uid: 4291 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - uid: 4304 + components: + - type: Transform + pos: 45.5,46.5 + parent: 2 - uid: 4307 components: - type: Transform @@ -22470,6 +23929,16 @@ entities: - type: Transform pos: 23.5,-42.5 parent: 2 + - uid: 4401 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 4406 + components: + - type: Transform + pos: 61.5,36.5 + parent: 2 - uid: 4503 components: - type: Transform @@ -22985,11 +24454,6 @@ entities: - type: Transform pos: -5.5,-32.5 parent: 2 - - uid: 4843 - components: - - type: Transform - pos: -5.5,-31.5 - parent: 2 - uid: 4844 components: - type: Transform @@ -23135,10 +24599,45 @@ entities: - type: Transform pos: 22.5,5.5 parent: 2 - - uid: 5146 + - uid: 4914 components: - type: Transform - pos: 41.5,41.5 + pos: 47.5,46.5 + parent: 2 + - uid: 5298 + components: + - type: Transform + pos: 42.5,46.5 + parent: 2 + - uid: 5317 + components: + - type: Transform + pos: 44.5,46.5 + parent: 2 + - uid: 5338 + components: + - type: Transform + pos: 46.5,46.5 + parent: 2 + - uid: 5474 + components: + - type: Transform + pos: 48.5,46.5 + parent: 2 + - uid: 5501 + components: + - type: Transform + pos: 79.5,40.5 + parent: 2 + - uid: 5507 + components: + - type: Transform + pos: 61.5,47.5 + parent: 2 + - uid: 5516 + components: + - type: Transform + pos: 60.5,47.5 parent: 2 - uid: 5660 components: @@ -23165,6 +24664,11 @@ entities: - type: Transform pos: 25.5,-32.5 parent: 2 + - uid: 5686 + components: + - type: Transform + pos: 59.5,47.5 + parent: 2 - uid: 5726 components: - type: Transform @@ -23183,7 +24687,7 @@ entities: - uid: 5873 components: - type: Transform - pos: 63.5,48.5 + pos: 62.5,47.5 parent: 2 - uid: 5903 components: @@ -23270,26 +24774,6 @@ entities: - type: Transform pos: 10.5,-23.5 parent: 2 - - uid: 5928 - components: - - type: Transform - pos: 11.5,-23.5 - parent: 2 - - uid: 5929 - components: - - type: Transform - pos: 11.5,-22.5 - parent: 2 - - uid: 5930 - components: - - type: Transform - pos: 11.5,-21.5 - parent: 2 - - uid: 5931 - components: - - type: Transform - pos: 11.5,-20.5 - parent: 2 - uid: 5932 components: - type: Transform @@ -24005,6 +25489,16 @@ entities: - type: Transform pos: 82.5,4.5 parent: 2 + - uid: 6131 + components: + - type: Transform + pos: 43.5,46.5 + parent: 2 + - uid: 6138 + components: + - type: Transform + pos: 62.5,36.5 + parent: 2 - uid: 6141 components: - type: Transform @@ -24260,6 +25754,11 @@ entities: - type: Transform pos: 66.5,29.5 parent: 2 + - uid: 6196 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 - uid: 6200 components: - type: Transform @@ -24390,16 +25889,6 @@ entities: - type: Transform pos: 77.5,47.5 parent: 2 - - uid: 6230 - components: - - type: Transform - pos: 77.5,48.5 - parent: 2 - - uid: 6231 - components: - - type: Transform - pos: 77.5,49.5 - parent: 2 - uid: 6232 components: - type: Transform @@ -24450,16 +25939,6 @@ entities: - type: Transform pos: 78.5,43.5 parent: 2 - - uid: 6243 - components: - - type: Transform - pos: 78.5,44.5 - parent: 2 - - uid: 6244 - components: - - type: Transform - pos: 78.5,46.5 - parent: 2 - uid: 6245 components: - type: Transform @@ -24510,11 +25989,6 @@ entities: - type: Transform pos: 82.5,47.5 parent: 2 - - uid: 6255 - components: - - type: Transform - pos: 82.5,46.5 - parent: 2 - uid: 6256 components: - type: Transform @@ -24560,11 +26034,6 @@ entities: - type: Transform pos: 82.5,43.5 parent: 2 - - uid: 6265 - components: - - type: Transform - pos: 82.5,44.5 - parent: 2 - uid: 6266 components: - type: Transform @@ -24585,11 +26054,6 @@ entities: - type: Transform pos: 86.5,47.5 parent: 2 - - uid: 6270 - components: - - type: Transform - pos: 86.5,46.5 - parent: 2 - uid: 6271 components: - type: Transform @@ -24640,11 +26104,6 @@ entities: - type: Transform pos: 86.5,43.5 parent: 2 - - uid: 6281 - components: - - type: Transform - pos: 86.5,44.5 - parent: 2 - uid: 6282 components: - type: Transform @@ -24655,66 +26114,6 @@ entities: - type: Transform pos: 88.5,45.5 parent: 2 - - uid: 6285 - components: - - type: Transform - pos: 67.5,43.5 - parent: 2 - - uid: 6286 - components: - - type: Transform - pos: 67.5,44.5 - parent: 2 - - uid: 6287 - components: - - type: Transform - pos: 67.5,45.5 - parent: 2 - - uid: 6288 - components: - - type: Transform - pos: 67.5,46.5 - parent: 2 - - uid: 6289 - components: - - type: Transform - pos: 66.5,46.5 - parent: 2 - - uid: 6290 - components: - - type: Transform - pos: 65.5,46.5 - parent: 2 - - uid: 6291 - components: - - type: Transform - pos: 64.5,46.5 - parent: 2 - - uid: 6292 - components: - - type: Transform - pos: 63.5,46.5 - parent: 2 - - uid: 6293 - components: - - type: Transform - pos: 63.5,47.5 - parent: 2 - - uid: 6294 - components: - - type: Transform - pos: 62.5,48.5 - parent: 2 - - uid: 6295 - components: - - type: Transform - pos: 61.5,48.5 - parent: 2 - - uid: 6296 - components: - - type: Transform - pos: 60.5,48.5 - parent: 2 - uid: 6297 components: - type: Transform @@ -24750,100 +26149,10 @@ entities: - type: Transform pos: 53.5,48.5 parent: 2 - - uid: 6304 - components: - - type: Transform - pos: 52.5,48.5 - parent: 2 - uid: 6305 components: - type: Transform - pos: 51.5,48.5 - parent: 2 - - uid: 6306 - components: - - type: Transform - pos: 50.5,48.5 - parent: 2 - - uid: 6307 - components: - - type: Transform - pos: 49.5,48.5 - parent: 2 - - uid: 6310 - components: - - type: Transform - pos: 49.5,47.5 - parent: 2 - - uid: 6311 - components: - - type: Transform - pos: 48.5,47.5 - parent: 2 - - uid: 6312 - components: - - type: Transform - pos: 47.5,47.5 - parent: 2 - - uid: 6313 - components: - - type: Transform - pos: 46.5,47.5 - parent: 2 - - uid: 6314 - components: - - type: Transform - pos: 46.5,46.5 - parent: 2 - - uid: 6315 - components: - - type: Transform - pos: 45.5,46.5 - parent: 2 - - uid: 6317 - components: - - type: Transform - pos: 47.5,26.5 - parent: 2 - - uid: 6318 - components: - - type: Transform - pos: 44.5,46.5 - parent: 2 - - uid: 6319 - components: - - type: Transform - pos: 44.5,45.5 - parent: 2 - - uid: 6320 - components: - - type: Transform - pos: 44.5,44.5 - parent: 2 - - uid: 6321 - components: - - type: Transform - pos: 44.5,43.5 - parent: 2 - - uid: 6322 - components: - - type: Transform - pos: 44.5,42.5 - parent: 2 - - uid: 6323 - components: - - type: Transform - pos: 44.5,41.5 - parent: 2 - - uid: 6326 - components: - - type: Transform - pos: 45.5,39.5 - parent: 2 - - uid: 6341 - components: - - type: Transform - pos: 46.5,27.5 + pos: 53.5,47.5 parent: 2 - uid: 6343 components: @@ -24865,36 +26174,6 @@ entities: - type: Transform pos: 50.5,27.5 parent: 2 - - uid: 6347 - components: - - type: Transform - pos: 47.5,25.5 - parent: 2 - - uid: 6348 - components: - - type: Transform - pos: 47.5,24.5 - parent: 2 - - uid: 6349 - components: - - type: Transform - pos: 47.5,23.5 - parent: 2 - - uid: 6350 - components: - - type: Transform - pos: 47.5,22.5 - parent: 2 - - uid: 6351 - components: - - type: Transform - pos: 47.5,21.5 - parent: 2 - - uid: 6352 - components: - - type: Transform - pos: 47.5,20.5 - parent: 2 - uid: 6353 components: - type: Transform @@ -25115,16 +26394,6 @@ entities: - type: Transform pos: 65.5,6.5 parent: 2 - - uid: 6399 - components: - - type: Transform - pos: 65.5,7.5 - parent: 2 - - uid: 6400 - components: - - type: Transform - pos: 65.5,8.5 - parent: 2 - uid: 6401 components: - type: Transform @@ -25360,6 +26629,11 @@ entities: - type: Transform pos: 20.5,-39.5 parent: 2 + - uid: 6532 + components: + - type: Transform + pos: 85.5,50.5 + parent: 2 - uid: 6897 components: - type: Transform @@ -25710,6 +26984,11 @@ entities: - type: Transform pos: 16.5,-41.5 parent: 2 + - uid: 8031 + components: + - type: Transform + pos: 62.5,19.5 + parent: 2 - uid: 8107 components: - type: Transform @@ -25725,6 +27004,51 @@ entities: - type: Transform pos: 8.5,16.5 parent: 2 + - uid: 8366 + components: + - type: Transform + pos: 50.5,47.5 + parent: 2 + - uid: 8479 + components: + - type: Transform + pos: 87.5,50.5 + parent: 2 + - uid: 8514 + components: + - type: Transform + pos: 63.5,44.5 + parent: 2 + - uid: 8515 + components: + - type: Transform + pos: 64.5,44.5 + parent: 2 + - uid: 8536 + components: + - type: Transform + pos: 77.5,48.5 + parent: 2 + - uid: 8544 + components: + - type: Transform + pos: 46.5,22.5 + parent: 2 + - uid: 8581 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - uid: 8588 + components: + - type: Transform + pos: 46.5,20.5 + parent: 2 + - uid: 8759 + components: + - type: Transform + pos: 40.5,42.5 + parent: 2 - uid: 8818 components: - type: Transform @@ -25740,6 +27064,11 @@ entities: - type: Transform pos: 120.5,-17.5 parent: 2 + - uid: 9299 + components: + - type: Transform + pos: 77.5,49.5 + parent: 2 - uid: 9370 components: - type: Transform @@ -25875,46 +27204,6 @@ entities: - type: Transform pos: 27.5,27.5 parent: 2 - - uid: 9439 - components: - - type: Transform - pos: 40.5,41.5 - parent: 2 - - uid: 9440 - components: - - type: Transform - pos: 39.5,41.5 - parent: 2 - - uid: 9441 - components: - - type: Transform - pos: 39.5,40.5 - parent: 2 - - uid: 9442 - components: - - type: Transform - pos: 39.5,39.5 - parent: 2 - - uid: 9443 - components: - - type: Transform - pos: 39.5,38.5 - parent: 2 - - uid: 9444 - components: - - type: Transform - pos: 38.5,38.5 - parent: 2 - - uid: 9445 - components: - - type: Transform - pos: 37.5,38.5 - parent: 2 - - uid: 9446 - components: - - type: Transform - pos: 36.5,38.5 - parent: 2 - uid: 9447 components: - type: Transform @@ -25935,36 +27224,6 @@ entities: - type: Transform pos: 34.5,36.5 parent: 2 - - uid: 9451 - components: - - type: Transform - pos: 34.5,35.5 - parent: 2 - - uid: 9452 - components: - - type: Transform - pos: 34.5,34.5 - parent: 2 - - uid: 9453 - components: - - type: Transform - pos: 34.5,33.5 - parent: 2 - - uid: 9458 - components: - - type: Transform - pos: 30.5,32.5 - parent: 2 - - uid: 9459 - components: - - type: Transform - pos: 29.5,32.5 - parent: 2 - - uid: 9460 - components: - - type: Transform - pos: 28.5,32.5 - parent: 2 - uid: 9462 components: - type: Transform @@ -26125,11 +27384,6 @@ entities: - type: Transform pos: 17.5,-7.5 parent: 2 - - uid: 9499 - components: - - type: Transform - pos: 17.5,-11.5 - parent: 2 - uid: 9500 components: - type: Transform @@ -26300,6 +27554,11 @@ entities: - type: Transform pos: 14.5,35.5 parent: 2 + - uid: 9745 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 - uid: 9821 components: - type: Transform @@ -26415,11 +27674,136 @@ entities: - type: Transform pos: 27.5,13.5 parent: 2 + - uid: 10317 + components: + - type: Transform + pos: 56.5,27.5 + parent: 2 + - uid: 10318 + components: + - type: Transform + pos: 49.5,47.5 + parent: 2 + - uid: 10343 + components: + - type: Transform + pos: 57.5,27.5 + parent: 2 + - uid: 10410 + components: + - type: Transform + pos: 57.5,28.5 + parent: 2 + - uid: 10411 + components: + - type: Transform + pos: 57.5,29.5 + parent: 2 + - uid: 10412 + components: + - type: Transform + pos: 58.5,29.5 + parent: 2 + - uid: 10422 + components: + - type: Transform + pos: 59.5,29.5 + parent: 2 + - uid: 10423 + components: + - type: Transform + pos: 60.5,29.5 + parent: 2 + - uid: 10424 + components: + - type: Transform + pos: 60.5,30.5 + parent: 2 + - uid: 10427 + components: + - type: Transform + pos: 60.5,31.5 + parent: 2 + - uid: 10428 + components: + - type: Transform + pos: 60.5,32.5 + parent: 2 + - uid: 10429 + components: + - type: Transform + pos: 60.5,33.5 + parent: 2 + - uid: 10430 + components: + - type: Transform + pos: 60.5,34.5 + parent: 2 + - uid: 10437 + components: + - type: Transform + pos: 64.5,34.5 + parent: 2 + - uid: 10439 + components: + - type: Transform + pos: 61.5,34.5 + parent: 2 + - uid: 10451 + components: + - type: Transform + pos: 40.5,44.5 + parent: 2 + - uid: 10462 + components: + - type: Transform + pos: 66.5,7.5 + parent: 2 + - uid: 10664 + components: + - type: Transform + pos: 66.5,6.5 + parent: 2 + - uid: 10772 + components: + - type: Transform + pos: 65.5,34.5 + parent: 2 + - uid: 10970 + components: + - type: Transform + pos: 62.5,34.5 + parent: 2 - uid: 11811 components: - type: Transform pos: 10.5,16.5 parent: 2 + - uid: 12044 + components: + - type: Transform + pos: 49.5,46.5 + parent: 2 + - uid: 12110 + components: + - type: Transform + pos: 61.5,35.5 + parent: 2 + - uid: 12111 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 12112 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 2 + - uid: 12184 + components: + - type: Transform + pos: 41.5,46.5 + parent: 2 - uid: 12596 components: - type: Transform @@ -26670,16 +28054,6 @@ entities: - type: Transform pos: 112.5,-15.5 parent: 2 - - uid: 12759 - components: - - type: Transform - pos: 33.5,33.5 - parent: 2 - - uid: 12760 - components: - - type: Transform - pos: 32.5,33.5 - parent: 2 - uid: 12780 components: - type: Transform @@ -26735,6 +28109,11 @@ entities: - type: Transform pos: 13.5,-22.5 parent: 2 + - uid: 12875 + components: + - type: Transform + pos: 66.5,19.5 + parent: 2 - uid: 13046 components: - type: Transform @@ -27075,10 +28454,15 @@ entities: - type: Transform pos: 19.5,-38.5 parent: 2 - - uid: 13485 + - uid: 13580 components: - type: Transform - pos: 15.5,-14.5 + pos: 39.5,42.5 + parent: 2 + - uid: 13640 + components: + - type: Transform + pos: 46.5,26.5 parent: 2 - uid: 13689 components: @@ -27090,6 +28474,11 @@ entities: - type: Transform pos: 16.5,-38.5 parent: 2 + - uid: 14247 + components: + - type: Transform + pos: 40.5,45.5 + parent: 2 - uid: 14396 components: - type: Transform @@ -27105,30 +28494,20 @@ entities: - type: Transform pos: 80.5,34.5 parent: 2 - - uid: 14582 - components: - - type: Transform - pos: 45.5,41.5 - parent: 2 - - uid: 14583 - components: - - type: Transform - pos: 45.5,40.5 - parent: 2 - uid: 14727 components: - type: Transform pos: 41.5,-19.5 parent: 2 - - uid: 14929 + - uid: 14849 components: - type: Transform - pos: 37.5,33.5 + pos: 64.5,19.5 parent: 2 - - uid: 14930 + - uid: 14887 components: - type: Transform - pos: 37.5,34.5 + pos: 65.5,19.5 parent: 2 - uid: 15021 components: @@ -27160,6 +28539,86 @@ entities: - type: Transform pos: 52.5,-19.5 parent: 2 + - uid: 15531 + components: + - type: Transform + pos: 63.5,19.5 + parent: 2 + - uid: 15553 + components: + - type: Transform + pos: 62.5,20.5 + parent: 2 + - uid: 15659 + components: + - type: Transform + pos: 38.5,38.5 + parent: 2 + - uid: 15660 + components: + - type: Transform + pos: 39.5,38.5 + parent: 2 + - uid: 15661 + components: + - type: Transform + pos: 37.5,38.5 + parent: 2 + - uid: 15662 + components: + - type: Transform + pos: 36.5,38.5 + parent: 2 + - uid: 15687 + components: + - type: Transform + pos: 62.5,46.5 + parent: 2 + - uid: 15707 + components: + - type: Transform + pos: 62.5,44.5 + parent: 2 + - uid: 15747 + components: + - type: Transform + pos: -5.5,-31.5 + parent: 2 + - uid: 15748 + components: + - type: Transform + pos: -5.5,-30.5 + parent: 2 + - uid: 15749 + components: + - type: Transform + pos: -3.5,-40.5 + parent: 2 + - uid: 15750 + components: + - type: Transform + pos: -5.5,-40.5 + parent: 2 + - uid: 15751 + components: + - type: Transform + pos: -11.5,-40.5 + parent: 2 + - uid: 15752 + components: + - type: Transform + pos: -13.5,-40.5 + parent: 2 + - uid: 15773 + components: + - type: Transform + pos: -11.5,-30.5 + parent: 2 + - uid: 15774 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 2 - proto: CableHVStack entities: - uid: 5629 @@ -27167,17 +28626,6 @@ entities: - type: Transform pos: 18.055033,-23.484873 parent: 2 - - uid: 5638 - components: - - type: Transform - rot: -0.0038357104640454054 rad - pos: 70.31901,45.73474 - parent: 2 - - uid: 5651 - components: - - type: Transform - pos: 70.69434,45.41789 - parent: 2 - uid: 6308 components: - type: Transform @@ -27190,11 +28638,6 @@ entities: - type: Transform pos: 15.5,21.5 parent: 2 - - uid: 27 - components: - - type: Transform - pos: 28.5,29.5 - parent: 2 - uid: 44 components: - type: Transform @@ -27275,15 +28718,35 @@ entities: - type: Transform pos: 69.5,-12.5 parent: 2 + - uid: 380 + components: + - type: Transform + pos: 62.5,36.5 + parent: 2 - uid: 384 components: - type: Transform pos: 12.5,36.5 parent: 2 + - uid: 414 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 2 + - uid: 535 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 2 - uid: 545 components: - type: Transform - pos: 44.5,23.5 + pos: 65.5,44.5 + parent: 2 + - uid: 591 + components: + - type: Transform + pos: 64.5,44.5 parent: 2 - uid: 609 components: @@ -27295,11 +28758,46 @@ entities: - type: Transform pos: 12.5,21.5 parent: 2 + - uid: 630 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 2 + - uid: 633 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 2 + - uid: 648 + components: + - type: Transform + pos: 18.5,-15.5 + parent: 2 + - uid: 649 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 2 + - uid: 650 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 2 - uid: 769 components: - type: Transform pos: 4.5,-30.5 parent: 2 + - uid: 782 + components: + - type: Transform + pos: 39.5,-14.5 + parent: 2 + - uid: 896 + components: + - type: Transform + pos: 29.5,36.5 + parent: 2 - uid: 1028 components: - type: Transform @@ -27325,20 +28823,15 @@ entities: - type: Transform pos: 4.5,-31.5 parent: 2 - - uid: 1041 - components: - - type: Transform - pos: 31.5,36.5 - parent: 2 - uid: 1180 components: - type: Transform pos: -4.5,-1.5 parent: 2 - - uid: 1281 + - uid: 1255 components: - type: Transform - pos: 42.5,32.5 + pos: 28.5,36.5 parent: 2 - uid: 1307 components: @@ -27355,20 +28848,35 @@ entities: - type: Transform pos: 11.5,21.5 parent: 2 + - uid: 1465 + components: + - type: Transform + pos: 47.5,37.5 + parent: 2 + - uid: 1481 + components: + - type: Transform + pos: 62.5,14.5 + parent: 2 - uid: 1555 components: - type: Transform pos: 41.5,-0.5 parent: 2 - - uid: 2065 + - uid: 1560 components: - type: Transform - pos: 41.5,31.5 + pos: 18.5,-17.5 parent: 2 - - uid: 2132 + - uid: 1838 components: - type: Transform - pos: 39.5,29.5 + pos: 51.5,27.5 + parent: 2 + - uid: 2131 + components: + - type: Transform + pos: 70.5,45.5 parent: 2 - uid: 2150 components: @@ -27385,91 +28893,81 @@ entities: - type: Transform pos: 8.5,21.5 parent: 2 - - uid: 2279 + - uid: 2190 components: - type: Transform - pos: 40.5,30.5 + pos: 54.5,24.5 parent: 2 - - uid: 2292 + - uid: 2341 components: - type: Transform - pos: 45.5,31.5 + pos: 5.5,9.5 parent: 2 - - uid: 2293 + - uid: 2347 components: - type: Transform - pos: 45.5,32.5 + pos: 57.5,48.5 parent: 2 - - uid: 2294 + - uid: 2350 components: - type: Transform - pos: 45.5,33.5 + pos: 70.5,47.5 parent: 2 - - uid: 2299 + - uid: 2351 components: - type: Transform - pos: 33.5,33.5 + pos: 17.5,-17.5 parent: 2 - - uid: 2307 + - uid: 2410 components: - type: Transform - pos: 35.5,31.5 + pos: 18.5,2.5 parent: 2 - - uid: 2308 + - uid: 2429 components: - type: Transform - pos: 34.5,31.5 + pos: 94.5,33.5 parent: 2 - - uid: 2309 + - uid: 2466 components: - type: Transform - pos: 42.5,31.5 - parent: 2 - - uid: 2310 - components: - - type: Transform - pos: 37.5,31.5 - parent: 2 - - uid: 2312 - components: - - type: Transform - pos: 36.5,31.5 - parent: 2 - - uid: 2462 - components: - - type: Transform - pos: 38.5,31.5 - parent: 2 - - uid: 2463 - components: - - type: Transform - pos: 44.5,31.5 - parent: 2 - - uid: 2464 - components: - - type: Transform - pos: 39.5,31.5 - parent: 2 - - uid: 2465 - components: - - type: Transform - pos: 40.5,31.5 - parent: 2 - - uid: 2467 - components: - - type: Transform - pos: 43.5,31.5 + pos: 44.5,37.5 parent: 2 - uid: 2494 components: - type: Transform pos: 70.5,-12.5 parent: 2 + - uid: 2613 + components: + - type: Transform + pos: 47.5,40.5 + parent: 2 + - uid: 2685 + components: + - type: Transform + pos: 35.5,28.5 + parent: 2 - uid: 2688 components: - type: Transform pos: 22.5,6.5 parent: 2 + - uid: 2691 + components: + - type: Transform + pos: 36.5,28.5 + parent: 2 + - uid: 2713 + components: + - type: Transform + pos: 36.5,29.5 + parent: 2 + - uid: 2714 + components: + - type: Transform + pos: 35.5,27.5 + parent: 2 - uid: 2954 components: - type: Transform @@ -27485,45 +28983,130 @@ entities: - type: Transform pos: 22.5,5.5 parent: 2 + - uid: 3041 + components: + - type: Transform + pos: 55.5,11.5 + parent: 2 + - uid: 3045 + components: + - type: Transform + pos: 55.5,10.5 + parent: 2 + - uid: 3046 + components: + - type: Transform + pos: 54.5,10.5 + parent: 2 + - uid: 3077 + components: + - type: Transform + pos: 51.5,25.5 + parent: 2 + - uid: 3079 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - uid: 3105 + components: + - type: Transform + pos: 46.5,19.5 + parent: 2 + - uid: 3112 + components: + - type: Transform + pos: 69.5,42.5 + parent: 2 - uid: 3131 components: - type: Transform pos: -25.5,-18.5 parent: 2 - - uid: 3168 + - uid: 3144 components: - type: Transform - pos: 37.5,33.5 + pos: 47.5,41.5 parent: 2 - - uid: 3218 + - uid: 3192 components: - type: Transform - pos: 49.5,35.5 + pos: 5.5,5.5 parent: 2 - - uid: 3219 + - uid: 3199 components: - type: Transform - pos: 48.5,35.5 + pos: 33.5,31.5 parent: 2 - - uid: 3220 + - uid: 3225 components: - type: Transform - pos: 51.5,36.5 + pos: 66.5,35.5 + parent: 2 + - uid: 3226 + components: + - type: Transform + pos: 66.5,41.5 parent: 2 - uid: 3232 components: - type: Transform - pos: 45.5,34.5 + pos: 69.5,44.5 parent: 2 - - uid: 3239 + - uid: 3234 components: - type: Transform - pos: 41.5,31.5 + pos: 94.5,34.5 parent: 2 - - uid: 3276 + - uid: 3241 components: - type: Transform - pos: 34.5,33.5 + pos: 46.5,46.5 + parent: 2 + - uid: 3245 + components: + - type: Transform + pos: 59.5,48.5 + parent: 2 + - uid: 3252 + components: + - type: Transform + pos: 56.5,48.5 + parent: 2 + - uid: 3257 + components: + - type: Transform + pos: 58.5,48.5 + parent: 2 + - uid: 3277 + components: + - type: Transform + pos: 42.5,45.5 + parent: 2 + - uid: 3280 + components: + - type: Transform + pos: 32.5,30.5 + parent: 2 + - uid: 3317 + components: + - type: Transform + pos: 47.5,35.5 + parent: 2 + - uid: 3336 + components: + - type: Transform + pos: 48.5,46.5 + parent: 2 + - uid: 3346 + components: + - type: Transform + pos: 47.5,46.5 + parent: 2 + - uid: 3372 + components: + - type: Transform + pos: 61.5,37.5 parent: 2 - uid: 3403 components: @@ -27540,16 +29123,46 @@ entities: - type: Transform pos: 66.5,37.5 parent: 2 - - uid: 3486 + - uid: 3478 components: - type: Transform - pos: 51.5,21.5 + pos: 42.5,34.5 parent: 2 - uid: 3487 components: - type: Transform pos: 50.5,21.5 parent: 2 + - uid: 3492 + components: + - type: Transform + pos: 34.5,19.5 + parent: 2 + - uid: 3496 + components: + - type: Transform + pos: 34.5,20.5 + parent: 2 + - uid: 3504 + components: + - type: Transform + pos: 37.5,29.5 + parent: 2 + - uid: 3509 + components: + - type: Transform + pos: 40.5,29.5 + parent: 2 + - uid: 3615 + components: + - type: Transform + pos: 39.5,29.5 + parent: 2 + - uid: 3673 + components: + - type: Transform + pos: 53.5,3.5 + parent: 2 - uid: 3682 components: - type: Transform @@ -27563,12 +29176,17 @@ entities: - uid: 4020 components: - type: Transform - pos: 13.5,19.5 + pos: 52.5,3.5 parent: 2 - - uid: 4026 + - uid: 4114 components: - type: Transform - pos: 13.5,20.5 + pos: 47.5,3.5 + parent: 2 + - uid: 4162 + components: + - type: Transform + pos: 63.5,12.5 parent: 2 - uid: 4182 components: @@ -27580,20 +29198,20 @@ entities: - type: Transform pos: 15.5,-39.5 parent: 2 - - uid: 4349 + - uid: 4348 components: - type: Transform - pos: 51.5,35.5 - parent: 2 - - uid: 4360 - components: - - type: Transform - pos: 47.5,35.5 + pos: 54.5,48.5 parent: 2 - uid: 4363 components: - type: Transform - pos: 50.5,35.5 + pos: 46.5,20.5 + parent: 2 + - uid: 4403 + components: + - type: Transform + pos: 64.5,14.5 parent: 2 - uid: 4605 components: @@ -27850,6 +29468,11 @@ entities: - type: Transform pos: 38.5,-38.5 parent: 2 + - uid: 4784 + components: + - type: Transform + pos: 65.5,14.5 + parent: 2 - uid: 4785 components: - type: Transform @@ -27905,10 +29528,15 @@ entities: - type: Transform pos: 32.5,-26.5 parent: 2 - - uid: 5116 + - uid: 5062 components: - type: Transform - pos: 35.5,33.5 + pos: 66.5,14.5 + parent: 2 + - uid: 5066 + components: + - type: Transform + pos: 51.5,24.5 parent: 2 - uid: 5185 components: @@ -27920,10 +29548,60 @@ entities: - type: Transform pos: 62.5,-6.5 parent: 2 - - uid: 5511 + - uid: 5239 components: - type: Transform - pos: 66.5,36.5 + pos: 59.5,18.5 + parent: 2 + - uid: 5247 + components: + - type: Transform + pos: 59.5,17.5 + parent: 2 + - uid: 5249 + components: + - type: Transform + pos: 59.5,16.5 + parent: 2 + - uid: 5253 + components: + - type: Transform + pos: 59.5,15.5 + parent: 2 + - uid: 5313 + components: + - type: Transform + pos: 34.5,18.5 + parent: 2 + - uid: 5337 + components: + - type: Transform + pos: 48.5,3.5 + parent: 2 + - uid: 5362 + components: + - type: Transform + pos: 38.5,27.5 + parent: 2 + - uid: 5370 + components: + - type: Transform + pos: 64.5,24.5 + parent: 2 + - uid: 5464 + components: + - type: Transform + pos: 47.5,43.5 + parent: 2 + - uid: 5466 + components: + - type: Transform + pos: 47.5,42.5 + parent: 2 + - uid: 5509 + components: + - type: Transform + pos: 66.5,7.5 parent: 2 - uid: 5578 components: @@ -27940,6 +29618,21 @@ entities: - type: Transform pos: 40.5,-38.5 parent: 2 + - uid: 5687 + components: + - type: Transform + pos: 59.5,47.5 + parent: 2 + - uid: 5751 + components: + - type: Transform + pos: 60.5,47.5 + parent: 2 + - uid: 6007 + components: + - type: Transform + pos: 50.5,47.5 + parent: 2 - uid: 6039 components: - type: Transform @@ -27955,11 +29648,36 @@ entities: - type: Transform pos: 25.5,-36.5 parent: 2 + - uid: 6304 + components: + - type: Transform + pos: 53.5,47.5 + parent: 2 + - uid: 6307 + components: + - type: Transform + pos: 51.5,47.5 + parent: 2 + - uid: 6310 + components: + - type: Transform + pos: 41.5,38.5 + parent: 2 - uid: 6358 components: - type: Transform pos: 36.5,-23.5 parent: 2 + - uid: 6379 + components: + - type: Transform + pos: 62.5,47.5 + parent: 2 + - uid: 6424 + components: + - type: Transform + pos: 61.5,47.5 + parent: 2 - uid: 6455 components: - type: Transform @@ -27983,7 +29701,12 @@ entities: - uid: 6459 components: - type: Transform - pos: 19.5,-13.5 + pos: 13.5,-17.5 + parent: 2 + - uid: 6537 + components: + - type: Transform + pos: 59.5,10.5 parent: 2 - uid: 6572 components: @@ -28020,6 +29743,11 @@ entities: - type: Transform pos: 13.5,-45.5 parent: 2 + - uid: 6774 + components: + - type: Transform + pos: 61.5,10.5 + parent: 2 - uid: 6780 components: - type: Transform @@ -28065,6 +29793,11 @@ entities: - type: Transform pos: 16.5,-39.5 parent: 2 + - uid: 6954 + components: + - type: Transform + pos: 21.5,11.5 + parent: 2 - uid: 6955 components: - type: Transform @@ -28073,7 +29806,7 @@ entities: - uid: 6956 components: - type: Transform - pos: 14.5,8.5 + pos: 15.5,8.5 parent: 2 - uid: 6957 components: @@ -28110,46 +29843,6 @@ entities: - type: Transform pos: 11.5,5.5 parent: 2 - - uid: 6965 - components: - - type: Transform - pos: 10.5,5.5 - parent: 2 - - uid: 6966 - components: - - type: Transform - pos: 9.5,5.5 - parent: 2 - - uid: 6967 - components: - - type: Transform - pos: 9.5,4.5 - parent: 2 - - uid: 6968 - components: - - type: Transform - pos: 9.5,3.5 - parent: 2 - - uid: 6969 - components: - - type: Transform - pos: 10.5,3.5 - parent: 2 - - uid: 6970 - components: - - type: Transform - pos: 11.5,3.5 - parent: 2 - - uid: 6971 - components: - - type: Transform - pos: 11.5,2.5 - parent: 2 - - uid: 6972 - components: - - type: Transform - pos: 8.5,3.5 - parent: 2 - uid: 6973 components: - type: Transform @@ -28180,95 +29873,35 @@ entities: - type: Transform pos: 9.5,10.5 parent: 2 - - uid: 6979 - components: - - type: Transform - pos: 10.5,10.5 - parent: 2 - uid: 6980 components: - type: Transform - pos: 10.5,11.5 - parent: 2 - - uid: 6981 - components: - - type: Transform - pos: 11.5,10.5 - parent: 2 - - uid: 6982 - components: - - type: Transform - pos: 12.5,10.5 - parent: 2 - - uid: 6983 - components: - - type: Transform - pos: 13.5,10.5 - parent: 2 - - uid: 6984 - components: - - type: Transform - pos: 14.5,10.5 + pos: 31.5,24.5 parent: 2 - uid: 6985 components: - type: Transform - pos: 15.5,10.5 - parent: 2 - - uid: 6986 - components: - - type: Transform - pos: 16.5,10.5 - parent: 2 - - uid: 6987 - components: - - type: Transform - pos: 17.5,10.5 + pos: 66.5,36.5 parent: 2 - uid: 6988 components: - type: Transform - pos: 18.5,10.5 - parent: 2 - - uid: 6989 - components: - - type: Transform - pos: 19.5,10.5 - parent: 2 - - uid: 6990 - components: - - type: Transform - pos: 19.5,9.5 - parent: 2 - - uid: 6991 - components: - - type: Transform - pos: 19.5,8.5 - parent: 2 - - uid: 6992 - components: - - type: Transform - pos: 19.5,7.5 - parent: 2 - - uid: 6993 - components: - - type: Transform - pos: 19.5,6.5 + pos: 50.5,3.5 parent: 2 - uid: 6994 components: - type: Transform - pos: 19.5,5.5 + pos: 46.5,3.5 parent: 2 - uid: 6995 components: - type: Transform - pos: 20.5,5.5 + pos: 49.5,3.5 parent: 2 - uid: 6996 components: - type: Transform - pos: 21.5,5.5 + pos: 14.5,19.5 parent: 2 - uid: 6997 components: @@ -28328,7 +29961,7 @@ entities: - uid: 7018 components: - type: Transform - pos: 22.5,11.5 + pos: 14.5,20.5 parent: 2 - uid: 7019 components: @@ -28358,7 +29991,7 @@ entities: - uid: 7024 components: - type: Transform - pos: 28.5,9.5 + pos: 9.5,17.5 parent: 2 - uid: 7025 components: @@ -28385,46 +30018,101 @@ entities: - type: Transform pos: 26.5,9.5 parent: 2 - - uid: 7030 - components: - - type: Transform - pos: 33.5,7.5 - parent: 2 - uid: 7031 components: - type: Transform - pos: 32.5,7.5 + pos: 29.5,20.5 parent: 2 - uid: 7032 components: - type: Transform - pos: 31.5,7.5 + pos: 32.5,20.5 parent: 2 - uid: 7033 components: - type: Transform - pos: 30.5,7.5 - parent: 2 - - uid: 7036 - components: - - type: Transform - pos: 29.5,7.5 + pos: 14.5,18.5 parent: 2 - uid: 7037 components: - type: Transform - pos: 29.5,8.5 + pos: 33.5,20.5 parent: 2 - uid: 7038 components: - type: Transform - pos: 29.5,9.5 + pos: 51.5,3.5 parent: 2 - uid: 7039 components: - type: Transform pos: 29.5,10.5 parent: 2 + - uid: 7047 + components: + - type: Transform + pos: 18.5,1.5 + parent: 2 + - uid: 7051 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 + - uid: 7052 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - uid: 7053 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 + - uid: 7054 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 7066 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 + - uid: 7073 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - uid: 7087 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 7088 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 + - uid: 7116 + components: + - type: Transform + pos: 10.5,10.5 + parent: 2 + - uid: 7130 + components: + - type: Transform + pos: 11.5,10.5 + parent: 2 + - uid: 7132 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 + - uid: 7135 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 - uid: 7221 components: - type: Transform @@ -28508,12 +30196,12 @@ entities: - uid: 7255 components: - type: Transform - pos: 13.5,16.5 + pos: 14.5,10.5 parent: 2 - uid: 7256 components: - type: Transform - pos: 12.5,16.5 + pos: 15.5,10.5 parent: 2 - uid: 7257 components: @@ -28550,6 +30238,21 @@ entities: - type: Transform pos: 13.5,21.5 parent: 2 + - uid: 7452 + components: + - type: Transform + pos: 16.5,10.5 + parent: 2 + - uid: 7453 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 + - uid: 7454 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 - uid: 7475 components: - type: Transform @@ -28765,46 +30468,31 @@ entities: - type: Transform pos: 18.5,19.5 parent: 2 - - uid: 7849 + - uid: 7793 components: - type: Transform - pos: 32.5,36.5 + pos: 62.5,11.5 parent: 2 - uid: 7891 components: - type: Transform pos: 15.5,-38.5 parent: 2 - - uid: 7937 - components: - - type: Transform - pos: 40.5,20.5 - parent: 2 - - uid: 7939 - components: - - type: Transform - pos: 41.5,20.5 - parent: 2 - - uid: 7947 - components: - - type: Transform - pos: 40.5,29.5 - parent: 2 - - uid: 7953 - components: - - type: Transform - pos: 30.5,29.5 - parent: 2 - - uid: 7956 - components: - - type: Transform - pos: 29.5,29.5 - parent: 2 - uid: 8047 components: - type: Transform pos: 14.5,37.5 parent: 2 + - uid: 8049 + components: + - type: Transform + pos: 19.5,10.5 + parent: 2 + - uid: 8050 + components: + - type: Transform + pos: 19.5,11.5 + parent: 2 - uid: 8060 components: - type: Transform @@ -28815,11 +30503,6 @@ entities: - type: Transform pos: 8.5,16.5 parent: 2 - - uid: 8287 - components: - - type: Transform - pos: 27.5,33.5 - parent: 2 - uid: 8325 components: - type: Transform @@ -28830,290 +30513,150 @@ entities: - type: Transform pos: 52.5,-10.5 parent: 2 - - uid: 8352 - components: - - type: Transform - pos: 43.5,23.5 - parent: 2 - - uid: 8353 - components: - - type: Transform - pos: 42.5,23.5 - parent: 2 - - uid: 8354 - components: - - type: Transform - pos: 41.5,23.5 - parent: 2 - - uid: 8355 - components: - - type: Transform - pos: 40.5,23.5 - parent: 2 - - uid: 8356 - components: - - type: Transform - pos: 39.5,23.5 - parent: 2 - - uid: 8359 - components: - - type: Transform - pos: 39.5,22.5 - parent: 2 - - uid: 8360 - components: - - type: Transform - pos: 38.5,22.5 - parent: 2 - - uid: 8362 - components: - - type: Transform - pos: 37.5,22.5 - parent: 2 - - uid: 8363 - components: - - type: Transform - pos: 36.5,22.5 - parent: 2 - - uid: 8364 - components: - - type: Transform - pos: 35.5,22.5 - parent: 2 - - uid: 8365 - components: - - type: Transform - pos: 34.5,22.5 - parent: 2 - - uid: 8366 - components: - - type: Transform - pos: 33.5,22.5 - parent: 2 - uid: 8367 components: - type: Transform - pos: 33.5,23.5 + pos: 52.5,47.5 parent: 2 - - uid: 8368 + - uid: 8389 components: - type: Transform - pos: 33.5,24.5 + pos: 61.5,36.5 parent: 2 - - uid: 8369 + - uid: 8405 components: - type: Transform - pos: 33.5,25.5 + pos: 63.5,44.5 parent: 2 - - uid: 8370 + - uid: 8407 components: - type: Transform - pos: 33.5,26.5 + pos: 56.5,10.5 parent: 2 - - uid: 8371 + - uid: 8418 components: - type: Transform - pos: 33.5,27.5 + pos: 56.5,22.5 parent: 2 - - uid: 8372 + - uid: 8423 components: - type: Transform - pos: 33.5,28.5 + pos: 19.5,12.5 parent: 2 - - uid: 8373 - components: - - type: Transform - pos: 33.5,29.5 - parent: 2 - - uid: 8374 - components: - - type: Transform - pos: 33.5,30.5 - parent: 2 - - uid: 8392 - components: - - type: Transform - pos: 32.5,29.5 - parent: 2 - - uid: 8456 - components: - - type: Transform - pos: 33.5,21.5 - parent: 2 - - uid: 8457 - components: - - type: Transform - pos: 32.5,21.5 - parent: 2 - - uid: 8458 - components: - - type: Transform - pos: 31.5,21.5 - parent: 2 - - uid: 8459 - components: - - type: Transform - pos: 30.5,21.5 - parent: 2 - - uid: 8460 - components: - - type: Transform - pos: 29.5,21.5 - parent: 2 - - uid: 8461 - components: - - type: Transform - pos: 28.5,21.5 - parent: 2 - - uid: 8462 - components: - - type: Transform - pos: 28.5,20.5 - parent: 2 - - uid: 8463 - components: - - type: Transform - pos: 33.5,20.5 - parent: 2 - - uid: 8464 - components: - - type: Transform - pos: 33.5,19.5 - parent: 2 - - uid: 8465 - components: - - type: Transform - pos: 33.5,18.5 - parent: 2 - - uid: 8466 - components: - - type: Transform - pos: 32.5,18.5 - parent: 2 - - uid: 8467 - components: - - type: Transform - pos: 31.5,18.5 - parent: 2 - - uid: 8468 - components: - - type: Transform - pos: 30.5,18.5 - parent: 2 - - uid: 8469 - components: - - type: Transform - pos: 29.5,18.5 - parent: 2 - - uid: 8470 - components: - - type: Transform - pos: 28.5,18.5 - parent: 2 - - uid: 8471 - components: - - type: Transform - pos: 28.5,17.5 - parent: 2 - - uid: 8473 - components: - - type: Transform - pos: 35.5,28.5 - parent: 2 - - uid: 8474 - components: - - type: Transform - pos: 35.5,29.5 - parent: 2 - - uid: 8475 - components: - - type: Transform - pos: 34.5,28.5 - parent: 2 - - uid: 8483 - components: - - type: Transform - pos: 45.5,35.5 - parent: 2 - - uid: 8531 - components: - - type: Transform - pos: 39.5,26.5 - parent: 2 - - uid: 8536 - components: - - type: Transform - pos: 41.5,21.5 - parent: 2 - - uid: 8539 - components: - - type: Transform - pos: 38.5,25.5 - parent: 2 - - uid: 8540 - components: - - type: Transform - pos: 39.5,25.5 - parent: 2 - - uid: 8541 + - uid: 8428 components: - type: Transform pos: 40.5,25.5 parent: 2 - - uid: 8542 + - uid: 8432 components: - type: Transform - pos: 41.5,25.5 + pos: 56.5,21.5 + parent: 2 + - uid: 8443 + components: + - type: Transform + pos: 56.5,20.5 + parent: 2 + - uid: 8465 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 + - uid: 8512 + components: + - type: Transform + pos: 42.5,46.5 + parent: 2 + - uid: 8522 + components: + - type: Transform + pos: 64.5,16.5 + parent: 2 + - uid: 8535 + components: + - type: Transform + pos: 63.5,19.5 + parent: 2 + - uid: 8537 + components: + - type: Transform + pos: 62.5,19.5 + parent: 2 + - uid: 8539 + components: + - type: Transform + pos: 62.5,20.5 parent: 2 - uid: 8543 components: - type: Transform - pos: 37.5,23.5 - parent: 2 - - uid: 8544 - components: - - type: Transform - pos: 37.5,24.5 - parent: 2 - - uid: 8545 - components: - - type: Transform - pos: 37.5,21.5 - parent: 2 - - uid: 8546 - components: - - type: Transform - pos: 38.5,21.5 + pos: 50.5,27.5 parent: 2 - uid: 8547 components: - type: Transform - pos: 38.5,20.5 + pos: 49.5,29.5 parent: 2 - - uid: 8548 + - uid: 8572 components: - type: Transform - pos: 31.5,17.5 - parent: 2 - - uid: 8562 - components: - - type: Transform - pos: 34.5,16.5 - parent: 2 - - uid: 8570 - components: - - type: Transform - pos: 46.5,35.5 + pos: 33.5,29.5 parent: 2 - uid: 8585 components: - type: Transform pos: 36.5,-25.5 parent: 2 - - uid: 8698 + - uid: 8595 components: - type: Transform - pos: 47.5,28.5 + pos: 70.5,46.5 + parent: 2 + - uid: 8624 + components: + - type: Transform + pos: 46.5,39.5 + parent: 2 + - uid: 8677 + components: + - type: Transform + pos: 38.5,25.5 + parent: 2 + - uid: 8682 + components: + - type: Transform + pos: 47.5,33.5 + parent: 2 + - uid: 8688 + components: + - type: Transform + pos: 47.5,32.5 + parent: 2 + - uid: 8715 + components: + - type: Transform + pos: 53.5,48.5 + parent: 2 + - uid: 8718 + components: + - type: Transform + pos: 66.5,43.5 + parent: 2 + - uid: 8766 + components: + - type: Transform + pos: 47.5,34.5 + parent: 2 + - uid: 8934 + components: + - type: Transform + pos: 45.5,46.5 + parent: 2 + - uid: 8985 + components: + - type: Transform + pos: 49.5,27.5 parent: 2 - uid: 9007 components: @@ -29150,16 +30693,6 @@ entities: - type: Transform pos: 20.5,36.5 parent: 2 - - uid: 9014 - components: - - type: Transform - pos: 20.5,35.5 - parent: 2 - - uid: 9015 - components: - - type: Transform - pos: 20.5,34.5 - parent: 2 - uid: 9021 components: - type: Transform @@ -29225,31 +30758,6 @@ entities: - type: Transform pos: 27.5,36.5 parent: 2 - - uid: 9034 - components: - - type: Transform - pos: 28.5,36.5 - parent: 2 - - uid: 9035 - components: - - type: Transform - pos: 28.5,33.5 - parent: 2 - - uid: 9037 - components: - - type: Transform - pos: 28.5,33.5 - parent: 2 - - uid: 9038 - components: - - type: Transform - pos: 29.5,36.5 - parent: 2 - - uid: 9039 - components: - - type: Transform - pos: 30.5,36.5 - parent: 2 - uid: 9042 components: - type: Transform @@ -29520,105 +31028,50 @@ entities: - type: Transform pos: 36.5,46.5 parent: 2 - - uid: 9238 + - uid: 9179 components: - type: Transform - pos: 53.5,35.5 + pos: 55.5,48.5 parent: 2 - - uid: 9239 + - uid: 9245 components: - type: Transform - pos: 56.5,30.5 + pos: 66.5,44.5 + parent: 2 + - uid: 9249 + components: + - type: Transform + pos: 61.5,35.5 + parent: 2 + - uid: 9250 + components: + - type: Transform + pos: 64.5,19.5 parent: 2 - uid: 9253 components: - type: Transform pos: 70.5,44.5 parent: 2 - - uid: 9254 - components: - - type: Transform - pos: 69.5,44.5 - parent: 2 - - uid: 9255 - components: - - type: Transform - pos: 69.5,45.5 - parent: 2 - - uid: 9256 - components: - - type: Transform - pos: 69.5,46.5 - parent: 2 - - uid: 9257 - components: - - type: Transform - pos: 69.5,47.5 - parent: 2 - - uid: 9258 - components: - - type: Transform - pos: 69.5,43.5 - parent: 2 - - uid: 9259 - components: - - type: Transform - pos: 69.5,42.5 - parent: 2 - - uid: 9260 - components: - - type: Transform - pos: 68.5,42.5 - parent: 2 - - uid: 9261 - components: - - type: Transform - pos: 68.5,41.5 - parent: 2 - uid: 9262 components: - type: Transform - pos: 67.5,42.5 + pos: 49.5,30.5 parent: 2 - - uid: 9263 + - uid: 9319 components: - type: Transform - pos: 67.5,43.5 + pos: 20.5,13.5 parent: 2 - - uid: 9264 + - uid: 9338 components: - type: Transform - pos: 67.5,44.5 + pos: 21.5,13.5 parent: 2 - - uid: 9265 + - uid: 9341 components: - type: Transform - pos: 66.5,44.5 - parent: 2 - - uid: 9266 - components: - - type: Transform - pos: 66.5,45.5 - parent: 2 - - uid: 9296 - components: - - type: Transform - pos: 55.5,39.5 - parent: 2 - - uid: 9333 - components: - - type: Transform - pos: 39.5,24.5 - parent: 2 - - uid: 9457 - components: - - type: Transform - pos: 33.5,32.5 - parent: 2 - - uid: 9474 - components: - - type: Transform - pos: 24.5,44.5 + pos: 38.5,30.5 parent: 2 - uid: 9475 components: @@ -29905,11 +31358,6 @@ entities: - type: Transform pos: 52.5,-8.5 parent: 2 - - uid: 9745 - components: - - type: Transform - pos: 16.5,-14.5 - parent: 2 - uid: 9746 components: - type: Transform @@ -29920,21 +31368,6 @@ entities: - type: Transform pos: 16.5,-12.5 parent: 2 - - uid: 9748 - components: - - type: Transform - pos: 16.5,-11.5 - parent: 2 - - uid: 9749 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 2 - - uid: 9750 - components: - - type: Transform - pos: 14.5,-11.5 - parent: 2 - uid: 9751 components: - type: Transform @@ -29980,11 +31413,6 @@ entities: - type: Transform pos: 11.5,-15.5 parent: 2 - - uid: 9760 - components: - - type: Transform - pos: 17.5,-11.5 - parent: 2 - uid: 9761 components: - type: Transform @@ -30058,7 +31486,7 @@ entities: - uid: 9776 components: - type: Transform - pos: 23.5,3.5 + pos: 21.5,12.5 parent: 2 - uid: 9777 components: @@ -30095,11 +31523,6 @@ entities: - type: Transform pos: 38.5,-15.5 parent: 2 - - uid: 9835 - components: - - type: Transform - pos: 39.5,-15.5 - parent: 2 - uid: 9836 components: - type: Transform @@ -30315,11 +31738,6 @@ 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 @@ -30330,66 +31748,131 @@ entities: - type: Transform pos: 36.5,-22.5 parent: 2 - - uid: 9928 - components: - - type: Transform - pos: 55.5,35.5 - parent: 2 - uid: 10036 components: - type: Transform pos: 24.5,-33.5 parent: 2 - - uid: 10044 + - uid: 10051 components: - type: Transform - pos: 56.5,34.5 + pos: 63.5,14.5 + parent: 2 + - uid: 10087 + components: + - type: Transform + pos: 52.5,24.5 + parent: 2 + - uid: 10116 + components: + - type: Transform + pos: 55.5,24.5 parent: 2 - uid: 10130 components: - type: Transform pos: 63.5,-7.5 parent: 2 - - uid: 10136 + - uid: 10320 components: - type: Transform - pos: 31.5,29.5 + pos: 33.5,27.5 parent: 2 - - uid: 10318 + - uid: 10352 components: - type: Transform - pos: 36.5,33.5 + pos: 49.5,47.5 + parent: 2 + - uid: 10353 + components: + - type: Transform + pos: 33.5,24.5 + parent: 2 + - uid: 10354 + components: + - type: Transform + pos: 33.5,25.5 + parent: 2 + - uid: 10355 + components: + - type: Transform + pos: 33.5,28.5 + parent: 2 + - uid: 10362 + components: + - type: Transform + pos: 62.5,10.5 + parent: 2 + - uid: 10363 + components: + - type: Transform + pos: 33.5,26.5 + parent: 2 + - uid: 10403 + components: + - type: Transform + pos: 56.5,24.5 + parent: 2 + - uid: 10443 + components: + - type: Transform + pos: 18.5,-17.5 parent: 2 - uid: 10445 components: - type: Transform - pos: 33.5,17.5 + pos: 57.5,29.5 parent: 2 - - uid: 10672 + - uid: 10452 components: - type: Transform - pos: 64.5,11.5 + pos: 69.5,43.5 parent: 2 - - uid: 10673 + - uid: 10521 components: - type: Transform - pos: 63.5,11.5 + pos: 49.5,28.5 parent: 2 - - uid: 10674 + - uid: 10569 components: - type: Transform - pos: 62.5,11.5 + pos: 58.5,29.5 + parent: 2 + - uid: 10570 + components: + - type: Transform + pos: 59.5,29.5 + parent: 2 + - uid: 10571 + components: + - type: Transform + pos: 60.5,29.5 + parent: 2 + - uid: 10589 + components: + - type: Transform + pos: 60.5,10.5 + parent: 2 + - uid: 10602 + components: + - type: Transform + pos: 52.5,22.5 + parent: 2 + - uid: 10657 + components: + - type: Transform + pos: 60.5,30.5 + parent: 2 + - uid: 10658 + components: + - type: Transform + pos: 60.5,31.5 parent: 2 - uid: 10675 components: - type: Transform pos: 62.5,12.5 parent: 2 - - uid: 10676 - components: - - type: Transform - pos: 63.5,12.5 - parent: 2 - uid: 10677 components: - type: Transform @@ -30405,31 +31888,6 @@ entities: - type: Transform pos: 62.5,13.5 parent: 2 - - uid: 10680 - components: - - type: Transform - pos: 62.5,14.5 - parent: 2 - - uid: 10681 - components: - - type: Transform - pos: 62.5,15.5 - parent: 2 - - uid: 10682 - components: - - type: Transform - pos: 63.5,15.5 - parent: 2 - - uid: 10683 - components: - - type: Transform - pos: 64.5,15.5 - parent: 2 - - uid: 10684 - components: - - type: Transform - pos: 65.5,15.5 - parent: 2 - uid: 10685 components: - type: Transform @@ -30485,11 +31943,6 @@ entities: - type: Transform pos: 57.5,11.5 parent: 2 - - uid: 10696 - components: - - type: Transform - pos: 56.5,11.5 - parent: 2 - uid: 10697 components: - type: Transform @@ -30535,6 +31988,26 @@ entities: - type: Transform pos: 48.5,14.5 parent: 2 + - uid: 10726 + components: + - type: Transform + pos: 60.5,32.5 + parent: 2 + - uid: 10727 + components: + - type: Transform + pos: 60.5,33.5 + parent: 2 + - uid: 10728 + components: + - type: Transform + pos: 60.5,34.5 + parent: 2 + - uid: 10729 + components: + - type: Transform + pos: 68.5,42.5 + parent: 2 - uid: 10752 components: - type: Transform @@ -30560,11 +32033,6 @@ entities: - type: Transform pos: 43.5,14.5 parent: 2 - - uid: 10765 - components: - - type: Transform - pos: 37.5,26.5 - parent: 2 - uid: 10777 components: - type: Transform @@ -30600,75 +32068,15 @@ entities: - type: Transform pos: 47.5,19.5 parent: 2 - - uid: 10805 - components: - - type: Transform - pos: 47.5,20.5 - parent: 2 - uid: 10806 components: - type: Transform pos: 47.5,21.5 parent: 2 - - uid: 10852 + - uid: 10840 components: - type: Transform - pos: 33.5,31.5 - parent: 2 - - uid: 10854 - components: - - type: Transform - pos: 47.5,22.5 - parent: 2 - - uid: 10855 - components: - - type: Transform - pos: 47.5,23.5 - parent: 2 - - uid: 10857 - components: - - type: Transform - pos: 47.5,24.5 - parent: 2 - - uid: 10858 - components: - - type: Transform - pos: 47.5,25.5 - parent: 2 - - uid: 10859 - components: - - type: Transform - pos: 47.5,26.5 - parent: 2 - - uid: 10860 - components: - - type: Transform - pos: 47.5,27.5 - parent: 2 - - uid: 10861 - components: - - type: Transform - pos: 48.5,27.5 - parent: 2 - - uid: 10862 - components: - - type: Transform - pos: 49.5,27.5 - parent: 2 - - uid: 10865 - components: - - type: Transform - pos: 50.5,27.5 - parent: 2 - - uid: 10866 - components: - - type: Transform - pos: 51.5,22.5 - parent: 2 - - uid: 10867 - components: - - type: Transform - pos: 51.5,20.5 + pos: 67.5,42.5 parent: 2 - uid: 10868 components: @@ -30678,12 +32086,7 @@ entities: - uid: 10869 components: - type: Transform - pos: 53.5,20.5 - parent: 2 - - uid: 10870 - components: - - type: Transform - pos: 53.5,21.5 + pos: 52.5,21.5 parent: 2 - uid: 10871 components: @@ -30720,81 +32123,6 @@ entities: - type: Transform pos: 59.5,19.5 parent: 2 - - uid: 10881 - components: - - type: Transform - pos: 60.5,19.5 - parent: 2 - - uid: 10882 - components: - - type: Transform - pos: 60.5,18.5 - parent: 2 - - uid: 10883 - components: - - type: Transform - pos: 61.5,18.5 - parent: 2 - - uid: 10884 - components: - - type: Transform - pos: 60.5,17.5 - parent: 2 - - uid: 10885 - components: - - type: Transform - pos: 60.5,16.5 - parent: 2 - - uid: 10886 - components: - - type: Transform - pos: 60.5,15.5 - parent: 2 - - uid: 10887 - components: - - type: Transform - pos: 60.5,20.5 - parent: 2 - - uid: 10888 - components: - - type: Transform - pos: 60.5,21.5 - parent: 2 - - uid: 10889 - components: - - type: Transform - pos: 60.5,22.5 - parent: 2 - - uid: 10890 - components: - - type: Transform - pos: 60.5,23.5 - parent: 2 - - uid: 10891 - components: - - type: Transform - pos: 61.5,23.5 - parent: 2 - - uid: 10892 - components: - - type: Transform - pos: 62.5,23.5 - parent: 2 - - uid: 10893 - components: - - type: Transform - pos: 63.5,23.5 - parent: 2 - - uid: 10894 - components: - - type: Transform - pos: 64.5,23.5 - parent: 2 - - uid: 10895 - components: - - type: Transform - pos: 65.5,23.5 - parent: 2 - uid: 10913 components: - type: Transform @@ -30815,11 +32143,6 @@ entities: - type: Transform pos: 41.5,3.5 parent: 2 - - uid: 10917 - components: - - type: Transform - pos: 42.5,3.5 - parent: 2 - uid: 10918 components: - type: Transform @@ -30850,6 +32173,36 @@ entities: - type: Transform pos: 43.5,6.5 parent: 2 + - uid: 10959 + components: + - type: Transform + pos: 64.5,15.5 + parent: 2 + - uid: 10988 + components: + - type: Transform + pos: 64.5,17.5 + parent: 2 + - uid: 10993 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - uid: 10994 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 10999 + components: + - type: Transform + pos: 64.5,18.5 + parent: 2 + - uid: 11109 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 - uid: 11148 components: - type: Transform @@ -30995,11 +32348,6 @@ entities: - type: Transform pos: 65.5,-5.5 parent: 2 - - uid: 11192 - components: - - type: Transform - pos: 33.5,16.5 - parent: 2 - uid: 11197 components: - type: Transform @@ -31190,10 +32538,10 @@ entities: - type: Transform pos: 65.5,0.5 parent: 2 - - uid: 11283 + - uid: 11385 components: - type: Transform - pos: 66.5,41.5 + pos: 32.5,24.5 parent: 2 - uid: 11425 components: @@ -31205,11 +32553,6 @@ entities: - type: Transform pos: 49.5,-14.5 parent: 2 - - uid: 11472 - components: - - type: Transform - pos: 37.5,27.5 - parent: 2 - uid: 11692 components: - type: Transform @@ -31220,20 +32563,35 @@ entities: - type: Transform pos: 9.5,16.5 parent: 2 + - uid: 11880 + components: + - type: Transform + pos: 64.5,22.5 + parent: 2 - uid: 11882 components: - type: Transform pos: 66.5,40.5 parent: 2 + - uid: 11939 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 11980 + components: + - type: Transform + pos: 66.5,6.5 + parent: 2 - uid: 11985 components: - type: Transform pos: 10.5,16.5 parent: 2 - - uid: 12091 + - uid: 12045 components: - type: Transform - pos: 41.5,22.5 + pos: 49.5,46.5 parent: 2 - uid: 12139 components: @@ -31370,16 +32728,6 @@ entities: - type: Transform pos: 66.5,8.5 parent: 2 - - uid: 12198 - components: - - type: Transform - pos: 65.5,8.5 - parent: 2 - - uid: 12199 - components: - - type: Transform - pos: 65.5,7.5 - parent: 2 - uid: 12200 components: - type: Transform @@ -31445,6 +32793,21 @@ entities: - type: Transform pos: 57.5,10.5 parent: 2 + - uid: 12365 + components: + - type: Transform + pos: 33.5,30.5 + parent: 2 + - uid: 12440 + components: + - type: Transform + pos: 30.5,36.5 + parent: 2 + - uid: 12556 + components: + - type: Transform + pos: 56.5,23.5 + parent: 2 - uid: 12648 components: - type: Transform @@ -31465,6 +32828,41 @@ entities: - type: Transform pos: 110.5,-14.5 parent: 2 + - uid: 12826 + components: + - type: Transform + pos: 56.5,29.5 + parent: 2 + - uid: 12851 + components: + - type: Transform + pos: 56.5,30.5 + parent: 2 + - uid: 12853 + components: + - type: Transform + pos: 56.5,31.5 + parent: 2 + - uid: 12854 + components: + - type: Transform + pos: 56.5,32.5 + parent: 2 + - uid: 12856 + components: + - type: Transform + pos: 55.5,32.5 + parent: 2 + - uid: 12857 + components: + - type: Transform + pos: 54.5,32.5 + parent: 2 + - uid: 12858 + components: + - type: Transform + pos: 53.5,32.5 + parent: 2 - uid: 12942 components: - type: Transform @@ -31500,21 +32898,61 @@ entities: - type: Transform pos: 37.5,-41.5 parent: 2 + - uid: 13091 + components: + - type: Transform + pos: 52.5,32.5 + parent: 2 + - uid: 13096 + components: + - type: Transform + pos: 52.5,31.5 + parent: 2 + - uid: 13103 + components: + - type: Transform + pos: 52.5,30.5 + parent: 2 + - uid: 13104 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 - uid: 13151 components: - type: Transform pos: 21.5,-41.5 parent: 2 - - uid: 13154 - components: - - type: Transform - pos: 47.5,29.5 - parent: 2 - uid: 13170 components: - type: Transform pos: 18.5,21.5 parent: 2 + - uid: 13282 + components: + - type: Transform + pos: 41.5,31.5 + parent: 2 + - uid: 13283 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - uid: 13284 + components: + - type: Transform + pos: 56.5,33.5 + parent: 2 + - uid: 13285 + components: + - type: Transform + pos: 56.5,34.5 + parent: 2 + - uid: 13286 + components: + - type: Transform + pos: 56.5,35.5 + parent: 2 - uid: 13313 components: - type: Transform @@ -31730,130 +33168,230 @@ entities: - type: Transform pos: 25.5,-58.5 parent: 2 - - uid: 13499 + - uid: 13485 components: - type: Transform - pos: 56.5,39.5 + pos: 18.5,-18.5 parent: 2 - - uid: 13500 + - uid: 13498 components: - type: Transform - pos: 56.5,32.5 - parent: 2 - - uid: 13501 - components: - - type: Transform - pos: 56.5,37.5 - parent: 2 - - uid: 13502 - components: - - type: Transform - pos: 56.5,33.5 - parent: 2 - - uid: 13503 - components: - - type: Transform - pos: 56.5,31.5 - parent: 2 - - uid: 13504 - components: - - type: Transform - pos: 55.5,30.5 + pos: 51.5,31.5 parent: 2 - uid: 13505 components: - type: Transform - pos: 56.5,38.5 + pos: 55.5,35.5 parent: 2 - uid: 13506 components: - type: Transform pos: 54.5,35.5 parent: 2 + - uid: 13507 + components: + - type: Transform + pos: 54.5,36.5 + parent: 2 - uid: 13508 components: - type: Transform - pos: 56.5,35.5 + pos: 53.5,36.5 parent: 2 - - uid: 13526 + - uid: 13509 components: - type: Transform - pos: 52.5,35.5 + pos: 52.5,36.5 + parent: 2 + - uid: 13512 + components: + - type: Transform + pos: 50.5,31.5 + parent: 2 + - uid: 13515 + components: + - type: Transform + pos: 41.5,39.5 + parent: 2 + - uid: 13524 + components: + - type: Transform + pos: 47.5,36.5 + parent: 2 + - uid: 13525 + components: + - type: Transform + pos: 42.5,44.5 parent: 2 - uid: 13527 components: - type: Transform - pos: 56.5,41.5 + pos: 35.5,31.5 parent: 2 - - uid: 13529 + - uid: 13528 components: - type: Transform - pos: 52.5,39.5 - parent: 2 - - uid: 13530 - components: - - type: Transform - pos: 54.5,39.5 + pos: 36.5,31.5 parent: 2 - uid: 13531 components: - type: Transform - pos: 56.5,40.5 - parent: 2 - - uid: 13532 - components: - - type: Transform - pos: 52.5,38.5 + pos: 38.5,29.5 parent: 2 - uid: 13533 components: - type: Transform - pos: 55.5,42.5 + pos: 38.5,26.5 parent: 2 - uid: 13534 components: - type: Transform - pos: 53.5,39.5 + pos: 41.5,25.5 parent: 2 - uid: 13535 components: - type: Transform - pos: 56.5,42.5 + pos: 43.5,39.5 parent: 2 - uid: 13536 components: - type: Transform - pos: 57.5,42.5 - parent: 2 - - uid: 13537 - components: - - type: Transform - pos: 59.5,36.5 + pos: 42.5,26.5 parent: 2 - uid: 13538 components: - type: Transform - pos: 60.5,36.5 + pos: 39.5,25.5 parent: 2 - uid: 13539 components: - type: Transform - pos: 57.5,30.5 + pos: 38.5,28.5 parent: 2 - uid: 13543 components: - type: Transform - pos: 56.5,36.5 + pos: 40.5,34.5 parent: 2 - uid: 13544 components: - type: Transform - pos: 57.5,36.5 + pos: 40.5,33.5 + parent: 2 + - uid: 13545 + components: + - type: Transform + pos: 40.5,32.5 parent: 2 - uid: 13546 components: - type: Transform - pos: 58.5,36.5 + pos: 40.5,31.5 + parent: 2 + - uid: 13547 + components: + - type: Transform + pos: 37.5,31.5 + parent: 2 + - uid: 13548 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 + - uid: 13550 + components: + - type: Transform + pos: 43.5,31.5 + parent: 2 + - uid: 13551 + components: + - type: Transform + pos: 44.5,31.5 + parent: 2 + - uid: 13552 + components: + - type: Transform + pos: 45.5,31.5 + parent: 2 + - uid: 13553 + components: + - type: Transform + pos: 46.5,31.5 + parent: 2 + - uid: 13554 + components: + - type: Transform + pos: 47.5,31.5 + parent: 2 + - uid: 13555 + components: + - type: Transform + pos: 48.5,31.5 + parent: 2 + - uid: 13556 + components: + - type: Transform + pos: 49.5,31.5 + parent: 2 + - uid: 13557 + components: + - type: Transform + pos: 39.5,31.5 + parent: 2 + - uid: 13558 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 13559 + components: + - type: Transform + pos: 38.5,32.5 + parent: 2 + - uid: 13565 + components: + - type: Transform + pos: 42.5,25.5 + parent: 2 + - uid: 13592 + components: + - type: Transform + pos: 44.5,39.5 + parent: 2 + - uid: 13594 + components: + - type: Transform + pos: 44.5,36.5 + parent: 2 + - uid: 13595 + components: + - type: Transform + pos: 44.5,35.5 + parent: 2 + - uid: 13596 + components: + - type: Transform + pos: 44.5,34.5 + parent: 2 + - uid: 13597 + components: + - type: Transform + pos: 43.5,34.5 + parent: 2 + - uid: 13598 + components: + - type: Transform + pos: 41.5,34.5 + parent: 2 + - uid: 13608 + components: + - type: Transform + pos: 42.5,39.5 + parent: 2 + - uid: 13655 + components: + - type: Transform + pos: 32.5,16.5 parent: 2 - uid: 13679 components: @@ -31873,7 +33411,7 @@ entities: - uid: 13695 components: - type: Transform - pos: 15.5,-14.5 + pos: 18.5,-19.5 parent: 2 - uid: 13701 components: @@ -31940,6 +33478,66 @@ entities: - type: Transform pos: -23.5,-19.5 parent: 2 + - uid: 13738 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 2 + - uid: 13744 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 + - uid: 13745 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 13748 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - uid: 13752 + components: + - type: Transform + pos: 38.5,24.5 + parent: 2 + - uid: 13753 + components: + - type: Transform + pos: 38.5,23.5 + parent: 2 + - uid: 13754 + components: + - type: Transform + pos: 39.5,23.5 + parent: 2 + - uid: 13755 + components: + - type: Transform + pos: 40.5,23.5 + parent: 2 + - uid: 13757 + components: + - type: Transform + pos: 37.5,23.5 + parent: 2 + - uid: 13758 + components: + - type: Transform + pos: 36.5,23.5 + parent: 2 + - uid: 13759 + components: + - type: Transform + pos: 37.5,25.5 + parent: 2 + - uid: 13761 + components: + - type: Transform + pos: 36.5,25.5 + parent: 2 - uid: 13762 components: - type: Transform @@ -32140,6 +33738,36 @@ entities: - type: Transform pos: 1.5,-13.5 parent: 2 + - uid: 13915 + components: + - type: Transform + pos: 35.5,25.5 + parent: 2 + - uid: 14085 + components: + - type: Transform + pos: 35.5,24.5 + parent: 2 + - uid: 14089 + components: + - type: Transform + pos: 31.5,30.5 + parent: 2 + - uid: 14090 + components: + - type: Transform + pos: 30.5,30.5 + parent: 2 + - uid: 14091 + components: + - type: Transform + pos: 30.5,29.5 + parent: 2 + - uid: 14092 + components: + - type: Transform + pos: 29.5,29.5 + parent: 2 - uid: 14094 components: - type: Transform @@ -32150,11 +33778,6 @@ entities: - type: Transform pos: 72.5,21.5 parent: 2 - - uid: 14097 - components: - - type: Transform - pos: 66.5,35.5 - parent: 2 - uid: 14098 components: - type: Transform @@ -32310,6 +33933,16 @@ entities: - type: Transform pos: 75.5,22.5 parent: 2 + - uid: 14240 + components: + - type: Transform + pos: 53.5,24.5 + parent: 2 + - uid: 14256 + components: + - type: Transform + pos: 45.5,39.5 + parent: 2 - uid: 14399 components: - type: Transform @@ -32375,16 +34008,6 @@ entities: - type: Transform pos: 88.5,30.5 parent: 2 - - uid: 14442 - components: - - type: Transform - pos: 88.5,29.5 - parent: 2 - - uid: 14443 - components: - - type: Transform - pos: 88.5,28.5 - parent: 2 - uid: 14532 components: - type: Transform @@ -32563,222 +34186,57 @@ entities: - uid: 14731 components: - type: Transform - pos: 9.5,18.5 + pos: 30.5,20.5 + parent: 2 + - uid: 14763 + components: + - type: Transform + pos: 31.5,20.5 parent: 2 - uid: 14784 components: - type: Transform pos: 28.5,-35.5 parent: 2 - - uid: 14856 + - uid: 14833 components: - type: Transform - pos: 66.5,46.5 + pos: 47.5,39.5 parent: 2 - - uid: 14857 + - uid: 14835 components: - type: Transform - pos: 65.5,46.5 + pos: 61.5,34.5 parent: 2 - - uid: 14858 + - uid: 14840 components: - type: Transform - pos: 64.5,46.5 - parent: 2 - - uid: 14859 - components: - - type: Transform - pos: 64.5,45.5 - parent: 2 - - uid: 14860 - components: - - type: Transform - pos: 64.5,44.5 - parent: 2 - - uid: 14861 - components: - - type: Transform - pos: 64.5,43.5 - parent: 2 - - uid: 14862 - components: - - type: Transform - pos: 64.5,42.5 + pos: 47.5,38.5 parent: 2 - uid: 14863 components: - type: Transform - pos: 63.5,42.5 + pos: 30.5,21.5 parent: 2 - uid: 14864 components: - type: Transform - pos: 62.5,42.5 + pos: 34.5,23.5 parent: 2 - uid: 14865 components: - type: Transform - pos: 62.5,41.5 + pos: 28.5,21.5 parent: 2 - uid: 14866 components: - type: Transform - pos: 62.5,40.5 - parent: 2 - - uid: 14867 - components: - - type: Transform - pos: 62.5,39.5 + pos: 28.5,20.5 parent: 2 - uid: 14868 components: - type: Transform - pos: 62.5,37.5 - parent: 2 - - uid: 14869 - components: - - type: Transform - pos: 62.5,36.5 - parent: 2 - - uid: 14870 - components: - - type: Transform - pos: 62.5,35.5 - parent: 2 - - uid: 14871 - components: - - type: Transform - pos: 62.5,34.5 - parent: 2 - - uid: 14872 - components: - - type: Transform - pos: 62.5,33.5 - parent: 2 - - uid: 14873 - components: - - type: Transform - pos: 62.5,32.5 - parent: 2 - - uid: 14874 - components: - - type: Transform - pos: 62.5,38.5 - parent: 2 - - uid: 14875 - components: - - type: Transform - pos: 61.5,42.5 - parent: 2 - - uid: 14876 - components: - - type: Transform - pos: 60.5,42.5 - parent: 2 - - uid: 14877 - components: - - type: Transform - pos: 60.5,43.5 - parent: 2 - - uid: 14878 - components: - - type: Transform - pos: 60.5,44.5 - parent: 2 - - uid: 14879 - components: - - type: Transform - pos: 59.5,44.5 - parent: 2 - - uid: 14880 - components: - - type: Transform - pos: 58.5,44.5 - parent: 2 - - uid: 14881 - components: - - type: Transform - pos: 57.5,44.5 - parent: 2 - - uid: 14882 - components: - - type: Transform - pos: 56.5,44.5 - parent: 2 - - uid: 14883 - components: - - type: Transform - pos: 54.5,44.5 - parent: 2 - - uid: 14884 - components: - - type: Transform - pos: 53.5,44.5 - parent: 2 - - uid: 14885 - components: - - type: Transform - pos: 55.5,44.5 - parent: 2 - - uid: 14886 - components: - - type: Transform - pos: 52.5,43.5 - parent: 2 - - uid: 14887 - components: - - type: Transform - pos: 51.5,43.5 - parent: 2 - - uid: 14888 - components: - - type: Transform - pos: 52.5,44.5 - parent: 2 - - uid: 14889 - components: - - type: Transform - pos: 50.5,43.5 - parent: 2 - - uid: 14890 - components: - - type: Transform - pos: 50.5,42.5 - parent: 2 - - uid: 14891 - components: - - type: Transform - pos: 50.5,40.5 - parent: 2 - - uid: 14892 - components: - - type: Transform - pos: 50.5,39.5 - parent: 2 - - uid: 14893 - components: - - type: Transform - pos: 50.5,41.5 - parent: 2 - - uid: 14894 - components: - - type: Transform - pos: 50.5,38.5 - parent: 2 - - uid: 14895 - components: - - type: Transform - pos: 62.5,31.5 - parent: 2 - - uid: 14927 - components: - - type: Transform - pos: 36.5,34.5 - parent: 2 - - uid: 14928 - components: - - type: Transform - pos: 37.5,34.5 + pos: 34.5,17.5 parent: 2 - uid: 14933 components: @@ -32790,11 +34248,6 @@ entities: - type: Transform pos: 26.5,35.5 parent: 2 - - uid: 14935 - components: - - type: Transform - pos: 33.5,36.5 - parent: 2 - uid: 14944 components: - type: Transform @@ -32825,6 +34278,11 @@ entities: - type: Transform pos: 17.5,-39.5 parent: 2 + - uid: 14980 + components: + - type: Transform + pos: 44.5,46.5 + parent: 2 - uid: 14981 components: - type: Transform @@ -32855,6 +34313,11 @@ entities: - type: Transform pos: 38.5,-12.5 parent: 2 + - uid: 15106 + components: + - type: Transform + pos: 43.5,46.5 + parent: 2 - uid: 15315 components: - type: Transform @@ -32885,16 +34348,6 @@ entities: - type: Transform pos: 27.5,-35.5 parent: 2 - - uid: 15385 - components: - - type: Transform - pos: 39.5,27.5 - parent: 2 - - uid: 15386 - components: - - type: Transform - pos: 38.5,27.5 - parent: 2 - uid: 15389 components: - type: Transform @@ -33020,15 +34473,295 @@ entities: - type: Transform pos: 35.5,-25.5 parent: 2 - - uid: 15472 + - uid: 15555 components: - type: Transform - pos: 43.5,22.5 + pos: 52.5,27.5 parent: 2 - - uid: 15473 + - uid: 15556 components: - type: Transform - pos: 43.5,21.5 + pos: 53.5,27.5 + parent: 2 + - uid: 15557 + components: + - type: Transform + pos: 54.5,27.5 + parent: 2 + - uid: 15558 + components: + - type: Transform + pos: 55.5,27.5 + parent: 2 + - uid: 15559 + components: + - type: Transform + pos: 56.5,27.5 + parent: 2 + - uid: 15560 + components: + - type: Transform + pos: 57.5,27.5 + parent: 2 + - uid: 15561 + components: + - type: Transform + pos: 57.5,28.5 + parent: 2 + - uid: 15563 + components: + - type: Transform + pos: 34.5,24.5 + parent: 2 + - uid: 15570 + components: + - type: Transform + pos: 52.5,19.5 + parent: 2 + - uid: 15571 + components: + - type: Transform + pos: 51.5,19.5 + parent: 2 + - uid: 15572 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 + - uid: 15573 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 + - uid: 15577 + components: + - type: Transform + pos: 65.5,22.5 + parent: 2 + - uid: 15582 + components: + - type: Transform + pos: 64.5,23.5 + parent: 2 + - uid: 15584 + components: + - type: Transform + pos: 63.5,24.5 + parent: 2 + - uid: 15586 + components: + - type: Transform + pos: 62.5,24.5 + parent: 2 + - uid: 15587 + components: + - type: Transform + pos: 61.5,24.5 + parent: 2 + - uid: 15588 + components: + - type: Transform + pos: 60.5,24.5 + parent: 2 + - uid: 15589 + components: + - type: Transform + pos: 59.5,24.5 + parent: 2 + - uid: 15590 + components: + - type: Transform + pos: 58.5,24.5 + parent: 2 + - uid: 15591 + components: + - type: Transform + pos: 57.5,24.5 + parent: 2 + - uid: 15708 + components: + - type: Transform + pos: 62.5,44.5 + parent: 2 + - uid: 15709 + components: + - type: Transform + pos: 62.5,45.5 + parent: 2 + - uid: 15710 + components: + - type: Transform + pos: 62.5,46.5 + parent: 2 + - uid: 15802 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 2 + - uid: 15815 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - uid: 15819 + components: + - type: Transform + pos: 10.5,20.5 + parent: 2 + - uid: 15823 + components: + - type: Transform + pos: 30.5,24.5 + parent: 2 + - uid: 15824 + components: + - type: Transform + pos: 30.5,23.5 + parent: 2 + - uid: 15825 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 + - uid: 15826 + components: + - type: Transform + pos: 34.5,22.5 + parent: 2 + - uid: 15839 + components: + - type: Transform + pos: 45.5,3.5 + parent: 2 + - uid: 15840 + components: + - type: Transform + pos: 44.5,3.5 + parent: 2 + - uid: 15843 + components: + - type: Transform + pos: 54.5,9.5 + parent: 2 + - uid: 15844 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 15845 + components: + - type: Transform + pos: 53.5,9.5 + parent: 2 + - uid: 15846 + components: + - type: Transform + pos: 51.5,9.5 + parent: 2 + - uid: 15847 + components: + - type: Transform + pos: 50.5,9.5 + parent: 2 + - uid: 15848 + components: + - type: Transform + pos: 50.5,8.5 + parent: 2 + - uid: 15849 + components: + - type: Transform + pos: 50.5,7.5 + parent: 2 + - uid: 15851 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 + - uid: 15855 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 + - uid: 15856 + components: + - type: Transform + pos: 6.5,10.5 + parent: 2 + - uid: 15857 + components: + - type: Transform + pos: 7.5,10.5 + parent: 2 + - uid: 15858 + components: + - type: Transform + pos: 8.5,10.5 + parent: 2 + - uid: 15859 + components: + - type: Transform + pos: 18.5,0.5 + parent: 2 + - uid: 15860 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - uid: 15861 + components: + - type: Transform + pos: 20.5,0.5 + parent: 2 + - uid: 15862 + components: + - type: Transform + pos: 21.5,0.5 + parent: 2 + - uid: 15863 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 + - uid: 15864 + components: + - type: Transform + pos: 23.5,0.5 + parent: 2 + - uid: 15865 + components: + - type: Transform + pos: 23.5,1.5 + parent: 2 + - uid: 15867 + components: + - type: Transform + pos: 29.5,9.5 + parent: 2 + - uid: 15868 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - uid: 15869 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 15885 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - uid: 15886 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 15887 + components: + - type: Transform + pos: 33.5,8.5 parent: 2 - proto: CableMVStack entities: @@ -33090,12 +34823,6 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-15.5 parent: 2 - - uid: 7741 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,33.5 - parent: 2 - uid: 8272 components: - type: Transform @@ -33133,19 +34860,13 @@ entities: - type: Transform pos: 54.503376,-4.6494684 parent: 2 -- proto: CannabisSeeds - entities: - - uid: 8395 - components: - - type: Transform - pos: 59.5,38.5 - parent: 2 - proto: CaptainIDCard entities: - - uid: 1255 + - uid: 5385 components: - type: Transform - pos: 33.48514,41.714756 + rot: -1.5707963267948966 rad + pos: 33.659546,41.622776 parent: 2 - proto: CarbonDioxideCanister entities: @@ -33159,10 +34880,10 @@ entities: - type: Transform pos: 45.5,-37.5 parent: 2 - - uid: 7846 + - uid: 10668 components: - type: Transform - pos: 58.5,10.5 + pos: 58.5,8.5 parent: 2 - proto: CargoMailTeleporter entities: @@ -33173,11 +34894,6 @@ entities: parent: 2 - proto: Carpet entities: - - uid: 3 - components: - - type: Transform - pos: 43.5,22.5 - parent: 2 - uid: 266 components: - type: Transform @@ -33318,26 +35034,6 @@ entities: - type: Transform pos: 34.5,7.5 parent: 2 - - uid: 2611 - components: - - type: Transform - pos: 37.5,41.5 - parent: 2 - - uid: 2612 - components: - - type: Transform - pos: 36.5,41.5 - parent: 2 - - uid: 2613 - components: - - type: Transform - pos: 36.5,40.5 - parent: 2 - - uid: 2614 - components: - - type: Transform - pos: 37.5,40.5 - parent: 2 - uid: 2698 components: - type: Transform @@ -33453,40 +35149,25 @@ entities: - type: Transform pos: 22.5,43.5 parent: 2 - - uid: 5453 + - uid: 3113 components: - type: Transform - pos: 67.5,35.5 + pos: 59.5,38.5 parent: 2 - - uid: 6529 + - uid: 3392 components: - type: Transform - pos: 43.5,20.5 + pos: 58.5,38.5 parent: 2 - - uid: 6530 + - uid: 6321 components: - type: Transform - pos: 42.5,20.5 + pos: 59.5,39.5 parent: 2 - - uid: 6531 + - uid: 6326 components: - type: Transform - pos: 42.5,19.5 - parent: 2 - - uid: 6532 - components: - - type: Transform - pos: 43.5,19.5 - parent: 2 - - uid: 6533 - components: - - type: Transform - pos: 43.5,18.5 - parent: 2 - - uid: 6534 - components: - - type: Transform - pos: 42.5,18.5 + pos: 58.5,39.5 parent: 2 - uid: 10807 components: @@ -33518,31 +35199,6 @@ entities: - type: Transform pos: 28.5,48.5 parent: 2 - - uid: 11940 - components: - - type: Transform - pos: 44.5,22.5 - parent: 2 - - uid: 11941 - components: - - type: Transform - pos: 45.5,22.5 - parent: 2 - - uid: 11942 - components: - - type: Transform - pos: 45.5,23.5 - parent: 2 - - uid: 11943 - components: - - type: Transform - pos: 45.5,24.5 - parent: 2 - - uid: 11944 - components: - - type: Transform - pos: 44.5,23.5 - parent: 2 - uid: 12263 components: - type: Transform @@ -33573,6 +35229,11 @@ entities: - type: Transform pos: 14.5,15.5 parent: 2 + - uid: 15452 + components: + - type: Transform + pos: 24.5,31.5 + parent: 2 - proto: CarpetBlack entities: - uid: 430 @@ -33585,10 +35246,20 @@ entities: - type: Transform pos: 5.5,15.5 parent: 2 - - uid: 5459 + - uid: 2215 components: - type: Transform - pos: 67.5,41.5 + pos: 43.5,43.5 + parent: 2 + - uid: 3244 + components: + - type: Transform + pos: 44.5,43.5 + parent: 2 + - uid: 3249 + components: + - type: Transform + pos: 44.5,42.5 parent: 2 - uid: 7586 components: @@ -33605,63 +35276,58 @@ entities: - type: Transform pos: 5.5,16.5 parent: 2 + - uid: 8386 + components: + - type: Transform + pos: 43.5,42.5 + parent: 2 - proto: CarpetBlue entities: - - uid: 71 - components: - - type: Transform - pos: 32.5,42.5 - parent: 2 - - uid: 73 - components: - - type: Transform - pos: 34.5,40.5 - parent: 2 - - uid: 76 - components: - - type: Transform - pos: 32.5,41.5 - parent: 2 - - uid: 82 - components: - - type: Transform - pos: 32.5,40.5 - parent: 2 - - uid: 247 - components: - - type: Transform - pos: 34.5,42.5 - parent: 2 - - uid: 248 - components: - - type: Transform - pos: 34.5,41.5 - parent: 2 - - uid: 249 - components: - - type: Transform - pos: 33.5,42.5 - parent: 2 - - uid: 5455 - components: - - type: Transform - pos: 67.5,38.5 - parent: 2 - - uid: 5456 - components: - - type: Transform - pos: 67.5,37.5 - parent: 2 - - uid: 9565 + - uid: 8387 components: - type: Transform pos: 33.5,41.5 parent: 2 - - uid: 9574 + - uid: 8391 + components: + - type: Transform + pos: 32.5,40.5 + parent: 2 + - uid: 8419 + components: + - type: Transform + pos: 31.5,39.5 + parent: 2 + - uid: 8438 + components: + - type: Transform + pos: 32.5,41.5 + parent: 2 + - uid: 8441 components: - type: Transform pos: 33.5,40.5 parent: 2 + - uid: 8456 + components: + - type: Transform + pos: 33.5,39.5 + parent: 2 + - uid: 8477 + components: + - type: Transform + pos: 31.5,40.5 + parent: 2 + - uid: 8484 + components: + - type: Transform + pos: 31.5,41.5 + parent: 2 + - uid: 8490 + components: + - type: Transform + pos: 32.5,39.5 + parent: 2 - proto: CarpetChapel entities: - uid: 8377 @@ -33781,33 +35447,30 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,4.5 parent: 2 +- proto: CarpetCyan + entities: + - uid: 3246 + components: + - type: Transform + pos: 61.5,41.5 + parent: 2 + - uid: 3393 + components: + - type: Transform + pos: 61.5,40.5 + parent: 2 + - uid: 6290 + components: + - type: Transform + pos: 62.5,41.5 + parent: 2 + - uid: 7940 + components: + - type: Transform + pos: 62.5,40.5 + parent: 2 - proto: CarpetGreen entities: - - uid: 2276 - components: - - type: Transform - pos: 67.5,27.5 - parent: 2 - - uid: 5463 - components: - - type: Transform - pos: 69.5,36.5 - parent: 2 - - uid: 5514 - components: - - type: Transform - pos: 67.5,31.5 - parent: 2 - - uid: 5515 - components: - - type: Transform - pos: 67.5,32.5 - parent: 2 - - uid: 5516 - components: - - type: Transform - pos: 67.5,33.5 - parent: 2 - uid: 12679 components: - type: Transform @@ -33838,16 +35501,6 @@ entities: - type: Transform pos: 107.5,-12.5 parent: 2 - - uid: 14089 - components: - - type: Transform - pos: 67.5,29.5 - parent: 2 - - uid: 14090 - components: - - type: Transform - pos: 67.5,28.5 - parent: 2 - proto: CarpetOrange entities: - uid: 97 @@ -33865,41 +35518,6 @@ entities: - type: Transform pos: 10.5,-41.5 parent: 2 - - uid: 3431 - components: - - type: Transform - pos: 70.5,28.5 - parent: 2 - - uid: 5495 - components: - - type: Transform - pos: 70.5,34.5 - parent: 2 - - uid: 5496 - components: - - type: Transform - pos: 70.5,33.5 - parent: 2 - - uid: 5497 - components: - - type: Transform - pos: 70.5,32.5 - parent: 2 - - uid: 5513 - components: - - type: Transform - pos: 69.5,28.5 - parent: 2 - - uid: 8357 - components: - - type: Transform - pos: 70.5,27.5 - parent: 2 - - uid: 8817 - components: - - type: Transform - pos: 70.5,29.5 - parent: 2 - proto: CarpetPink entities: - uid: 1240 @@ -33912,16 +35530,65 @@ entities: - type: Transform pos: 5.5,-12.5 parent: 2 - - uid: 5457 + - uid: 2213 components: - type: Transform - pos: 67.5,39.5 + rot: 3.141592653589793 rad + pos: 48.5,42.5 + parent: 2 + - uid: 2234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,40.5 + parent: 2 + - uid: 2902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,42.5 + parent: 2 + - uid: 3065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,41.5 + parent: 2 + - uid: 3194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,41.5 + parent: 2 + - uid: 5425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,37.5 + parent: 2 + - uid: 5456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,36.5 parent: 2 - uid: 5682 components: - type: Transform pos: 6.5,-13.5 parent: 2 + - uid: 9248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,38.5 + parent: 2 + - uid: 10833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,38.5 + parent: 2 - uid: 13066 components: - type: Transform @@ -33947,24 +35614,60 @@ entities: - type: Transform pos: 4.5,-12.5 parent: 2 -- proto: CarpetPurple - entities: - - uid: 5454 + - uid: 13520 components: - type: Transform - pos: 67.5,36.5 + rot: 3.141592653589793 rad + pos: 49.5,40.5 + parent: 2 + - uid: 14837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,36.5 + parent: 2 + - uid: 15157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,37.5 parent: 2 - proto: CarpetSBlue entities: - - uid: 5458 + - uid: 2570 components: - type: Transform - pos: 67.5,40.5 + pos: 70.5,40.5 parent: 2 - - uid: 5462 + - uid: 4134 components: - type: Transform - pos: 69.5,39.5 + pos: 35.5,41.5 + parent: 2 + - uid: 4137 + components: + - type: Transform + pos: 36.5,41.5 + parent: 2 + - uid: 8660 + components: + - type: Transform + pos: 70.5,39.5 + parent: 2 + - uid: 8714 + components: + - type: Transform + pos: 71.5,40.5 + parent: 2 + - uid: 8791 + components: + - type: Transform + pos: 71.5,39.5 + parent: 2 + - uid: 9131 + components: + - type: Transform + pos: 36.5,42.5 parent: 2 - uid: 10284 components: @@ -33996,6 +35699,11 @@ entities: - type: Transform pos: 20.5,-2.5 parent: 2 + - uid: 13577 + components: + - type: Transform + pos: 35.5,42.5 + parent: 2 - proto: Catwalk entities: - uid: 8 @@ -34004,6 +35712,16 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-16.5 parent: 2 + - uid: 71 + components: + - type: Transform + pos: 40.5,45.5 + parent: 2 + - uid: 178 + components: + - type: Transform + pos: 39.5,42.5 + parent: 2 - uid: 197 components: - type: Transform @@ -34053,10 +35771,11 @@ entities: - type: Transform pos: 4.5,-32.5 parent: 2 - - uid: 1014 + - uid: 651 components: - type: Transform - pos: 47.5,21.5 + rot: 1.5707963267948966 rad + pos: 16.5,-12.5 parent: 2 - uid: 1166 components: @@ -34351,29 +36070,106 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-30.5 parent: 2 + - uid: 2192 + components: + - type: Transform + pos: 33.5,36.5 + parent: 2 + - uid: 2198 + components: + - type: Transform + pos: 32.5,36.5 + parent: 2 + - uid: 2204 + components: + - type: Transform + pos: 45.5,46.5 + parent: 2 + - uid: 2206 + components: + - type: Transform + pos: 48.5,46.5 + parent: 2 + - uid: 2207 + components: + - type: Transform + pos: 35.5,38.5 + parent: 2 + - uid: 2258 + components: + - type: Transform + pos: 47.5,46.5 + parent: 2 - uid: 2264 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-47.5 parent: 2 + - uid: 2273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,38.5 + parent: 2 + - uid: 2274 + components: + - type: Transform + pos: 43.5,46.5 + parent: 2 - uid: 2275 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-49.5 parent: 2 + - uid: 2276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,47.5 + parent: 2 - uid: 2280 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-49.5 parent: 2 - - uid: 2567 + - uid: 2282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,44.5 + parent: 2 + - uid: 2319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,21.5 + parent: 2 + - uid: 2327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,23.5 + parent: 2 + - uid: 2331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,27.5 + parent: 2 + - uid: 2597 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,34.5 + pos: 31.5,34.5 + parent: 2 + - uid: 2598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,35.5 parent: 2 - uid: 2834 components: @@ -34387,45 +36183,60 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-30.5 parent: 2 - - uid: 3172 + - uid: 3076 components: - type: Transform - pos: 34.5,34.5 + rot: 1.5707963267948966 rad + pos: 46.5,22.5 parent: 2 - - uid: 3174 + - uid: 3083 components: - type: Transform - pos: 34.5,35.5 + pos: 42.5,46.5 parent: 2 - - uid: 3188 + - uid: 3125 components: - type: Transform - pos: 45.5,33.5 + pos: 39.5,41.5 parent: 2 - - uid: 3189 + - uid: 3161 components: - type: Transform - pos: 45.5,34.5 + rot: 3.141592653589793 rad + pos: 40.5,43.5 + parent: 2 + - uid: 3187 + components: + - type: Transform + pos: 44.5,46.5 parent: 2 - uid: 3190 components: - type: Transform - pos: 45.5,35.5 + pos: 46.5,46.5 parent: 2 - - uid: 3191 + - uid: 3266 components: - type: Transform - pos: 45.5,36.5 + rot: 1.5707963267948966 rad + pos: 39.5,38.5 parent: 2 - - uid: 3254 + - uid: 3269 components: - type: Transform - pos: 47.5,25.5 + rot: 1.5707963267948966 rad + pos: 61.5,47.5 parent: 2 - - uid: 3255 + - uid: 3358 components: - type: Transform - pos: 47.5,23.5 + rot: 1.5707963267948966 rad + pos: 62.5,47.5 + parent: 2 + - uid: 3418 + components: + - type: Transform + pos: 39.5,40.5 parent: 2 - uid: 3446 components: @@ -34438,11 +36249,6 @@ entities: - type: Transform pos: 79.5,-9.5 parent: 2 - - uid: 3851 - components: - - type: Transform - pos: 74.5,-18.5 - parent: 2 - uid: 3904 components: - type: Transform @@ -34648,6 +36454,21 @@ entities: - type: Transform pos: 89.5,45.5 parent: 2 + - uid: 4071 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - uid: 4090 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 4135 + components: + - type: Transform + pos: 62.5,34.5 + parent: 2 - uid: 4272 components: - type: Transform @@ -34672,6 +36493,11 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,29.5 parent: 2 + - uid: 4346 + components: + - type: Transform + pos: 61.5,34.5 + parent: 2 - uid: 4440 components: - type: Transform @@ -34682,22 +36508,18 @@ entities: - type: Transform pos: 5.5,-30.5 parent: 2 - - uid: 4453 - components: - - type: Transform - pos: 10.5,-23.5 - parent: 2 - - uid: 4454 - components: - - type: Transform - pos: 11.5,-23.5 - parent: 2 - uid: 4504 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,32.5 parent: 2 + - uid: 4506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,38.5 + parent: 2 - uid: 4519 components: - type: Transform @@ -34750,12 +36572,6 @@ entities: - type: Transform pos: 21.5,-39.5 parent: 2 - - uid: 4784 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-14.5 - parent: 2 - uid: 4788 components: - type: Transform @@ -34808,12 +36624,24 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-30.5 parent: 2 + - uid: 5484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,25.5 + parent: 2 - uid: 5499 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,18.5 parent: 2 + - uid: 5505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,36.5 + parent: 2 - uid: 5606 components: - type: Transform @@ -34948,6 +36776,44 @@ entities: rot: 3.141592653589793 rad pos: 52.5,-19.5 parent: 2 + - uid: 6197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,26.5 + parent: 2 + - uid: 6292 + components: + - type: Transform + pos: 40.5,46.5 + parent: 2 + - uid: 6293 + components: + - type: Transform + pos: 40.5,42.5 + parent: 2 + - uid: 6320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,24.5 + parent: 2 + - uid: 6331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,39.5 + parent: 2 + - uid: 6531 + components: + - type: Transform + pos: 86.5,50.5 + parent: 2 + - uid: 6729 + components: + - type: Transform + pos: 53.5,47.5 + parent: 2 - uid: 6775 components: - type: Transform @@ -34972,10 +36838,10 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-21.5 parent: 2 - - uid: 6866 + - uid: 6922 components: - type: Transform - pos: 47.5,24.5 + pos: 53.5,48.5 parent: 2 - uid: 7007 components: @@ -35056,23 +36922,11 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,24.5 parent: 2 - - uid: 7856 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,24.5 - parent: 2 - uid: 7860 components: - type: Transform pos: 46.5,-30.5 parent: 2 - - uid: 8029 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,26.5 - parent: 2 - uid: 8063 components: - type: Transform @@ -35100,6 +36954,11 @@ entities: - type: Transform pos: 13.5,-44.5 parent: 2 + - uid: 8287 + components: + - type: Transform + pos: 78.5,40.5 + parent: 2 - uid: 8302 components: - type: Transform @@ -35120,10 +36979,48 @@ entities: - type: Transform pos: 45.5,6.5 parent: 2 - - uid: 8391 + - uid: 8347 components: - type: Transform - pos: 45.5,27.5 + pos: 59.5,48.5 + parent: 2 + - uid: 8362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,26.5 + parent: 2 + - uid: 8363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,34.5 + parent: 2 + - uid: 8403 + components: + - type: Transform + pos: 63.5,34.5 + parent: 2 + - uid: 8417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,47.5 + parent: 2 + - uid: 8497 + components: + - type: Transform + pos: 66.5,26.5 + parent: 2 + - uid: 8590 + components: + - type: Transform + pos: 78.5,50.5 + parent: 2 + - uid: 8630 + components: + - type: Transform + pos: 86.5,40.5 parent: 2 - uid: 8750 components: @@ -35237,47 +37134,37 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-19.5 parent: 2 + - uid: 9274 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 + - uid: 9434 + components: + - type: Transform + pos: 49.5,47.5 + parent: 2 - uid: 9706 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,6.5 parent: 2 + - uid: 9883 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 10432 + components: + - type: Transform + pos: 48.5,27.5 + parent: 2 - uid: 10441 components: - type: Transform pos: 39.5,-38.5 parent: 2 - - uid: 10711 - components: - - type: Transform - pos: 63.5,48.5 - parent: 2 - - uid: 10712 - components: - - type: Transform - pos: 62.5,48.5 - parent: 2 - - uid: 10713 - components: - - type: Transform - pos: 61.5,48.5 - parent: 2 - - uid: 10714 - components: - - type: Transform - pos: 60.5,48.5 - parent: 2 - - uid: 10715 - components: - - type: Transform - pos: 59.5,48.5 - parent: 2 - - uid: 10716 - components: - - type: Transform - pos: 58.5,48.5 - parent: 2 - uid: 10717 components: - type: Transform @@ -35293,56 +37180,11 @@ entities: - type: Transform pos: 54.5,48.5 parent: 2 - - uid: 10720 - components: - - type: Transform - pos: 53.5,48.5 - parent: 2 - - uid: 10721 - components: - - type: Transform - pos: 52.5,48.5 - parent: 2 - - uid: 10722 - components: - - type: Transform - pos: 51.5,48.5 - parent: 2 - - uid: 10723 - components: - - type: Transform - pos: 50.5,48.5 - parent: 2 - - uid: 10724 - components: - - type: Transform - pos: 49.5,48.5 - parent: 2 - uid: 10725 components: - type: Transform pos: 55.5,48.5 parent: 2 - - uid: 10726 - components: - - type: Transform - pos: 43.5,41.5 - parent: 2 - - uid: 10727 - components: - - type: Transform - pos: 42.5,41.5 - parent: 2 - - uid: 10728 - components: - - type: Transform - pos: 41.5,41.5 - parent: 2 - - uid: 10729 - components: - - type: Transform - pos: 40.5,41.5 - parent: 2 - uid: 10730 components: - type: Transform @@ -35458,31 +37300,6 @@ entities: - type: Transform pos: 69.5,-18.5 parent: 2 - - uid: 10769 - components: - - type: Transform - pos: 67.5,46.5 - parent: 2 - - uid: 10770 - components: - - type: Transform - pos: 49.5,47.5 - parent: 2 - - uid: 10771 - components: - - type: Transform - pos: 63.5,47.5 - parent: 2 - - uid: 10772 - components: - - type: Transform - pos: 29.5,32.5 - parent: 2 - - uid: 10773 - components: - - type: Transform - pos: 30.5,32.5 - parent: 2 - uid: 10774 components: - type: Transform @@ -35558,6 +37375,16 @@ entities: - type: Transform pos: 81.5,6.5 parent: 2 + - uid: 10870 + components: + - type: Transform + pos: 50.5,11.5 + parent: 2 + - uid: 10890 + components: + - type: Transform + pos: 52.5,17.5 + parent: 2 - uid: 10960 components: - type: Transform @@ -35614,16 +37441,147 @@ entities: - type: Transform pos: 26.5,-52.5 parent: 2 + - uid: 11672 + components: + - type: Transform + pos: 49.5,27.5 + parent: 2 + - uid: 11696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,47.5 + parent: 2 + - uid: 11733 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 + - uid: 11734 + components: + - type: Transform + pos: 51.5,27.5 + parent: 2 + - uid: 11735 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 + - uid: 11737 + components: + - type: Transform + pos: 54.5,27.5 + parent: 2 - uid: 11755 components: - type: Transform pos: 46.5,-28.5 parent: 2 + - uid: 11827 + components: + - type: Transform + pos: 55.5,27.5 + parent: 2 + - uid: 11860 + components: + - type: Transform + pos: 56.5,27.5 + parent: 2 + - uid: 11861 + components: + - type: Transform + pos: 58.5,29.5 + parent: 2 + - uid: 11866 + components: + - type: Transform + pos: 59.5,29.5 + parent: 2 - uid: 11883 components: - type: Transform pos: 74.5,20.5 parent: 2 + - uid: 11884 + components: + - type: Transform + pos: 60.5,30.5 + parent: 2 + - uid: 11940 + components: + - type: Transform + pos: 60.5,32.5 + parent: 2 + - uid: 11941 + components: + - type: Transform + pos: 60.5,31.5 + parent: 2 + - uid: 11942 + components: + - type: Transform + pos: 60.5,33.5 + parent: 2 + - uid: 12085 + components: + - type: Transform + pos: 66.5,36.5 + parent: 2 + - uid: 12089 + components: + - type: Transform + pos: 66.5,37.5 + parent: 2 + - uid: 12091 + components: + - type: Transform + pos: 66.5,39.5 + parent: 2 + - uid: 12102 + components: + - type: Transform + pos: 66.5,40.5 + parent: 2 + - uid: 12142 + components: + - type: Transform + pos: 66.5,41.5 + parent: 2 + - uid: 12143 + components: + - type: Transform + pos: 66.5,28.5 + parent: 2 + - uid: 12144 + components: + - type: Transform + pos: 66.5,43.5 + parent: 2 + - uid: 12179 + components: + - type: Transform + pos: 62.5,45.5 + parent: 2 + - uid: 12181 + components: + - type: Transform + pos: 62.5,46.5 + parent: 2 + - uid: 12233 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 12270 + components: + - type: Transform + pos: 65.5,44.5 + parent: 2 + - uid: 12280 + components: + - type: Transform + pos: 64.5,44.5 + parent: 2 - uid: 12308 components: - type: Transform @@ -35684,21 +37642,6 @@ entities: - type: Transform pos: 17.5,-8.5 parent: 2 - - uid: 12329 - components: - - type: Transform - pos: 16.5,-11.5 - parent: 2 - - uid: 12330 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 2 - - uid: 12331 - components: - - type: Transform - pos: 14.5,-11.5 - parent: 2 - uid: 12332 components: - type: Transform @@ -35779,6 +37722,11 @@ entities: - type: Transform pos: 1.5,-3.5 parent: 2 + - uid: 12373 + components: + - type: Transform + pos: 66.5,27.5 + parent: 2 - uid: 12397 components: - type: Transform @@ -35814,10 +37762,15 @@ entities: - type: Transform pos: 42.5,-18.5 parent: 2 - - uid: 12741 + - uid: 12431 components: - type: Transform - pos: 47.5,26.5 + pos: 66.5,33.5 + parent: 2 + - uid: 12437 + components: + - type: Transform + pos: 66.5,32.5 parent: 2 - uid: 12844 components: @@ -36040,11 +37993,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-15.5 parent: 2 - - uid: 13284 - components: - - type: Transform - pos: 47.5,22.5 - parent: 2 - uid: 13324 components: - type: Transform @@ -36057,30 +38005,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-17.5 parent: 2 - - uid: 13326 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-1.5 - parent: 2 - - uid: 13327 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,0.5 - parent: 2 - - uid: 13328 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-22.5 - parent: 2 - - uid: 13329 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-20.5 - parent: 2 - uid: 13436 components: - type: Transform @@ -36111,35 +38035,10 @@ entities: - type: Transform pos: 46.5,-31.5 parent: 2 - - uid: 13599 + - uid: 13513 components: - type: Transform - pos: 45.5,28.5 - parent: 2 - - uid: 13600 - components: - - type: Transform - pos: 45.5,29.5 - parent: 2 - - uid: 13601 - components: - - type: Transform - pos: 45.5,31.5 - parent: 2 - - uid: 13602 - components: - - type: Transform - pos: 45.5,32.5 - parent: 2 - - uid: 13603 - components: - - type: Transform - pos: 45.5,30.5 - parent: 2 - - uid: 13728 - components: - - type: Transform - pos: 86.5,4.5 + pos: 59.5,47.5 parent: 2 - uid: 13749 components: @@ -36351,11 +38250,6 @@ entities: - type: Transform pos: 74.5,30.5 parent: 2 - - uid: 14256 - components: - - type: Transform - pos: 73.5,30.5 - parent: 2 - uid: 14257 components: - type: Transform @@ -36376,38 +38270,16 @@ entities: - type: Transform pos: 81.5,25.5 parent: 2 - - uid: 14329 - components: - - type: Transform - pos: 73.5,34.5 - parent: 2 - - uid: 14335 - components: - - type: Transform - pos: 73.5,26.5 - parent: 2 - uid: 14407 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,33.5 parent: 2 - - uid: 14599 + - uid: 14676 components: - type: Transform - pos: 64.5,44.5 - parent: 2 - - uid: 14646 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,50.5 - parent: 2 - - uid: 14647 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,50.5 + pos: 63.5,44.5 parent: 2 - uid: 14724 components: @@ -36415,50 +38287,15 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,38.5 parent: 2 - - uid: 14896 + - uid: 14741 components: - type: Transform - pos: 60.5,43.5 + pos: 50.5,10.5 parent: 2 - - uid: 14897 + - uid: 14838 components: - type: Transform - pos: 51.5,43.5 - parent: 2 - - uid: 14898 - components: - - type: Transform - pos: 52.5,43.5 - parent: 2 - - uid: 14899 - components: - - type: Transform - pos: 60.5,42.5 - parent: 2 - - uid: 14900 - components: - - type: Transform - pos: 61.5,42.5 - parent: 2 - - uid: 14901 - components: - - type: Transform - pos: 62.5,42.5 - parent: 2 - - uid: 14902 - components: - - type: Transform - pos: 63.5,42.5 - parent: 2 - - uid: 14903 - components: - - type: Transform - pos: 64.5,42.5 - parent: 2 - - uid: 14904 - components: - - type: Transform - pos: 61.5,36.5 + pos: 41.5,46.5 parent: 2 - uid: 14916 components: @@ -36802,18 +38639,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-46.5 parent: 2 - - uid: 15156 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-14.5 - parent: 2 - - uid: 15157 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-14.5 - parent: 2 - uid: 15158 components: - type: Transform @@ -36961,15 +38786,52 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-39.5 parent: 2 + - uid: 15414 + components: + - type: Transform + pos: 62.5,19.5 + parent: 2 - uid: 15447 components: - type: Transform pos: 32.5,-22.5 parent: 2 - - uid: 15455 + - uid: 15469 components: - type: Transform - pos: 40.5,44.5 + rot: -1.5707963267948966 rad + pos: 49.5,46.5 + parent: 2 + - uid: 15626 + components: + - type: Transform + pos: 62.5,20.5 + parent: 2 + - uid: 15630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,47.5 + parent: 2 + - uid: 15740 + components: + - type: Transform + pos: -4.5,-30.5 + parent: 2 + - uid: 15757 + components: + - type: Transform + pos: -12.5,-30.5 + parent: 2 + - uid: 15759 + components: + - type: Transform + pos: -4.5,-40.5 + parent: 2 + - uid: 15760 + components: + - type: Transform + pos: -12.5,-40.5 parent: 2 - proto: Cautery entities: @@ -37117,21 +38979,27 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,8.5 parent: 2 - - uid: 2328 + - uid: 2237 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,22.5 + rot: 1.5707963267948966 rad + pos: 50.5,30.5 + parent: 2 + - uid: 2286 + components: + - type: Transform + pos: 57.5,33.5 parent: 2 - uid: 2566 components: - type: Transform pos: 29.5,-2.5 parent: 2 - - uid: 3234 + - uid: 3359 components: - type: Transform - pos: 40.5,36.5 + rot: -1.5707963267948966 rad + pos: 62.5,50.5 parent: 2 - uid: 5089 components: @@ -37164,6 +39032,18 @@ entities: - type: Transform pos: 55.5,-9.5 parent: 2 + - uid: 5327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,11.5 + parent: 2 + - uid: 5403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,30.5 + parent: 2 - uid: 5406 components: - type: Transform @@ -37181,6 +39061,12 @@ entities: rot: 1.5707963267948966 rad pos: 89.5,1.5 parent: 2 + - uid: 5765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,31.5 + parent: 2 - uid: 5848 components: - type: Transform @@ -37193,6 +39079,29 @@ entities: rot: 1.5707963267948966 rad pos: 45.5,17.5 parent: 2 + - uid: 6312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,44.5 + parent: 2 + - uid: 6319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,50.5 + parent: 2 + - uid: 6340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,50.5 + parent: 2 + - uid: 6888 + components: + - type: Transform + pos: 49.5,33.5 + parent: 2 - uid: 7535 components: - type: Transform @@ -37288,31 +39197,54 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,5.5 parent: 2 + - uid: 8533 + components: + - type: Transform + pos: 62.5,39.5 + parent: 2 - uid: 9361 components: - type: Transform pos: 25.5,7.5 parent: 2 + - uid: 9435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,46.5 + parent: 2 + - uid: 9446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,44.5 + parent: 2 - uid: 9642 components: - type: Transform pos: 78.5,5.5 parent: 2 + - uid: 10398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,16.5 + parent: 2 + - uid: 10544 + components: + - type: Transform + pos: 34.5,18.5 + parent: 2 - uid: 10637 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,7.5 parent: 2 - - uid: 10829 + - uid: 10888 components: - type: Transform - pos: 71.5,11.5 - parent: 2 - - uid: 10830 - components: - - type: Transform - pos: 69.5,11.5 + pos: 53.5,15.5 parent: 2 - uid: 10896 components: @@ -37326,59 +39258,11 @@ entities: rot: 3.141592653589793 rad pos: 63.5,13.5 parent: 2 - - uid: 12144 + - uid: 12082 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,34.5 - parent: 2 - - uid: 12177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,9.5 - parent: 2 - - uid: 12178 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,9.5 - parent: 2 - - uid: 12179 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,8.5 - parent: 2 - - uid: 12180 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,8.5 - parent: 2 - - uid: 12181 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,5.5 - parent: 2 - - uid: 12182 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,5.5 - parent: 2 - - uid: 12183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,6.5 - parent: 2 - - uid: 12184 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,6.5 + pos: 37.5,21.5 parent: 2 - uid: 12427 components: @@ -37398,30 +39282,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-13.5 parent: 2 - - uid: 13285 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,47.5 - parent: 2 - - uid: 13286 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,47.5 - parent: 2 - - uid: 13287 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,47.5 - parent: 2 - - uid: 13288 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,47.5 - parent: 2 - uid: 14076 components: - type: Transform @@ -37434,17 +39294,6 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,0.5 parent: 2 - - uid: 14587 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,17.5 - parent: 2 - - uid: 14633 - components: - - type: Transform - pos: 30.5,21.5 - parent: 2 - uid: 14679 components: - type: Transform @@ -37464,6 +39313,16 @@ entities: - type: Transform pos: 34.514446,-20.35144 parent: 2 + - uid: 3412 + components: + - type: Transform + pos: 55.60609,28.7576 + parent: 2 + - uid: 5326 + components: + - type: Transform + pos: 53.074486,44.676968 + parent: 2 - proto: ChairMeat entities: - uid: 13071 @@ -37473,6 +39332,11 @@ entities: parent: 2 - proto: ChairOfficeDark entities: + - uid: 76 + components: + - type: Transform + pos: 55.011047,38.559963 + parent: 2 - uid: 190 components: - type: Transform @@ -37518,28 +39382,28 @@ entities: rot: 1.5707963267948966 rad pos: 22.517172,-24.347618 parent: 2 + - uid: 1153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.367496,26.101822 + parent: 2 + - uid: 1230 + components: + - type: Transform + pos: 49.02176,42.545933 + parent: 2 - uid: 1852 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,22.5 parent: 2 - - uid: 2318 + - uid: 2242 components: - type: Transform - pos: 37.5,18.5 - parent: 2 - - uid: 2480 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,19.5 - parent: 2 - - uid: 2489 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,27.5 + rot: -1.5707963267948966 rad + pos: 29.477934,30.77342 parent: 2 - uid: 2632 components: @@ -37547,11 +39411,6 @@ entities: rot: 3.141592653589793 rad pos: 47.5,11.5 parent: 2 - - uid: 2678 - components: - - type: Transform - pos: 62.5,9.5 - parent: 2 - uid: 2724 components: - type: Transform @@ -37606,11 +39465,10 @@ entities: rot: 3.141592653589793 rad pos: 55.5,-11.5 parent: 2 - - uid: 5321 + - uid: 5332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,18.5 + pos: 38.50812,25.570572 parent: 2 - uid: 5389 components: @@ -37618,6 +39476,12 @@ entities: rot: 3.141592653589793 rad pos: 50.5,10.5 parent: 2 + - uid: 5465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.586388,25.604963 + parent: 2 - uid: 5742 components: - type: Transform @@ -37642,11 +39506,17 @@ entities: rot: 3.141592653589793 rad pos: 18.517927,23.649218 parent: 2 - - uid: 8608 + - uid: 8521 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.500034,25.750826 + pos: 54.979797,36.88809 + parent: 2 + - uid: 8580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.037384,40.639683 parent: 2 - uid: 8658 components: @@ -37659,6 +39529,18 @@ entities: rot: 3.141592653589793 rad pos: 7.5,18.5 parent: 2 + - uid: 10306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.36085,38.162395 + parent: 2 + - uid: 10835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.791836,18.125435 + parent: 2 - uid: 10912 components: - type: Transform @@ -37687,12 +39569,41 @@ entities: rot: 3.141592653589793 rad pos: 89.5,31.5 parent: 2 + - uid: 14642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.3234,32.735664 + parent: 2 + - uid: 14647 + components: + - type: Transform + pos: 70.52653,31.579414 + parent: 2 - uid: 15448 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-23.5 parent: 2 + - uid: 15615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.487736,11.401679 + parent: 2 + - uid: 15621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.50836,10.678778 + parent: 2 + - uid: 15649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.62344,50.569798 + parent: 2 - proto: ChairOfficeLight entities: - uid: 940 @@ -37719,6 +39630,12 @@ entities: rot: 1.5707963267948966 rad pos: 81.5,-6.5 parent: 2 + - uid: 7008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.517727,24.605852 + parent: 2 - uid: 7075 components: - type: Transform @@ -37729,12 +39646,6 @@ entities: - type: Transform pos: 71.5,-19.495005 parent: 2 - - uid: 8664 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,24.5 - parent: 2 - uid: 10901 components: - type: Transform @@ -37746,6 +39657,17 @@ entities: rot: 1.5707963267948966 rad pos: 61.5,-11.5 parent: 2 + - uid: 11685 + components: + - type: Transform + pos: 33.03796,42.691933 + parent: 2 + - uid: 13585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.00671,40.63985 + parent: 2 - proto: ChairPilotSeat entities: - uid: 4971 @@ -37804,12 +39726,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,29.5 parent: 2 - - uid: 3418 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,27.5 - parent: 2 - uid: 5365 components: - type: Transform @@ -37822,23 +39738,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,32.5 parent: 2 - - uid: 5502 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.50498,33.5 - parent: 2 - - uid: 5503 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.49502,33.5 - parent: 2 - - uid: 5504 - components: - - type: Transform - pos: 70.5,34.495007 - parent: 2 - uid: 6477 components: - type: Transform @@ -37863,12 +39762,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-41.5 parent: 2 - - uid: 8440 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,29.5 - parent: 2 - uid: 8644 components: - type: Transform @@ -37896,11 +39789,23 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,33.5 parent: 2 - - uid: 14091 + - uid: 15454 components: - type: Transform rot: -1.5707963267948966 rad - pos: 71.5,27.5 + pos: 24.406488,32.46587 + parent: 2 + - uid: 15455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.406488,33.450245 + parent: 2 + - uid: 15456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.375238,30.481497 parent: 2 - proto: CheapLighter entities: @@ -37909,10 +39814,11 @@ entities: - type: Transform pos: 37.66267,-3.4032297 parent: 2 - - uid: 7717 + - uid: 15678 components: - type: Transform - pos: 43.77102,20.318724 + rot: 1.5707963267948966 rad + pos: 58.62216,47.50274 parent: 2 - proto: CheapRollerBed entities: @@ -38100,13 +40006,26 @@ entities: - type: Transform pos: 38.63205,-29.435232 parent: 2 -- proto: CigarGold +- proto: CigaretteSpent entities: - - uid: 7936 + - uid: 1763 components: - type: Transform - pos: 43.474144,20.053099 + rot: -1.5707963267948966 rad + pos: 62.517895,19.508009 parent: 2 + - uid: 6915 + components: + - type: Transform + pos: 62.13248,19.185093 + parent: 2 + - uid: 12879 + components: + - type: Transform + pos: 62.340813,19.362177 + parent: 2 +- proto: CigarGold + entities: - uid: 12104 components: - type: Transform @@ -38146,20 +40065,29 @@ entities: - uid: 9307 components: - type: Transform - pos: 69.531136,11.469878 + rot: 6.283185307179586 rad + pos: 70.68867,11.580943 + parent: 2 +- proto: CigPackRed + entities: + - uid: 15656 + components: + - type: Transform + pos: 58.35046,47.80946 parent: 2 - proto: CircuitImprinter entities: - - uid: 12155 + - uid: 15566 components: - type: Transform - pos: 53.5,17.5 + pos: 53.5,20.5 parent: 2 - - type: MaterialStorage - materialWhiteList: - - Steel - - Glass - - Gold + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: CleanerDispenser entities: - uid: 6875 @@ -38170,18 +40098,33 @@ entities: parent: 2 - proto: ClosetBombFilled entities: - - uid: 2261 + - uid: 15521 components: - type: Transform - pos: 36.5,21.5 + pos: 62.5,22.5 parent: 2 - - uid: 12854 + - uid: 15530 components: - type: Transform - pos: 55.5,25.5 + pos: 47.5,36.5 parent: 2 +- proto: ClosetChefFilled + entities: + - uid: 8431 + components: + - type: Transform + anchored: True + pos: 32.5,17.5 + parent: 2 + - type: Physics + bodyType: Static - proto: ClosetEmergencyFilledRandom entities: + - uid: 829 + components: + - type: Transform + pos: 88.5,5.5 + parent: 2 - uid: 1480 components: - type: Transform @@ -38192,6 +40135,11 @@ entities: - type: Transform pos: 72.5,-10.5 parent: 2 + - uid: 3136 + components: + - type: Transform + pos: 65.5,47.5 + parent: 2 - uid: 3328 components: - type: Transform @@ -38202,11 +40150,6 @@ entities: - type: Transform pos: 52.5,-20.5 parent: 2 - - uid: 5261 - components: - - type: Transform - pos: 49.5,13.5 - parent: 2 - uid: 5438 components: - type: Transform @@ -38232,31 +40175,21 @@ entities: - type: Transform pos: 3.5,5.5 parent: 2 - - uid: 8983 + - uid: 12198 components: - type: Transform - pos: 67.5,29.5 - parent: 2 - - uid: 10837 - components: - - type: Transform - pos: 66.5,6.5 - parent: 2 - - uid: 10839 - components: - - type: Transform - pos: 43.5,46.5 - parent: 2 - - uid: 12478 - components: - - type: Transform - pos: 56.5,47.5 + pos: 68.5,11.5 parent: 2 - uid: 13145 components: - type: Transform pos: -13.5,0.5 parent: 2 + - uid: 13518 + components: + - type: Transform + pos: 31.5,33.5 + parent: 2 - uid: 13708 components: - type: Transform @@ -38267,17 +40200,17 @@ entities: - type: Transform pos: 71.5,21.5 parent: 2 + - uid: 14942 + components: + - type: Transform + pos: 75.5,-19.5 + parent: 2 - proto: ClosetEmergencyN2FilledRandom entities: - - uid: 2173 + - uid: 2066 components: - type: Transform - pos: 47.5,28.5 - parent: 2 - - uid: 2195 - components: - - type: Transform - pos: 66.5,11.5 + pos: 75.5,-18.5 parent: 2 - uid: 2681 components: @@ -38294,11 +40227,31 @@ entities: - type: Transform pos: -9.5,0.5 parent: 2 + - uid: 8233 + components: + - type: Transform + pos: 67.5,11.5 + parent: 2 + - uid: 9242 + components: + - type: Transform + pos: 65.5,46.5 + parent: 2 - uid: 12382 components: - type: Transform pos: 5.5,-31.5 parent: 2 + - uid: 12726 + components: + - type: Transform + pos: 32.5,33.5 + parent: 2 + - uid: 15790 + components: + - type: Transform + pos: 87.5,5.5 + parent: 2 - proto: ClosetFireFilled entities: - uid: 99 @@ -38306,11 +40259,6 @@ entities: - type: Transform pos: -7.5,-14.5 parent: 2 - - uid: 5260 - components: - - type: Transform - pos: 50.5,13.5 - parent: 2 - uid: 5902 components: - type: Transform @@ -38321,26 +40269,36 @@ entities: - type: Transform pos: 3.5,9.5 parent: 2 - - uid: 10841 + - uid: 9623 components: - type: Transform - pos: 39.5,42.5 + pos: 59.5,32.5 parent: 2 - uid: 12803 components: - type: Transform pos: -5.5,0.5 parent: 2 - - uid: 12858 - components: - - type: Transform - pos: 64.5,20.5 - parent: 2 - uid: 15441 components: - type: Transform pos: 35.5,-20.5 parent: 2 + - uid: 15515 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 2 + - uid: 15518 + components: + - type: Transform + pos: 59.5,22.5 + parent: 2 + - uid: 15698 + components: + - type: Transform + pos: 45.5,45.5 + parent: 2 - proto: ClosetJanitorFilled entities: - uid: 166 @@ -38355,6 +40313,40 @@ entities: - type: Transform pos: 3.5,-4.5 parent: 2 +- proto: ClosetL3ScienceFilled + entities: + - uid: 3043 + components: + - type: Transform + pos: 50.5,13.5 + parent: 2 + - uid: 3342 + components: + - type: Transform + pos: 49.5,15.5 + parent: 2 + - uid: 3433 + components: + - type: Transform + pos: 67.5,29.5 + parent: 2 + - uid: 13729 + components: + - type: Transform + pos: 67.5,28.5 + parent: 2 + - uid: 15502 + components: + - type: Transform + pos: 60.5,22.5 + parent: 2 +- proto: ClosetL3SecurityFilled + entities: + - uid: 10724 + components: + - type: Transform + pos: 47.5,35.5 + parent: 2 - proto: ClosetL3VirologyFilled entities: - uid: 5213 @@ -38379,13 +40371,6 @@ entities: - type: Transform pos: 17.5,29.5 parent: 2 -- proto: ClosetMaintenance - entities: - - uid: 10835 - components: - - type: Transform - pos: 65.5,10.5 - parent: 2 - proto: ClosetMaintenanceFilledRandom entities: - uid: 1477 @@ -38393,11 +40378,34 @@ entities: - type: Transform pos: 36.5,-20.5 parent: 2 - - uid: 3501 + - uid: 2269 components: - type: Transform - pos: 37.5,36.5 + pos: 61.5,45.5 parent: 2 + - uid: 3444 + components: + - type: Transform + pos: 49.5,26.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 3854 components: - type: Transform @@ -38408,136 +40416,119 @@ entities: - type: Transform pos: 9.5,-19.5 parent: 2 + - uid: 5485 + components: + - type: Transform + pos: 64.5,41.5 + parent: 2 + - uid: 7716 + components: + - type: Transform + pos: 69.5,40.5 + parent: 2 + - uid: 7945 + components: + - type: Transform + pos: 53.5,40.5 + parent: 2 - uid: 8342 components: - type: Transform pos: 23.5,6.5 parent: 2 - - uid: 10836 + - uid: 8461 components: - type: Transform - pos: 65.5,9.5 + pos: 64.5,8.5 + parent: 2 + - uid: 9234 + components: + - type: Transform + pos: 59.5,33.5 + parent: 2 + - uid: 12432 + components: + - type: Transform + pos: 64.5,20.5 + parent: 2 + - uid: 13692 + components: + - type: Transform + pos: 67.5,31.5 parent: 2 - uid: 13969 components: - type: Transform pos: -11.5,-23.5 parent: 2 - - uid: 14650 + - uid: 15683 components: - type: Transform - pos: 67.5,31.5 + pos: 35.5,39.5 + parent: 2 + - uid: 15696 + components: + - type: Transform + pos: 44.5,45.5 parent: 2 - proto: ClosetRadiationSuitFilled entities: - - uid: 3687 - components: - - type: Transform - pos: 51.5,13.5 - parent: 2 - uid: 4310 components: - type: Transform pos: 19.5,-34.5 parent: 2 + - uid: 9144 + components: + - type: Transform + pos: 47.5,34.5 + parent: 2 - uid: 10906 components: - type: Transform pos: 20.5,-34.5 parent: 2 - - uid: 12853 + - uid: 11658 components: - type: Transform - pos: 54.5,25.5 + pos: 51.5,13.5 parent: 2 -- proto: ClosetSteelBase - entities: - - uid: 5460 + - uid: 15501 components: - type: Transform - pos: 69.5,40.5 + pos: 61.5,22.5 parent: 2 - - uid: 5461 + - uid: 15567 components: - type: Transform - pos: 69.5,37.5 + pos: 49.5,13.5 parent: 2 - proto: ClosetToolFilled entities: - - uid: 5649 + - uid: 8593 components: - type: Transform - pos: 49.5,46.5 + pos: 64.5,36.5 parent: 2 - uid: 14734 components: - type: Transform pos: 9.5,15.5 parent: 2 -- proto: ClosetWallOrange +- proto: ClosetWallEmergencyFilledRandom entities: - - uid: 13620 + - uid: 6118 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,37.5 + pos: 59.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 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 13621 - - uid: 13753 +- proto: ClosetWallEmergencyN2FilledRandom + entities: + - uid: 10396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,35.5 + pos: 60.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 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 14550 - proto: ClothingBackpackClown entities: - uid: 9611 @@ -38592,7 +40583,7 @@ entities: - uid: 6421 components: - type: Transform - pos: 56.63094,-14.915291 + pos: 54.47244,-15.513644 parent: 2 - uid: 12219 components: @@ -38606,16 +40597,6 @@ entities: - type: Transform pos: 45.51781,-19.598537 parent: 2 - - uid: 6793 - components: - - type: Transform - pos: 53.3757,25.459305 - parent: 2 - - uid: 10291 - components: - - type: Transform - pos: 53.3757,25.646805 - parent: 2 - uid: 12167 components: - type: Transform @@ -38645,13 +40626,6 @@ entities: - type: Transform pos: 81.516914,11.673225 parent: 2 -- proto: ClothingEyesGlassesSunglasses - entities: - - uid: 5522 - components: - - type: Transform - pos: 86.49675,1.6024053 - parent: 2 - proto: ClothingEyesGlassesThermal entities: - uid: 12673 @@ -38666,6 +40640,16 @@ entities: - type: Transform pos: 17.140316,-23.554987 parent: 2 + - uid: 12579 + components: + - type: Transform + pos: 48.401104,11.708703 + parent: 2 + - uid: 14681 + components: + - type: Transform + pos: 48.57298,11.521203 + parent: 2 - proto: ClothingEyesHudMedical entities: - uid: 11422 @@ -38706,19 +40690,33 @@ entities: - type: Transform pos: 50.47578,-20.56524 parent: 2 -- proto: ClothingHeadHatAnimalCat +- proto: ClothingHeadHatBeret entities: - - uid: 12652 + - uid: 15895 components: - type: Transform - pos: 69.48217,34.466385 + pos: 45.45172,7.652416 parent: 2 -- proto: ClothingHeadHatAnimalCatBrown +- proto: ClothingHeadHatBeretHoS entities: - - uid: 8933 + - uid: 13530 components: - type: Transform - pos: 62.47656,19.694616 + pos: 49.516834,41.650898 + parent: 2 +- proto: ClothingHeadHatBeretRND + entities: + - uid: 8266 + components: + - type: Transform + pos: 51.615715,26.772182 + parent: 2 +- proto: ClothingHeadHatBeretWarden + entities: + - uid: 15817 + components: + - type: Transform + pos: 40.178272,27.519924 parent: 2 - proto: ClothingHeadHatBunny entities: @@ -38727,6 +40725,20 @@ entities: - type: Transform pos: 58.54981,-24.623142 parent: 2 +- proto: ClothingHeadHatChef + entities: + - uid: 5386 + components: + - type: Transform + pos: 52.389153,40.87982 + parent: 2 +- proto: ClothingHeadHatFedoraBrown + entities: + - uid: 8392 + components: + - type: Transform + pos: 69.3921,38.27177 + parent: 2 - proto: ClothingHeadHatFedoraGrey entities: - uid: 7557 @@ -38756,6 +40768,25 @@ entities: - type: Transform pos: 80.534454,-16.347055 parent: 2 + - uid: 11032 + components: + - type: Transform + pos: 62.767895,19.108147 + parent: 2 + - type: HandheldLight + toggleActionEntity: 11094 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 11094 + - type: ActionsContainer - proto: ClothingHeadHatHardhatRed entities: - uid: 5719 @@ -38790,13 +40821,6 @@ entities: - type: Transform pos: 7.4825606,-11.600726 parent: 2 -- proto: ClothingHeadHatSquid - entities: - - uid: 12671 - components: - - type: Transform - pos: 65.725685,11.307603 - parent: 2 - proto: ClothingHeadHatTophat entities: - uid: 2920 @@ -38823,13 +40847,6 @@ entities: - type: Transform pos: 74.46565,-6.1472054 parent: 2 -- proto: ClothingHeadHatWelding - entities: - - uid: 5377 - components: - - type: Transform - pos: 52.381424,11.673619 - parent: 2 - proto: ClothingHeadHatWitch1 entities: - uid: 6827 @@ -38837,18 +40854,52 @@ entities: - type: Transform pos: 83.46587,-12.720913 parent: 2 +- proto: ClothingHeadHelmetBasic + entities: + - uid: 9835 + components: + - type: Transform + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9885 + components: + - type: Transform + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13483 + components: + - type: Transform + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13634 + components: + - type: Transform + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingHeadHelmetRiot entities: - - uid: 6197 + - uid: 15480 components: - type: Transform - pos: 38.899494,28.859161 - parent: 2 - - uid: 8427 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15574 components: - type: Transform - pos: 38.88387,28.616974 - parent: 2 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingHeadNurseHat entities: - uid: 12672 @@ -38856,13 +40907,6 @@ entities: - type: Transform pos: 59.51385,-3.3579187 parent: 2 -- proto: ClothingHeadsetMining - entities: - - uid: 2134 - components: - - type: Transform - pos: 5.5,31.5 - parent: 2 - proto: ClothingMaskBear entities: - uid: 8828 @@ -38903,11 +40947,6 @@ entities: - type: Transform pos: 27.626308,-29.560211 parent: 2 - - uid: 5343 - components: - - type: Transform - pos: 53.65695,25.740555 - parent: 2 - uid: 10799 components: - type: Transform @@ -38979,6 +41018,11 @@ entities: parent: 2 - proto: ClothingNeckStethoscope entities: + - uid: 3447 + components: + - type: Transform + pos: 66.53242,6.502817 + parent: 2 - uid: 5193 components: - type: Transform @@ -39008,76 +41052,54 @@ entities: - type: Transform pos: 17.68529,8.556451 parent: 2 -- proto: ClothingOuterArmorBasic - entities: - - uid: 8415 - components: - - type: Transform - pos: 39.219807,28.632599 - parent: 2 - - uid: 12089 - components: - - type: Transform - pos: 39.243244,28.859161 - parent: 2 - - uid: 13560 - components: - - type: Transform - pos: 39.22762,28.741974 - parent: 2 - proto: ClothingOuterArmorBulletproof entities: - - uid: 8421 + - uid: 15442 components: - type: Transform - pos: 38.305744,28.874786 - parent: 2 - - uid: 15460 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15459 components: - type: Transform - pos: 38.282307,28.593536 - parent: 2 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterArmorReflective + entities: + - uid: 15799 + components: + - type: Transform + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15800 + components: + - type: Transform + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingOuterArmorRiot entities: - - uid: 8414 + - uid: 15575 components: - type: Transform - pos: 38.57137,28.679474 - parent: 2 - - uid: 8424 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15634 components: - type: Transform - pos: 38.618244,28.835724 - parent: 2 - - 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 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingOuterCoatJensen entities: - uid: 7560 @@ -39099,13 +41121,51 @@ entities: - type: Transform pos: 89.47711,-12.560792 parent: 2 -- proto: ClothingOuterCoatRobo +- proto: ClothingOuterHardsuitSecurity entities: - - uid: 1847 + - uid: 12294 components: - type: Transform - pos: 52.52299,8.566419 - parent: 2 + parent: 3183 + - 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]25%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + It provides the following protection: + + - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]40%[/color]. + + - [color=yellow]Slash[/color] damage reduced by [color=lightblue]40%[/color]. + + - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]40%[/color]. + + - [color=yellow]Heat[/color] damage reduced by [color=lightblue]20%[/color]. + + - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]30%[/color]. + + - [color=orange]Explosion[/color] damage reduced by [color=lightblue]60%[/color]. + priority: 0 + component: Armor + title: null + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12765 + components: + - type: Transform + parent: 12746 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingOuterHospitalGown entities: - uid: 12499 @@ -39113,13 +41173,6 @@ entities: - type: Transform pos: 60.452034,-9.3230715 parent: 2 -- proto: ClothingOuterPonchoClassic - entities: - - uid: 14092 - components: - - type: Transform - pos: 70.51337,28.554468 - parent: 2 - proto: ClothingOuterSkub entities: - uid: 13075 @@ -39134,6 +41187,13 @@ entities: - type: Transform pos: 73.5,-12.5 parent: 2 +- proto: ClothingOuterVest + entities: + - uid: 15905 + components: + - type: Transform + pos: 36.3627,39.687344 + parent: 2 - proto: ClothingOuterVestHazard entities: - uid: 880 @@ -39146,24 +41206,36 @@ entities: - type: Transform pos: 11.523725,20.510695 parent: 2 -- proto: ClothingShoesBootsJack +- proto: ClothingOuterWinterRobo entities: - - uid: 3615 + - uid: 15896 components: - type: Transform - pos: 18.604328,5.443143 + pos: 45.671143,7.4380913 parent: 2 -- proto: ClothingShoesBootsMag +- proto: ClothingOuterWinterSci entities: - - uid: 10306 + - uid: 152 components: - type: Transform - pos: 8.40589,-8.309399 + pos: 51.50634,26.522182 parent: 2 - - uid: 10307 +- proto: ClothingShoesBootsMagSci + entities: + - uid: 3441 components: - type: Transform - pos: 8.56214,-8.481274 + pos: 8.394775,-8.212509 + parent: 2 + - uid: 3443 + components: + - type: Transform + pos: 8.582275,-8.415634 + parent: 2 + - uid: 8681 + components: + - type: Transform + pos: 8.37915,-8.650009 parent: 2 - proto: ClothingShoesFlippers entities: @@ -39185,24 +41257,13 @@ entities: - type: Transform pos: 74.43015,-5.8248997 parent: 2 -- proto: ClothingShoeSlippersDuck - entities: - - uid: 5405 - components: - - type: Transform - pos: 62.48992,19.519245 - parent: 2 - proto: ClothingShoesSlippers entities: - uid: 5470 components: - type: Transform - pos: 70.5,40.5 - parent: 2 - - uid: 5471 - components: - - type: Transform - pos: 70.5,37.5 + rot: 6.283185307179586 rad + pos: 70.94915,39.768127 parent: 2 - proto: ClothingUnderSocksBee entities: @@ -39252,6 +41313,13 @@ entities: - type: Transform pos: 76.476616,-13.28976 parent: 2 +- proto: ClothingUniformJumpsuitColorRed + entities: + - uid: 15906 + components: + - type: Transform + pos: 36.753326,39.531094 + parent: 2 - proto: ClothingUniformJumpsuitCossack entities: - uid: 8826 @@ -39346,11 +41414,6 @@ entities: rot: 3.141592653589793 rad pos: 34.5,3.5 parent: 2 - - uid: 2408 - components: - - type: Transform - pos: 44.5,24.5 - parent: 2 - uid: 2527 components: - type: Transform @@ -39393,23 +41456,6 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,39.5 parent: 2 - - uid: 5423 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,42.5 - parent: 2 - - uid: 5424 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,40.5 - parent: 2 - - uid: 5425 - components: - - type: Transform - pos: 33.5,43.5 - parent: 2 - uid: 10273 components: - type: Transform @@ -39434,12 +41480,18 @@ entities: rot: -1.5707963267948966 rad pos: 107.5,-13.5 parent: 2 + - uid: 15811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-10.5 + parent: 2 - proto: CommandmentCircuitBoard entities: - uid: 14286 components: - type: Transform - pos: 86.43288,28.403772 + pos: 84.51508,32.740486 parent: 2 - proto: CommsComputerCircuitboard entities: @@ -39469,14 +41521,16 @@ entities: parent: 2 - proto: ComputerAnalysisConsole entities: - - uid: 152 + - uid: 5410 components: - type: Transform - pos: 64.5,25.5 + pos: 62.5,25.5 parent: 2 + - type: AnalysisConsole + analyzerEntity: 5444 - type: DeviceLinkSource linkedPorts: - 8666: + 5444: - - ArtifactAnalyzerSender - ArtifactAnalyzerReceiver - proto: ComputerAtmosMonitoring @@ -39500,17 +41554,24 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,-11.5 parent: 2 + - uid: 10473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,8.5 + parent: 2 - uid: 11401 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-11.5 parent: 2 - - uid: 12110 +- proto: ComputerBroken + entities: + - uid: 9455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,8.5 + pos: 72.5,33.5 parent: 2 - proto: ComputerCargoBounty entities: @@ -39521,23 +41582,23 @@ entities: parent: 2 - proto: ComputerCargoOrders entities: + - uid: 4319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,21.5 + parent: 2 - uid: 5285 components: - type: Transform pos: 20.5,23.5 parent: 2 - - uid: 7471 - components: - - type: Transform - pos: 7.5,19.5 - parent: 2 - proto: ComputerCargoOrdersEngineering entities: - - uid: 15480 + - uid: 2050 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-36.5 + pos: 20.5,-23.5 parent: 2 - proto: ComputerCargoOrdersMedical entities: @@ -39556,10 +41617,11 @@ entities: parent: 2 - proto: ComputerCargoOrdersSecurity entities: - - uid: 10290 + - uid: 5528 components: - type: Transform - pos: 35.5,28.5 + rot: 3.141592653589793 rad + pos: 39.5,24.5 parent: 2 - proto: ComputerCargoOrdersService entities: @@ -39584,17 +41646,17 @@ entities: parent: 2 - proto: ComputerCrewMonitoring entities: - - uid: 2468 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,17.5 - parent: 2 - uid: 7925 components: - type: Transform pos: 31.5,48.5 parent: 2 + - uid: 8475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,25.5 + parent: 2 - uid: 9617 components: - type: Transform @@ -39625,28 +41687,30 @@ entities: parent: 2 - proto: ComputerCriminalRecords entities: + - uid: 2222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,24.5 + parent: 2 + - uid: 2233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,39.5 + parent: 2 + - uid: 2336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,23.5 + parent: 2 - uid: 7981 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-5.5 parent: 2 - - uid: 8431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,17.5 - parent: 2 - - uid: 12083 - components: - - type: Transform - pos: 29.5,26.5 - parent: 2 - - uid: 12090 - components: - - type: Transform - pos: 45.5,25.5 - parent: 2 - proto: ComputerFundingAllocation entities: - uid: 10270 @@ -39656,17 +41720,17 @@ entities: parent: 2 - proto: ComputerId entities: - - uid: 401 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,39.5 - parent: 2 - uid: 4988 components: - type: Transform pos: 26.5,48.5 parent: 2 + - uid: 7678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,39.5 + parent: 2 - uid: 10275 components: - type: Transform @@ -39712,11 +41776,11 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,45.5 parent: 2 - - uid: 6898 + - uid: 12232 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-13.5 + pos: 15.5,-12.5 parent: 2 - uid: 13433 components: @@ -39738,79 +41802,96 @@ entities: parent: 2 - proto: ComputerResearchAndDevelopment entities: - - uid: 5304 + - uid: 5375 + components: + - type: Transform + pos: 51.5,20.5 + parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices + - uid: 5376 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,17.5 + pos: 49.5,8.5 parent: 2 - - uid: 5390 - components: - - type: Transform - pos: 49.5,11.5 - parent: 2 - - uid: 6474 - components: - - type: Transform - pos: 50.5,25.5 - parent: 2 - - uid: 10666 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices + - uid: 10387 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,8.5 + pos: 51.5,23.5 parent: 2 + - uid: 15620 + components: + - type: Transform + pos: 64.5,11.5 + parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: ComputerRoboticsControl entities: - - uid: 5652 + - uid: 5330 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,8.5 + rot: 1.5707963267948966 rad + pos: 60.5,11.5 parent: 2 - proto: ComputerSalvageExpedition entities: - - uid: 705 + - uid: 7885 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,30.5 + rot: 1.5707963267948966 rad + pos: 5.5,31.5 parent: 2 - proto: ComputerSalvageJobBoard entities: - - uid: 6796 + - uid: 7471 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,30.5 + rot: 1.5707963267948966 rad + pos: 5.5,32.5 parent: 2 - proto: ComputerShuttleCargo entities: + - uid: 3560 + components: + - type: Transform + pos: 7.5,19.5 + parent: 2 - uid: 7879 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,25.5 parent: 2 - - uid: 14770 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,21.5 - parent: 2 - proto: ComputerSolarControl entities: + - uid: 2126 + components: + - type: Transform + pos: 71.5,46.5 + parent: 2 - uid: 4305 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-36.5 parent: 2 - - uid: 5639 - components: - - type: Transform - pos: 70.5,46.5 - parent: 2 - uid: 11749 components: - type: Transform @@ -39818,11 +41899,11 @@ entities: parent: 2 - proto: ComputerStationRecords entities: - - uid: 2145 + - uid: 5966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,17.5 + rot: 3.141592653589793 rad + pos: 37.5,24.5 parent: 2 - uid: 8315 components: @@ -39843,29 +41924,29 @@ entities: parent: 2 - proto: ComputerSurveillanceCameraMonitor entities: - - uid: 2469 + - uid: 183 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,17.5 + rot: 1.5707963267948966 rad + pos: 36.5,26.5 parent: 2 - uid: 8346 components: - type: Transform pos: 24.5,48.5 parent: 2 - - uid: 12082 + - uid: 15803 components: - type: Transform - pos: 30.5,26.5 + rot: 3.141592653589793 rad + pos: -0.5,-5.5 parent: 2 - proto: ComputerTelevision entities: - - uid: 8498 + - uid: 3276 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,18.5 + pos: 52.5,33.5 parent: 2 - proto: ContainmentFieldGenerator entities: @@ -39920,86 +42001,75 @@ entities: parent: 2 - proto: ConveyorBelt entities: + - uid: 258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,27.5 + parent: 2 + - uid: 320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,27.5 + parent: 2 - uid: 450 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,35.5 + rot: -1.5707963267948966 rad + pos: 3.5,27.5 parent: 2 - uid: 944 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,38.5 + pos: 7.5,36.5 parent: 2 - uid: 967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,34.5 + pos: 7.5,37.5 parent: 2 - uid: 999 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,36.5 + pos: 7.5,38.5 parent: 2 - - uid: 2037 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,27.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - uid: 2040 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,23.5 - parent: 2 - - uid: 2041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,27.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - uid: 2042 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,27.5 + pos: 8.5,34.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - uid: 2051 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,23.5 + pos: 6.5,27.5 parent: 2 - uid: 2064 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,27.5 + pos: 7.5,23.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - uid: 2066 + - uid: 4321 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,23.5 - parent: 2 - - uid: 2067 - components: - - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: 6.5,23.5 parent: 2 + - uid: 5467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,27.5 + parent: 2 + - uid: 5518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,23.5 + parent: 2 - uid: 5842 components: - type: Transform @@ -40063,38 +42133,59 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-26.5 parent: 2 - - uid: 8239 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,23.5 - parent: 2 - - uid: 12384 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,34.5 - parent: 2 - - uid: 13731 + - uid: 7972 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,27.5 + pos: 5.5,23.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - uid: 14660 + - uid: 8239 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,37.5 + rot: 1.5707963267948966 rad + pos: 3.5,23.5 parent: 2 + - uid: 8327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,34.5 + parent: 2 + - uid: 9342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,38.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 11473 + components: + - type: Transform + pos: 7.5,35.5 + parent: 2 + - uid: 13728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,34.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 15156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,38.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - proto: CorporateCircuitBoard entities: - uid: 14278 components: - type: Transform - pos: 84.53704,28.653946 + pos: 84.49589,28.755344 parent: 2 - proto: CowToolboxFilled entities: @@ -40105,10 +42196,10 @@ entities: parent: 2 - proto: CrateArtifactContainer entities: - - uid: 10439 + - uid: 5638 components: - type: Transform - pos: 62.5,22.5 + pos: 60.5,25.5 parent: 2 - proto: CrateCoffin entities: @@ -40117,6 +42208,16 @@ entities: - type: Transform pos: 38.5,3.5 parent: 2 +- proto: CrateContrabandStorageSecure + entities: + - uid: 14630 + components: + - type: Transform + anchored: True + pos: 43.5,36.5 + parent: 2 + - type: Physics + bodyType: Static - proto: CrateEmptySpawner entities: - uid: 8167 @@ -40153,33 +42254,46 @@ entities: - type: Transform pos: 28.5,-40.5 parent: 2 - - type: Pullable - prevFixedRotation: True -- proto: CrateEngineeringCableBulk - entities: - - uid: 782 - components: - - type: Transform - pos: 20.5,-23.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: [] - labelSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null + ents: + - 15330 + - 15329 + - 15328 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - type: Construction - containers: - - EntityStorageComponent - - entity_storage + - type: Pullable + prevFixedRotation: True +- proto: CrateEngineeringCableBulk + entities: + - uid: 3520 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 2 - uid: 5526 components: - type: Transform @@ -40205,23 +42319,11 @@ entities: - entity_storage - proto: CrateEngineeringCableLV entities: - - uid: 2223 - components: - - type: Transform - pos: 49.5,28.5 - parent: 2 - uid: 12353 components: - type: Transform pos: 5.5,-8.5 parent: 2 -- proto: CrateEngineeringCableMV - entities: - - uid: 5686 - components: - - type: Transform - pos: 10.5,-31.5 - parent: 2 - proto: CrateEngineeringSecure entities: - uid: 5625 @@ -40262,6 +42364,13 @@ entities: showEnts: False occludes: True ent: null +- proto: CrateEngineeringSolar + entities: + - uid: 8466 + components: + - type: Transform + pos: 69.5,46.5 + parent: 2 - proto: CrateFilledSpawner entities: - uid: 6861 @@ -40289,11 +42398,6 @@ entities: - type: Transform pos: 11.5,30.5 parent: 2 - - uid: 11164 - components: - - type: Transform - pos: 13.5,31.5 - parent: 2 - uid: 14775 components: - type: Transform @@ -40380,17 +42484,10 @@ entities: parent: 2 - proto: CrateLockBoxScience entities: - - uid: 15487 + - uid: 12292 components: - type: Transform - pos: 58.5,8.5 - parent: 2 -- proto: CrateLockBoxSecurity - entities: - - uid: 15488 - components: - - type: Transform - pos: 32.5,19.5 + pos: 58.5,11.5 parent: 2 - proto: CrateLockBoxService entities: @@ -40406,16 +42503,18 @@ entities: parent: 2 - proto: CrateMaterialSteel entities: - - uid: 5687 - components: - - type: Transform - pos: 11.5,-31.5 - parent: 2 - uid: 13043 components: - type: Transform pos: 33.5,-52.5 parent: 2 +- proto: CrateMaterialTextiles + entities: + - uid: 4320 + components: + - type: Transform + pos: 13.5,31.5 + parent: 2 - proto: CrateMedicalSurgery entities: - uid: 5086 @@ -40453,16 +42552,21 @@ entities: parent: 2 - proto: CrateSecurityTrackingMindshieldImplants entities: - - uid: 8416 + - uid: 14832 components: - type: Transform anchored: True - pos: 41.5,28.5 + pos: 40.5,36.5 parent: 2 - type: Physics bodyType: Static - proto: CrateTrashCart entities: + - uid: 5514 + components: + - type: Transform + pos: 32.5,21.5 + parent: 2 - uid: 13122 components: - type: Transform @@ -40478,6 +42582,13 @@ entities: - type: Transform pos: 19.5,26.5 parent: 2 +- proto: CrateTrashCartFilled + entities: + - uid: 6230 + components: + - type: Transform + pos: 54.539806,50.545746 + parent: 2 - proto: CrateTrashCartJani entities: - uid: 12906 @@ -40502,11 +42613,6 @@ entities: - type: Transform pos: 30.486448,7.511799 parent: 2 - - uid: 13631 - components: - - type: Transform - pos: 55.5,31.5 - parent: 2 - proto: CrayonRainbow entities: - uid: 12700 @@ -40542,14 +42648,11 @@ entities: - 0 - proto: CrewMonitoringServer entities: - - uid: 8231 + - uid: 15498 components: - type: Transform - pos: 51.5,25.5 + pos: 15.5,-17.5 parent: 2 - - type: SingletonDeviceNetServer - active: False - available: False - proto: Crowbar entities: - uid: 686 @@ -40562,21 +42665,11 @@ entities: - type: Transform pos: 32.504723,-30.433409 parent: 2 - - uid: 5326 - components: - - type: Transform - pos: 55.436665,17.567713 - parent: 2 - uid: 5713 components: - type: Transform pos: 77.53034,-13.472758 parent: 2 - - uid: 8688 - components: - - type: Transform - pos: 32.5021,27.416605 - parent: 2 - uid: 11129 components: - type: Transform @@ -40584,30 +42677,37 @@ entities: parent: 2 - proto: CrowbarRed entities: - - uid: 2153 + - uid: 13431 components: - type: Transform - pos: 38.497105,19.578838 - parent: 2 + parent: 13141 + - type: Physics + canCollide: False - proto: CryogenicSleepUnit entities: - - uid: 3187 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,32.5 - parent: 2 - uid: 6934 components: - type: Transform pos: 22.5,17.5 parent: 2 + - uid: 12049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,17.5 + parent: 2 - uid: 13171 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,42.5 parent: 2 + - uid: 14869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,18.5 + parent: 2 - proto: CryogenicSleepUnitSpawner entities: - uid: 6935 @@ -40647,6 +42747,18 @@ entities: - type: Transform pos: 61.483326,-0.38000047 parent: 2 +- proto: CurtainsBlue + entities: + - uid: 379 + components: + - type: Transform + pos: 34.5,43.5 + parent: 2 + - uid: 2285 + components: + - type: Transform + pos: 34.5,42.5 + parent: 2 - proto: CurtainsOrangeOpen entities: - uid: 6924 @@ -40661,6 +42773,29 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,15.5 parent: 2 +- proto: CurtainsPurpleOpen + entities: + - uid: 10849 + components: + - type: Transform + pos: 62.5,8.5 + parent: 2 +- proto: CurtainsRedOpen + entities: + - uid: 3206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,43.5 + parent: 2 + - uid: 7583 + components: + - type: Transform + pos: 59.5,39.5 + parent: 2 + - type: Door + secondsUntilStateChange: -7927.499 + state: Closing - proto: d6Dice entities: - uid: 316 @@ -40669,22 +42804,6 @@ entities: rot: 3.141592653589793 rad pos: 11.493689,4.5440345 parent: 2 - - uid: 5505 - components: - - type: Transform - pos: 70.363464,33.795147 - parent: 2 - - uid: 5506 - components: - - type: Transform - pos: 70.69159,33.810772 - parent: 2 - - uid: 5517 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.50039,33.577915 - parent: 2 - proto: DefaultStationBeaconAICore entities: - uid: 14515 @@ -40701,17 +42820,10 @@ entities: parent: 2 - proto: DefaultStationBeaconAnomalyGenerator entities: - - uid: 12378 + - uid: 8139 components: - type: Transform - pos: 68.5,14.5 - parent: 2 -- proto: DefaultStationBeaconArmory - entities: - - uid: 12371 - components: - - type: Transform - pos: 40.5,27.5 + pos: 68.5,15.5 parent: 2 - proto: DefaultStationBeaconArrivals entities: @@ -40722,10 +42834,10 @@ entities: parent: 2 - proto: DefaultStationBeaconArtifactLab entities: - - uid: 12367 + - uid: 4362 components: - type: Transform - pos: 62.5,25.5 + pos: 61.5,25.5 parent: 2 - proto: DefaultStationBeaconAtmospherics entities: @@ -40755,13 +42867,6 @@ entities: - type: Transform pos: 26.5,45.5 parent: 2 -- proto: DefaultStationBeaconBrig - entities: - - uid: 12365 - components: - - type: Transform - pos: 32.5,23.5 - parent: 2 - proto: DefaultStationBeaconCaptainsQuarters entities: - uid: 12385 @@ -40834,10 +42939,10 @@ entities: parent: 2 - proto: DefaultStationBeaconDetectiveRoom entities: - - uid: 12851 + - uid: 5749 components: - type: Transform - pos: 42.5,18.5 + pos: 55.5,35.5 parent: 2 - proto: DefaultStationBeaconDisposals entities: @@ -40846,22 +42951,26 @@ entities: - type: Transform pos: 0.5,-30.5 parent: 2 -- proto: DefaultStationBeaconEscapePod +- proto: DefaultStationBeaconEscapePodE entities: - - uid: 13729 + - uid: 2949 components: - type: Transform - pos: 86.5,4.5 + pos: 88.5,4.5 parent: 2 - - uid: 14796 +- proto: DefaultStationBeaconEscapePodNE + entities: + - uid: 5391 components: - type: Transform - pos: 74.5,-18.5 + pos: 66.5,47.5 parent: 2 - - uid: 15454 +- proto: DefaultStationBeaconEscapePodSE + entities: + - uid: 3868 components: - type: Transform - pos: 40.5,44.5 + pos: 74.5,-19.5 parent: 2 - proto: DefaultStationBeaconEvac entities: @@ -40884,13 +42993,6 @@ entities: - type: Transform pos: 17.5,-4.5 parent: 2 -- proto: DefaultStationBeaconHOSRoom - entities: - - uid: 13132 - components: - - type: Transform - pos: 43.5,22.5 - parent: 2 - proto: DefaultStationBeaconJanitorsCloset entities: - uid: 13133 @@ -40926,13 +43028,6 @@ entities: - type: Transform pos: 70.5,-3.5 parent: 2 -- proto: DefaultStationBeaconPermaBrig - entities: - - uid: 13518 - components: - - type: Transform - pos: 56.5,36.5 - parent: 2 - proto: DefaultStationBeaconPowerBank entities: - uid: 13139 @@ -40949,10 +43044,10 @@ entities: parent: 2 - proto: DefaultStationBeaconRDRoom entities: - - uid: 13141 + - uid: 15625 components: - type: Transform - pos: 60.5,9.5 + pos: 62.5,11.5 parent: 2 - proto: DefaultStationBeaconRND entities: @@ -40963,10 +43058,10 @@ entities: parent: 2 - proto: DefaultStationBeaconRobotics entities: - - uid: 13169 + - uid: 3486 components: - type: Transform - pos: 51.5,10.5 + pos: 49.5,9.5 parent: 2 - proto: DefaultStationBeaconSalvage entities: @@ -40977,11 +43072,6 @@ entities: parent: 2 - proto: DefaultStationBeaconServerRoom entities: - - uid: 2288 - components: - - type: Transform - pos: 31.5,36.5 - parent: 2 - uid: 13172 components: - type: Transform @@ -40994,14 +43084,16 @@ entities: - type: Transform pos: 21.5,-38.5 parent: 2 -- proto: DefaultStationBeaconSolars +- proto: DefaultStationBeaconSolarsNE entities: - - uid: 13178 + - uid: 9624 components: - type: Transform pos: 70.5,45.5 parent: 2 - - uid: 13179 +- proto: DefaultStationBeaconSolarsSW + entities: + - uid: 12825 components: - type: Transform pos: 3.5,-35.5 @@ -41022,10 +43114,10 @@ entities: parent: 2 - proto: DefaultStationBeaconTelecoms entities: - - uid: 13173 + - uid: 5827 components: - type: Transform - pos: 15.5,-17.5 + pos: 15.5,-16.5 parent: 2 - proto: DefaultStationBeaconToolRoom entities: @@ -41041,13 +43133,6 @@ entities: - type: Transform pos: 18.5,41.5 parent: 2 -- proto: DefaultStationBeaconWardensOffice - entities: - - uid: 13177 - components: - - type: Transform - pos: 38.5,22.5 - parent: 2 - proto: Defibrillator entities: - uid: 11416 @@ -41057,6 +43142,12 @@ entities: parent: 2 - proto: DefibrillatorCabinetFilled entities: + - uid: 2283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,28.5 + parent: 2 - uid: 9627 components: - type: Transform @@ -41080,15 +43171,20 @@ entities: parent: 2 - proto: DeployableBarrier entities: - - uid: 8519 + - uid: 2208 components: - type: Transform - pos: 36.5,24.5 + pos: 32.5,31.5 parent: 2 - - uid: 9602 + - uid: 2223 components: - type: Transform - pos: 36.5,23.5 + pos: 33.5,31.5 + parent: 2 + - uid: 11000 + components: + - type: Transform + pos: 34.5,31.5 parent: 2 - proto: DeskBell entities: @@ -41114,20 +43210,20 @@ entities: - type: Transform pos: 82.5,-7.5 parent: 2 -- proto: DiseaseSwab - entities: - - uid: 13754 - components: - - type: Transform - pos: 56.618065,41.538536 - parent: 2 - - uid: 13755 - components: - - type: Transform - pos: 56.451397,41.674046 - parent: 2 - proto: DisposalBend entities: + - uid: 616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-21.5 + parent: 2 + - uid: 1219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-23.5 + parent: 2 - uid: 1228 components: - type: Transform @@ -41139,11 +43235,17 @@ entities: rot: 3.141592653589793 rad pos: 4.5,10.5 parent: 2 - - uid: 3251 + - uid: 3235 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,23.5 + pos: 54.5,11.5 + parent: 2 + - uid: 4568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,35.5 parent: 2 - uid: 5777 components: @@ -41174,18 +43276,6 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,-28.5 parent: 2 - - uid: 5820 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-21.5 - parent: 2 - - uid: 5821 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-23.5 - parent: 2 - uid: 5822 components: - type: Transform @@ -41216,6 +43306,12 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-30.5 parent: 2 + - uid: 6473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,18.5 + parent: 2 - uid: 7289 components: - type: Transform @@ -41309,47 +43405,23 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,13.5 parent: 2 + - uid: 8473 + components: + - type: Transform + pos: 28.5,44.5 + parent: 2 - uid: 8927 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-9.5 parent: 2 - - uid: 9401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,42.5 - parent: 2 - - uid: 9402 - components: - - type: Transform - pos: 32.5,45.5 - parent: 2 - - uid: 9403 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,45.5 - parent: 2 - uid: 9432 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,35.5 parent: 2 - - uid: 9433 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,34.5 - parent: 2 - - uid: 9434 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,35.5 - parent: 2 - uid: 10255 components: - type: Transform @@ -41362,28 +43434,11 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-3.5 parent: 2 - - uid: 10586 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,11.5 - parent: 2 - - uid: 10598 + - uid: 10543 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,14.5 - parent: 2 - - uid: 10599 - components: - - type: Transform - pos: 58.5,22.5 - parent: 2 - - uid: 10602 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,18.5 + pos: 33.5,28.5 parent: 2 - uid: 10622 components: @@ -41391,6 +43446,12 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,14.5 parent: 2 + - uid: 10964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,30.5 + parent: 2 - uid: 11435 components: - type: Transform @@ -41442,23 +43503,30 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,23.5 parent: 2 - - uid: 13583 - components: - - type: Transform - pos: 33.5,31.5 - parent: 2 - uid: 14178 components: - type: Transform rot: -1.5707963267948966 rad pos: 79.5,23.5 parent: 2 + - uid: 14553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,14.5 + parent: 2 - uid: 15041 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-6.5 parent: 2 + - uid: 15612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,30.5 + parent: 2 - proto: DisposalJunction entities: - uid: 2422 @@ -41503,22 +43571,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,0.5 parent: 2 - - uid: 9411 - components: - - type: Transform - pos: 28.5,44.5 - parent: 2 - - uid: 9435 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,34.5 - parent: 2 - - uid: 10600 - components: - - type: Transform - pos: 58.5,18.5 - parent: 2 - uid: 11456 components: - type: Transform @@ -41533,10 +43585,16 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-0.5 parent: 2 - - uid: 5141 + - uid: 3669 components: - type: Transform - pos: 26.5,23.5 + rot: -1.5707963267948966 rad + pos: 54.5,14.5 + parent: 2 + - uid: 5102 + components: + - type: Transform + pos: 28.5,37.5 parent: 2 - uid: 5142 components: @@ -41544,6 +43602,23 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,0.5 parent: 2 + - uid: 5473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,30.5 + parent: 2 + - uid: 5513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,13.5 + parent: 2 + - uid: 6285 + components: + - type: Transform + pos: 26.5,28.5 + parent: 2 - uid: 7290 components: - type: Transform @@ -41567,12 +43642,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,-0.5 parent: 2 - - uid: 10601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,14.5 - parent: 2 - uid: 11436 components: - type: Transform @@ -41592,6 +43661,12 @@ entities: rot: 3.141592653589793 rad pos: 26.5,16.5 parent: 2 + - uid: 182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,15.5 + parent: 2 - uid: 256 components: - type: Transform @@ -41610,24 +43685,29 @@ entities: rot: 3.141592653589793 rad pos: 26.5,18.5 parent: 2 + - uid: 533 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 2 - uid: 584 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-24.5 parent: 2 + - uid: 1173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-21.5 + parent: 2 - uid: 2118 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,13.5 parent: 2 - - uid: 2133 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,23.5 - parent: 2 - uid: 2314 components: - type: Transform @@ -41640,6 +43720,41 @@ entities: rot: 3.141592653589793 rad pos: 4.5,12.5 parent: 2 + - uid: 3410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,14.5 + parent: 2 + - uid: 4410 + components: + - type: Transform + pos: 26.5,34.5 + parent: 2 + - uid: 4412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,35.5 + parent: 2 + - uid: 5304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,14.5 + parent: 2 + - uid: 5347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,28.5 + parent: 2 + - uid: 5377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,28.5 + parent: 2 - uid: 5534 components: - type: Transform @@ -41870,18 +43985,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-23.5 parent: 2 - - uid: 5826 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-23.5 - parent: 2 - - uid: 5827 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-22.5 - parent: 2 - uid: 5830 components: - type: Transform @@ -41942,23 +44045,71 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-29.5 parent: 2 - - uid: 6848 + - uid: 6006 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,23.5 + pos: 53.5,11.5 parent: 2 - - uid: 6849 + - uid: 6128 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,23.5 + pos: 55.5,14.5 parent: 2 - - uid: 6850 + - uid: 6139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,17.5 + parent: 2 + - uid: 6327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,16.5 + parent: 2 + - uid: 6328 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,23.5 + pos: 58.5,14.5 + parent: 2 + - uid: 6329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,14.5 + parent: 2 + - uid: 6330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,14.5 + parent: 2 + - uid: 6335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,14.5 + parent: 2 + - uid: 6337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,28.5 + parent: 2 + - uid: 6347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,14.5 + parent: 2 + - uid: 6462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,28.5 parent: 2 - uid: 6877 components: @@ -41999,6 +44150,12 @@ entities: - type: Transform pos: 14.5,20.5 parent: 2 + - uid: 6991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,14.5 + parent: 2 - uid: 7291 components: - type: Transform @@ -42463,24 +44620,12 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-0.5 parent: 2 - - uid: 7457 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,23.5 - parent: 2 - uid: 7458 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,19.5 parent: 2 - - uid: 7459 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,23.5 - parent: 2 - uid: 7473 components: - type: Transform @@ -42594,10 +44739,11 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-0.5 parent: 2 - - uid: 7946 + - uid: 7718 components: - type: Transform - pos: 33.5,29.5 + rot: -1.5707963267948966 rad + pos: 35.5,30.5 parent: 2 - uid: 8270 components: @@ -42644,11 +44790,6 @@ entities: rot: 3.141592653589793 rad pos: 11.5,11.5 parent: 2 - - uid: 8496 - components: - - type: Transform - pos: 33.5,30.5 - parent: 2 - uid: 8928 components: - type: Transform @@ -42703,39 +44844,11 @@ entities: rot: 3.141592653589793 rad pos: 33.5,-8.5 parent: 2 - - uid: 9405 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,42.5 - parent: 2 - - uid: 9406 - components: - - type: Transform - pos: 32.5,43.5 - parent: 2 - - uid: 9407 - components: - - type: Transform - pos: 32.5,44.5 - parent: 2 - - uid: 9408 + - uid: 9145 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,45.5 - parent: 2 - - uid: 9409 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,45.5 - parent: 2 - - uid: 9410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,45.5 + pos: 34.5,30.5 parent: 2 - uid: 9412 components: @@ -42767,11 +44880,6 @@ entities: - type: Transform pos: 28.5,38.5 parent: 2 - - uid: 9418 - components: - - type: Transform - pos: 28.5,37.5 - parent: 2 - uid: 9419 components: - type: Transform @@ -42797,11 +44905,6 @@ entities: - type: Transform pos: 26.5,27.5 parent: 2 - - uid: 9425 - components: - - type: Transform - pos: 26.5,28.5 - parent: 2 - uid: 9426 components: - type: Transform @@ -42890,143 +44993,22 @@ entities: - type: Transform pos: 12.5,-0.5 parent: 2 - - uid: 10587 + - uid: 10358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,28.5 + parent: 2 + - uid: 10448 components: - type: Transform - rot: 3.141592653589793 rad pos: 54.5,12.5 parent: 2 - - uid: 10588 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,13.5 - parent: 2 - - uid: 10589 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,21.5 - parent: 2 - uid: 10590 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,20.5 - parent: 2 - - uid: 10591 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,19.5 - parent: 2 - - uid: 10592 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,17.5 - parent: 2 - - uid: 10593 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,16.5 - parent: 2 - - uid: 10594 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,15.5 - parent: 2 - - uid: 10595 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,14.5 - parent: 2 - - uid: 10596 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,14.5 - parent: 2 - - uid: 10597 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,14.5 - parent: 2 - - uid: 10603 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,18.5 - parent: 2 - - uid: 10604 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,18.5 - parent: 2 - - uid: 10605 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,18.5 - parent: 2 - - uid: 10606 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,18.5 - parent: 2 - - uid: 10607 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,18.5 - parent: 2 - - uid: 10608 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,18.5 - parent: 2 - - uid: 10609 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,18.5 - parent: 2 - - uid: 10610 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,14.5 - parent: 2 - - uid: 10611 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,14.5 - parent: 2 - - uid: 10612 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,14.5 - parent: 2 - - uid: 10613 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,14.5 - parent: 2 - - uid: 10614 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,14.5 + pos: 38.5,30.5 parent: 2 - uid: 10615 components: @@ -43130,6 +45112,12 @@ entities: - type: Transform pos: 41.5,2.5 parent: 2 + - uid: 10895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,30.5 + parent: 2 - uid: 11441 components: - type: Transform @@ -43483,6 +45471,18 @@ entities: - type: Transform pos: 27.5,1.5 parent: 2 + - uid: 12557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,29.5 + parent: 2 + - uid: 12671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,30.5 + parent: 2 - uid: 12837 components: - type: Transform @@ -43493,30 +45493,11 @@ entities: - type: Transform pos: 26.5,-26.5 parent: 2 - - uid: 13586 + - uid: 13114 components: - type: Transform - pos: 33.5,28.5 - parent: 2 - - uid: 13587 - components: - - type: Transform - pos: 33.5,27.5 - parent: 2 - - uid: 13588 - components: - - type: Transform - pos: 33.5,26.5 - parent: 2 - - uid: 13589 - components: - - type: Transform - pos: 33.5,25.5 - parent: 2 - - uid: 13590 - components: - - type: Transform - pos: 33.5,24.5 + rot: -1.5707963267948966 rad + pos: 27.5,28.5 parent: 2 - uid: 14130 components: @@ -43602,20 +45583,113 @@ entities: rot: 3.141592653589793 rad pos: 46.5,-5.5 parent: 2 -- proto: DisposalTrunk - entities: - - uid: 183 + - uid: 15596 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,22.5 + pos: 40.5,30.5 parent: 2 - - uid: 184 + - uid: 15597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,30.5 + parent: 2 + - uid: 15598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,30.5 + parent: 2 + - uid: 15599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,30.5 + parent: 2 + - uid: 15600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,30.5 + parent: 2 + - uid: 15601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,30.5 + parent: 2 + - uid: 15602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,30.5 + parent: 2 + - uid: 15603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,30.5 + parent: 2 + - uid: 15604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,30.5 + parent: 2 + - uid: 15605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,30.5 + parent: 2 + - uid: 15606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,30.5 + parent: 2 + - uid: 15607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,30.5 + parent: 2 + - uid: 15608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,30.5 + parent: 2 + - uid: 15609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,30.5 + parent: 2 + - uid: 15610 + components: + - type: Transform + pos: 54.5,31.5 + parent: 2 + - uid: 15611 + components: + - type: Transform + pos: 54.5,32.5 + parent: 2 + - uid: 15616 + components: + - type: Transform + pos: 26.5,23.5 + parent: 2 + - uid: 15870 components: - type: Transform rot: 3.141592653589793 rad - pos: 50.5,17.5 + pos: 37.5,29.5 parent: 2 +- proto: DisposalTrunk + entities: - uid: 358 components: - type: Transform @@ -43627,6 +45701,12 @@ entities: rot: 3.141592653589793 rad pos: 34.5,-10.5 parent: 2 + - uid: 2279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,37.5 + parent: 2 - uid: 2320 components: - type: Transform @@ -43664,12 +45744,6 @@ entities: - type: Transform pos: 22.5,15.5 parent: 2 - - uid: 6008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,42.5 - parent: 2 - uid: 7288 components: - type: Transform @@ -43694,6 +45768,12 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-2.5 parent: 2 + - uid: 7688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,18.5 + parent: 2 - uid: 8849 components: - type: Transform @@ -43706,22 +45786,16 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,44.5 parent: 2 - - uid: 9420 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,34.5 - parent: 2 - uid: 10254 components: - type: Transform pos: 20.5,-2.5 parent: 2 - - uid: 10585 + - uid: 10586 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,11.5 + rot: 1.5707963267948966 rad + pos: 53.5,13.5 parent: 2 - uid: 11434 components: @@ -43746,16 +45820,21 @@ entities: rot: -1.5707963267948966 rad pos: 81.5,1.5 parent: 2 + - uid: 11660 + components: + - type: Transform + pos: 54.5,33.5 + parent: 2 - uid: 12479 components: - type: Transform pos: 27.5,3.5 parent: 2 - - uid: 13581 + - uid: 12911 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,31.5 + pos: 52.5,11.5 parent: 2 - uid: 14126 components: @@ -43774,6 +45853,12 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,-6.5 parent: 2 + - uid: 15883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,28.5 + parent: 2 - proto: DisposalUnit entities: - uid: 374 @@ -43801,6 +45886,11 @@ entities: - type: Transform pos: 34.5,-10.5 parent: 2 + - uid: 1286 + components: + - type: Transform + pos: 54.5,33.5 + parent: 2 - uid: 1321 components: - type: Transform @@ -43846,21 +45936,6 @@ entities: - type: Transform pos: 82.5,-3.5 parent: 2 - - uid: 5341 - components: - - type: Transform - pos: 57.5,22.5 - parent: 2 - - uid: 5392 - components: - - type: Transform - pos: 55.5,11.5 - parent: 2 - - uid: 5411 - components: - - type: Transform - pos: 30.5,42.5 - parent: 2 - uid: 6427 components: - type: Transform @@ -43876,15 +45951,20 @@ entities: - type: Transform pos: 41.5,-1.5 parent: 2 + - uid: 7595 + components: + - type: Transform + pos: 37.5,28.5 + parent: 2 - uid: 8361 components: - type: Transform pos: 27.5,-25.5 parent: 2 - - uid: 8435 + - uid: 8480 components: - type: Transform - pos: 32.5,31.5 + pos: 60.5,18.5 parent: 2 - uid: 8848 components: @@ -43896,26 +45976,31 @@ entities: - type: Transform pos: 100.5,-10.5 parent: 2 - - uid: 9431 + - uid: 9268 components: - type: Transform - pos: 28.5,34.5 + pos: 29.5,37.5 parent: 2 - uid: 10069 components: - type: Transform pos: 54.5,-9.5 parent: 2 - - uid: 10118 - components: - - type: Transform - pos: 50.5,17.5 - parent: 2 - uid: 10253 components: - type: Transform pos: 20.5,-2.5 parent: 2 + - uid: 10406 + components: + - type: Transform + pos: 53.5,13.5 + parent: 2 + - uid: 10475 + components: + - type: Transform + pos: 52.5,11.5 + parent: 2 - uid: 11433 components: - type: Transform @@ -43984,10 +46069,10 @@ entities: parent: 2 - proto: DogBed entities: - - uid: 8393 + - uid: 1748 components: - type: Transform - pos: 36.5,19.5 + pos: 40.5,27.5 parent: 2 - uid: 9716 components: @@ -44009,6 +46094,16 @@ entities: - type: Transform pos: 5.5,15.5 parent: 2 + - uid: 15373 + components: + - type: Transform + pos: 43.5,41.5 + parent: 2 + - uid: 15474 + components: + - type: Transform + pos: 31.5,39.5 + parent: 2 - proto: DonkpocketBoxSpawner entities: - uid: 11431 @@ -44033,19 +46128,12 @@ entities: - type: Transform pos: 9.474669,-14.422774 parent: 2 -- proto: DoubleEmergencyOxygenTankFilled - entities: - - uid: 5530 - components: - - type: Transform - pos: 74.515,18.613554 - parent: 2 - proto: DresserCaptainFilled entities: - - uid: 10279 + - uid: 13583 components: - type: Transform - pos: 37.5,40.5 + pos: 35.5,41.5 parent: 2 - proto: DresserChiefEngineerFilled entities: @@ -44094,10 +46182,10 @@ entities: - 544 - proto: DresserHeadOfSecurityFilled entities: - - uid: 386 + - uid: 8427 components: - type: Transform - pos: 45.5,22.5 + pos: 42.5,43.5 parent: 2 - proto: DresserQuarterMasterFilled entities: @@ -44108,29 +46196,40 @@ entities: parent: 2 - proto: DresserResearchDirectorFilled entities: - - uid: 565 + - uid: 15624 components: - type: Transform - pos: 60.5,11.5 + pos: 61.5,8.5 + parent: 2 +- proto: DresserWardenFilled + entities: + - uid: 3672 + components: + - type: Transform + pos: 43.5,24.5 + parent: 2 +- proto: DrinkBottleBeer + entities: + - uid: 1287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.534847,-13.435519 + parent: 2 +- proto: DrinkBottleVodka + entities: + - uid: 10450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.11051,49.81447 parent: 2 - - type: Storage - storedItems: - 4300: - position: 0,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 4300 - proto: DrinkFlask entities: - - uid: 9223 + - uid: 9410 components: - type: Transform - pos: 37.68926,43.584465 + pos: 35.652603,43.65095 parent: 2 - proto: DrinkFlaskBar entities: @@ -44139,6 +46238,13 @@ entities: - type: Transform pos: 63.594597,-16.258825 parent: 2 +- proto: DrinkGinBottleFull + entities: + - uid: 8797 + components: + - type: Transform + pos: 48.41424,42.191265 + parent: 2 - proto: DrinkGlass entities: - uid: 8129 @@ -44165,24 +46271,17 @@ entities: parent: 2 - proto: DrinkHotCoco entities: - - uid: 5451 + - uid: 8452 components: - type: Transform - pos: 71.508354,37.570084 + pos: 69.67335,38.49052 parent: 2 -- proto: DrinkHotCoffee +- proto: DrinkMopwataBottleRandom entities: - - uid: 15374 + - uid: 15667 components: - type: Transform - pos: 34.080093,17.48581 - parent: 2 -- proto: DrinkLemonadeGlass - entities: - - uid: 5452 - components: - - type: Transform - pos: 71.477104,40.663834 + pos: 63.602173,38.82123 parent: 2 - proto: DrinkMugBlack entities: @@ -44205,21 +46304,28 @@ entities: parent: 2 - proto: DrinkMugMetal entities: - - uid: 14600 + - uid: 2463 components: - type: Transform - pos: 55.15004,41.505497 + pos: 35.44559,18.47621 parent: 2 - - uid: 14663 + - uid: 8442 components: - type: Transform - pos: 5.063261,40.729393 + pos: 35.66434,18.710585 parent: 2 - uid: 15303 components: - type: Transform pos: 38.59038,-29.278873 parent: 2 +- proto: DrinkMugMoebius + entities: + - uid: 11893 + components: + - type: Transform + pos: 71.55619,33.63624 + parent: 2 - proto: DrinkMugOne entities: - uid: 12405 @@ -44227,6 +46333,11 @@ entities: - type: Transform pos: 78.602234,4.557168 parent: 2 + - uid: 13501 + components: + - type: Transform + pos: 32.628296,41.841526 + parent: 2 - uid: 14567 components: - type: Transform @@ -44251,6 +46362,43 @@ entities: - type: Transform pos: 67.47043,-15.094364 parent: 2 +- proto: DrinkShotGlass + entities: + - uid: 2221 + components: + - type: Transform + pos: 48.53924,41.628765 + parent: 2 + - uid: 3084 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 58.69356,39.47997 + parent: 2 + - uid: 3227 + components: + - type: Transform + pos: 48.75799,41.816265 + parent: 2 + - uid: 10684 + components: + - type: Transform + pos: 58.66231,39.714344 + parent: 2 +- proto: DrinkVodkaBottleFull + entities: + - uid: 3216 + components: + - type: Transform + pos: 49.20426,50.03322 + parent: 2 +- proto: DrinkVodkaGlass + entities: + - uid: 7584 + components: + - type: Transform + pos: 48.675804,44.565666 + parent: 2 - proto: DrinkWaterCup entities: - uid: 5644 @@ -44290,6 +46438,12 @@ entities: parent: 2 - proto: DrinkWhiskeyBottleFull entities: + - uid: 2458 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 58.302937,39.745594 + parent: 2 - uid: 5680 components: - type: Transform @@ -44300,15 +46454,18 @@ entities: - type: Transform pos: 57.63163,-13.7188425 parent: 2 -- proto: ElectricGuitarInstrument +- proto: Dropper entities: - - uid: 14550 + - uid: 10885 components: - type: Transform - parent: 13753 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 63.395325,25.383368 + parent: 2 + - uid: 13541 + components: + - type: Transform + pos: 71.575096,30.73986 + parent: 2 - proto: EmergencyLight entities: - uid: 323 @@ -44323,6 +46480,12 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,-14.5 parent: 2 + - uid: 2294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,47.5 + parent: 2 - uid: 3215 components: - type: Transform @@ -44335,19 +46498,56 @@ entities: rot: 3.141592653589793 rad pos: 27.5,-36.5 parent: 2 + - uid: 5334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,21.5 + parent: 2 + - uid: 5423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,32.5 + parent: 2 + - uid: 7795 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 7802 + components: + - type: Transform + pos: 57.5,15.5 + parent: 2 - uid: 8408 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,8.5 parent: 2 - - uid: 11333 + - uid: 8478 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,33.5 + rot: 3.141592653589793 rad + pos: 50.5,30.5 + parent: 2 + - uid: 8549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,35.5 + parent: 2 + - uid: 10137 + components: + - type: Transform + pos: 80.5,31.5 + parent: 2 + - uid: 10600 + components: + - type: Transform + pos: 39.5,31.5 parent: 2 - - type: ActiveEmergencyLight - uid: 12375 components: - type: Transform @@ -44367,13 +46567,6 @@ entities: pos: 16.5,-33.5 parent: 2 - type: ActiveEmergencyLight - - uid: 12379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,25.5 - parent: 2 - - type: ActiveEmergencyLight - uid: 12380 components: - type: Transform @@ -44381,24 +46574,12 @@ entities: pos: 25.5,44.5 parent: 2 - type: ActiveEmergencyLight - - uid: 12383 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,18.5 - parent: 2 - - type: ActiveEmergencyLight - uid: 14641 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,22.5 parent: 2 - - uid: 14642 - components: - - type: Transform - pos: 79.5,31.5 - parent: 2 - uid: 14644 components: - type: Transform @@ -44416,12 +46597,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,30.5 parent: 2 - - uid: 14974 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,36.5 - parent: 2 - uid: 15131 components: - type: Transform @@ -44467,27 +46642,6 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,-5.5 parent: 2 - - uid: 15140 - components: - - type: Transform - pos: 49.5,11.5 - parent: 2 - - uid: 15141 - components: - - type: Transform - pos: 55.5,20.5 - parent: 2 - - uid: 15142 - components: - - type: Transform - pos: 67.5,16.5 - parent: 2 - - uid: 15143 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,17.5 - parent: 2 - uid: 15144 components: - type: Transform @@ -44573,6 +46727,12 @@ entities: rot: 3.141592653589793 rad pos: 31.5,13.5 parent: 2 + - uid: 15534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,19.5 + parent: 2 - proto: EmergencyNitrogenTankFilled entities: - uid: 4959 @@ -44596,16 +46756,6 @@ entities: parent: 2 - proto: Emitter entities: - - uid: 748 - components: - - type: Transform - anchored: False - pos: 9.5,-29.5 - parent: 2 - - type: Physics - bodyType: Dynamic - - type: PowerConsumer - drawRate: 1 - uid: 749 components: - type: Transform @@ -44616,6 +46766,11 @@ entities: bodyType: Dynamic - type: PowerConsumer drawRate: 1 + - uid: 2628 + components: + - type: Transform + pos: 9.5,-29.5 + parent: 2 - uid: 10875 components: - type: Transform @@ -44659,84 +46814,49 @@ entities: - type: Transform pos: 25.530586,-38.32224 parent: 2 -- proto: EncryptionKeyCargo +- proto: EvidenceMarkerFour entities: - - uid: 412 + - uid: 11089 components: - type: Transform - parent: 5183 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommand + pos: 54.801388,44.239468 + parent: 2 +- proto: EvidenceMarkerOne entities: - - uid: 413 + - uid: 11191 components: - type: Transform - parent: 10443 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommon + rot: 6.283185307179586 rad + pos: 54.967278,45.75482 + parent: 2 +- proto: EvidenceMarkerThree entities: - - uid: 414 + - uid: 15706 components: - type: Transform - parent: 12111 - - type: Physics - canCollide: False -- proto: EncryptionKeyEngineering + pos: 51.6788,42.82845 + parent: 2 +- proto: EvidenceMarkerTwo entities: - - uid: 535 + - uid: 5393 components: - type: Transform - parent: 533 - - type: Physics - canCollide: False -- proto: EncryptionKeyMedical - entities: - - uid: 421 - components: - - type: Transform - parent: 12112 - - type: Physics - canCollide: False -- proto: EncryptionKeyScience - entities: - - uid: 422 - components: - - type: Transform - parent: 12232 - - type: Physics - canCollide: False -- proto: EncryptionKeySecurity - entities: - - uid: 423 - components: - - type: Transform - parent: 12233 - - type: Physics - canCollide: False -- proto: EncryptionKeyService - entities: - - uid: 424 - components: - - type: Transform - parent: 12395 - - type: Physics - canCollide: False + rot: 6.283185307179586 rad + pos: 53.951653,42.645718 + parent: 2 - proto: ExosuitFabricator entities: - - uid: 12579 + - uid: 10384 components: - type: Transform - pos: 51.5,11.5 - parent: 2 -- proto: ExplosivesSignMed - entities: - - uid: 10438 - components: - - type: Transform - pos: 61.5,28.5 + pos: 50.5,8.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: ExtinguisherCabinetFilled entities: - uid: 315 @@ -44771,26 +46891,6 @@ entities: - type: Transform pos: 52.5,12.5 parent: 2 - - uid: 5336 - components: - - type: Transform - pos: 53.5,22.5 - parent: 2 - - uid: 5337 - components: - - type: Transform - pos: 50.5,22.5 - parent: 2 - - uid: 5347 - components: - - type: Transform - pos: 62.5,21.5 - parent: 2 - - uid: 5348 - components: - - type: Transform - pos: 68.5,12.5 - parent: 2 - uid: 5658 components: - type: Transform @@ -44816,11 +46916,6 @@ entities: - type: Transform pos: 40.5,-5.5 parent: 2 - - uid: 8985 - components: - - type: Transform - pos: 36.5,16.5 - parent: 2 - uid: 9399 components: - type: Transform @@ -44836,21 +46931,8 @@ entities: - type: Transform pos: 14.5,11.5 parent: 2 - - uid: 14569 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 87.5,29.5 - parent: 2 - proto: FaxMachineBase entities: - - uid: 1622 - components: - - type: Transform - pos: 63.5,10.5 - parent: 2 - - type: FaxMachine - name: RD Office - uid: 1649 components: - type: Transform @@ -44858,6 +46940,13 @@ entities: parent: 2 - type: FaxMachine name: Library + - uid: 2220 + components: + - type: Transform + pos: 38.5,22.5 + parent: 2 + - type: FaxMachine + name: Brig - uid: 2394 components: - type: Transform @@ -44865,13 +46954,30 @@ entities: parent: 2 - type: FaxMachine name: CE Office - - uid: 7566 + - uid: 3109 components: - type: Transform - pos: 45.5,24.5 + pos: 59.5,36.5 + parent: 2 + - uid: 5343 + components: + - type: Transform + pos: 36.5,24.5 parent: 2 - type: FaxMachine - name: HoS Office + name: Security + - uid: 5361 + components: + - type: Transform + pos: 60.5,20.5 + parent: 2 + - type: FaxMachine + name: Science + - uid: 6351 + components: + - type: Transform + pos: 65.5,11.5 + parent: 2 - uid: 7668 components: - type: Transform @@ -44886,6 +46992,13 @@ entities: parent: 2 - type: FaxMachine name: Law Office + - uid: 7946 + components: + - type: Transform + pos: 46.5,42.5 + parent: 2 + - type: FaxMachine + name: Head of Security - uid: 8080 components: - type: Transform @@ -44893,13 +47006,6 @@ entities: parent: 2 - type: FaxMachine name: Quartermaster - - uid: 8320 - components: - - type: Transform - pos: 36.5,25.5 - parent: 2 - - type: FaxMachine - name: Security - uid: 9006 components: - type: Transform @@ -44949,19 +47055,19 @@ entities: parent: 2 - type: FaxMachine name: Medical - - uid: 14997 - components: - - type: Transform - pos: 57.5,20.5 - parent: 2 - - type: FaxMachine - name: Science - proto: FaxMachineCaptain entities: - - uid: 1465 + - uid: 5329 components: - type: Transform - pos: 30.5,41.5 + pos: 30.5,42.5 + parent: 2 +- proto: filingCabinetDrawer + entities: + - uid: 14574 + components: + - type: Transform + pos: 58.5,20.5 parent: 2 - proto: filingCabinetDrawerRandom entities: @@ -44975,7 +47081,7 @@ entities: - type: Transform pos: 19.5,29.5 parent: 2 - - uid: 10659 + - uid: 10546 components: - type: Transform pos: 63.5,11.5 @@ -44997,10 +47103,10 @@ entities: - type: Transform pos: 15.5,-5.5 parent: 2 - - uid: 7834 + - uid: 12768 components: - type: Transform - pos: 41.5,19.5 + pos: 55.5,38.5 parent: 2 - uid: 15479 components: @@ -45072,6 +47178,21 @@ entities: - 1515 - 1513 - 12834 + - uid: 2045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 5390 + - 15554 + - 12518 + - 15552 + - 14330 + - 5395 + - 15368 - uid: 2123 components: - type: Transform @@ -45084,18 +47205,29 @@ entities: - 241 - 14065 - 14064 - - uid: 2474 + - uid: 2248 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,22.5 + rot: 3.141592653589793 rad + pos: 47.5,29.5 parent: 2 - type: DeviceList devices: - - 12559 - - 10413 - - 10414 - - 10415 + - 15375 + - 15368 + - uid: 2296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 12989 + - 10662 + - 12485 + - 5392 + - 13435 - uid: 4049 components: - type: Transform @@ -45214,6 +47346,32 @@ entities: - 14066 - 192 - 1317 + - uid: 7720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 2334 + - 10527 + - 15368 + - 9589 + - 1103 + - 1104 + - 11250 + - 11249 + - 11248 + - 11322 + - 11323 + - 11324 + - 12516 + - 10613 + - 10612 + - 5390 + - 15554 + - 12518 - uid: 8005 components: - type: Transform @@ -45317,6 +47475,21 @@ entities: - 7011 - 6620 - 5144 + - uid: 8570 + components: + - type: Transform + pos: 56.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 10418 + - 8460 + - 10416 + - 15492 + - 15898 + - 10662 + - 5478 + - 12485 - uid: 8920 components: - type: Transform @@ -45335,20 +47508,24 @@ entities: - 10206 - 10205 - 5093 - - uid: 9588 + - uid: 10078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,30.5 + pos: 59.5,21.5 parent: 2 - type: DeviceList devices: - - 9586 - - 9585 - - 9584 - - 9589 - - 9236 - - 13510 + - 10418 + - 8460 + - 10416 + - 15492 + - 15898 + - 5651 + - 10671 + - 15476 + - 12087 + - 7267 + - 12485 - uid: 10208 components: - type: Transform @@ -45367,27 +47544,6 @@ entities: - type: DeviceList devices: - 8659 - - uid: 10964 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,19.5 - parent: 2 - - type: DeviceList - devices: - - 1103 - - 1104 - - 11250 - - 11249 - - 11248 - - 11322 - - 11323 - - 11324 - - 12516 - - 12085 - - 9586 - - 9585 - - 9584 - uid: 11507 components: - type: Transform @@ -45502,7 +47658,6 @@ entities: - 3459 - 9352 - 9353 - - 9351 - 2690 - uid: 12483 components: @@ -45539,10 +47694,14 @@ entities: - 11251 - 11252 - 11253 - - 9351 - 9353 - 9352 - 12087 + - 3224 + - 7267 + - 15492 + - 5478 + - 15898 - uid: 12489 components: - type: Transform @@ -45564,50 +47723,13 @@ entities: - type: DeviceList devices: - 11250 - - 11249 - - 11248 - 11322 - 11323 - 11324 - 12518 - - uid: 12549 - components: - - type: Transform - pos: 49.5,22.5 - parent: 2 - - type: DeviceList - devices: - - 12550 - - 12087 - - uid: 12556 - components: - - type: Transform - pos: 61.5,16.5 - parent: 2 - - type: DeviceList - devices: - - 10416 - - 10417 - - 10418 - - 12554 - - 1252 - - 1162 - - 6473 - - uid: 12557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,19.5 - parent: 2 - - type: DeviceList - devices: - - 10416 - - 10417 - - 10418 - - 185 - - 10413 - - 10414 - - 10415 + - 11249 + - 11248 + - 12516 - uid: 14041 components: - type: Transform @@ -45641,6 +47763,50 @@ entities: - 29 - 8238 - 371 + - uid: 15172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,29.5 + parent: 2 + - type: DeviceList + devices: + - 73 + - 248 + - 15375 + - 11683 + - 2334 + - 10527 + - 15368 + - 9589 + - 5395 + - 15554 + - uid: 15585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 5651 + - 10671 + - 15476 + - 15492 + - uid: 15897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,7.5 + parent: 2 + - type: DeviceList + devices: + - 10585 + - 10336 + - 2421 + - 15882 + - 15898 + - 5392 - proto: FireAxeCabinetFilled entities: - uid: 1571 @@ -45671,6 +47837,50 @@ entities: - type: Transform pos: 81.454414,9.641975 parent: 2 +- proto: Firelock + entities: + - uid: 8376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,46.5 + parent: 2 + - uid: 8384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,46.5 + parent: 2 + - uid: 8406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,35.5 + parent: 2 + - uid: 8426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,28.5 + parent: 2 + - uid: 9437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,34.5 + parent: 2 + - uid: 9443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,46.5 + parent: 2 + - uid: 9574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,27.5 + parent: 2 - proto: FirelockEdge entities: - uid: 36 @@ -45775,12 +47985,20 @@ entities: rot: 3.141592653589793 rad pos: 25.5,15.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7720 + - 15466 - uid: 1104 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,15.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7720 + - 15466 - uid: 1317 components: - type: Transform @@ -46152,10 +48370,9 @@ entities: rot: 3.141592653589793 rad pos: 26.5,37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 9587 - - 9588 + - type: Door + secondsUntilStateChange: -55221.285 + state: Closing - uid: 9362 components: - type: Transform @@ -46171,24 +48388,6 @@ entities: - type: Transform pos: 42.5,13.5 parent: 2 - - uid: 9584 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,28.5 - parent: 2 - - uid: 9585 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,28.5 - parent: 2 - - uid: 9586 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,28.5 - parent: 2 - uid: 9858 components: - type: Transform @@ -46226,18 +48425,34 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,22.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 12517 + - 7720 + - 15466 + - 11165 - uid: 11249 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 12517 + - 7720 + - 15466 + - 11165 - uid: 11250 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,20.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7720 + - 15466 - uid: 11251 components: - type: Transform @@ -46316,18 +48531,30 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,23.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7720 + - 15466 - uid: 11323 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,24.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7720 + - 15466 - uid: 11324 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,25.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7720 + - 15466 - uid: 11325 components: - type: Transform @@ -46388,43 +48615,12 @@ entities: - type: DeviceNetwork deviceLists: - 1657 - - uid: 13507 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13512 - uid: 13510 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 9587 - - 9588 - - uid: 13514 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13512 - - uid: 13523 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,36.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13512 - uid: 13894 components: - type: Transform @@ -46542,42 +48738,6 @@ entities: deviceLists: - 14041 - 13984 - - uid: 14551 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,30.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14247 - - uid: 14552 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,31.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14247 - - uid: 14553 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,29.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14247 - - uid: 14622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,20.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14615 - uid: 14992 components: - type: Transform @@ -46616,6 +48776,15 @@ entities: - 14737 - 5 - 14754 + - uid: 73 + components: + - type: Transform + pos: 46.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8571 + - 15172 - uid: 169 components: - type: Transform @@ -46624,6 +48793,15 @@ entities: - type: DeviceNetwork deviceLists: - 1017 + - uid: 248 + components: + - type: Transform + pos: 46.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8571 + - 15172 - uid: 554 components: - type: Transform @@ -46661,16 +48839,6 @@ entities: - type: DeviceNetwork deviceLists: - 1017 - - uid: 1162 - components: - - type: Transform - pos: 53.5,14.5 - parent: 2 - - uid: 1252 - components: - - type: Transform - pos: 53.5,13.5 - parent: 2 - uid: 1510 components: - type: Transform @@ -46696,10 +48864,41 @@ entities: - type: Transform pos: 35.5,-8.5 parent: 2 - - uid: 3175 + - uid: 2334 components: - type: Transform - pos: 38.5,38.5 + pos: 31.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 + - 7720 + - 8571 + - 15172 + - uid: 2421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15578 + - 15897 + - uid: 3224 + components: + - type: Transform + pos: 38.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12487 + - 12486 + - 12476 + - uid: 4843 + components: + - type: Transform + pos: 39.5,40.5 parent: 2 - uid: 4919 components: @@ -46711,6 +48910,68 @@ entities: - type: Transform pos: 39.5,1.5 parent: 2 + - uid: 5390 + components: + - type: Transform + pos: 28.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 + - 15466 + - 7720 + - 2045 + - uid: 5392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2296 + - 5101 + - 15578 + - 15897 + - uid: 5395 + components: + - type: Transform + pos: 33.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 + - 2045 + - 8571 + - 15172 + - uid: 5478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12487 + - 12486 + - 8570 + - 10469 + - uid: 5490 + components: + - type: Transform + pos: 38.5,40.5 + parent: 2 + - uid: 5651 + components: + - type: Transform + pos: 58.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15585 + - 10419 + - 10078 + - 10576 - uid: 5657 components: - type: Transform @@ -46719,11 +48980,6 @@ entities: - type: DeviceNetwork deviceLists: - 1017 - - uid: 6473 - components: - - type: Transform - pos: 53.5,15.5 - parent: 2 - uid: 6509 components: - type: Transform @@ -46749,6 +49005,18 @@ entities: - type: Transform pos: 39.5,-0.5 parent: 2 + - uid: 7267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12487 + - 10078 + - 12486 + - 10576 - uid: 7740 components: - type: Transform @@ -46775,16 +49043,23 @@ entities: - 5 - 7013 - 14754 + - uid: 8460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10078 + - 10469 + - 8570 + - 10576 - uid: 8823 components: - type: Transform pos: 49.5,-19.5 parent: 2 - - uid: 9351 - components: - - type: Transform - pos: 38.5,13.5 - parent: 2 - uid: 9352 components: - type: Transform @@ -46825,36 +49100,91 @@ entities: - type: Transform pos: 24.5,-10.5 parent: 2 - - uid: 10413 + - uid: 10336 components: - type: Transform - pos: 58.5,21.5 - parent: 2 - - uid: 10414 - components: - - type: Transform - pos: 59.5,21.5 - parent: 2 - - uid: 10415 - components: - - type: Transform - pos: 60.5,21.5 + rot: 3.141592653589793 rad + pos: 57.5,12.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 15578 + - 15897 - uid: 10416 components: - type: Transform pos: 58.5,16.5 parent: 2 - - uid: 10417 - components: - - type: Transform - pos: 59.5,16.5 - parent: 2 + - type: DeviceNetwork + deviceLists: + - 10078 + - 10469 + - 8570 + - 10576 - uid: 10418 components: - type: Transform pos: 60.5,16.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 10078 + - 10469 + - 8570 + - 10576 + - uid: 10527 + components: + - type: Transform + pos: 31.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 + - 7720 + - 8571 + - 15172 + - uid: 10585 + components: + - type: Transform + pos: 58.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15578 + - 15897 + - uid: 10612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 + - 7720 + - 8571 + - uid: 10613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 + - 7720 + - 8571 + - uid: 10671 + components: + - type: Transform + pos: 58.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15585 + - 10419 + - 10078 + - 10576 - uid: 10735 components: - type: Transform @@ -46900,31 +49230,6 @@ entities: - type: Transform pos: 47.5,-17.5 parent: 2 - - uid: 11273 - components: - - type: Transform - pos: 43.5,43.5 - parent: 2 - - uid: 11274 - components: - - type: Transform - pos: 44.5,43.5 - parent: 2 - - uid: 11284 - components: - - type: Transform - pos: 45.5,40.5 - parent: 2 - - uid: 11285 - components: - - type: Transform - pos: 50.5,48.5 - parent: 2 - - uid: 11286 - components: - - type: Transform - pos: 62.5,48.5 - parent: 2 - uid: 11287 components: - type: Transform @@ -47015,16 +49320,6 @@ entities: - type: Transform pos: 72.5,10.5 parent: 2 - - uid: 11384 - components: - - type: Transform - pos: 65.5,7.5 - parent: 2 - - uid: 11385 - components: - - type: Transform - pos: 66.5,7.5 - parent: 2 - uid: 11386 components: - type: Transform @@ -47085,11 +49380,6 @@ entities: - type: Transform pos: 48.5,-7.5 parent: 2 - - uid: 12085 - components: - - type: Transform - pos: 28.5,25.5 - parent: 2 - uid: 12086 components: - type: Transform @@ -47104,6 +49394,10 @@ entities: - type: Transform pos: 48.5,18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 10078 + - 10576 - uid: 12394 components: - type: Transform @@ -47118,6 +49412,16 @@ entities: deviceLists: - 5101 - 12486 + - 2296 + - uid: 13435 + components: + - type: Transform + pos: 43.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5101 + - 2296 - uid: 13442 components: - type: Transform @@ -47153,13 +49457,13 @@ entities: - type: Transform pos: 71.5,-11.5 parent: 2 -- proto: Fireplace - entities: - - uid: 380 + - uid: 15528 components: - type: Transform - pos: 36.5,43.5 + pos: 76.5,11.5 parent: 2 +- proto: Fireplace + entities: - uid: 2008 components: - type: Transform @@ -47170,6 +49474,11 @@ entities: - type: Transform pos: 9.5,-40.5 parent: 2 + - uid: 8605 + components: + - type: Transform + pos: 36.5,43.5 + parent: 2 - proto: Flash entities: - uid: 4987 @@ -47187,8 +49496,23 @@ entities: - uid: 10814 components: - type: Transform - pos: 81.401146,12.491636 + rot: 6.283185307179586 rad + pos: 86.53047,10.639359 parent: 2 + - type: HandheldLight + toggleActionEntity: 6399 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 6399 + - type: ActionsContainer - proto: Floodlight entities: - uid: 4500 @@ -47212,6 +49536,20 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 3176 + components: + - type: Transform + pos: 78.5,9.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 3177 + components: + - type: Transform + pos: 77.5,9.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 5254 components: - type: Transform @@ -47219,6 +49557,13 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 8501 + components: + - type: Transform + pos: 44.5,22.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 8960 components: - type: Transform @@ -47226,28 +49571,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 9003 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,8.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 10447 - components: - - type: Transform - pos: 51.5,15.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11900 - components: - - type: Transform - pos: 78.5,10.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 12288 components: - type: Transform @@ -47262,21 +49585,36 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 13606 - components: - - type: Transform - pos: 59.5,36.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 15199 + - uid: 14625 components: - type: Transform rot: 3.141592653589793 rad - pos: 77.5,10.5 + pos: 53.5,8.5 parent: 2 - type: Fixtures fixtures: {} + - uid: 15187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,15.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FloorTileItemSteel + entities: + - uid: 15899 + components: + - type: Transform + pos: 46.126938,19.027557 + parent: 2 +- proto: FloorTileItemSteelCheckerDark + entities: + - uid: 14824 + components: + - type: Transform + pos: 52.93832,41.69648 + parent: 2 - proto: FoodBanana entities: - uid: 9595 @@ -47304,13 +49642,6 @@ entities: - type: Transform pos: 27.618341,6.6818295 parent: 2 -- proto: FoodBowlBig - entities: - - uid: 5507 - components: - - type: Transform - pos: 70.488464,33.529522 - parent: 2 - proto: FoodBowlBigTrash entities: - uid: 5881 @@ -47318,6 +49649,11 @@ entities: - type: Transform pos: -0.3447714,-23.649889 parent: 2 + - uid: 15703 + components: + - type: Transform + pos: 51.59836,50.601345 + parent: 2 - proto: FoodBoxDonkpocket entities: - uid: 8862 @@ -47351,11 +49687,6 @@ entities: - type: Transform pos: 37.49929,-7.4188547 parent: 2 - - uid: 15373 - components: - - type: Transform - pos: 33.517593,17.70471 - parent: 2 - proto: FoodBreadBananaSlice entities: - uid: 8651 @@ -47364,6 +49695,13 @@ entities: rot: 4.008621544926427E-05 rad pos: 83.58996,8.734995 parent: 2 +- proto: FoodBurgerSoy + entities: + - uid: 5027 + components: + - type: Transform + pos: 52.57802,45.583874 + parent: 2 - proto: FoodCakeChocolateSlice entities: - uid: 10832 @@ -47374,23 +49712,23 @@ entities: parent: 2 - proto: FoodCartCold entities: - - uid: 1551 + - uid: 15801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-9.5 + rot: 1.5707963267948966 rad + pos: 29.5,-12.5 parent: 2 - proto: FoodCondimentBottleEnzyme entities: - uid: 296 components: - type: Transform - pos: 36.20302,-12.346379 + pos: 35.982536,-10.342439 parent: 2 - uid: 363 components: - type: Transform - pos: 36.093643,-12.174504 + pos: 35.77941,-10.201814 parent: 2 - proto: FoodFrozenPopsicleTrash entities: @@ -47418,6 +49756,16 @@ entities: parent: 2 - proto: FoodFrozenSnowconeTrash entities: + - uid: 2361 + components: + - type: Transform + pos: 46.984425,47.16262 + parent: 2 + - uid: 3570 + components: + - type: Transform + pos: 47.7188,45.85012 + parent: 2 - uid: 5884 components: - type: Transform @@ -47552,12 +49900,24 @@ entities: - type: Transform pos: 0.8896036,-25.587389 parent: 2 -- proto: FoodTinPeachesMaint - entities: - - uid: 5476 + - uid: 6172 components: - type: Transform - pos: 67.5,38.5 + pos: 62.99293,47.87387 + parent: 2 +- proto: FoodTinPeachesMaint + entities: + - uid: 15690 + components: + - type: Transform + pos: 71.43562,40.749683 + parent: 2 +- proto: Fork + entities: + - uid: 9241 + components: + - type: Transform + pos: 52.21605,45.55166 parent: 2 - proto: ForkPlastic entities: @@ -47571,7 +49931,15 @@ entities: - uid: 14279 components: - type: Transform - pos: 84.42593,28.556656 + pos: 84.54633,32.495792 + parent: 2 +- proto: GasCanisterBrokenBase + entities: + - uid: 15691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,41.5 parent: 2 - proto: GasFilterFlipped entities: @@ -47631,6 +49999,16 @@ entities: rot: 1.5707963267948966 rad pos: 45.5,-39.5 parent: 2 + - uid: 10047 + components: + - type: MetaData + name: gas filter (Waste Filter) + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11767 components: - type: Transform @@ -47751,6 +50129,15 @@ entities: color: '#947507FF' - proto: GasPassiveVent entities: + - uid: 2424 + components: + - type: Transform + pos: 64.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - type: AtmosPipeLayers + pipeLayer: Secondary - uid: 3951 components: - type: Transform @@ -47807,30 +50194,36 @@ entities: rot: 3.141592653589793 rad pos: 79.5,-9.5 parent: 2 - - uid: 10426 + - uid: 8614 components: - type: Transform - pos: 63.5,28.5 + pos: 62.5,27.5 parent: 2 - - uid: 10427 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12582 components: - type: Transform - pos: 64.5,28.5 + pos: 63.5,27.5 parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 14345 components: - type: Transform pos: 82.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14621 components: - type: Transform pos: 71.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15275 components: - type: Transform @@ -47839,6 +50232,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 15841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' - proto: GasPipeBend entities: - uid: 34 @@ -47881,6 +50282,45 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 652 + components: + - type: Transform + pos: 22.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 746 components: - type: Transform @@ -47943,6 +50383,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 1275 + components: + - type: Transform + pos: 60.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1306 components: - type: Transform @@ -48068,14 +50515,6 @@ entities: rot: 3.141592653589793 rad pos: 42.5,-25.5 parent: 2 - - uid: 2290 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2383 components: - type: Transform @@ -48103,6 +50542,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3518 components: - type: Transform @@ -48205,14 +50652,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4219 components: - type: Transform @@ -48220,11 +50659,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4362 + - uid: 4366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,25.5 + pos: 48.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -48259,6 +50705,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4977 + components: + - type: Transform + pos: 47.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5010 components: - type: Transform @@ -48281,14 +50734,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 5109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5208 components: - type: Transform @@ -48342,14 +50787,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6521 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 6569 components: - type: Transform @@ -48366,6 +50803,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7217 components: - type: Transform @@ -48404,50 +50849,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8599 + - uid: 8488 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,22.5 + pos: 64.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8620 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8621 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8662 - components: - - type: Transform - pos: 47.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8663 + color: '#947507FF' + - uid: 8546 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,30.5 + pos: 46.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -48490,6 +50920,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10169 components: - type: Transform @@ -48506,51 +50952,33 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10334 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10335 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10364 + - uid: 10357 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,19.5 + pos: 55.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10381 + components: + - type: Transform + pos: 58.5,19.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 10382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,13.5 + pos: 66.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10384 + color: '#0055CCFF' + - uid: 10520 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10399 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,9.5 + pos: 64.5,14.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -48605,6 +51033,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' + - uid: 11650 + components: + - type: Transform + pos: 41.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11707 components: - type: Transform @@ -48753,37 +51188,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' - - uid: 13520 + - uid: 13529 components: - type: Transform - pos: 56.5,34.5 + pos: 64.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 13521 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13549 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' + color: '#947507FF' - uid: 13993 components: - type: Transform @@ -48854,7 +51265,7 @@ entities: pos: 90.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14422 components: - type: Transform @@ -48862,7 +51273,7 @@ entities: pos: 89.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14425 components: - type: Transform @@ -48877,7 +51288,7 @@ entities: pos: 92.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14586 components: - type: Transform @@ -48924,7 +51335,30 @@ entities: pos: 71.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 14893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14898 + components: + - type: Transform + pos: 30.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14958 components: - type: Transform @@ -48996,6 +51430,94 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 15387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15551 + components: + - type: Transform + pos: 39.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' +- proto: GasPipeBendAlt2 + entities: + - uid: 1812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14788 + components: + - type: Transform + pos: 64.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeFourway entities: - uid: 62 @@ -49047,13 +51569,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 5200 - components: - - type: Transform - pos: 42.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5240 components: - type: Transform @@ -49075,34 +51590,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8581 + - uid: 10049 components: - type: Transform - pos: 39.5,24.5 + pos: 60.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8589 - components: - - type: Transform - pos: 40.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10054 - components: - - type: Transform - pos: 59.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10374 - components: - - type: Transform - pos: 58.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 11732 components: - type: Transform @@ -49117,6 +51611,40 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14851 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15872 + components: + - type: Transform + pos: 58.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeHalf + entities: + - uid: 15875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' +- proto: GasPipeManifold + entities: + - uid: 8695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeSensor entities: - uid: 11796 @@ -49202,6 +51730,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 65 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 68 components: - type: Transform @@ -49296,6 +51832,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 234 components: - type: Transform @@ -49320,14 +51864,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 318 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 352 components: - type: Transform @@ -49474,14 +52010,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' - - uid: 591 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 617 components: - type: Transform @@ -49490,6 +52018,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 666 components: - type: Transform @@ -49521,13 +52065,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 671 - components: - - type: Transform - pos: 46.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 672 components: - type: Transform @@ -49552,6 +52089,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' + - uid: 748 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 755 components: - type: Transform @@ -49952,13 +52496,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' - - uid: 1223 - components: - - type: Transform - pos: 46.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1224 components: - type: Transform @@ -50007,6 +52544,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' + - uid: 1274 + components: + - type: Transform + pos: 37.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1300 components: - type: Transform @@ -50116,14 +52660,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1521 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1528 components: - type: Transform @@ -50533,20 +53069,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 1749 - components: - - type: Transform - pos: 25.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1762 - components: - - type: Transform - pos: 25.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1764 components: - type: Transform @@ -50582,13 +53104,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 1774 - components: - - type: Transform - pos: 25.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1800 components: - type: Transform @@ -50776,6 +53291,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 1847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1848 components: - type: Transform @@ -51369,6 +53892,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 2004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2021 components: - type: Transform @@ -51488,29 +54019,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2216 + - uid: 2235 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,31.5 + pos: 48.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2289 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2302 - components: - - type: Transform - pos: 40.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 2304 components: - type: Transform @@ -51519,13 +54035,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2305 - components: - - type: Transform - pos: 40.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2316 components: - type: Transform @@ -51547,14 +54056,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2326 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2381 components: - type: Transform @@ -51808,6 +54309,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2604 + components: + - type: Transform + pos: 48.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2667 components: - type: Transform @@ -51828,6 +54344,14 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-28.5 parent: 2 + - uid: 2716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2718 components: - type: Transform @@ -51882,6 +54406,22 @@ entities: rot: 3.141592653589793 rad pos: 44.5,-30.5 parent: 2 + - uid: 3036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3134 components: - type: Transform @@ -51890,45 +54430,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3216 + - uid: 3149 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3223 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3252 - components: - - type: Transform - pos: 46.5,29.5 + rot: 1.5707963267948966 rad + pos: 69.5,14.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3257 + - uid: 3150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,35.5 + rot: 1.5707963267948966 rad + pos: 67.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 3289 components: - type: Transform @@ -51971,6 +54488,14 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,-33.5 parent: 2 + - uid: 3374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3522 components: - type: Transform @@ -52145,14 +54670,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3965 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3970 components: - type: Transform @@ -52501,22 +55018,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4114 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4125 components: - type: Transform @@ -52525,22 +55026,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4133 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4155 components: - type: Transform @@ -52573,14 +55058,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4163 components: - type: Transform @@ -53014,13 +55491,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 4291 - components: - - type: Transform - pos: 25.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4352 components: - type: Transform @@ -53059,14 +55529,14 @@ entities: - type: Transform pos: 35.5,-27.5 parent: 2 - - uid: 4413 + - uid: 4405 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,34.5 + rot: -1.5707963267948966 rad + pos: 48.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 4420 components: - type: Transform @@ -53151,6 +55621,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4461 components: - type: Transform @@ -53238,6 +55716,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 5018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5023 components: - type: Transform @@ -53320,11 +55806,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5102 + - uid: 5109 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,35.5 + rot: 3.141592653589793 rad + pos: 47.5,39.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -53356,6 +55842,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5258 components: - type: Transform @@ -53366,6 +55860,29 @@ entities: - type: Transform pos: 79.5,-7.5 parent: 2 + - uid: 5260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5264 + components: + - type: Transform + pos: 53.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5268 components: - type: Transform @@ -53382,6 +55899,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 5280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5302 components: - type: Transform @@ -53396,6 +55921,36 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 5324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5384 + components: + - type: Transform + pos: 55.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5402 + components: + - type: Transform + pos: 55.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5429 components: - type: Transform @@ -53411,6 +55966,46 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5580 components: - type: Transform @@ -53473,27 +56068,51 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 6337 + - uid: 5931 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,34.5 + pos: 13.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6338 + color: '#03FCD3FF' + - uid: 6244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6288 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,26.5 + pos: 54.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6339 + color: '#0055CCFF' + - uid: 6325 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,23.5 + rot: -1.5707963267948966 rad + pos: 61.5,23.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -53579,14 +56198,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6536 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 6550 components: - type: Transform @@ -53760,6 +56371,8 @@ entities: - type: Transform pos: 30.5,-11.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6594 components: - type: Transform @@ -53888,14 +56501,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 6672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 6818 components: - type: Transform @@ -53927,14 +56532,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 6865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 6909 components: - type: Transform @@ -54057,6 +56654,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7410 components: - type: Transform @@ -54233,6 +56838,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 7528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7578 components: - type: Transform @@ -54264,14 +56877,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7790 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7819 components: - type: Transform @@ -54280,6 +56885,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' + - uid: 7829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7830 components: - type: Transform @@ -54563,6 +57176,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 8231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8295 components: - type: Transform @@ -54639,470 +57260,115 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8384 + - uid: 8368 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,34.5 + rot: -1.5707963267948966 rad + pos: 57.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8397 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 8399 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,35.5 + pos: 54.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8400 + - uid: 8445 components: - type: Transform rot: 3.141592653589793 rad - pos: 45.5,34.5 + pos: 49.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8401 + color: '#990000FF' + - uid: 8450 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,24.5 + pos: 49.5,29.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8402 + - uid: 8492 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,31.5 + pos: 46.5,42.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8403 + - uid: 8494 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8406 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,35.5 + pos: 45.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8409 + - uid: 8511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8410 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,35.5 + rot: -1.5707963267948966 rad + pos: 56.5,36.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8549 + - uid: 8527 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,23.5 + rot: -1.5707963267948966 rad + pos: 22.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 8551 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,23.5 + rot: -1.5707963267948966 rad + pos: 50.5,19.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8552 + - uid: 8561 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,23.5 + pos: 48.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8553 + color: '#0055CCFF' + - uid: 8567 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,23.5 + pos: 54.5,13.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8554 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8556 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8557 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8558 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8559 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8560 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8576 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8577 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8582 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8583 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8586 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8587 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8588 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8590 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8591 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8593 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8600 + - uid: 8602 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,24.5 + pos: 60.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8608 + components: + - type: Transform + pos: 25.5,30.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8604 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8605 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8606 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8611 - components: - - type: Transform - pos: 33.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8613 - components: - - type: Transform - pos: 33.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8614 - components: - - type: Transform - pos: 35.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8615 - components: - - type: Transform - pos: 35.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8616 - components: - - type: Transform - pos: 35.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8617 - components: - - type: Transform - pos: 35.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8618 - components: - - type: Transform - pos: 35.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8619 - components: - - type: Transform - pos: 35.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8622 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,19.5 + pos: 25.5,29.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8623 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8624 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8625 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8626 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8627 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8631 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8632 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8633 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8634 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8637 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8638 components: - type: Transform @@ -55110,86 +57376,37 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' - - uid: 8654 + - uid: 8662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,30.5 + pos: 27.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8655 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8660 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8672 + - uid: 8686 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,19.5 + pos: 46.5,18.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8673 + - uid: 8731 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,34.5 + pos: 50.5,33.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8678 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8680 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8681 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8683 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8713 + - uid: 8817 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,35.5 + pos: 51.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 8924 components: - type: Transform @@ -55201,6 +57418,51 @@ entities: - type: Transform pos: 42.5,-24.5 parent: 2 + - uid: 9035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9264 + components: + - type: Transform + pos: 54.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9267 + components: + - type: Transform + pos: 54.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9305 + components: + - type: Transform + pos: 56.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9309 components: - type: Transform @@ -55209,6 +57471,53 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9316 + components: + - type: Transform + pos: 56.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 9425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9534 components: - type: Transform @@ -55429,6 +57738,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9629 components: - type: Transform @@ -55482,6 +57799,22 @@ entities: - type: Transform pos: 42.5,-23.5 parent: 2 + - uid: 9750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 10045 components: - type: Transform @@ -55498,99 +57831,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10049 + - uid: 10054 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10052 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10055 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,17.5 + pos: 60.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10056 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,16.5 + rot: -1.5707963267948966 rad + pos: 47.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10058 + color: '#990000FF' + - uid: 10057 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,14.5 + rot: -1.5707963267948966 rad + pos: 49.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10059 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10060 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 10061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,14.5 + pos: 62.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10062 + components: + - type: Transform + pos: 60.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,14.5 + rot: -1.5707963267948966 rad + pos: 62.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -55646,14 +57929,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10115 + - uid: 10086 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,24.5 + pos: 62.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 10117 components: - type: Transform @@ -56077,20 +58359,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10323 components: - type: Transform - pos: 54.5,13.5 + pos: 58.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10324 - components: - - type: Transform - pos: 54.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 10325 components: - type: Transform @@ -56154,104 +58437,71 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10334 + components: + - type: Transform + pos: 25.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10337 - components: - - type: Transform - pos: 62.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10338 - components: - - type: Transform - pos: 62.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10339 - components: - - type: Transform - pos: 62.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10340 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10341 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10342 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,14.5 + pos: 28.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,14.5 + pos: 60.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,14.5 + rot: 1.5707963267948966 rad + pos: 59.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10348 + - uid: 10346 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,18.5 + pos: 56.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,18.5 + rot: 1.5707963267948966 rad + pos: 26.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 10350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,18.5 + rot: 1.5707963267948966 rad + pos: 57.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10353 + color: '#990000FF' + - uid: 10351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,24.5 + pos: 60.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -56262,30 +58512,38 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10362 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10367 + - uid: 10360 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,19.5 + pos: 65.5,14.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 10361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 10368 components: - type: Transform @@ -56313,8 +58571,8 @@ entities: - uid: 10371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,19.5 + rot: -1.5707963267948966 rad + pos: 48.5,19.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -56366,59 +58624,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10385 + - uid: 10383 components: - type: Transform - pos: 63.5,14.5 + pos: 60.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10386 - components: - - type: Transform - pos: 63.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10387 - components: - - type: Transform - pos: 63.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 10388 components: - type: Transform rot: -1.5707963267948966 rad - pos: 64.5,15.5 + pos: 38.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 10392 components: - type: Transform @@ -56451,120 +58671,57 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10396 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 10397 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,11.5 + pos: 58.5,11.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10405 - components: - - type: Transform - pos: 58.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10406 - components: - - type: Transform - pos: 58.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10407 - components: - - type: Transform - pos: 58.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10408 + - uid: 10402 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,23.5 + pos: 47.5,42.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10409 + - uid: 10413 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,23.5 + pos: 50.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10428 - components: - - type: Transform - pos: 63.5,24.5 - parent: 2 - - uid: 10429 - components: - - type: Transform - pos: 63.5,25.5 - parent: 2 - - uid: 10430 - components: - - type: Transform - pos: 63.5,26.5 - parent: 2 - - uid: 10431 - components: - - type: Transform - pos: 63.5,27.5 - parent: 2 - - uid: 10432 - components: - - type: Transform - pos: 64.5,27.5 - parent: 2 - - uid: 10433 - components: - - type: Transform - pos: 64.5,26.5 - parent: 2 - - uid: 10434 - components: - - type: Transform - pos: 64.5,25.5 - parent: 2 - - uid: 10435 - components: - - type: Transform - pos: 64.5,24.5 - parent: 2 - - uid: 10453 + color: '#0055CCFF' + - uid: 10522 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,29.5 + pos: 33.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,23.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -56645,14 +58802,6 @@ entities: - type: Transform pos: 43.5,-23.5 parent: 2 - - uid: 10840 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 11101 components: - type: Transform @@ -57029,6 +59178,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 11699 components: - type: Transform @@ -57249,6 +59414,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 11879 + components: + - type: Transform + pos: 41.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11925 components: - type: Transform @@ -57358,6 +59530,38 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 12046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 12301 components: - type: Transform @@ -57366,6 +59570,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' + - uid: 12530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12729 components: - type: Transform @@ -57450,6 +59670,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 13326 + components: + - type: Transform + pos: 41.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 13448 components: - type: Transform @@ -57458,97 +59685,10 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 13498 + - uid: 13641 components: - type: Transform - pos: 46.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13519 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13522 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13524 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13525 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13548 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13551 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13552 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13553 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13554 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13555 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13575 - components: - - type: Transform - pos: 46.5,33.5 + pos: 55.5,20.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -58008,14 +60148,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 14171 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14172 components: - type: Transform @@ -58023,7 +60155,7 @@ entities: pos: 82.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14328 components: - type: Transform @@ -58032,6 +60164,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14370 components: - type: Transform @@ -58039,7 +60187,7 @@ entities: pos: 82.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14371 components: - type: Transform @@ -58047,7 +60195,7 @@ entities: pos: 82.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14375 components: - type: Transform @@ -58055,7 +60203,7 @@ entities: pos: 83.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14378 components: - type: Transform @@ -58109,7 +60257,7 @@ entities: pos: 85.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14414 components: - type: Transform @@ -58117,7 +60265,7 @@ entities: pos: 86.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14415 components: - type: Transform @@ -58125,7 +60273,7 @@ entities: pos: 87.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14416 components: - type: Transform @@ -58172,7 +60320,7 @@ entities: pos: 88.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14428 components: - type: Transform @@ -58180,7 +60328,7 @@ entities: pos: 89.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14430 components: - type: Transform @@ -58188,7 +60336,7 @@ entities: pos: 91.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14584 components: - type: Transform @@ -58290,7 +60438,7 @@ entities: pos: 71.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14619 components: - type: Transform @@ -58298,7 +60446,7 @@ entities: pos: 71.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14620 components: - type: Transform @@ -58306,7 +60454,15 @@ entities: pos: 71.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 14643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 14665 components: - type: Transform @@ -58328,6 +60484,259 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14846 + components: + - type: Transform + pos: 37.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14875 + components: + - type: Transform + pos: 37.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14876 + components: + - type: Transform + pos: 39.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14877 + components: + - type: Transform + pos: 39.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14878 + components: + - type: Transform + pos: 39.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14889 + components: + - type: Transform + pos: 27.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14891 + components: + - type: Transform + pos: 34.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14894 + components: + - type: Transform + pos: 35.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14899 + components: + - type: Transform + pos: 33.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14900 + components: + - type: Transform + pos: 33.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14901 + components: + - type: Transform + pos: 33.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14902 + components: + - type: Transform + pos: 33.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14903 + components: + - type: Transform + pos: 33.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14904 + components: + - type: Transform + pos: 33.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14924 + components: + - type: Transform + pos: 33.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14927 + components: + - type: Transform + pos: 33.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14928 + components: + - type: Transform + pos: 33.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14929 + components: + - type: Transform + pos: 33.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14930 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 14957 components: - type: Transform @@ -58344,12 +60753,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 14962 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,17.5 - parent: 2 - uid: 14964 components: - type: Transform @@ -58357,6 +60760,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 14974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 15087 components: - type: Transform @@ -58389,6 +60816,45 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 15127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15143 + components: + - type: Transform + pos: 40.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 15162 components: - type: Transform @@ -58500,6 +60966,349 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 15385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15468 + components: + - type: Transform + pos: 53.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15470 + components: + - type: Transform + pos: 53.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15503 + components: + - type: Transform + pos: 46.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15504 + components: + - type: Transform + pos: 46.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15505 + components: + - type: Transform + pos: 46.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15506 + components: + - type: Transform + pos: 46.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15507 + components: + - type: Transform + pos: 46.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15508 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15509 + components: + - type: Transform + pos: 46.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15525 + components: + - type: Transform + pos: 39.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15628 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraightAlt1 + entities: + - uid: 8629 + components: + - type: Transform + pos: 64.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 8705 + components: + - type: Transform + pos: 64.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 10601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GasPipeStraightAlt2 + entities: + - uid: 4360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeTJunction entities: - uid: 14 @@ -58518,6 +61327,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 224 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 347 components: - type: Transform @@ -58539,6 +61355,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 426 components: - type: Transform @@ -58629,6 +61453,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1304 components: - type: Transform @@ -58778,6 +61610,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2278 + components: + - type: Transform + pos: 42.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2529 components: - type: Transform @@ -58799,6 +61638,13 @@ entities: rot: 1.5707963267948966 rad pos: 43.5,-26.5 parent: 2 + - uid: 3067 + components: + - type: Transform + pos: 50.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3124 components: - type: Transform @@ -58807,14 +61653,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3258 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3351 components: - type: Transform @@ -58831,6 +61669,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 3479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3521 components: - type: Transform @@ -58839,14 +61685,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3667 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3691 components: - type: Transform @@ -58962,22 +61800,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 4131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4188 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4199 components: - type: Transform @@ -58993,11 +61815,25 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4361 + - uid: 4365 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,18.5 + pos: 63.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4368 + components: + - type: Transform + pos: 62.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -59232,22 +62068,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5238 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5239 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5241 components: - type: Transform @@ -59256,13 +62076,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5242 - components: - - type: Transform - pos: 26.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5284 components: - type: Transform @@ -59271,21 +62084,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 5509 + - uid: 5290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 5323 components: - type: Transform rot: 3.141592653589793 rad - pos: 64.5,14.5 + pos: 62.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6336 - components: - - type: Transform - pos: 48.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 6423 components: - type: Transform @@ -59346,6 +62160,8 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,-10.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6601 components: - type: Transform @@ -59370,6 +62186,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6850 + components: + - type: Transform + pos: 51.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7169 components: - type: Transform @@ -59441,11 +62264,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7802 + - uid: 7741 components: - type: Transform - pos: 50.5,24.5 + rot: 1.5707963267948966 rad + pos: 48.5,40.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7881 components: - type: Transform @@ -59509,33 +62335,39 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8555 + - uid: 8664 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,24.5 + pos: 37.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8561 + - uid: 8678 components: - type: Transform - pos: 33.5,23.5 + rot: 1.5707963267948966 rad + pos: 25.5,31.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8563 + - uid: 8798 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,24.5 + pos: 56.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8594 + - uid: 9034 components: - type: Transform - pos: 35.5,24.5 + pos: 49.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9039 + components: + - type: Transform + pos: 50.5,32.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -59547,6 +62379,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 9408 + components: + - type: Transform + pos: 39.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9533 components: - type: Transform @@ -59586,44 +62425,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10047 + - uid: 9894 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,24.5 + pos: 55.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10048 - components: - - type: Transform - pos: 59.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10057 + color: '#990000FF' + - uid: 10052 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,14.5 + pos: 64.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10062 + - uid: 10059 components: - type: Transform - pos: 54.5,14.5 + rot: 3.141592653589793 rad + pos: 55.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 10141 components: - type: Transform @@ -59679,76 +62504,68 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10336 + - uid: 10331 components: - type: Transform - pos: 62.5,14.5 + rot: -1.5707963267948966 rad + pos: 18.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10357 + color: '#03FCD3FF' + - uid: 10342 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,10.5 + pos: 35.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10360 + - uid: 10356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10375 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,29.5 + pos: 25.5,22.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10363 + - uid: 10385 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10380 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10381 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10383 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10404 - components: - - type: Transform - pos: 58.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10846 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,30.5 + pos: 54.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10603 + components: + - type: Transform + pos: 37.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10889 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' - uid: 10907 components: - type: Transform @@ -59902,11 +62719,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' - - uid: 13577 + - uid: 13120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,31.5 + rot: 3.141592653589793 rad + pos: 41.5,31.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -59948,14 +62765,14 @@ entities: pos: 82.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14376 components: - type: Transform pos: 84.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14380 components: - type: Transform @@ -59985,7 +62802,76 @@ entities: pos: 90.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 14843 + components: + - type: Transform + pos: 33.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15380 + components: + - type: Transform + pos: 47.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15529 + components: + - type: Transform + pos: 53.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPort entities: - uid: 1945 @@ -60075,12 +62961,6 @@ entities: rot: 3.141592653589793 rad pos: 63.5,22.5 parent: 2 - - uid: 10425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,22.5 - parent: 2 - uid: 12871 components: - type: Transform @@ -60109,6 +62989,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' + - uid: 13581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,22.5 + parent: 2 + - type: AtmosPipeLayers + pipeLayer: Secondary - uid: 14391 components: - type: Transform @@ -60118,6 +63006,18 @@ entities: color: '#0335FCFF' - proto: GasPressurePump entities: + - uid: 2355 + components: + - type: MetaData + name: gas pump (Distro In) + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,24.5 + parent: 2 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2437 components: - type: Transform @@ -60184,6 +63084,8 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,-23.5 parent: 2 + - type: GasPressurePump + targetPressure: 4500 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5037 @@ -60203,6 +63105,26 @@ entities: targetPressure: 4500 - type: AtmosPipeColor color: '#947507FF' + - uid: 5497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6334 + components: + - type: MetaData + name: gas pump (Gas In) + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - type: AtmosPipeLayers + pipeLayer: Secondary - uid: 6583 components: - type: Transform @@ -60211,14 +63133,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7803 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7883 components: - type: Transform @@ -60226,17 +63140,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' - - uid: 10423 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,23.5 - parent: 2 - - uid: 10424 - components: - - type: Transform - pos: 64.5,23.5 - parent: 2 - uid: 11577 components: - type: Transform @@ -60251,6 +63154,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14374 components: - type: Transform @@ -60258,7 +63169,7 @@ entities: pos: 82.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14390 components: - type: Transform @@ -60268,6 +63179,14 @@ entities: color: '#0335FCFF' - proto: GasThermoMachineFreezer entities: + - uid: 631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 3966 components: - type: Transform @@ -60286,12 +63205,16 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,-40.5 parent: 2 - - uid: 7984 + - uid: 5320 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,23.5 parent: 2 + - type: GasThermoMachine + targetTemperature: 270 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11775 components: - type: Transform @@ -60306,6 +63229,8 @@ entities: - type: Transform pos: 30.5,-9.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - type: GasThermoMachine targetTemperature: 0 - proto: GasThermoMachineHeater @@ -60412,14 +63337,6 @@ entities: - 14067 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1560 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1625 components: - type: Transform @@ -60431,17 +63348,6 @@ entities: - 1017 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2301 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 10988 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2393 components: - type: Transform @@ -60456,14 +63362,23 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3152 + - uid: 3064 components: - type: Transform - pos: 56.5,37.5 + rot: 1.5707963267948966 rad + pos: 46.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13512 + - 5101 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3692 @@ -60490,6 +63405,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5242 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4460 components: - type: Transform @@ -60543,6 +63469,16 @@ entities: - 6126 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5426 + components: + - type: Transform + pos: 40.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 10135 - uid: 5533 components: - type: Transform @@ -60573,6 +63509,17 @@ entities: - 10930 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 14653 - uid: 5964 components: - type: Transform @@ -60595,6 +63542,8 @@ entities: rot: 3.141592653589793 rad pos: 30.5,-12.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6593 components: - type: Transform @@ -60634,16 +63583,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6774 - components: - - type: Transform - pos: 39.5,31.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 10988 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 6778 components: - type: Transform @@ -60659,6 +63598,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - type: DeviceNetwork + deviceLists: + - 1520 - uid: 6908 components: - type: Transform @@ -60702,6 +63652,8 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,24.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7838 components: - type: Transform @@ -60743,6 +63695,9 @@ entities: - type: Transform pos: 26.5,21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8242 @@ -60750,6 +63705,9 @@ entities: - type: Transform pos: 22.5,21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8296 @@ -60776,76 +63734,47 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8349 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13512 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8575 - components: - - type: Transform - pos: 34.5,25.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 5859 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8596 + - uid: 8485 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,24.5 + pos: 58.5,36.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14171 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10576 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - type: DeviceNetwork deviceLists: - 8571 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8597 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15476 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8607 - components: - - type: Transform - pos: 39.5,27.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12530 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8629 - components: - - type: Transform - pos: 38.5,18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12528 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8684 - components: - - type: Transform - pos: 42.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9358 components: - type: Transform @@ -60866,6 +63795,9 @@ entities: - type: Transform pos: 26.5,36.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 - type: AtmosPipeColor color: '#0055CCFF' - uid: 9581 @@ -60890,6 +63822,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10409 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10163 components: - type: Transform @@ -60954,78 +63897,26 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10331 - components: - - type: Transform - pos: 48.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10346 + - uid: 10340 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10347 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10351 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10352 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10355 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10356 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10358 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10452 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,29.5 + pos: 63.5,14.5 parent: 2 - type: DeviceNetwork deviceLists: - - 5859 + - 10469 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10643 @@ -61120,6 +64011,25 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13980 components: - type: Transform @@ -61171,7 +64081,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 11680 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14385 @@ -61182,7 +64092,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 11680 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14420 @@ -61193,7 +64103,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 2602 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14433 @@ -61204,7 +64114,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 2602 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14613 @@ -61237,6 +64147,27 @@ entities: - 5 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14521 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14941 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8571 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 15296 components: - type: Transform @@ -61248,8 +64179,52 @@ entities: - 15297 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 15524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5398 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10419 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 15578 - proto: GasVentScrubber entities: + - uid: 3 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10409 + - type: AtmosPipeColor + color: '#990000FF' - uid: 865 components: - type: Transform @@ -61260,6 +64235,16 @@ entities: - 1017 - type: AtmosPipeColor color: '#990000FF' + - uid: 1231 + components: + - type: Transform + pos: 34.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8571 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1232 components: - type: Transform @@ -61293,28 +64278,6 @@ entities: - 14067 - type: AtmosPipeColor color: '#990000FF' - - uid: 2263 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,29.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 5859 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2691 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 5859 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3475 components: - type: Transform @@ -61347,11 +64310,9 @@ entities: - uid: 4414 components: - type: Transform - pos: 50.5,35.5 + rot: -1.5707963267948966 rad + pos: 49.5,40.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13512 - type: AtmosPipeColor color: '#990000FF' - uid: 4447 @@ -61378,6 +64339,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 5450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5398 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5679 components: - type: Transform @@ -61398,6 +64370,17 @@ entities: - 10930 - type: AtmosPipeColor color: '#990000FF' + - uid: 5821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 14653 - uid: 5968 components: - type: Transform @@ -61512,17 +64495,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 7760 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,31.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 10988 - - type: AtmosPipeColor - color: '#990000FF' - uid: 7837 components: - type: Transform @@ -61575,64 +64547,31 @@ entities: - type: Transform pos: 23.5,22.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 - type: AtmosPipeColor color: '#990000FF' - - uid: 8595 + - uid: 8498 + components: + - type: Transform + pos: 53.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14171 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8625 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 8571 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8598 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15476 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8610 - components: - - type: Transform - pos: 40.5,26.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12530 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8630 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,19.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12528 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8685 - components: - - type: Transform - pos: 41.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8810 - components: - - type: Transform - rot: 3.141592653589793 rad pos: 26.5,22.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 11165 + - 15466 - type: AtmosPipeColor color: '#990000FF' - uid: 9359 @@ -61643,6 +64582,34 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 9406 + components: + - type: Transform + pos: 62.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9442 + components: + - type: Transform + pos: 55.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10469 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5242 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9546 components: - type: Transform @@ -61672,6 +64639,9 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,37.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 - type: AtmosPipeColor color: '#990000FF' - uid: 9636 @@ -61681,6 +64651,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 10058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10576 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10128 components: - type: Transform @@ -61744,6 +64725,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 10324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5101 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10365 components: - type: Transform @@ -61752,69 +64744,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10366 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10401 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10402 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10403 - components: - - type: Transform - pos: 57.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10411 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10412 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 10652 components: - type: Transform @@ -61899,15 +64828,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 13517 + - uid: 12529 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,33.5 + rot: 1.5707963267948966 rad + pos: 44.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13512 - type: AtmosPipeColor color: '#990000FF' - uid: 13985 @@ -61962,9 +64904,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 11680 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14377 components: - type: Transform @@ -61973,9 +64915,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 11680 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14421 components: - type: Transform @@ -61984,9 +64926,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 2602 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14432 components: - type: Transform @@ -61994,9 +64936,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 2602 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14616 components: - type: Transform @@ -62007,7 +64949,7 @@ entities: deviceLists: - 14615 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14667 components: - type: Transform @@ -62029,6 +64971,28 @@ entities: - 5 - type: AtmosPipeColor color: '#990000FF' + - uid: 14852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14521 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8571 + - type: AtmosPipeColor + color: '#990000FF' - uid: 14960 components: - type: Transform @@ -62040,6 +65004,39 @@ entities: - 7962 - type: AtmosPipeColor color: '#990000FF' + - uid: 15490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 15578 - proto: GasVolumePump entities: - uid: 1238 @@ -62127,11 +65124,10 @@ entities: parent: 2 - proto: GlassBoxLaserFilled entities: - - uid: 5106 + - uid: 11681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,39.5 + pos: 31.5,43.5 parent: 2 - proto: GlowstickRed entities: @@ -62149,16 +65145,6 @@ entities: parent: 2 - proto: Grille entities: - - uid: 18 - components: - - type: Transform - pos: 57.5,46.5 - parent: 2 - - uid: 19 - components: - - type: Transform - pos: 55.5,46.5 - parent: 2 - uid: 85 components: - type: Transform @@ -62264,16 +65250,6 @@ entities: - type: Transform pos: -9.5,-15.5 parent: 2 - - uid: 660 - components: - - type: Transform - pos: 17.5,-16.5 - parent: 2 - - uid: 661 - components: - - type: Transform - pos: 17.5,-18.5 - parent: 2 - uid: 663 components: - type: Transform @@ -62514,16 +65490,6 @@ entities: - type: Transform pos: 34.5,-58.5 parent: 2 - - uid: 1254 - components: - - type: Transform - pos: 38.5,-10.5 - parent: 2 - - uid: 1274 - components: - - type: Transform - pos: 39.5,32.5 - parent: 2 - uid: 1338 components: - type: Transform @@ -62654,16 +65620,6 @@ entities: - type: Transform pos: -5.5,16.5 parent: 2 - - uid: 1999 - components: - - type: Transform - pos: 5.5,22.5 - parent: 2 - - uid: 2000 - components: - - type: Transform - pos: 4.5,22.5 - parent: 2 - uid: 2001 components: - type: Transform @@ -62684,16 +65640,6 @@ entities: - type: Transform pos: 4.5,25.5 parent: 2 - - uid: 2009 - components: - - type: Transform - pos: 5.5,28.5 - parent: 2 - - uid: 2010 - components: - - type: Transform - pos: 4.5,28.5 - parent: 2 - uid: 2013 components: - type: Transform @@ -62729,90 +65675,40 @@ entities: - type: Transform pos: 24.5,12.5 parent: 2 - - uid: 2236 + - uid: 2247 components: - type: Transform - pos: 28.5,21.5 + pos: 30.5,29.5 parent: 2 - - uid: 2237 + - uid: 2249 components: - type: Transform - pos: 28.5,20.5 + pos: 62.5,33.5 parent: 2 - - uid: 2238 + - uid: 2250 components: - type: Transform - pos: 28.5,18.5 + pos: 29.5,29.5 parent: 2 - - uid: 2239 + - uid: 2308 components: - type: Transform - pos: 28.5,17.5 + pos: 40.5,29.5 parent: 2 - - uid: 2254 + - uid: 2309 components: - type: Transform - pos: 31.5,21.5 + pos: 39.5,29.5 parent: 2 - - uid: 2255 + - uid: 2311 components: - type: Transform - pos: 31.5,17.5 - parent: 2 - - uid: 2281 - components: - - type: Transform - pos: 44.5,34.5 - parent: 2 - - uid: 2282 - components: - - type: Transform - pos: 44.5,35.5 - parent: 2 - - uid: 2283 - components: - - type: Transform - pos: 44.5,36.5 - parent: 2 - - uid: 2351 - components: - - type: Transform - pos: 37.5,24.5 - parent: 2 - - uid: 2352 - components: - - type: Transform - pos: 37.5,23.5 - parent: 2 - - uid: 2357 - components: - - type: Transform - pos: 41.5,25.5 + pos: 35.5,25.5 parent: 2 - uid: 2358 components: - type: Transform - pos: 37.5,21.5 - parent: 2 - - uid: 2359 - components: - - type: Transform - pos: 38.5,20.5 - parent: 2 - - uid: 2365 - components: - - type: Transform - pos: 38.5,25.5 - parent: 2 - - uid: 2371 - components: - - type: Transform - pos: 42.5,24.5 - parent: 2 - - uid: 2372 - components: - - type: Transform - pos: 42.5,22.5 + pos: 74.5,52.5 parent: 2 - uid: 2392 components: @@ -62829,15 +65725,20 @@ entities: - type: Transform pos: 28.5,-27.5 parent: 2 - - uid: 2456 + - uid: 2448 components: - type: Transform - pos: 43.5,16.5 + pos: 70.5,51.5 parent: 2 - - uid: 2457 + - uid: 2468 components: - type: Transform - pos: 41.5,16.5 + pos: 41.5,39.5 + parent: 2 + - uid: 2481 + components: + - type: Transform + pos: 43.5,39.5 parent: 2 - uid: 2512 components: @@ -62859,6 +65760,16 @@ entities: - type: Transform pos: 39.5,5.5 parent: 2 + - uid: 2571 + components: + - type: Transform + pos: 74.5,51.5 + parent: 2 + - uid: 2600 + components: + - type: Transform + pos: 69.5,51.5 + parent: 2 - uid: 2618 components: - type: Transform @@ -62914,16 +65825,6 @@ entities: - type: Transform pos: 13.5,42.5 parent: 2 - - uid: 2676 - components: - - type: Transform - pos: 24.5,34.5 - parent: 2 - - uid: 2677 - components: - - type: Transform - pos: 23.5,34.5 - parent: 2 - uid: 2734 components: - type: Transform @@ -63179,230 +66080,46 @@ entities: - type: Transform pos: 64.5,-2.5 parent: 2 - - uid: 3045 + - uid: 3129 components: - type: Transform - pos: 55.5,12.5 + pos: 35.5,28.5 parent: 2 - - uid: 3046 + - uid: 3142 components: - type: Transform - pos: 53.5,12.5 + pos: 71.5,51.5 parent: 2 - - uid: 3067 + - uid: 3261 components: - type: Transform - pos: 42.5,40.5 + pos: 39.5,53.5 parent: 2 - - uid: 3068 + - uid: 3264 components: - type: Transform - pos: 41.5,40.5 + pos: 37.5,53.5 parent: 2 - - uid: 3090 + - uid: 3265 components: - type: Transform - pos: 43.5,47.5 - parent: 2 - - uid: 3091 - components: - - type: Transform - pos: 44.5,47.5 - parent: 2 - - uid: 3092 - components: - - type: Transform - pos: 45.5,47.5 - parent: 2 - - uid: 3093 - components: - - type: Transform - pos: 45.5,48.5 - parent: 2 - - uid: 3094 - components: - - type: Transform - pos: 46.5,48.5 - parent: 2 - - uid: 3095 - components: - - type: Transform - pos: 47.5,48.5 - parent: 2 - - uid: 3096 - components: - - type: Transform - pos: 48.5,48.5 - parent: 2 - - uid: 3097 - components: - - type: Transform - pos: 48.5,49.5 - parent: 2 - - uid: 3106 - components: - - type: Transform - pos: 46.5,45.5 - parent: 2 - - uid: 3107 - components: - - type: Transform - pos: 47.5,45.5 - parent: 2 - - uid: 3108 - components: - - type: Transform - pos: 48.5,45.5 - parent: 2 - - uid: 3109 - components: - - type: Transform - pos: 49.5,45.5 - parent: 2 - - uid: 3114 - components: - - type: Transform - pos: 50.5,46.5 - parent: 2 - - uid: 3115 - components: - - type: Transform - pos: 50.5,47.5 - parent: 2 - - uid: 3116 - components: - - type: Transform - pos: 51.5,47.5 - parent: 2 - - uid: 3117 - components: - - type: Transform - pos: 52.5,47.5 - parent: 2 - - uid: 3126 - components: - - type: Transform - pos: 62.5,47.5 - parent: 2 - - uid: 3136 - components: - - type: Transform - pos: 60.5,47.5 - parent: 2 - - uid: 3137 - components: - - type: Transform - pos: 61.5,47.5 - parent: 2 - - uid: 3139 - components: - - type: Transform - pos: 47.5,39.5 - parent: 2 - - uid: 3140 - components: - - type: Transform - pos: 47.5,38.5 - parent: 2 - - uid: 3141 - components: - - type: Transform - pos: 47.5,37.5 - parent: 2 - - uid: 3161 - components: - - type: Transform - pos: 47.5,30.5 - parent: 2 - - uid: 3166 - components: - - type: Transform - pos: 56.5,26.5 - parent: 2 - - uid: 3213 - components: - - type: Transform - pos: 62.5,46.5 + pos: 38.5,53.5 parent: 2 - uid: 3291 components: - type: Transform pos: 47.5,-31.5 parent: 2 - - uid: 3317 - components: - - type: Transform - pos: 64.5,49.5 - parent: 2 - - uid: 3320 - components: - - type: Transform - pos: 65.5,48.5 - parent: 2 - uid: 3322 components: - type: Transform pos: -21.5,-15.5 parent: 2 - - uid: 3323 - components: - - type: Transform - pos: 50.5,49.5 - parent: 2 - - uid: 3324 - components: - - type: Transform - pos: 51.5,49.5 - parent: 2 - - uid: 3325 - components: - - type: Transform - pos: 52.5,49.5 - parent: 2 - - uid: 3326 - components: - - type: Transform - pos: 53.5,49.5 - parent: 2 - - uid: 3329 - components: - - type: Transform - pos: 59.5,49.5 - parent: 2 - - uid: 3330 - components: - - type: Transform - pos: 60.5,49.5 - parent: 2 - - uid: 3331 - components: - - type: Transform - pos: 61.5,49.5 - parent: 2 - uid: 3332 components: - type: Transform - pos: 62.5,49.5 - parent: 2 - - uid: 3341 - components: - - type: Transform - pos: 66.5,48.5 - parent: 2 - - uid: 3342 - components: - - type: Transform - pos: 64.5,48.5 - parent: 2 - - uid: 3349 - components: - - type: Transform - pos: 67.5,48.5 - parent: 2 - - uid: 3350 - components: - - type: Transform - pos: 67.5,47.5 + rot: 3.141592653589793 rad + pos: 50.5,51.5 parent: 2 - uid: 3364 components: @@ -63434,35 +66151,25 @@ entities: - type: Transform pos: 74.5,44.5 parent: 2 - - uid: 3477 + - uid: 3406 components: - type: Transform - pos: 57.5,26.5 + pos: 44.5,39.5 parent: 2 - - uid: 3478 + - uid: 3476 components: - type: Transform - pos: 58.5,26.5 + pos: 42.5,39.5 parent: 2 - uid: 3489 components: - type: Transform pos: 48.5,19.5 parent: 2 - - uid: 3495 + - uid: 3491 components: - type: Transform - pos: 55.5,26.5 - parent: 2 - - uid: 3496 - components: - - type: Transform - pos: 48.5,17.5 - parent: 2 - - uid: 3497 - components: - - type: Transform - pos: 54.5,26.5 + pos: 41.5,38.5 parent: 2 - uid: 3529 components: @@ -63574,11 +66281,6 @@ entities: - type: Transform pos: 79.5,-8.5 parent: 2 - - uid: 3844 - components: - - type: Transform - pos: 36.5,50.5 - parent: 2 - uid: 3855 components: - type: Transform @@ -63724,16 +66426,6 @@ entities: - type: Transform pos: 24.5,-9.5 parent: 2 - - uid: 4319 - components: - - type: Transform - pos: 7.5,29.5 - parent: 2 - - uid: 4320 - components: - - type: Transform - pos: 6.5,29.5 - parent: 2 - uid: 4338 components: - type: Transform @@ -63809,56 +66501,6 @@ entities: - type: Transform pos: 37.5,-34.5 parent: 2 - - uid: 4400 - components: - - type: Transform - pos: 52.5,38.5 - parent: 2 - - uid: 4401 - components: - - type: Transform - pos: 52.5,39.5 - parent: 2 - - uid: 4402 - components: - - type: Transform - pos: 60.5,36.5 - parent: 2 - - uid: 4404 - components: - - type: Transform - pos: 65.5,37.5 - parent: 2 - - uid: 4405 - components: - - type: Transform - pos: 65.5,36.5 - parent: 2 - - uid: 4408 - components: - - type: Transform - pos: 40.5,29.5 - parent: 2 - - uid: 4409 - components: - - type: Transform - pos: 39.5,29.5 - parent: 2 - - uid: 4410 - components: - - type: Transform - pos: 57.5,30.5 - parent: 2 - - uid: 4411 - components: - - type: Transform - pos: 56.5,30.5 - parent: 2 - - uid: 4412 - components: - - type: Transform - pos: 55.5,30.5 - parent: 2 - uid: 4415 components: - type: Transform @@ -63929,6 +66571,12 @@ entities: - type: Transform pos: 47.5,-37.5 parent: 2 + - uid: 4699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,29.5 + parent: 2 - uid: 5043 components: - type: Transform @@ -63954,56 +66602,53 @@ entities: - type: Transform pos: 10.5,47.5 parent: 2 + - uid: 5413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,37.5 + parent: 2 - uid: 5431 components: - type: Transform pos: 45.5,-33.5 parent: 2 - - uid: 5483 + - uid: 5458 components: - type: Transform - pos: 72.5,33.5 + pos: 37.5,29.5 parent: 2 - - uid: 5484 + - uid: 5491 components: - type: Transform - pos: 72.5,32.5 + rot: -1.5707963267948966 rad + pos: 73.5,32.5 parent: 2 - - uid: 5485 + - uid: 5506 components: - type: Transform - pos: 72.5,31.5 + pos: 63.5,33.5 parent: 2 - - uid: 5486 + - uid: 5512 components: - type: Transform - pos: 72.5,29.5 - parent: 2 - - uid: 5487 - components: - - type: Transform - pos: 72.5,28.5 - parent: 2 - - uid: 5488 - components: - - type: Transform - pos: 72.5,27.5 + pos: 35.5,27.5 parent: 2 - uid: 5581 components: - type: Transform pos: 9.5,47.5 parent: 2 + - uid: 5649 + components: + - type: Transform + pos: 64.5,33.5 + parent: 2 - uid: 5743 components: - type: Transform pos: 4.5,33.5 parent: 2 - - uid: 5751 - components: - - type: Transform - pos: 21.5,53.5 - parent: 2 - uid: 5752 components: - type: Transform @@ -64024,11 +66669,6 @@ entities: - type: Transform pos: 26.5,53.5 parent: 2 - - uid: 5757 - components: - - type: Transform - pos: 27.5,53.5 - parent: 2 - uid: 5758 components: - type: Transform @@ -64059,16 +66699,6 @@ entities: - type: Transform pos: 33.5,53.5 parent: 2 - - uid: 5765 - components: - - type: Transform - pos: 56.5,49.5 - parent: 2 - - uid: 5966 - components: - - type: Transform - pos: 56.5,50.5 - parent: 2 - uid: 6124 components: - type: Transform @@ -64114,10 +66744,10 @@ entities: - type: Transform pos: 99.5,26.5 parent: 2 - - uid: 6493 + - uid: 6338 components: - type: Transform - pos: 27.5,55.5 + pos: 36.5,28.5 parent: 2 - uid: 6501 components: @@ -64194,11 +66824,26 @@ entities: - type: Transform pos: -9.5,1.5 parent: 2 + - uid: 6846 + components: + - type: Transform + pos: -0.5,-42.5 + parent: 2 + - uid: 6849 + components: + - type: Transform + pos: 60.5,51.5 + parent: 2 - uid: 6860 components: - type: Transform pos: -20.5,16.5 parent: 2 + - uid: 6868 + components: + - type: Transform + pos: 62.5,51.5 + parent: 2 - uid: 6874 components: - type: Transform @@ -64234,31 +66879,11 @@ entities: - type: Transform pos: -14.5,16.5 parent: 2 - - uid: 6915 - components: - - type: Transform - pos: 30.5,57.5 - parent: 2 - - uid: 6917 - components: - - type: Transform - pos: 25.5,57.5 - parent: 2 - uid: 6921 components: - type: Transform pos: 43.5,1.5 parent: 2 - - uid: 6922 - components: - - type: Transform - pos: 24.5,55.5 - parent: 2 - - uid: 6945 - components: - - type: Transform - pos: 33.5,16.5 - parent: 2 - uid: 7010 components: - type: Transform @@ -64389,11 +67014,6 @@ entities: - type: Transform pos: -20.5,-13.5 parent: 2 - - uid: 7753 - components: - - type: Transform - pos: 65.5,35.5 - parent: 2 - uid: 7764 components: - type: Transform @@ -64404,16 +67024,6 @@ entities: - type: Transform pos: 9.5,45.5 parent: 2 - - uid: 7795 - components: - - type: Transform - pos: 52.5,25.5 - parent: 2 - - uid: 7799 - components: - - type: Transform - pos: 52.5,23.5 - parent: 2 - uid: 7814 components: - type: Transform @@ -64554,15 +67164,163 @@ entities: - type: Transform pos: 17.5,-37.5 parent: 2 - - uid: 8389 + - uid: 8320 components: - type: Transform - pos: 47.5,31.5 + pos: 77.5,52.5 parent: 2 - - uid: 8567 + - uid: 8324 components: - type: Transform - pos: 34.5,16.5 + pos: 79.5,52.5 + parent: 2 + - uid: 8328 + components: + - type: Transform + pos: 78.5,52.5 + parent: 2 + - uid: 8337 + components: + - type: Transform + pos: 80.5,52.5 + parent: 2 + - uid: 8348 + components: + - type: Transform + pos: 82.5,52.5 + parent: 2 + - uid: 8349 + components: + - type: Transform + pos: 81.5,52.5 + parent: 2 + - uid: 8350 + components: + - type: Transform + pos: 84.5,52.5 + parent: 2 + - uid: 8351 + components: + - type: Transform + pos: 83.5,52.5 + parent: 2 + - uid: 8352 + components: + - type: Transform + pos: 85.5,52.5 + parent: 2 + - uid: 8353 + components: + - type: Transform + pos: 89.5,52.5 + parent: 2 + - uid: 8354 + components: + - type: Transform + pos: 87.5,52.5 + parent: 2 + - uid: 8355 + components: + - type: Transform + pos: 89.5,51.5 + parent: 2 + - uid: 8356 + components: + - type: Transform + pos: 89.5,38.5 + parent: 2 + - uid: 8357 + components: + - type: Transform + pos: 89.5,50.5 + parent: 2 + - uid: 8371 + components: + - type: Transform + pos: 89.5,40.5 + parent: 2 + - uid: 8372 + components: + - type: Transform + pos: 61.5,51.5 + parent: 2 + - uid: 8375 + components: + - type: Transform + pos: 89.5,39.5 + parent: 2 + - uid: 8383 + components: + - type: Transform + pos: 89.5,49.5 + parent: 2 + - uid: 8385 + components: + - type: Transform + pos: 89.5,41.5 + parent: 2 + - uid: 8519 + components: + - type: Transform + pos: 36.5,23.5 + parent: 2 + - uid: 8531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,28.5 + parent: 2 + - uid: 8532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,28.5 + parent: 2 + - uid: 8545 + components: + - type: Transform + pos: 53.5,12.5 + parent: 2 + - uid: 8584 + components: + - type: Transform + pos: 75.5,52.5 + parent: 2 + - uid: 8586 + components: + - type: Transform + pos: 76.5,52.5 + parent: 2 + - uid: 8594 + components: + - type: Transform + pos: 54.5,12.5 + parent: 2 + - uid: 8596 + components: + - type: Transform + pos: 44.5,32.5 + parent: 2 + - uid: 8598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,31.5 + parent: 2 + - uid: 8626 + components: + - type: Transform + pos: 37.5,23.5 + parent: 2 + - uid: 8655 + components: + - type: Transform + pos: 38.5,23.5 + parent: 2 + - uid: 8661 + components: + - type: Transform + pos: 19.5,53.5 parent: 2 - uid: 8667 components: @@ -64574,10 +67332,20 @@ entities: - type: Transform pos: 63.5,26.5 parent: 2 - - uid: 8703 + - uid: 8679 components: - type: Transform - pos: 55.5,42.5 + pos: 36.5,29.5 + parent: 2 + - uid: 8687 + components: + - type: Transform + pos: 40.5,23.5 + parent: 2 + - uid: 8716 + components: + - type: Transform + pos: 39.5,23.5 parent: 2 - uid: 8719 components: @@ -64989,46 +67757,75 @@ entities: - type: Transform pos: 117.5,-20.5 parent: 2 + - uid: 9132 + components: + - type: Transform + pos: 35.5,24.5 + parent: 2 + - uid: 9261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,26.5 + parent: 2 + - uid: 9293 + components: + - type: Transform + pos: 18.5,53.5 + parent: 2 + - uid: 9331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,51.5 + parent: 2 + - uid: 9335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,53.5 + parent: 2 - uid: 9349 components: - type: Transform pos: -20.5,-15.5 parent: 2 - - uid: 9894 + - uid: 9439 components: - type: Transform - pos: 29.5,57.5 + pos: 72.5,51.5 parent: 2 - - uid: 9895 + - uid: 9440 components: - type: Transform - pos: 27.5,57.5 + pos: 88.5,52.5 parent: 2 - - uid: 9898 + - uid: 9441 components: - type: Transform - pos: 28.5,55.5 - parent: 2 - - uid: 9903 - components: - - type: Transform - pos: 24.5,57.5 - parent: 2 - - uid: 10138 - components: - - type: Transform - pos: 28.5,29.5 - parent: 2 - - uid: 10343 - components: - - type: Transform - pos: 43.5,40.5 + pos: 86.5,52.5 parent: 2 - uid: 10801 components: - type: Transform pos: 85.5,-14.5 parent: 2 + - uid: 10830 + components: + - type: Transform + pos: 44.5,48.5 + parent: 2 + - uid: 10866 + components: + - type: Transform + pos: 28.5,20.5 + parent: 2 + - uid: 10867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,23.5 + parent: 2 - uid: 10951 components: - type: Transform @@ -65044,11 +67841,6 @@ entities: - type: Transform pos: 25.5,-59.5 parent: 2 - - uid: 10974 - components: - - type: Transform - pos: 41.5,32.5 - parent: 2 - uid: 10975 components: - type: Transform @@ -65069,6 +67861,16 @@ entities: - type: Transform pos: 4.5,43.5 parent: 2 + - uid: 11159 + components: + - type: Transform + pos: 42.5,48.5 + parent: 2 + - uid: 11160 + components: + - type: Transform + pos: 46.5,48.5 + parent: 2 - uid: 11309 components: - type: Transform @@ -65519,11 +68321,6 @@ entities: - type: Transform pos: -16.5,-38.5 parent: 2 - - uid: 11629 - components: - - type: Transform - pos: -2.5,-41.5 - parent: 2 - uid: 11630 components: - type: Transform @@ -65649,135 +68446,11 @@ entities: - type: Transform pos: 89.5,48.5 parent: 2 - - uid: 11658 - components: - - type: Transform - pos: 74.5,51.5 - parent: 2 - - uid: 11659 - components: - - type: Transform - pos: 75.5,51.5 - parent: 2 - - uid: 11660 - components: - - type: Transform - pos: 76.5,51.5 - parent: 2 - - uid: 11661 - components: - - type: Transform - pos: 77.5,51.5 - parent: 2 - - uid: 11662 - components: - - type: Transform - pos: 78.5,51.5 - parent: 2 - - uid: 11663 - components: - - type: Transform - pos: 79.5,51.5 - parent: 2 - - uid: 11664 - components: - - type: Transform - pos: 81.5,51.5 - parent: 2 - - uid: 11665 - components: - - type: Transform - pos: 80.5,51.5 - parent: 2 - - uid: 11667 - components: - - type: Transform - pos: 83.5,51.5 - parent: 2 - - uid: 11668 - components: - - type: Transform - pos: 84.5,51.5 - parent: 2 - - uid: 11669 - components: - - type: Transform - pos: 85.5,51.5 - parent: 2 - - uid: 11670 - components: - - type: Transform - pos: 86.5,51.5 - parent: 2 - - uid: 11671 - components: - - type: Transform - pos: 87.5,51.5 - parent: 2 - - uid: 11672 - components: - - type: Transform - pos: 88.5,51.5 - parent: 2 - - uid: 11673 - components: - - type: Transform - pos: 76.5,38.5 - parent: 2 - - uid: 11674 - components: - - type: Transform - pos: 77.5,38.5 - parent: 2 - - uid: 11675 - components: - - type: Transform - pos: 78.5,38.5 - parent: 2 - - uid: 11677 - components: - - type: Transform - pos: 80.5,38.5 - parent: 2 - - uid: 11678 - components: - - type: Transform - pos: 81.5,38.5 - parent: 2 - uid: 11679 components: - type: Transform - pos: 82.5,38.5 - parent: 2 - - uid: 11680 - components: - - type: Transform - pos: 83.5,38.5 - parent: 2 - - uid: 11681 - components: - - type: Transform - pos: 84.5,38.5 - parent: 2 - - uid: 11682 - components: - - type: Transform - pos: 85.5,38.5 - parent: 2 - - uid: 11683 - components: - - type: Transform - pos: 86.5,38.5 - parent: 2 - - uid: 11684 - components: - - type: Transform - pos: 87.5,38.5 - parent: 2 - - uid: 11685 - components: - - type: Transform - pos: 88.5,38.5 + rot: 1.5707963267948966 rad + pos: 29.5,51.5 parent: 2 - uid: 11686 components: @@ -65802,22 +68475,14 @@ entities: - uid: 11695 components: - type: Transform - pos: 41.5,52.5 - parent: 2 - - uid: 11696 - components: - - type: Transform - pos: 40.5,52.5 + rot: 1.5707963267948966 rad + pos: 30.5,51.5 parent: 2 - uid: 11697 components: - type: Transform - pos: 38.5,52.5 - parent: 2 - - uid: 11698 - components: - - type: Transform - pos: 39.5,52.5 + rot: 1.5707963267948966 rad + pos: 28.5,51.5 parent: 2 - uid: 11757 components: @@ -65874,6 +68539,17 @@ entities: - type: Transform pos: 73.5,3.5 parent: 2 + - uid: 11895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,51.5 + parent: 2 + - uid: 11902 + components: + - type: Transform + pos: 17.5,53.5 + parent: 2 - uid: 11970 components: - type: Transform @@ -65884,6 +68560,23 @@ entities: - type: Transform pos: 45.5,-21.5 parent: 2 + - uid: 11998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,48.5 + parent: 2 + - uid: 12155 + components: + - type: Transform + pos: 40.5,48.5 + parent: 2 + - uid: 12183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,51.5 + parent: 2 - uid: 12220 components: - type: Transform @@ -65899,6 +68592,12 @@ entities: - type: Transform pos: 45.5,-23.5 parent: 2 + - uid: 12299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,51.5 + parent: 2 - uid: 12370 components: - type: Transform @@ -65919,16 +68618,6 @@ entities: - type: Transform pos: -4.5,-15.5 parent: 2 - - uid: 12430 - components: - - type: Transform - pos: 56.5,51.5 - parent: 2 - - uid: 12437 - components: - - type: Transform - pos: 54.5,46.5 - parent: 2 - uid: 12441 components: - type: Transform @@ -66004,16 +68693,6 @@ entities: - type: Transform pos: 45.5,-45.5 parent: 2 - - uid: 13114 - components: - - type: Transform - pos: 37.5,27.5 - parent: 2 - - uid: 13126 - components: - - type: Transform - pos: 25.5,55.5 - parent: 2 - uid: 13245 components: - type: Transform @@ -66049,11 +68728,6 @@ entities: - type: Transform pos: -9.5,-2.5 parent: 2 - - uid: 13282 - components: - - type: Transform - pos: 58.5,46.5 - parent: 2 - uid: 13290 components: - type: Transform @@ -66319,25 +68993,48 @@ entities: - type: Transform pos: 39.5,-61.5 parent: 2 - - uid: 13432 + - uid: 13522 components: - type: Transform - pos: 26.5,57.5 + rot: 3.141592653589793 rad + pos: 41.5,32.5 parent: 2 - - uid: 13469 + - uid: 13586 components: - type: Transform - pos: 29.5,55.5 + rot: 1.5707963267948966 rad + pos: 23.5,51.5 parent: 2 - - uid: 13545 + - uid: 13590 components: - type: Transform - pos: 56.5,42.5 + rot: 1.5707963267948966 rad + pos: 89.5,36.5 parent: 2 - - uid: 13547 + - uid: 13637 components: - type: Transform - pos: 57.5,42.5 + pos: 32.5,16.5 + parent: 2 + - uid: 13645 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 + - uid: 13646 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 13647 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - uid: 13652 + components: + - type: Transform + pos: 28.5,21.5 parent: 2 - uid: 13654 components: @@ -66609,11 +69306,6 @@ entities: - type: Transform pos: 77.5,20.5 parent: 2 - - uid: 14204 - components: - - type: Transform - pos: 83.5,36.5 - parent: 2 - uid: 14205 components: - type: Transform @@ -66684,11 +69376,6 @@ entities: - type: Transform pos: 80.5,22.5 parent: 2 - - uid: 14330 - components: - - type: Transform - pos: 74.5,26.5 - parent: 2 - uid: 14331 components: - type: Transform @@ -66709,11 +69396,6 @@ entities: - type: Transform pos: 78.5,26.5 parent: 2 - - uid: 14336 - components: - - type: Transform - pos: 74.5,34.5 - parent: 2 - uid: 14337 components: - type: Transform @@ -66729,11 +69411,6 @@ entities: - type: Transform pos: 77.5,34.5 parent: 2 - - uid: 14344 - components: - - type: Transform - pos: 81.5,36.5 - parent: 2 - uid: 14409 components: - type: Transform @@ -66789,11 +69466,28 @@ entities: - type: Transform pos: 99.5,34.5 parent: 2 + - uid: 14622 + components: + - type: Transform + pos: 45.5,48.5 + parent: 2 - uid: 14623 components: - type: Transform pos: 72.5,25.5 parent: 2 + - uid: 14629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,16.5 + parent: 2 + - uid: 14646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,51.5 + parent: 2 - uid: 14762 components: - type: Transform @@ -66814,41 +69508,6 @@ entities: - type: Transform pos: 14.5,45.5 parent: 2 - - uid: 14787 - components: - - type: Transform - pos: 43.5,51.5 - parent: 2 - - uid: 14788 - components: - - type: Transform - pos: 44.5,51.5 - parent: 2 - - uid: 14789 - components: - - type: Transform - pos: 45.5,51.5 - parent: 2 - - uid: 14790 - components: - - type: Transform - pos: 46.5,51.5 - parent: 2 - - uid: 14791 - components: - - type: Transform - pos: 36.5,52.5 - parent: 2 - - uid: 14793 - components: - - type: Transform - pos: 48.5,51.5 - parent: 2 - - uid: 14794 - components: - - type: Transform - pos: 35.5,52.5 - parent: 2 - uid: 14800 components: - type: Transform @@ -66909,106 +69568,6 @@ entities: - type: Transform pos: 97.5,36.5 parent: 2 - - uid: 14824 - components: - - type: Transform - pos: 50.5,39.5 - parent: 2 - - uid: 14825 - components: - - type: Transform - pos: 50.5,40.5 - parent: 2 - - uid: 14826 - components: - - type: Transform - pos: 50.5,41.5 - parent: 2 - - uid: 14827 - components: - - type: Transform - pos: 50.5,42.5 - parent: 2 - - uid: 14829 - components: - - type: Transform - pos: 53.5,44.5 - parent: 2 - - uid: 14830 - components: - - type: Transform - pos: 54.5,44.5 - parent: 2 - - uid: 14831 - components: - - type: Transform - pos: 55.5,44.5 - parent: 2 - - uid: 14832 - components: - - type: Transform - pos: 56.5,44.5 - parent: 2 - - uid: 14833 - components: - - type: Transform - pos: 57.5,44.5 - parent: 2 - - uid: 14834 - components: - - type: Transform - pos: 58.5,44.5 - parent: 2 - - uid: 14836 - components: - - type: Transform - pos: 59.5,44.5 - parent: 2 - - uid: 14839 - components: - - type: Transform - pos: 62.5,32.5 - parent: 2 - - uid: 14840 - components: - - type: Transform - pos: 62.5,33.5 - parent: 2 - - uid: 14841 - components: - - type: Transform - pos: 62.5,34.5 - parent: 2 - - uid: 14842 - components: - - type: Transform - pos: 62.5,36.5 - parent: 2 - - uid: 14843 - components: - - type: Transform - pos: 62.5,37.5 - parent: 2 - - uid: 14844 - components: - - type: Transform - pos: 62.5,38.5 - parent: 2 - - uid: 14845 - components: - - type: Transform - pos: 62.5,39.5 - parent: 2 - - uid: 14846 - components: - - type: Transform - pos: 62.5,40.5 - parent: 2 - - uid: 14847 - components: - - type: Transform - pos: 62.5,35.5 - parent: 2 - uid: 14953 components: - type: Transform @@ -67049,11 +69608,6 @@ entities: - type: Transform pos: 16.5,51.5 parent: 2 - - uid: 15106 - components: - - type: Transform - pos: 17.5,51.5 - parent: 2 - uid: 15107 components: - type: Transform @@ -67079,6 +69633,12 @@ entities: - type: Transform pos: 35.5,3.5 parent: 2 + - uid: 15199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,51.5 + parent: 2 - uid: 15206 components: - type: Transform @@ -67244,45 +69804,183 @@ entities: - type: Transform pos: -24.5,-26.5 parent: 2 - - uid: 15384 + - uid: 15284 components: - type: Transform - pos: 37.5,26.5 + pos: 52.5,53.5 parent: 2 - - uid: 15413 + - uid: 15285 components: - type: Transform - pos: 23.5,55.5 + pos: 51.5,53.5 parent: 2 - - uid: 15414 + - uid: 15286 components: - type: Transform - pos: 30.5,55.5 + pos: 50.5,53.5 parent: 2 - - uid: 15415 + - uid: 15639 components: - type: Transform - pos: 31.5,55.5 + pos: 53.5,53.5 parent: 2 - - uid: 15418 + - uid: 15651 components: - type: Transform - pos: 22.5,57.5 + rot: 3.141592653589793 rad + pos: 61.5,53.5 parent: 2 - - uid: 15419 + - uid: 15652 components: - type: Transform - pos: 21.5,57.5 + rot: 3.141592653589793 rad + pos: 62.5,53.5 parent: 2 - - uid: 15420 + - uid: 15654 components: - type: Transform - pos: 33.5,57.5 + rot: 3.141592653589793 rad + pos: 64.5,53.5 parent: 2 - - uid: 15449 + - uid: 15655 components: - type: Transform - pos: 36.5,48.5 + pos: 48.5,53.5 + parent: 2 + - uid: 15695 + components: + - type: Transform + pos: 34.5,53.5 + parent: 2 + - uid: 15697 + components: + - type: Transform + pos: 32.5,51.5 + parent: 2 + - uid: 15699 + components: + - type: Transform + pos: 34.5,51.5 + parent: 2 + - uid: 15717 + components: + - type: Transform + pos: 21.5,53.5 + parent: 2 + - uid: 15718 + components: + - type: Transform + pos: 20.5,51.5 + parent: 2 + - uid: 15719 + components: + - type: Transform + pos: 21.5,51.5 + parent: 2 + - uid: 15720 + components: + - type: Transform + pos: 17.5,51.5 + parent: 2 + - uid: 15722 + components: + - type: Transform + pos: 41.5,53.5 + parent: 2 + - uid: 15723 + components: + - type: Transform + pos: 42.5,53.5 + parent: 2 + - uid: 15724 + components: + - type: Transform + pos: 43.5,53.5 + parent: 2 + - uid: 15725 + components: + - type: Transform + pos: 44.5,53.5 + parent: 2 + - uid: 15727 + components: + - type: Transform + pos: 46.5,53.5 + parent: 2 + - uid: 15728 + components: + - type: Transform + pos: 47.5,53.5 + parent: 2 + - uid: 15729 + components: + - type: Transform + pos: 49.5,53.5 + parent: 2 + - uid: 15730 + components: + - type: Transform + pos: 47.5,51.5 + parent: 2 + - uid: 15731 + components: + - type: Transform + pos: 46.5,51.5 + parent: 2 + - uid: 15732 + components: + - type: Transform + pos: 45.5,51.5 + parent: 2 + - uid: 15733 + components: + - type: Transform + pos: 44.5,51.5 + parent: 2 + - uid: 15734 + components: + - type: Transform + pos: 43.5,51.5 + parent: 2 + - uid: 15736 + components: + - type: Transform + pos: 41.5,51.5 + parent: 2 + - uid: 15737 + components: + - type: Transform + pos: 40.5,51.5 + parent: 2 + - uid: 15738 + components: + - type: Transform + pos: 39.5,51.5 + parent: 2 + - uid: 15739 + components: + - type: Transform + pos: 38.5,51.5 + parent: 2 + - uid: 15778 + components: + - type: Transform + pos: -1.5,-42.5 + parent: 2 + - uid: 15780 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 2 + - uid: 15782 + components: + - type: Transform + pos: 0.5,-39.5 + parent: 2 + - uid: 15783 + components: + - type: Transform + pos: 0.5,-38.5 parent: 2 - proto: GrilleBroken entities: @@ -67347,20 +70045,15 @@ entities: - type: Transform pos: 1.5,42.5 parent: 2 - - uid: 4173 - components: - - type: Transform - pos: 36.5,49.5 - parent: 2 - uid: 5289 components: - type: Transform pos: 0.5,16.5 parent: 2 - - uid: 6131 + - uid: 6796 components: - type: Transform - pos: 26.5,55.5 + pos: 27.5,53.5 parent: 2 - uid: 6834 components: @@ -67372,11 +70065,21 @@ entities: - type: Transform pos: -18.5,-37.5 parent: 2 + - uid: 6862 + components: + - type: Transform + pos: 26.5,51.5 + parent: 2 - uid: 6870 components: - type: Transform pos: -10.5,16.5 parent: 2 + - uid: 6876 + components: + - type: Transform + pos: 59.5,53.5 + parent: 2 - uid: 6890 components: - type: Transform @@ -67392,6 +70095,12 @@ entities: - type: Transform pos: 9.5,46.5 parent: 2 + - uid: 7857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,37.5 + parent: 2 - uid: 8105 components: - type: Transform @@ -67402,16 +70111,6 @@ entities: - type: Transform pos: 91.5,43.5 parent: 2 - - uid: 11089 - components: - - type: Transform - pos: 82.5,51.5 - parent: 2 - - uid: 11094 - components: - - type: Transform - pos: 79.5,38.5 - parent: 2 - uid: 13763 components: - type: Transform @@ -67442,21 +70141,6 @@ entities: - type: Transform pos: 13.5,45.5 parent: 2 - - uid: 14786 - components: - - type: Transform - pos: 37.5,52.5 - parent: 2 - - uid: 14792 - components: - - type: Transform - pos: 47.5,51.5 - parent: 2 - - uid: 14798 - components: - - type: Transform - pos: 73.5,51.5 - parent: 2 - uid: 14799 components: - type: Transform @@ -67487,71 +70171,270 @@ entities: - type: Transform pos: 24.5,53.5 parent: 2 - - uid: 15337 + - uid: 15627 components: - type: Transform - pos: 28.5,57.5 + pos: 35.5,53.5 parent: 2 - - uid: 15416 + - uid: 15638 components: - type: Transform - pos: 31.5,57.5 + pos: 36.5,53.5 parent: 2 - - uid: 15417 + - uid: 15713 components: - type: Transform - pos: 23.5,57.5 + pos: 33.5,51.5 parent: 2 + - uid: 15714 + components: + - type: Transform + pos: 37.5,51.5 + parent: 2 + - uid: 15715 + components: + - type: Transform + pos: 22.5,51.5 + parent: 2 + - uid: 15716 + components: + - type: Transform + pos: 20.5,53.5 + parent: 2 + - uid: 15721 + components: + - type: Transform + pos: 45.5,53.5 + parent: 2 + - uid: 15726 + components: + - type: Transform + pos: 40.5,53.5 + parent: 2 + - uid: 15735 + components: + - type: Transform + pos: 42.5,51.5 + parent: 2 + - uid: 15741 + components: + - type: Transform + pos: 63.5,53.5 + parent: 2 + - uid: 15758 + components: + - type: Transform + pos: -16.5,-31.5 + parent: 2 + - uid: 15775 + components: + - type: Transform + pos: -16.5,-39.5 + parent: 2 + - uid: 15776 + components: + - type: Transform + pos: -14.5,-42.5 + parent: 2 + - uid: 15777 + components: + - type: Transform + pos: -14.5,-28.5 + parent: 2 + - uid: 15779 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 2 + - uid: 15781 + components: + - type: Transform + pos: 0.5,-40.5 + parent: 2 +- proto: GunSafe + entities: + - uid: 6527 + components: + - type: MetaData + name: Armor Safe + - type: Transform + anchored: True + pos: 41.5,36.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: + - 9885 + - 15800 + - 15799 + - 15634 + - 15575 + - 15574 + - 15480 + - 15459 + - 15442 + - 15337 + - 15200 + - 13634 + - 13483 + - 12773 + - 11017 + - 10405 + - 9926 + - 9835 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: GunSafeDisabler + entities: + - uid: 11677 + components: + - type: MetaData + name: disabler safe (5) + - type: Transform + anchored: True + pos: 39.5,35.5 + parent: 2 + - type: Physics + bodyType: Static + - type: Label + currentLabel: 5 + - type: NameModifier + baseName: disabler safe - proto: GunSafeLaserCarbine entities: - - uid: 10849 + - uid: 11126 components: + - type: MetaData + name: laser safe (3) - type: Transform anchored: True - pos: 42.5,27.5 + pos: 45.5,33.5 parent: 2 - type: Physics bodyType: Static + - type: Label + currentLabel: 3 + - type: NameModifier + baseName: laser safe - proto: GunSafePistolMk58 entities: - - uid: 10851 + - uid: 6793 components: + - type: MetaData + name: mk58 safe (4) - type: Transform anchored: True - pos: 42.5,28.5 + pos: 39.5,34.5 parent: 2 - type: Physics bodyType: Static + - type: Label + currentLabel: 4 + - type: NameModifier + baseName: mk58 safe - proto: GunSafeRifleLecter entities: - - uid: 2460 + - uid: 15183 components: + - type: MetaData + name: lecter safe (2) - type: Transform anchored: True - pos: 38.5,26.5 + pos: 45.5,34.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: Physics bodyType: Static + - type: Label + currentLabel: 2 + - type: NameModifier + baseName: lecter safe - proto: GunSafeShotgunKammerer entities: - - uid: 15471 + - uid: 15278 components: + - type: MetaData + name: kammerer safe (2) - type: Transform - anchored: True - pos: 42.5,26.5 + pos: 45.5,35.5 parent: 2 - - type: Physics - bodyType: Static + - type: Label + currentLabel: 2 + - type: NameModifier + baseName: kammerer safe - proto: GunSafeSubMachineGunDrozd entities: - - uid: 2461 + - uid: 10682 components: + - type: MetaData + name: drozd safe (2) - type: Transform - anchored: True - pos: 38.5,27.5 + pos: 45.5,36.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: Label + currentLabel: 2 + - type: NameModifier + baseName: drozd safe - proto: Handcuffs entities: - uid: 9397 @@ -67571,6 +70454,11 @@ entities: - type: Transform pos: 38.482082,-17.438766 parent: 2 + - uid: 12549 + components: + - type: Transform + pos: 44.355003,29.376284 + parent: 2 - proto: HandheldStationMap entities: - uid: 9400 @@ -67580,22 +70468,30 @@ entities: parent: 2 - proto: HandLabeler entities: - - uid: 5319 + - uid: 3103 components: - type: Transform - pos: 49.532963,19.552088 + pos: 65.58373,8.621037 parent: 2 - - uid: 5320 + - uid: 13169 components: - type: Transform - pos: 49.532963,17.552088 + parent: 13141 + - type: Physics + canCollide: False + - uid: 13642 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 70.59308,13.572977 parent: 2 - proto: HarmonicaInstrument entities: - - uid: 13630 + - uid: 8388 components: - type: Transform - pos: 56.5,31.5 + rot: -12.566370614359172 rad + pos: 36.543064,21.591867 parent: 2 - proto: HarpInstrument entities: @@ -67659,6 +70555,13 @@ entities: - type: Transform pos: 67.49741,-3.281434 parent: 2 +- proto: HighSecArmoryLocked + entities: + - uid: 19 + components: + - type: Transform + pos: 42.5,34.5 + parent: 2 - proto: HighSecCommandLocked entities: - uid: 1744 @@ -67711,6 +70614,11 @@ entities: parent: 2 - proto: HolopadCargoSalvageBay entities: + - uid: 11400 + components: + - type: Transform + pos: 7.5,31.5 + parent: 2 - uid: 15167 components: - type: Transform @@ -67732,10 +70640,10 @@ entities: parent: 2 - proto: HolopadCommandCaptain entities: - - uid: 15172 + - uid: 9237 components: - type: Transform - pos: 33.5,42.5 + pos: 31.5,41.5 parent: 2 - proto: HolopadCommandCe entities: @@ -67760,10 +70668,10 @@ entities: parent: 2 - proto: HolopadCommandHos entities: - - uid: 15173 + - uid: 8611 components: - type: Transform - pos: 43.5,22.5 + pos: 47.5,40.5 parent: 2 - proto: HolopadCommandMeetingRoom entities: @@ -67781,10 +70689,10 @@ entities: parent: 2 - proto: HolopadCommandRd entities: - - uid: 15178 + - uid: 10577 components: - type: Transform - pos: 61.5,9.5 + pos: 63.5,10.5 parent: 2 - proto: HolopadCommandVault entities: @@ -67921,17 +70829,17 @@ entities: parent: 2 - proto: HolopadScienceAnomaly entities: - - uid: 15190 + - uid: 5748 components: - type: Transform - pos: 69.5,13.5 + pos: 68.5,14.5 parent: 2 - proto: HolopadScienceArtifact entities: - - uid: 15191 + - uid: 9269 components: - type: Transform - pos: 63.5,24.5 + pos: 61.5,24.5 parent: 2 - proto: HolopadScienceRnd entities: @@ -67947,40 +70855,47 @@ entities: - type: Transform pos: 50.5,9.5 parent: 2 -- proto: HolopadSecurityBrig +- proto: HolopadSecurityArmory entities: - - uid: 5247 + - uid: 10417 components: - type: Transform - pos: 34.5,19.5 + pos: 40.5,34.5 + parent: 2 +- proto: HolopadSecurityBrig + entities: + - uid: 3172 + components: + - type: Transform + pos: 35.5,19.5 parent: 2 - proto: HolopadSecurityCourtroom entities: - - uid: 15185 + - uid: 14979 components: - type: Transform - pos: 20.5,31.5 + pos: 19.5,31.5 parent: 2 - proto: HolopadSecurityDetective entities: - - uid: 15184 + - uid: 10836 components: - type: Transform - pos: 42.5,18.5 + pos: 53.5,37.5 parent: 2 - proto: HolopadSecurityFront entities: - - uid: 15180 + - uid: 14097 components: - type: Transform - pos: 29.5,25.5 + pos: 33.5,30.5 parent: 2 - proto: HolopadSecurityInterrogation entities: - - uid: 15182 + - uid: 5405 components: - type: Transform - pos: 41.5,34.5 + pos: 56.5,32.5 parent: 2 - proto: HolopadSecurityLawyer entities: @@ -67989,19 +70904,12 @@ entities: - type: Transform pos: -3.5,-11.5 parent: 2 -- proto: HolopadSecurityPerma - entities: - - uid: 15183 - components: - - type: Transform - pos: 54.5,34.5 - parent: 2 - proto: HolopadSecurityWarden entities: - - uid: 15187 + - uid: 3115 components: - type: Transform - pos: 39.5,18.5 + pos: 38.5,26.5 parent: 2 - proto: HolopadServiceBar entities: @@ -68040,10 +70948,10 @@ entities: parent: 2 - proto: HolopadServiceKitchen entities: - - uid: 15200 + - uid: 15807 components: - type: Transform - pos: 37.5,-10.5 + pos: 35.5,-9.5 parent: 2 - proto: HolopadServiceLibrary entities: @@ -68054,11 +70962,15 @@ entities: parent: 2 - proto: HospitalCurtainsOpen entities: - - uid: 3192 + - uid: 3251 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,32.5 + pos: 78.5,9.5 + parent: 2 + - uid: 3316 + components: + - type: Transform + pos: 77.5,9.5 parent: 2 - uid: 4682 components: @@ -68070,6 +70982,17 @@ entities: - type: Transform pos: 61.5,-8.5 parent: 2 + - uid: 5387 + components: + - type: Transform + pos: 30.5,17.5 + parent: 2 + - uid: 5453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,22.5 + parent: 2 - uid: 5744 components: - type: Transform @@ -68095,16 +71018,6 @@ entities: - type: Transform pos: 58.5,-5.5 parent: 2 - - uid: 11902 - components: - - type: Transform - pos: 78.5,10.5 - parent: 2 - - uid: 11903 - components: - - type: Transform - pos: 77.5,10.5 - parent: 2 - uid: 12254 components: - type: Transform @@ -68150,18 +71063,49 @@ entities: - type: Transform pos: 14.5,16.5 parent: 2 - - uid: 13639 + - uid: 14828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,40.5 + pos: 30.5,18.5 + parent: 2 +- proto: hydroponicsSoil + entities: + - uid: 669 + components: + - type: Transform + pos: 57.5,42.5 + parent: 2 + - uid: 1660 + components: + - type: Transform + pos: 59.5,43.5 + parent: 2 + - uid: 2356 + components: + - type: Transform + pos: 57.5,41.5 + parent: 2 + - uid: 3205 + components: + - type: Transform + pos: 59.5,41.5 + parent: 2 + - uid: 8510 + components: + - type: Transform + pos: 59.5,42.5 + parent: 2 + - uid: 8620 + components: + - type: Transform + pos: 57.5,43.5 parent: 2 - proto: HydroponicsToolClippers entities: - - uid: 3185 + - uid: 10545 components: - type: Transform - pos: 56.15973,41.601078 + pos: 34.293724,17.46456 parent: 2 - proto: HydroponicsToolHatchet entities: @@ -68172,10 +71116,11 @@ entities: parent: 2 - proto: HydroponicsToolMiniHoe entities: - - uid: 3186 + - uid: 3229 components: - type: Transform - pos: 54.460526,36.592915 + rot: -12.566370614359172 rad + pos: 34.949974,17.573935 parent: 2 - uid: 6755 components: @@ -68184,13 +71129,34 @@ entities: parent: 2 - proto: HydroponicsToolSpade entities: - - uid: 13629 + - uid: 11659 components: - type: Transform - pos: 54.56469,36.655457 + rot: -12.566370614359172 rad + pos: 34.99685,17.65206 parent: 2 - proto: hydroponicsTray entities: + - uid: 2194 + components: + - type: Transform + pos: 37.5,17.5 + parent: 2 + - uid: 2486 + components: + - type: Transform + pos: 37.5,18.5 + parent: 2 + - uid: 3096 + components: + - type: Transform + pos: 39.5,17.5 + parent: 2 + - uid: 5344 + components: + - type: Transform + pos: 39.5,18.5 + parent: 2 - uid: 6665 components: - type: Transform @@ -68241,26 +71207,6 @@ entities: - type: Transform pos: 41.5,-4.5 parent: 2 - - uid: 13633 - components: - - type: Transform - pos: 53.5,39.5 - parent: 2 - - uid: 13634 - components: - - type: Transform - pos: 54.5,39.5 - parent: 2 - - uid: 13636 - components: - - type: Transform - pos: 53.5,38.5 - parent: 2 - - uid: 13637 - components: - - type: Transform - pos: 54.5,38.5 - parent: 2 - proto: IDComputerCircuitboard entities: - uid: 12659 @@ -68268,6 +71214,23 @@ entities: - type: Transform pos: 41.5,-14.5 parent: 2 +- proto: InflatableDoor + entities: + - uid: 8369 + components: + - type: Transform + pos: 82.5,4.5 + parent: 2 + - uid: 15415 + components: + - type: Transform + pos: 86.5,-7.5 + parent: 2 + - uid: 15689 + components: + - type: Transform + pos: 66.5,36.5 + parent: 2 - proto: InflatableWall entities: - uid: 6524 @@ -68275,33 +71238,56 @@ entities: - type: Transform pos: 87.5,-7.5 parent: 2 - - uid: 6729 - components: - - type: Transform - pos: 86.5,-7.5 - parent: 2 - uid: 6730 components: - type: Transform pos: 82.5,5.5 parent: 2 - - uid: 6731 + - uid: 8401 components: - type: Transform - pos: 82.5,4.5 + pos: 67.5,36.5 + parent: 2 + - uid: 15679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,51.5 parent: 2 - proto: IngotGold entities: - - uid: 8824 - components: - - type: Transform - pos: 89.45974,-12.337885 - parent: 2 - uid: 12098 components: - type: Transform pos: 19.594189,42.029728 parent: 2 +- proto: IngotGold1 + entities: + - uid: 6493 + components: + - type: Transform + pos: 89.379524,-12.132982 + parent: 2 + - uid: 7865 + components: + - type: Transform + pos: 89.74239,-12.209297 + parent: 2 + - uid: 8061 + components: + - type: Transform + pos: 89.79371,-12.474922 + parent: 2 + - uid: 8358 + components: + - type: Transform + pos: 89.348274,-12.601732 + parent: 2 + - uid: 8420 + components: + - type: Transform + pos: 89.40308,-12.303047 + parent: 2 - proto: IngotSilver entities: - uid: 12100 @@ -68324,27 +71310,28 @@ 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: 8471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,40.5 + parent: 2 - uid: 9436 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,42.5 parent: 2 - - uid: 9437 + - uid: 9460 components: - type: Transform - pos: 33.5,41.5 + rot: -1.5707963267948966 rad + pos: 41.5,26.5 parent: 2 - uid: 11408 components: @@ -68406,17 +71393,11 @@ entities: parent: 2 - proto: IntercomSecurity entities: - - uid: 2565 + - uid: 14552 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,34.5 - parent: 2 - - uid: 15375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,26.5 + rot: 3.141592653589793 rad + pos: 36.5,18.5 parent: 2 - proto: IntercomSupply entities: @@ -68439,13 +71420,37 @@ entities: - type: Transform pos: 4.5,-6.5 parent: 2 +- proto: JanitorServiceLight + entities: + - uid: 2363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,29.5 + parent: 2 - proto: JetpackMiniFilled entities: + - uid: 8627 + components: + - type: Transform + pos: 8.488525,-9.228134 + parent: 2 - uid: 10308 components: - type: Transform - pos: 8.484015,-9.278149 + pos: 8.488525,-9.353134 parent: 2 + - type: GasTank + toggleActionEntity: 6295 + - type: Jetpack + toggleActionEntity: 6125 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 6125 + - 6295 - uid: 10309 components: - type: Transform @@ -68453,25 +71458,38 @@ entities: parent: 2 - proto: JetpackSecurityFilled entities: - - uid: 9478 + - uid: 12242 components: - type: Transform - pos: 39.649494,28.741974 - parent: 2 - - uid: 15462 + parent: 3183 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12760 components: - type: Transform - pos: 39.63387,28.898224 - parent: 2 + parent: 12746 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: KitchenElectricGrill entities: - - uid: 13167 + - uid: 5502 components: - type: Transform - pos: 36.5,-10.5 + pos: 35.5,-12.5 parent: 2 - proto: KitchenKnife entities: + - uid: 10415 + components: + - type: MetaData + desc: A general purpose Chef's Knife made by Asters Merchant Guild. Guaranteed to stay sharp even after taking out your anger. + name: bloodied kitchen knife + - type: Transform + rot: 3.141592653589793 rad + pos: 55.215134,44.005093 + parent: 2 - uid: 11124 components: - type: Transform @@ -68479,10 +71497,15 @@ entities: parent: 2 - proto: KitchenMicrowave entities: - - uid: 1578 + - uid: 5461 components: - type: Transform - pos: 35.5,-10.5 + pos: 33.5,17.5 + parent: 2 + - uid: 8513 + components: + - type: Transform + pos: 55.5,41.5 parent: 2 - uid: 8860 components: @@ -68494,10 +71517,10 @@ entities: - type: Transform pos: 76.5,5.5 parent: 2 - - uid: 13613 + - uid: 15808 components: - type: Transform - pos: 54.5,41.5 + pos: 37.5,-10.5 parent: 2 - proto: KitchenReagentGrinder entities: @@ -68511,10 +71534,15 @@ entities: - type: Transform pos: 49.5,-6.5 parent: 2 - - uid: 13619 + - uid: 8534 components: - type: Transform - pos: 55.5,41.5 + pos: 55.5,40.5 + parent: 2 + - uid: 12080 + components: + - type: Transform + pos: 35.5,17.5 parent: 2 - proto: KitchenSpike entities: @@ -68571,53 +71599,65 @@ entities: - type: Transform pos: 22.507973,40.51647 parent: 2 - - uid: 4018 + - uid: 6900 components: - type: Transform - pos: 32.49905,41.93212 + pos: 35.35573,44.0572 parent: 2 - - uid: 5474 + - uid: 8437 components: - type: Transform - pos: 67.5,37.5 + rot: 3.141592653589793 rad + pos: 44.741825,26.038797 parent: 2 + - uid: 8468 + components: + - type: Transform + pos: 32.367878,42.14361 + parent: 2 + - uid: 8472 + components: + - type: Transform + pos: 69.31397,39.02177 + parent: 2 + - type: HandheldLight + toggleActionEntity: 6731 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 6731 + - type: Physics + canCollide: True + - type: ActionsContainer - uid: 11417 components: - type: Transform pos: 54.632915,-10.081582 parent: 2 - - uid: 11465 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.568825,20.850296 - parent: 2 - - uid: 12116 - components: - - type: Transform - pos: 37.37405,43.99462 - parent: 2 - uid: 13491 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.328161,-42.06295 parent: 2 + - uid: 14698 + components: + - type: Transform + pos: 54.354797,38.122463 + parent: 2 - proto: LampInterrogator entities: - - uid: 13567 + - uid: 4361 components: - type: Transform - pos: 40.512142,35.84228 - parent: 2 - - type: Physics - canCollide: True -- proto: LargeBeaker - entities: - - uid: 5323 - components: - - type: Transform - pos: 54.42104,17.661463 + pos: 57.60799,32.875443 parent: 2 - proto: LightReplacer entities: @@ -68631,7 +71671,7 @@ entities: - uid: 14280 components: - type: Transform - pos: 84.53704,28.473265 + pos: 85.46464,28.58347 parent: 2 - proto: LockableButtonAtmospherics entities: @@ -68684,49 +71724,6 @@ entities: 12890: - - Pressed - Toggle -- proto: LockableButtonChiefEngineer - entities: - - uid: 6118 - components: - - type: Transform - pos: 11.5,-32.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 13490: - - - Pressed - - Toggle - 13489: - - - Pressed - - Toggle - 13488: - - - Pressed - - Toggle - - uid: 13470 - components: - - type: Transform - pos: 10.5,-39.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 13478: - - - Pressed - - Toggle - 13477: - - - Pressed - - Toggle - 13476: - - - Pressed - - Toggle - 13480: - - - Pressed - - Toggle - 13481: - - - Pressed - - Toggle - 13482: - - - Pressed - - Toggle - proto: LockableButtonCommand entities: - uid: 15104 @@ -68843,6 +71840,8 @@ entities: entities: - uid: 1557 components: + - type: MetaData + name: lockable button (Blast Doors) - type: Transform rot: 1.5707963267948966 rad pos: 43.5,11.5 @@ -68855,19 +71854,31 @@ entities: 8248: - - Pressed - Toggle + - type: Label + currentLabel: Blast Doors + - type: NameModifier + baseName: lockable button - proto: LockableButtonSalvage entities: - - uid: 15284 + - uid: 12839 components: + - type: MetaData + name: lockable button (Blast Doors) - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,36.5 + pos: 3.5,39.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 895: + 3561: - - Pressed - Toggle + 3562: + - - Pressed + - Toggle + - type: Label + currentLabel: Blast Doors + - type: NameModifier + baseName: lockable button - proto: LockableButtonService entities: - uid: 15276 @@ -68917,10 +71928,10 @@ entities: parent: 2 - proto: LockerCaptainFilledNoLaser entities: - - uid: 4137 + - uid: 388 components: - type: Transform - pos: 37.5,41.5 + pos: 33.5,43.5 parent: 2 - proto: LockerChemistryFilled entities: @@ -68945,10 +71956,10 @@ entities: parent: 2 - proto: LockerDetectiveFilled entities: - - uid: 11476 + - uid: 13519 components: - type: Transform - pos: 43.5,18.5 + pos: 57.5,39.5 parent: 2 - proto: LockerElectricalSuppliesFilled entities: @@ -68986,42 +71997,22 @@ entities: parent: 2 - proto: LockerEvidence entities: - - uid: 2430 - components: - - type: Transform - pos: 32.5,28.5 - parent: 2 - uid: 2680 components: - type: Transform pos: 19.5,33.5 parent: 2 - - uid: 5013 - components: - - type: Transform - pos: 32.5,21.5 - parent: 2 - - uid: 5018 - components: - - type: Transform - pos: 32.5,17.5 - parent: 2 - uid: 7980 components: - type: Transform pos: -2.5,-5.5 parent: 2 - - uid: 15277 - components: - - type: Transform - pos: 41.5,33.5 - parent: 2 - proto: LockerFreezer entities: - - uid: 1646 + - uid: 4800 components: - type: Transform - pos: 29.5,-12.5 + pos: 31.5,-9.5 parent: 2 - proto: LockerFreezerVaultFilled entities: @@ -69037,12 +72028,12 @@ entities: - type: Transform pos: 17.5,-5.5 parent: 2 -- proto: LockerHeadOfSecurityFilledHardsuit +- proto: LockerHeadOfSecurityFilled entities: - - uid: 8426 + - uid: 2365 components: - type: Transform - pos: 44.5,25.5 + pos: 42.5,41.5 parent: 2 - proto: LockerMedical entities: @@ -69107,6 +72098,46 @@ entities: - type: Transform pos: 44.5,4.5 parent: 2 +- proto: LockerPrisoner + entities: + - uid: 10454 + components: + - type: Transform + anchored: True + pos: 29.5,25.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: LockerPrisoner2 + entities: + - uid: 10440 + components: + - type: Transform + anchored: True + pos: 30.5,25.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: LockerPrisoner3 + entities: + - uid: 10461 + components: + - type: Transform + anchored: True + pos: 31.5,25.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: LockerPrisoner4 + entities: + - uid: 10447 + components: + - type: Transform + anchored: True + pos: 32.5,25.5 + parent: 2 + - type: Physics + bodyType: Static - proto: LockerQuarterMasterFilled entities: - uid: 8104 @@ -69116,10 +72147,10 @@ entities: parent: 2 - proto: LockerResearchDirectorFilled entities: - - uid: 10660 + - uid: 14590 components: - type: Transform - pos: 61.5,11.5 + pos: 60.5,8.5 parent: 2 - type: EntityStorage air: @@ -69139,59 +72170,84 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 13492 + - 15428 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerSalvageSpecialistFilledHardsuit entities: - uid: 697 components: - type: Transform + anchored: True pos: 9.5,31.5 parent: 2 - - uid: 5046 + - type: Physics + bodyType: Static + - uid: 10991 components: - type: Transform + anchored: True pos: 9.5,30.5 parent: 2 + - type: Physics + bodyType: Static - proto: LockerScienceFilled entities: - - uid: 5338 + - uid: 5448 components: - type: Transform - pos: 55.5,22.5 + pos: 55.5,25.5 parent: 2 - - uid: 5339 + - uid: 6341 components: - type: Transform - pos: 56.5,22.5 + pos: 56.5,25.5 + parent: 2 + - uid: 8710 + components: + - type: Transform + pos: 54.5,25.5 parent: 2 - uid: 12829 components: - type: Transform pos: 57.5,25.5 parent: 2 -- proto: LockerScientist - entities: - - uid: 5322 - components: - - type: Transform - pos: 51.5,21.5 - parent: 2 - proto: LockerSecurityFilled entities: - - uid: 8441 + - uid: 2467 components: - type: Transform - pos: 29.5,30.5 + anchored: True + pos: 37.5,34.5 parent: 2 - - uid: 8443 + - type: Physics + bodyType: Static + - uid: 3384 components: - type: Transform - pos: 30.5,30.5 + anchored: True + pos: 36.5,34.5 parent: 2 - - uid: 13580 + - type: Physics + bodyType: Static + - uid: 10547 components: - type: Transform - pos: 31.5,30.5 + anchored: True + pos: 35.5,34.5 parent: 2 + - type: Physics + bodyType: Static - proto: LockerWallMedicalFilled entities: - uid: 8323 @@ -69201,10 +72257,132 @@ entities: parent: 2 - proto: LockerWardenFilled entities: - - uid: 11210 + - uid: 3171 components: - type: Transform - pos: 37.5,19.5 + anchored: True + pos: 42.5,24.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 3053 + components: + - type: Transform + pos: 62.5,18.5 + parent: 2 +- proto: LogicGateXor + entities: + - uid: 553 + components: + - type: Transform + pos: 4.5,24.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 411: + - - Output + - DoorBolt + - uid: 6639 + components: + - type: Transform + pos: -26.5,0.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 7610: + - - Output + - DoorBolt + - uid: 8663 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 88: + - - Output + - DoorBolt + - uid: 9402 + components: + - type: Transform + pos: -26.5,-20.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13296: + - - Output + - DoorBolt + - uid: 10982 + components: + - type: Transform + pos: 4.5,26.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 428: + - - Output + - DoorBolt + - uid: 13297 + components: + - type: Transform + pos: -26.5,-22.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13306: + - - Output + - DoorBolt + - uid: 13328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,53.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9283: + - - Output + - DoorBolt + - uid: 13329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,53.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10771: + - - Output + - DoorBolt +- proto: LootSpawnerSecurityBasic + entities: + - uid: 2335 + components: + - type: Transform + pos: 48.5,28.5 + parent: 2 + - uid: 3571 + components: + - type: Transform + pos: 38.5,43.5 parent: 2 - proto: MachineAnomalyGenerator entities: @@ -69215,36 +72393,36 @@ entities: parent: 2 - proto: MachineAnomalyVessel entities: - - uid: 5380 + - uid: 171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,13.5 + parent: 2 + - uid: 15516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,13.5 + parent: 2 +- proto: MachineAPE + entities: + - uid: 10464 components: - type: Transform pos: 68.5,16.5 parent: 2 - - uid: 10080 + - uid: 10467 components: - type: Transform - pos: 67.5,16.5 - parent: 2 -- proto: MachineAPE - entities: - - uid: 5255 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,13.5 - parent: 2 - - uid: 5272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,13.5 + pos: 66.5,16.5 parent: 2 - proto: MachineArtifactAnalyzer entities: - - uid: 8666 + - uid: 5444 components: - type: Transform - pos: 64.5,27.5 + pos: 63.5,28.5 parent: 2 - proto: MachineCentrifuge entities: @@ -69262,17 +72440,17 @@ entities: parent: 2 - proto: MachineFrame entities: - - uid: 5731 + - uid: 10380 components: - type: Transform - pos: 52.5,21.5 + pos: 51.5,17.5 parent: 2 - proto: MachineMaterialSilo entities: - - uid: 5309 + - uid: 10829 components: - type: Transform - pos: 60.5,25.5 + pos: 53.5,17.5 parent: 2 - proto: MachineParticleAcceleratorEmitterForeCircuitboard entities: @@ -69297,18 +72475,38 @@ entities: parent: 2 - proto: MagazinePistolSubMachineGunTopMounted entities: - - uid: 348 + - uid: 15785 components: - type: Transform - pos: 45.548477,23.915247 + pos: 44.521404,43.346592 parent: 2 - - uid: 7835 + - uid: 15786 components: - type: Transform - pos: 45.548477,23.915247 + pos: 44.53703,43.440342 parent: 2 - proto: MaintenanceFluffSpawner entities: + - uid: 7459 + components: + - type: Transform + pos: 40.5,47.5 + parent: 2 + - uid: 8030 + components: + - type: Transform + pos: 83.5,7.5 + parent: 2 + - uid: 8404 + components: + - type: Transform + pos: 61.5,41.5 + parent: 2 + - uid: 10138 + components: + - type: Transform + pos: 71.5,40.5 + parent: 2 - uid: 12286 components: - type: Transform @@ -69321,23 +72519,53 @@ entities: parent: 2 - proto: MaintenancePlantSpawner entities: + - uid: 3198 + components: + - type: Transform + pos: 61.5,38.5 + parent: 2 + - uid: 5754 + components: + - type: Transform + pos: 89.5,-16.5 + parent: 2 + - uid: 9456 + components: + - type: Transform + pos: 70.5,35.5 + parent: 2 - uid: 12855 components: - type: Transform pos: 2.5,-8.5 parent: 2 - - uid: 12857 + - uid: 14204 components: - type: Transform - pos: 71.5,34.5 + pos: 72.5,32.5 parent: 2 - uid: 15450 components: - type: Transform pos: 54.5,-20.5 parent: 2 + - uid: 15663 + components: + - type: Transform + pos: 32.5,37.5 + parent: 2 - proto: MaintenanceToolSpawner entities: + - uid: 247 + components: + - type: Transform + pos: 74.5,18.5 + parent: 2 + - uid: 10136 + components: + - type: Transform + pos: 63.5,38.5 + parent: 2 - uid: 12284 components: - type: Transform @@ -69355,11 +72583,21 @@ entities: parent: 2 - proto: MaintenanceWeaponSpawner entities: + - uid: 10720 + components: + - type: Transform + pos: 59.5,31.5 + parent: 2 - uid: 12285 components: - type: Transform pos: 74.5,-12.5 parent: 2 + - uid: 15788 + components: + - type: Transform + pos: 86.5,1.5 + parent: 2 - proto: MaterialCloth entities: - uid: 10295 @@ -69367,6 +72605,13 @@ entities: - type: Transform pos: 18.45301,-3.204442 parent: 2 +- proto: MaterialCloth10 + entities: + - uid: 8448 + components: + - type: Transform + pos: 59.509983,20.68175 + parent: 2 - proto: MaterialDiamond1 entities: - uid: 15378 @@ -69393,6 +72638,31 @@ entities: - type: Transform pos: 65.43021,-13.629852 parent: 2 + - uid: 15903 + components: + - type: Transform + pos: 47.502304,24.556742 + parent: 2 +- proto: MaterialWoodPlank1 + entities: + - uid: 14853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.37381,44.468517 + parent: 2 +- proto: Mattress + entities: + - uid: 2044 + components: + - type: Transform + pos: 62.5,41.5 + parent: 2 + - uid: 10592 + components: + - type: Transform + pos: 63.5,39.5 + parent: 2 - proto: MechEquipmentGrabberSmall entities: - uid: 14752 @@ -69437,6 +72707,11 @@ entities: - type: Transform pos: 62.5,-10.5 parent: 2 + - uid: 14839 + components: + - type: Transform + pos: 44.5,27.5 + parent: 2 - proto: MedicalTechFab entities: - uid: 9369 @@ -69453,6 +72728,12 @@ entities: parent: 2 - proto: MedkitBruteFilled entities: + - uid: 10433 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 42.480003,28.626284 + parent: 2 - uid: 11915 components: - type: Transform @@ -69489,6 +72770,11 @@ entities: - type: Transform pos: 18.523928,24.634445 parent: 2 + - uid: 7846 + components: + - type: Transform + pos: 42.37063,29.016909 + parent: 2 - uid: 9625 components: - type: Transform @@ -69511,8 +72797,19 @@ entities: - type: Transform pos: 72.61498,6.0402474 parent: 2 + - uid: 12493 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 42.62063,29.001284 + parent: 2 - proto: MedkitRadiationFilled entities: + - uid: 6865 + components: + - type: Transform + pos: 18.849405,-26.316147 + parent: 2 - uid: 11917 components: - type: Transform @@ -69557,6 +72854,23 @@ entities: - type: Transform pos: 76.5,8.5 parent: 2 +- proto: MonkeyCubeWrapped + entities: + - uid: 5407 + components: + - type: Transform + pos: 63.5672,25.602118 + parent: 2 + - uid: 11682 + components: + - type: Transform + pos: 63.551575,25.773993 + parent: 2 + - uid: 12798 + components: + - type: Transform + pos: 63.801575,25.758368 + parent: 2 - proto: MopBucket entities: - uid: 13116 @@ -69621,6 +72935,18 @@ entities: rot: -1.5707963267948966 rad pos: 74.5,-3.5 parent: 2 + - uid: 5369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,27.5 + parent: 2 + - uid: 8496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,11.5 + parent: 2 - uid: 9727 components: - type: Transform @@ -69680,6 +73006,12 @@ entities: - type: Transform pos: 69.28111,-15.352209 parent: 2 + - uid: 13502 + components: + - type: Transform + parent: 13141 + - type: Physics + canCollide: False - proto: NetworkConfigurator entities: - uid: 909 @@ -69694,16 +73026,31 @@ entities: parent: 2 - proto: NitrogenCanister entities: + - uid: 129 + components: + - type: Transform + pos: 87.5,3.5 + parent: 2 - uid: 1928 components: - type: Transform pos: 50.5,-23.5 parent: 2 + - uid: 1948 + components: + - type: Transform + pos: 47.5,4.5 + parent: 2 - uid: 2252 components: - type: Transform pos: 34.5,-45.5 parent: 2 + - uid: 2599 + components: + - type: Transform + pos: 67.5,46.5 + parent: 2 - uid: 4306 components: - type: Transform @@ -69714,6 +73061,11 @@ entities: - type: Transform pos: 43.5,-38.5 parent: 2 + - uid: 4322 + components: + - type: Transform + pos: 4.5,40.5 + parent: 2 - uid: 4571 components: - type: Transform @@ -69724,21 +73076,57 @@ entities: - type: Transform pos: 32.5,-46.5 parent: 2 + - uid: 8824 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 - uid: 9094 components: - type: Transform pos: 12.5,16.5 parent: 2 + - uid: 9312 + components: + - type: Transform + pos: 50.5,46.5 + parent: 2 - uid: 9901 components: - type: Transform pos: 46.5,-15.5 parent: 2 + - uid: 10453 + components: + - type: Transform + pos: 47.5,28.5 + parent: 2 - uid: 13968 components: - type: Transform pos: -10.5,-23.5 parent: 2 + - uid: 14943 + components: + - type: Transform + pos: 73.5,-18.5 + parent: 2 +- proto: NitrogenTankFilled + entities: + - uid: 12199 + components: + - type: Transform + parent: 3183 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12761 + components: + - type: Transform + parent: 12746 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: NitrousOxideCanister entities: - uid: 4334 @@ -69751,7 +73139,7 @@ entities: - uid: 14281 components: - type: Transform - pos: 86.43288,28.772083 + pos: 86.52714,28.39597 parent: 2 - proto: NuclearBomb entities: @@ -69765,7 +73153,7 @@ entities: - uid: 14282 components: - type: Transform - pos: 86.53704,28.660894 + pos: 86.50753,32.76683 parent: 2 - proto: OperatingTable entities: @@ -69784,23 +73172,29 @@ entities: - type: Transform pos: 74.5,-2.5 parent: 2 + - uid: 10837 + components: + - type: Transform + pos: 53.5,8.5 + parent: 2 - uid: 11399 components: - type: Transform pos: 66.5,-10.5 parent: 2 - - uid: 12109 - components: - - type: Transform - pos: 55.5,9.5 - parent: 2 - proto: OreProcessor entities: - - uid: 7673 + - uid: 6779 components: - type: Transform - pos: 9.5,29.5 + pos: 6.5,29.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: OxygenCanister entities: - uid: 945 @@ -69818,21 +73212,31 @@ entities: - type: Transform pos: 42.5,-37.5 parent: 2 + - uid: 3275 + components: + - type: Transform + pos: 67.5,47.5 + parent: 2 + - uid: 3396 + components: + - type: Transform + pos: 50.5,45.5 + parent: 2 - uid: 4570 components: - type: Transform pos: 32.5,-28.5 parent: 2 - - uid: 6424 - components: - - type: Transform - pos: 46.5,7.5 - parent: 2 - uid: 7966 components: - type: Transform pos: 31.5,-46.5 parent: 2 + - uid: 9281 + components: + - type: Transform + pos: 73.5,-19.5 + parent: 2 - uid: 9620 components: - type: Transform @@ -69848,10 +73252,20 @@ entities: - type: Transform pos: 8.5,-5.5 parent: 2 - - uid: 11650 + - uid: 10523 components: - type: Transform - pos: 5.5,32.5 + pos: 46.5,28.5 + parent: 2 + - uid: 11398 + components: + - type: Transform + pos: 88.5,3.5 + parent: 2 + - uid: 12381 + components: + - type: Transform + pos: 5.5,40.5 parent: 2 - uid: 12997 components: @@ -69863,11 +73277,6 @@ entities: - type: Transform pos: -9.5,-23.5 parent: 2 - - uid: 14225 - components: - - type: Transform - pos: 82.5,27.5 - parent: 2 - proto: OxygenTankFilled entities: - uid: 5720 @@ -69880,13 +73289,6 @@ entities: - type: Transform pos: 72.5,-9.5 parent: 2 -- proto: PackPaperRollingFilters - entities: - - uid: 14654 - components: - - type: Transform - pos: 55.52354,31.733475 - parent: 2 - proto: PaintingMonkey entities: - uid: 5783 @@ -69903,10 +73305,10 @@ entities: parent: 2 - proto: PaintingOlympia entities: - - uid: 1195 + - uid: 13178 components: - type: Transform - pos: 35.5,42.5 + pos: 32.5,38.5 parent: 2 - proto: PaintingSadClown entities: @@ -69920,7 +73322,7 @@ entities: - uid: 14283 components: - type: Transform - pos: 86.43288,28.584454 + pos: 86.50753,32.605293 parent: 2 - proto: Paper entities: @@ -69936,25 +73338,237 @@ entities: - type: Transform pos: 8.5,4.5 parent: 2 -- proto: PaperBin5 +- proto: PaperBin20 entities: - - uid: 6913 + - uid: 5378 components: - type: Transform - pos: 43.5,19.5 + pos: 36.5,22.5 + parent: 2 +- proto: PaperBin5 + entities: + - uid: 13142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,37.5 parent: 2 - proto: PaperOffice entities: + - uid: 3460 + components: + - type: MetaData + desc: A old laminated document, probably left by the last shift. + name: office paper (Brig Defense) + - type: Transform + pos: 44.57122,24.67782 + parent: 2 + - type: Paper + content: >- + I own an Enforcer for Brig Defense, since thats what Central Command intended. + + Four Gorlex Operatives blow a hole through my Perma with C4. + + "What the devil?" I yell as I grab my Warden's Cap and Enforcer shotgun. Blow 4 twelve gauge holes through the Corpsman, he's crit on the spot. + + Draw my Mk58 on the second guy, miss her entirely because a secoff exploded with Tear Gas, it hits the HOP instead. + + I have to resort to the toolbox in my armory, filled to the brim with seized grenades. "GLORY TO NANOTRASEN!!" The resulting explosion instagibbing the Commander and a Operative, setting off all the firelocks on station. + + Draw my Stun Baton on the last terrified Operative, he dies from spacing waiting for the paramedic to arrive becuase I took his suit off immediately after cuffing him. + + + Just as Central Command Intended. + editingDisabled: True + - uid: 5325 + components: + - type: MetaData + desc: a threat made towards the previous chef + - type: Transform + rot: 3.141592653589793 rad + pos: 53.561028,42.489468 + parent: 2 + - type: Paper + content: >2- + + [head=1] YOUR DAYS ARE NUMBERED FRANK, YOU AIN'T EVER SERVING ANOTHER MOTH BURGER + editingDisabled: True + missingComponents: + - FaxableObject + - uid: 5736 + components: + - type: MetaData + desc: A laminiated document, probably left here by the previous shift. + name: office paper (Cryogenic Tube User Manual) + - type: Transform + pos: 61.634254,-0.53476226 + parent: 2 + - type: Paper + content: > + [head=2][bold]Cryogenic Tube User Manual[/bold][/head] + + + [head=3][bold]Operational Theory[/bold][/head] + + Cryogenic chemicals represent a simple, and most importantly, economical means of treating patients. All cryogenic chemicals only work if the patient’s body temperature below a certain value: 213K with a few exceptions. + + The cryogenic tube system is intended to safely lower a patient’s body temperature below this threshold, then treat them with said cryogenic chemicals. + + + [head=3][bold]Setup[/bold][/head] + + 1: Identify the pressure pump. Set its output pressure to 540kpa and switch it on. + + 2: Identify the gas filter. Set its filter to carbon dioxide, output pressure to maximum, and switch it on. + + 3: Identify the freezer. Set its temperature to 74K and switch it on. + + 4: Allow the system time to reach the correct temperature and pressure. You can view this progress by using a gas analyzer on the pressure pump or cryogenic tube. If temperature or pressure remains incorrect, consult your atmospherics department. + + 5: Fill one or more standard 50u beakers with cryogenic medicine. Do not insert the beaker into the tube: once inserted it will be immediately used, wasting it unless a patient of the correct temperature is inside. + + + [head=3][bold]Usage[/bold][/head] + + 1: Ensure the patient has no bleeding wounds, and is not wearing any insulate clothing such as a winter coat, scarf, or fur boots. + + 2: Place the patient inside the cryogenic tube. Ensure that no beaker is in the tube. + + 3: Use the tube’s display (accessible through the context menu) to view the patient’s health and temperature. Wait for their temperature to go below the threshold of your chosen medicine. + + 4: Place a standard 50u beaker of cryogenic medicine into the tube. As soon as it is inserted, it will begin transferring the liquid into the patient’s bloodstream. Continue to monitor their vitals on the display. + + 5: Once the desired effect has been achieved, eject the beaker and remove the patient from the tube. A injection of 5u Leporazine is recommended to quickly raise their body temp back to comfortable levels. + + + [head=3][bold]Supported Chemicals[/bold][/head] + + The following medicine has been approved for use in cryogenic tubes, and may be mixed by your chemists and Chief Medical Officer. All will metabolize at 0.5u/second, but required temperature may vary. + + The following will refer to injury in standard damage units; this system should be familiar to any modern medical professional. + + + [bold]Cryoxadone (Cryox)[/bold] + + The most common cryogenic medicine, and a jack of all trades. As it is easy to mix, your medical department should always have a supply of this on hand. + + Under 213K temp, 1u heals 4 Brute, 6 burn, 6 airloss, and 4 toxin damage. + + + [bold]Doxarubixadone (Doxa)[/bold] + + 4 out of 5 doctors agree this is the most effective treatment for genetic damage. Fairly affordable. + + Under 213K temp, 1u heals 2 genetic damage. + + + [bold]Aloxadone (Alox)[/bold] + + Notably, this chemical works on deceased patients, making it useful for treating massive burn damage. Some ingredients require the assistance of botany. + + Under 213K temp, 1u heals 4 heat, 4 shock, 4 cold, and 1.5 caustic damage. + + + [bold]Necrosol (Necro)[/bold] + + Notably, this chemical works on deceased patients. Necrosol is synthesized with the rare and poorly understood Omnizine, and is the only way to heal patients afflicted by over 200 poison damage. + + Under 213K temp, 1u heals 4 brute, 5 burn, and 2 poison. + + + [bold]Opporozidone (Oppo)[/bold] + + Notably, this chemical works on deceased patients. Oppo is synthesized with the rare Cognizine, and is the only way to reverse the effects of body decomposition. Requires a lower temperature. + + Under 150K temp, 1u reverts 20 seconds of body decomposition. + + + [head=3][bold]How Does It Work?[/bold][/head] + + The gas pump pulls air from the room’s air distribution pipes into the cryogenic tube’s own pipe loop. The pressure of 540kpa is quite spesific: the higher the pressure in the tubes, the faster the patient can be cooled. However, SolGov regulations forbid subjecting unprotected patients to pressures above 550kpa, citing the risk of barotrauma. + + + The lower the temperature on the freezer, the faster the patient will cool. If Leporazine is available to raise body temperature after treatment, the freezer may safely be set to its lowest possible temperature. + + + The gas filter removes unwanted gasses from the pipe loop. This is most commonly carbon dioxide produced by the patient exhaling, but ammonia may also be produced by Vox patients or those experiencing decomposition. The removed gas will be routed directly into the room’s waste pipe, while filtered air will go back into the cryogenic tubes. + editingDisabled: True + - uid: 7936 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 37.63905,22.47862 + parent: 2 + - uid: 8463 + components: + - type: MetaData + desc: Looks like this was left by the previous shift. + name: Old Note + - type: Transform + pos: 28.323992,-40.41831 + parent: 2 + - type: Paper + content: >- + I don't know if you're trained already, so I hope this'll help. + + AME controller needs an HV wire to output to, check the area with a crowbar or t-ray scanner 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. + editingDisabled: True + - uid: 11808 + components: + - type: MetaData + desc: A handwritten laminated note, probably left by the last shift. + name: office paper (Lathe Cooling System) + - type: Transform + pos: 49.32131,19.793486 + parent: 2 + - type: Paper + content: >- + Hey John, wasn't able to finish the hyper-convection lathe cooling system, so I've left instructions on how to finish it. + + + Put passive vents underneath each of the lathes, I think I did one of them already? These should be facing towards the green pipe in the center. Make sure to grab the T-ray scanner I left with this note to see any pipes which are underneath floor tiles. + + + Connect the green pipes to the machine frame across from the lathes. You'll need a machine board to finish the freezer, and probably some spare parts. + + + Once the freezer is finished, hook it up to the green pipes and set it to 173K. Make sure you turn it on this time, we don't want a repeat of the containment field incident. + + + DO NOT upgrade the lathes to hyper-convection until the system is finished, you'll ash me and every other moth in this department. + + + Sorry again about not finishing it, but im sure you can figure it out! + + - Aurora + editingDisabled: True - uid: 15117 components: - type: Transform pos: 89.48129,32.60053 parent: 2 -- proto: ParticleAcceleratorControlBoxUnfinished +- proto: ParticleAcceleratorControlBox entities: - - uid: 4800 + - uid: 251 components: - type: Transform + rot: 1.5707963267948966 rad pos: 20.5,-40.5 parent: 2 - proto: ParticleAcceleratorEmitterForeUnfinished @@ -70021,20 +73635,43 @@ entities: - type: Transform pos: 17.877897,-26.451574 parent: 2 - - uid: 9708 + - uid: 13002 components: - type: Transform - pos: 5.4799275,40.593884 - parent: 2 - - uid: 11126 - components: - - type: Transform - pos: 54.520523,-14.325092 + pos: 6.699466,40.553192 parent: 2 - uid: 14760 components: - type: Transform - pos: 5.5,31.5 + pos: 6.480716,40.693703 + parent: 2 +- proto: PartRodMetal1 + entities: + - uid: 4873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.467148,38.49088 + parent: 2 + - uid: 10716 + components: + - type: Transform + pos: 58.547253,48.6787 + parent: 2 + - uid: 12090 + components: + - type: Transform + pos: 66.52919,38.621952 + parent: 2 + - uid: 15901 + components: + - type: Transform + pos: 58.734753,48.4912 + parent: 2 + - uid: 15902 + components: + - type: Transform + pos: 66.58378,38.434452 parent: 2 - proto: Pen entities: @@ -70048,6 +73685,12 @@ entities: - type: Transform pos: 11.095052,4.613485 parent: 2 + - uid: 4413 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 37.88905,22.650496 + parent: 2 - uid: 6047 components: - type: Transform @@ -70058,11 +73701,6 @@ entities: - type: Transform pos: 23.446625,15.655876 parent: 2 - - uid: 7761 - components: - - type: Transform - pos: 39.66111,17.754585 - parent: 2 - uid: 11973 components: - type: Transform @@ -70088,16 +73726,6 @@ entities: - type: Transform pos: 21.523584,22.514828 parent: 2 - - uid: 11979 - components: - - type: Transform - pos: 44.764744,23.837742 - parent: 2 - - uid: 11980 - components: - - type: Transform - pos: 63.3999,10.027362 - parent: 2 - uid: 14632 components: - type: Transform @@ -70108,8 +73736,20 @@ entities: - type: Transform pos: 51.110676,4.5944533 parent: 2 + - uid: 15613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.71149,11.225653 + parent: 2 - proto: PersonalAI entities: + - uid: 2353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.43356,37.249077 + parent: 2 - uid: 7414 components: - type: Transform @@ -70120,24 +73760,12 @@ entities: - type: Transform pos: 26.514572,47.589886 parent: 2 - - uid: 11217 - components: - - type: Transform - pos: 70.51922,36.549946 - parent: 2 - - uid: 13621 - components: - - type: Transform - parent: 13620 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: PhoneInstrument entities: - - uid: 7008 + - uid: 9407 components: - type: Transform - pos: 34.02968,41.62158 + pos: 32.347046,41.654026 parent: 2 - proto: PianoInstrument entities: @@ -70152,8 +73780,44 @@ entities: - uid: 14759 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,31.5 + pos: 7.4248915,29.65233 + parent: 2 +- proto: PillCanisterRandom + entities: + - uid: 15668 + components: + - type: Transform + pos: 61.291603,41.811512 + parent: 2 + - uid: 15669 + components: + - type: Transform + pos: 62.619728,38.764637 + parent: 2 +- proto: PillSpaceDrugs + entities: + - uid: 10139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.604103,41.561512 + parent: 2 + - uid: 10683 + components: + - type: Transform + pos: 62.385353,38.530262 + parent: 2 + - uid: 15672 + components: + - type: Transform + pos: 61.385353,41.436512 + parent: 2 +- proto: PlantBag + entities: + - uid: 2757 + components: + - type: Transform + pos: 37.179035,22.625505 parent: 2 - proto: PlantBGoneSpray entities: @@ -70210,58 +73874,36 @@ entities: - type: Transform pos: 76.5,-5.5 parent: 2 - - uid: 10135 +- proto: PlasmaWindoorSecureSecurityLocked + entities: + - uid: 9304 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,24.5 + pos: 42.5,35.5 parent: 2 - - uid: 12270 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10606: + - - DoorStatus + - Close + - uid: 10606 components: - type: Transform 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 - components: - - 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 + pos: 42.5,35.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9304: + - - DoorStatus + - Close - proto: PlasticFlapsAirtightClear entities: - - uid: 451 - components: - - type: Transform - pos: 7.5,35.5 - parent: 2 - uid: 5576 components: - type: Transform @@ -70287,6 +73929,11 @@ entities: - type: Transform pos: 3.5,23.5 parent: 2 + - uid: 14663 + components: + - type: Transform + pos: 7.5,36.5 + parent: 2 - uid: 14767 components: - type: Transform @@ -70311,12 +73958,13 @@ entities: - type: Transform pos: 6.0254927,-3.2604024 parent: 2 -- proto: PlushieNar +- proto: PlushieLizard entities: - - uid: 5400 + - uid: 1705 components: - type: Transform - pos: 62.48992,18.519245 + rot: 6.283185307179586 rad + pos: 53.482903,43.66107 parent: 2 - proto: PlushieSharkGrey entities: @@ -70341,16 +73989,11 @@ entities: parent: 2 - proto: PortableFlasher entities: - - uid: 8412 + - uid: 13649 components: - type: Transform - anchored: False - pos: 31.5,26.5 + pos: 39.5,36.5 parent: 2 - - type: TriggerOnProximity - enabled: False - - type: Physics - bodyType: Dynamic - proto: PortableGeneratorJrPacman entities: - uid: 801 @@ -70358,10 +74001,10 @@ entities: - type: Transform pos: 13.5,-28.5 parent: 2 - - uid: 3176 + - uid: 3233 components: - type: Transform - pos: 35.5,36.5 + pos: 50.5,26.5 parent: 2 - uid: 4181 components: @@ -70373,6 +74016,11 @@ entities: - type: Transform pos: 12.5,17.5 parent: 2 + - uid: 6400 + components: + - type: Transform + pos: 81.5,12.5 + parent: 2 - uid: 7854 components: - type: Transform @@ -70393,11 +74041,6 @@ entities: - type: Transform pos: 9.5,-22.5 parent: 2 - - uid: 12362 - components: - - type: Transform - pos: 67.5,11.5 - parent: 2 - uid: 13153 components: - type: Transform @@ -70408,6 +74051,11 @@ entities: - type: Transform pos: -6.5,-23.5 parent: 2 + - uid: 15623 + components: + - type: Transform + pos: 36.5,36.5 + parent: 2 - proto: PortableGeneratorPacman entities: - uid: 4301 @@ -70420,13 +74068,15 @@ entities: - type: Transform pos: 80.5,33.5 parent: 2 -- proto: PortableScrubber +- proto: PortableGeneratorSuperPacman entities: - - uid: 4977 + - uid: 10884 components: - type: Transform - pos: 47.5,7.5 + pos: 10.5,-31.5 parent: 2 +- proto: PortableScrubber + entities: - uid: 6765 components: - type: Transform @@ -70458,12 +74108,6 @@ entities: - type: Transform pos: 58.5,-16.5 parent: 2 - - uid: 14084 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,34.5 - parent: 2 - proto: PosterContrabandEAT entities: - uid: 6763 @@ -70471,6 +74115,13 @@ entities: - type: Transform pos: 30.5,-8.5 parent: 2 +- proto: PosterContrabandFunPolice + entities: + - uid: 8525 + components: + - type: Transform + pos: 43.5,20.5 + parent: 2 - proto: PosterContrabandGreyTide entities: - uid: 739 @@ -70515,17 +74166,18 @@ entities: parent: 2 - proto: PosterLegit12Gauge entities: - - uid: 8980 + - uid: 4398 components: - type: Transform - pos: 37.5,28.5 + rot: -1.5707963267948966 rad + pos: 43.5,37.5 parent: 2 - proto: PosterLegit50thAnniversaryVintageReprint entities: - - uid: 11289 + - uid: 13087 components: - type: Transform - pos: 56.5,21.5 + pos: 61.5,17.5 parent: 2 - proto: PosterLegitAnatomyPoster entities: @@ -70563,22 +74215,6 @@ entities: - type: Transform pos: 68.5,-14.5 parent: 2 -- proto: PosterLegitDoNotQuestion - entities: - - uid: 14643 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,34.5 - parent: 2 -- proto: PosterLegitFoamForceAd - entities: - - uid: 2311 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,28.5 - parent: 2 - proto: PosterLegitFruitBowl entities: - uid: 13101 @@ -70586,6 +74222,21 @@ entities: - type: Transform pos: 41.5,-9.5 parent: 2 +- proto: PosterLegitHelpOthers + entities: + - uid: 8464 + components: + - type: Transform + pos: 35.5,35.5 + parent: 2 +- proto: PosterLegitHereForYourSafety + entities: + - uid: 2303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,26.5 + parent: 2 - proto: PosterLegitHighClassMartini entities: - uid: 13099 @@ -70600,6 +74251,13 @@ entities: - type: Transform pos: 17.5,-6.5 parent: 2 +- proto: PosterLegitIonRifle + entities: + - uid: 8483 + components: + - type: Transform + pos: 38.5,36.5 + parent: 2 - proto: PosterLegitLoveIan entities: - uid: 10252 @@ -70623,17 +74281,6 @@ entities: parent: 2 - proto: PosterLegitNanotrasenLogo entities: - - uid: 404 - components: - - 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 @@ -70667,6 +74314,14 @@ entities: - type: Transform pos: 13.5,8.5 parent: 2 +- proto: PosterLegitObey + entities: + - uid: 2305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,33.5 + parent: 2 - proto: PosterLegitPeriodicTable entities: - uid: 13093 @@ -70681,30 +74336,30 @@ entities: parent: 2 - proto: PosterLegitRenault entities: - - uid: 13092 + - uid: 249 components: - type: Transform - pos: 35.5,41.5 + pos: 34.5,41.5 parent: 2 - proto: PosterLegitReportCrimes entities: - - uid: 13096 + - uid: 8553 components: - type: Transform - pos: 37.5,16.5 + pos: 50.5,29.5 parent: 2 - proto: PosterLegitSafetyEyeProtection entities: + - uid: 3668 + components: + - type: Transform + pos: 50.5,12.5 + parent: 2 - uid: 13083 components: - type: Transform pos: 40.5,-41.5 parent: 2 - - uid: 13087 - components: - - type: Transform - pos: 55.5,16.5 - parent: 2 - proto: PosterLegitSafetyInternals entities: - uid: 13084 @@ -70751,6 +74406,11 @@ entities: parent: 2 - proto: PosterLegitSafetyMothMeth entities: + - uid: 3413 + components: + - type: Transform + pos: 41.5,28.5 + parent: 2 - uid: 13086 components: - type: Transform @@ -70777,16 +74437,23 @@ entities: parent: 2 - proto: PosterLegitSecWatch entities: - - uid: 2684 - components: - - type: Transform - pos: 30.5,16.5 - parent: 2 - uid: 7732 components: - type: Transform pos: -2.5,-6.5 parent: 2 + - uid: 8400 + components: + - type: Transform + pos: 35.5,22.5 + parent: 2 +- proto: PosterLegitSpaceCops + entities: + - uid: 8556 + components: + - type: Transform + pos: 52.5,34.5 + parent: 2 - proto: PosterLegitStateLaws entities: - uid: 7731 @@ -70794,6 +74461,13 @@ entities: - type: Transform pos: -4.5,-10.5 parent: 2 +- proto: PosterLegitTheOwl + entities: + - uid: 8579 + components: + - type: Transform + pos: 48.5,43.5 + parent: 2 - proto: PosterLegitUeNo entities: - uid: 11093 @@ -70808,6 +74482,11 @@ entities: - type: Transform pos: 22.5,2.5 parent: 2 + - uid: 15688 + components: + - type: Transform + pos: 48.5,48.5 + parent: 2 - proto: PosterMapPacked entities: - uid: 12314 @@ -70835,6 +74514,13 @@ entities: - type: Transform pos: 30.5,12.5 parent: 2 +- proto: PottedPlant17 + entities: + - uid: 2449 + components: + - type: Transform + pos: 63.5,50.5 + parent: 2 - proto: PottedPlant19 entities: - uid: 2615 @@ -70851,10 +74537,10 @@ entities: parent: 2 - proto: PottedPlant22 entities: - - uid: 12726 + - uid: 10391 components: - type: Transform - pos: 30.5,44.5 + pos: 29.5,44.5 parent: 2 - proto: PottedPlantBioluminscent entities: @@ -70883,6 +74569,11 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} + - uid: 3040 + components: + - type: Transform + pos: 45.5,19.5 + parent: 2 - uid: 4698 components: - type: Transform @@ -70899,22 +74590,6 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 5340 - components: - - type: Transform - pos: 54.5,22.5 - parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 5344 - components: - - type: Transform - pos: 59.5,25.5 - parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - uid: 7298 components: - type: Transform @@ -70941,37 +74616,21 @@ entities: - type: Transform pos: 3.5,13.5 parent: 2 + - uid: 10723 + components: + - type: Transform + pos: 20.5,35.5 + parent: 2 - uid: 11003 components: - type: Transform pos: 54.5,1.5 parent: 2 - - uid: 11221 - components: - - type: Transform - pos: 18.5,35.5 - parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 11808 - components: - - type: Transform - pos: 45.5,16.5 - parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - uid: 12165 components: - type: Transform pos: 58.5,-2.5 parent: 2 - - uid: 12754 - components: - - type: Transform - pos: 21.5,35.5 - parent: 2 - uid: 12949 components: - type: Transform @@ -70992,16 +74651,6 @@ entities: - type: Transform pos: 79.5,29.5 parent: 2 - - uid: 14232 - components: - - type: Transform - pos: 79.5,31.5 - parent: 2 - - uid: 14653 - components: - - type: Transform - pos: 57.5,38.5 - parent: 2 - uid: 14956 components: - type: Transform @@ -71017,13 +74666,6 @@ entities: - type: Transform pos: 31.5,-2.5 parent: 2 -- proto: PottedPlantRD - entities: - - uid: 10662 - components: - - type: Transform - pos: 60.5,10.5 - parent: 2 - proto: PowerCellHigh entities: - uid: 5631 @@ -71049,35 +74691,16 @@ entities: - type: Transform pos: 23.5,-23.5 parent: 2 - - uid: 5312 + - uid: 5340 components: - type: Transform - pos: 56.5,20.5 + pos: 42.5,29.5 + parent: 2 + - uid: 5483 + components: + - type: Transform + pos: 54.5,17.5 parent: 2 - - type: ContainerContainer - containers: - PowerCellCharger-powerCellContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger-slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - type: Physics - canCollide: False - uid: 6794 components: - type: Transform @@ -71112,6 +74735,11 @@ entities: - type: Transform pos: 17.5,24.5 parent: 2 + - uid: 8632 + components: + - type: Transform + pos: 45.5,9.5 + parent: 2 - uid: 9626 components: - type: Transform @@ -71166,28 +74794,69 @@ entities: - type: Transform pos: 63.5,-9.5 parent: 2 - - uid: 15363 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,9.5 - parent: 2 -- proto: PowerCellSmall - entities: - - uid: 5313 - components: - - type: Transform - pos: 56.529827,20.631775 - parent: 2 - proto: PowerDrill entities: - - uid: 10671 + - uid: 10894 components: - type: Transform - pos: 63.50305,8.626264 + pos: 65.52399,10.725653 parent: 2 - proto: PoweredDimSmallLight entities: + - uid: 3330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,50.5 + parent: 2 + - uid: 4502 + components: + - type: Transform + pos: 43.5,47.5 + parent: 2 + - uid: 7808 + components: + - type: Transform + pos: 57.5,29.5 + parent: 2 + - uid: 7984 + components: + - type: Transform + pos: 65.5,8.5 + parent: 2 + - uid: 10374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,38.5 + parent: 2 + - uid: 10591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,32.5 + parent: 2 + - uid: 10666 + components: + - type: Transform + pos: 64.5,20.5 + parent: 2 + - uid: 10674 + components: + - type: Transform + pos: 54.5,45.5 + parent: 2 + - uid: 10680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,27.5 + parent: 2 + - uid: 11661 + components: + - type: Transform + pos: 68.5,42.5 + parent: 2 - uid: 12390 components: - type: Transform @@ -71198,18 +74867,6 @@ entities: - type: Transform pos: 8.5,-15.5 parent: 2 - - uid: 12875 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,47.5 - parent: 2 - - uid: 12879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,11.5 - parent: 2 - uid: 12884 components: - type: Transform @@ -71225,11 +74882,24 @@ entities: - type: Transform pos: 89.5,-18.5 parent: 2 - - uid: 15278 + - uid: 13432 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,35.5 + rot: 1.5707963267948966 rad + pos: 62.5,19.5 + parent: 2 + - uid: 15420 + components: + - type: Transform + pos: 75.5,12.5 + parent: 2 +- proto: PoweredLEDSmallLight + entities: + - uid: 10593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,21.5 parent: 2 - proto: Poweredlight entities: @@ -71241,6 +74911,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,36.5 + parent: 2 - uid: 398 components: - type: Transform @@ -71261,6 +74937,11 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 603 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 - uid: 840 components: - type: Transform @@ -71319,6 +75000,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 1831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,23.5 + parent: 2 - uid: 1922 components: - type: Transform @@ -71344,11 +75031,33 @@ entities: - type: Transform pos: 48.5,-23.5 parent: 2 - - uid: 2227 + - uid: 2199 + components: + - type: Transform + pos: 41.5,22.5 + parent: 2 + - uid: 2219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,26.5 + parent: 2 + - uid: 2255 + components: + - type: Transform + pos: 59.5,49.5 + parent: 2 + - uid: 2259 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,35.5 + pos: 53.5,30.5 + parent: 2 + - uid: 2340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,36.5 parent: 2 - uid: 2741 components: @@ -71380,10 +75089,17 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 3277 + - uid: 3145 components: - type: Transform - pos: 38.5,31.5 + rot: 1.5707963267948966 rad + pos: 32.5,29.5 + parent: 2 + - uid: 3193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,26.5 parent: 2 - uid: 3783 components: @@ -71463,14 +75179,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 4699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,27.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 4700 components: - type: Transform @@ -71546,11 +75254,6 @@ entities: - type: Transform pos: 51.5,-4.5 parent: 2 - - uid: 5062 - components: - - type: Transform - pos: 30.5,30.5 - parent: 2 - uid: 5080 components: - type: Transform @@ -71592,6 +75295,12 @@ entities: - type: Transform pos: 40.5,-42.5 parent: 2 + - uid: 5199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,30.5 + parent: 2 - uid: 5218 components: - type: Transform @@ -71612,14 +75321,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5277 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,9.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 5278 components: - type: Transform @@ -71628,15 +75329,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5280 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,9.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - uid: 5281 components: - type: Transform @@ -71644,21 +75336,18 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5282 + - uid: 5348 components: - type: Transform - pos: 68.5,16.5 + rot: -1.5707963267948966 rad + pos: 36.5,42.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5290 + - uid: 5368 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,13.5 + rot: -1.5707963267948966 rad + pos: 54.5,9.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 5432 components: - type: Transform @@ -71666,14 +75355,24 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5433 + - uid: 5454 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,40.5 + rot: 1.5707963267948966 rad + pos: 29.5,25.5 + parent: 2 + - uid: 5460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,33.5 + parent: 2 + - uid: 5504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,32.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 5766 components: - type: Transform @@ -71710,12 +75409,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6006 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,29.5 - parent: 2 - uid: 6009 components: - type: Transform @@ -71787,29 +75480,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6486 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,24.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6487 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,24.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6537 - components: - - type: Transform - pos: 56.5,20.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 6538 components: - type: Transform @@ -71887,14 +75557,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-36.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7366 components: - type: Transform @@ -71916,15 +75578,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,9.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - uid: 7530 components: - type: Transform @@ -71998,14 +75651,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7595 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,13.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7683 components: - type: Transform @@ -72021,21 +75666,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7688 - components: - - type: Transform - pos: 50.5,21.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7720 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,17.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7726 components: - type: Transform @@ -72097,13 +75727,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7857 - components: - - type: Transform - pos: 34.5,43.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7958 components: - type: Transform @@ -72121,6 +75744,12 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,13.5 parent: 2 + - uid: 8029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-36.5 + parent: 2 - uid: 8130 components: - type: Transform @@ -72134,14 +75763,6 @@ entities: - type: Transform pos: -14.5,0.5 parent: 2 - - uid: 8266 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,22.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8335 components: - type: Transform @@ -72173,6 +75794,11 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 8552 + components: + - type: Transform + pos: 50.5,21.5 + parent: 2 - uid: 8568 components: - type: Transform @@ -72181,25 +75807,18 @@ 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 - pos: 39.5,19.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8574 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,9.5 parent: 2 + - uid: 8576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,26.5 + parent: 2 - uid: 8642 components: - type: Transform @@ -72207,6 +75826,22 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 8674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,35.5 + parent: 2 + - uid: 8717 + components: + - type: Transform + pos: 47.5,42.5 + parent: 2 + - uid: 8810 + components: + - type: Transform + pos: 55.5,25.5 + parent: 2 - uid: 9061 components: - type: Transform @@ -72236,23 +75871,17 @@ entities: rot: 3.141592653589793 rad pos: 51.5,-8.5 parent: 2 - - uid: 9883 + - uid: 10597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,28.5 + rot: 3.141592653589793 rad + pos: 43.5,27.5 parent: 2 - - uid: 10450 + - uid: 10611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,27.5 - parent: 2 - - uid: 10451 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,22.5 + rot: 3.141592653589793 rad + pos: 39.5,17.5 parent: 2 - uid: 10708 components: @@ -72262,6 +75891,11 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 10891 + components: + - type: Transform + pos: 35.5,21.5 + parent: 2 - uid: 10992 components: - type: Transform @@ -72386,11 +76020,16 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,-27.5 parent: 2 - - uid: 13604 + - uid: 13503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,37.5 + rot: 3.141592653589793 rad + pos: 33.5,39.5 + parent: 2 + - uid: 13537 + components: + - type: Transform + pos: 44.5,36.5 parent: 2 - uid: 13683 components: @@ -72433,6 +76072,17 @@ entities: rot: 3.141592653589793 rad pos: 80.5,29.5 parent: 2 + - uid: 14434 + components: + - type: Transform + pos: 40.5,36.5 + parent: 2 + - uid: 14442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,34.5 + parent: 2 - uid: 14527 components: - type: Transform @@ -72450,23 +76100,42 @@ entities: - type: Transform pos: 91.5,32.5 parent: 2 - - uid: 14594 + - uid: 14652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,26.5 + rot: 3.141592653589793 rad + pos: 63.5,10.5 parent: 2 - - uid: 15368 + - uid: 14655 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,20.5 + rot: 3.141592653589793 rad + pos: 55.5,13.5 parent: 2 - uid: 15383 components: - type: Transform pos: 18.5,42.5 parent: 2 + - uid: 15539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,22.5 + parent: 2 + - uid: 15542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,19.5 + parent: 2 +- proto: PoweredlightEmpty + entities: + - uid: 15671 + components: + - type: Transform + pos: 53.5,49.5 + parent: 2 - proto: PoweredlightExterior entities: - uid: 5664 @@ -72476,12 +76145,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.9375,38.984375 parent: 126 - - uid: 14590 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,42.5 - parent: 2 - uid: 14595 components: - type: Transform @@ -72494,14 +76157,31 @@ entities: rot: -1.5707963267948966 rad pos: 77.5,35.5 parent: 2 - - uid: 14627 +- proto: PoweredlightLED + entities: + - uid: 5930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-17.5 + parent: 2 + - uid: 8402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,32.5 + parent: 2 + - uid: 8458 components: - type: Transform rot: -1.5707963267948966 rad - pos: 64.5,42.5 + pos: 64.5,28.5 + parent: 2 + - uid: 10595 + components: + - type: Transform + pos: 68.5,16.5 parent: 2 -- proto: PoweredlightLED - entities: - uid: 10984 components: - type: Transform @@ -72513,12 +76193,6 @@ entities: - type: Transform pos: 85.5,32.5 parent: 2 - - uid: 11109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-17.5 - parent: 2 - proto: PoweredlightSodium entities: - uid: 3197 @@ -72557,6 +76231,11 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-16.5 parent: 2 + - uid: 301 + components: + - type: Transform + pos: 17.5,-15.5 + parent: 2 - uid: 317 components: - type: Transform @@ -72576,6 +76255,18 @@ entities: - type: Transform pos: -8.5,-9.5 parent: 2 + - uid: 632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-13.5 + parent: 2 + - uid: 661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-19.5 + parent: 2 - uid: 693 components: - type: Transform @@ -72600,36 +76291,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,15.5 parent: 2 - - uid: 2424 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,23.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2425 - components: - - type: Transform - pos: 30.5,21.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,17.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2482 - components: - - type: Transform - pos: 42.5,20.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 2491 components: - type: Transform @@ -72693,66 +76354,29 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,39.5 parent: 2 - - uid: 3147 + - uid: 3586 components: - type: Transform - pos: 59.5,38.5 + rot: 1.5707963267948966 rad + pos: 55.5,53.5 parent: 2 - - uid: 3148 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,34.5 - parent: 2 - - uid: 3278 - components: - - type: Transform - pos: 49.5,35.5 - parent: 2 - - uid: 3410 - components: - - type: Transform - pos: 70.5,34.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3432 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,30.5 - parent: 2 - - uid: 3447 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,27.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 4034 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-9.5 parent: 2 - - uid: 4071 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-14.5 - parent: 2 - uid: 4149 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,-8.5 parent: 2 - - uid: 4403 + - uid: 4399 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,27.5 + rot: -1.5707963267948966 rad + pos: 67.5,32.5 parent: 2 - uid: 4438 components: @@ -72905,13 +76529,6 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-36.5 parent: 2 - - uid: 5264 - components: - - type: Transform - pos: 50.5,15.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 5274 components: - type: Transform @@ -72920,47 +76537,11 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5464 - components: - - type: Transform - pos: 70.5,40.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5465 - components: - - type: Transform - pos: 70.5,37.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 5611 components: - type: Transform pos: 34.5,-38.5 parent: 2 - - uid: 5674 - components: - - type: Transform - pos: 68.5,42.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5675 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,38.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5676 - components: - - type: Transform - pos: 67.5,29.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 5723 components: - type: Transform @@ -72968,12 +76549,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6325 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,20.5 - parent: 2 - uid: 6492 components: - type: Transform @@ -73067,14 +76642,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7829 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,7.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7862 components: - type: Transform @@ -73097,14 +76664,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,5.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7866 components: - type: Transform @@ -73123,16 +76682,11 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,35.5 parent: 2 - - uid: 8376 + - uid: 8424 components: - type: Transform - pos: 58.5,32.5 - parent: 2 - - uid: 8527 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-18.5 + rot: 1.5707963267948966 rad + pos: 69.5,45.5 parent: 2 - uid: 8528 components: @@ -73156,37 +76710,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,12.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8602 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,8.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8603 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,44.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8609 - components: - - type: Transform - pos: 30.5,26.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8639 components: - type: Transform @@ -73236,6 +76759,16 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-41.5 parent: 2 + - uid: 10386 + components: + - type: Transform + pos: 30.5,31.5 + parent: 2 + - uid: 10665 + components: + - type: Transform + pos: 34.5,37.5 + parent: 2 - uid: 10707 components: - type: Transform @@ -73277,13 +76810,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11100 - components: - - type: Transform - pos: 44.5,25.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 11438 components: - type: Transform @@ -73380,18 +76906,6 @@ entities: - type: Transform pos: -26.5,0.5 parent: 2 - - uid: 13569 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,37.5 - parent: 2 - - uid: 13598 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,40.5 - parent: 2 - uid: 13716 components: - type: Transform @@ -73415,23 +76929,18 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-23.5 parent: 2 - - uid: 14085 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,33.5 - parent: 2 - - uid: 14086 - components: - - type: Transform - pos: 50.5,28.5 - parent: 2 - uid: 14149 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,20.5 parent: 2 + - uid: 14249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,46.5 + parent: 2 - uid: 14530 components: - type: Transform @@ -73444,26 +76953,172 @@ entities: rot: -1.5707963267948966 rad pos: 82.5,33.5 parent: 2 + - uid: 14798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,10.5 + parent: 2 - uid: 15007 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-12.5 parent: 2 -- proto: Protolathe - entities: - - uid: 5305 + - uid: 15569 components: - type: Transform - pos: 53.5,18.5 + rot: 3.141592653589793 rad + pos: 50.5,13.5 parent: 2 - - type: MaterialStorage - materialWhiteList: - - Steel - - Glass - - Plastic - - Wood - - Gold + - uid: 15674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,36.5 + parent: 2 + - uid: 15685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,33.5 + parent: 2 + - uid: 15791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,3.5 + parent: 2 +- proto: PoweredSmallLightEmpty + entities: + - uid: 3323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,24.5 + parent: 2 + - uid: 3348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,44.5 + parent: 2 + - uid: 4812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,25.5 + parent: 2 + - uid: 5488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,46.5 + parent: 2 + - uid: 8680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,53.5 + parent: 2 + - uid: 10660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,38.5 + parent: 2 + - uid: 10712 + components: + - type: Transform + pos: 51.5,28.5 + parent: 2 + - uid: 14225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,27.5 + parent: 2 + - uid: 14344 + components: + - type: Transform + pos: 69.5,35.5 + parent: 2 + - uid: 15670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,45.5 + parent: 2 + - uid: 15673 + components: + - type: Transform + pos: 70.5,40.5 + parent: 2 +- proto: PoweredWarmSmallLight + entities: + - uid: 3431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,37.5 + parent: 2 + - uid: 8202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,41.5 + parent: 2 + - uid: 9411 + components: + - type: Transform + pos: 58.5,39.5 + parent: 2 + - uid: 10400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,40.5 + parent: 2 + - uid: 10609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,18.5 + parent: 2 + - uid: 10661 + components: + - type: Transform + pos: 67.5,29.5 + parent: 2 + - uid: 10673 + components: + - type: Transform + pos: 62.5,41.5 + parent: 2 + - uid: 11476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,41.5 + parent: 2 + - uid: 13639 + components: + - type: Transform + pos: 43.5,25.5 + parent: 2 +- proto: Protolathe + entities: + - uid: 5238 + components: + - type: Transform + pos: 53.5,21.5 + parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: ProtolatheMachineCircuitboard entities: - uid: 12658 @@ -73473,15 +77128,10 @@ entities: parent: 2 - proto: Rack entities: - - uid: 251 + - uid: 27 components: - type: Transform - pos: -0.5,-5.5 - parent: 2 - - uid: 553 - components: - - type: Transform - pos: 5.5,31.5 + pos: 65.5,20.5 parent: 2 - uid: 826 components: @@ -73548,25 +77198,32 @@ entities: - type: Transform pos: 33.5,-17.5 parent: 2 - - uid: 2222 + - uid: 2195 components: - type: Transform - pos: 50.5,28.5 + pos: 65.5,8.5 parent: 2 - - uid: 3162 + - uid: 3165 components: - type: Transform - pos: 56.5,25.5 + rot: 3.141592653589793 rad + pos: 40.5,28.5 parent: 2 - - uid: 5342 + - uid: 3168 components: - type: Transform - pos: 53.5,25.5 + rot: 3.141592653589793 rad + pos: 39.5,28.5 parent: 2 - - uid: 5375 + - uid: 3666 components: - type: Transform - pos: 52.5,11.5 + pos: 48.5,28.5 + parent: 2 + - uid: 5341 + components: + - type: Transform + pos: 66.5,6.5 parent: 2 - uid: 5439 components: @@ -73578,6 +77235,12 @@ entities: - type: Transform pos: 73.5,-12.5 parent: 2 + - uid: 5731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,22.5 + parent: 2 - uid: 5732 components: - type: Transform @@ -73599,12 +77262,23 @@ entities: - type: Transform pos: 31.5,-48.5 parent: 2 + - uid: 7780 + components: + - type: Transform + pos: 38.5,43.5 + parent: 2 - uid: 8173 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-42.5 parent: 2 + - uid: 8517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,8.5 + parent: 2 - uid: 9017 components: - type: Transform @@ -73621,17 +77295,6 @@ entities: - type: Transform pos: 27.5,5.5 parent: 2 - - uid: 9640 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,40.5 - parent: 2 - - uid: 10039 - components: - - type: Transform - pos: 28.5,-41.5 - parent: 2 - uid: 10303 components: - type: Transform @@ -73667,11 +77330,6 @@ entities: - type: Transform pos: 81.5,9.5 parent: 2 - - uid: 10833 - components: - - type: Transform - pos: 65.5,11.5 - parent: 2 - uid: 11409 components: - type: Transform @@ -73704,12 +77362,51 @@ entities: rot: 3.141592653589793 rad pos: 82.5,34.5 parent: 2 + - uid: 14834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,29.5 + parent: 2 + - uid: 14886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,47.5 + parent: 2 - uid: 15210 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-44.5 parent: 2 + - uid: 15371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,26.5 + parent: 2 + - uid: 15467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,31.5 + parent: 2 + - uid: 15894 + components: + - type: Transform + pos: 45.5,7.5 + parent: 2 + - uid: 15900 + components: + - type: Transform + pos: 47.5,24.5 + parent: 2 + - uid: 15904 + components: + - type: Transform + pos: 36.5,39.5 + parent: 2 - proto: RadiationCollectorFullTank entities: - uid: 8166 @@ -73744,11 +77441,6 @@ entities: parent: 2 - proto: RadioHandheld entities: - - uid: 1325 - components: - - type: Transform - pos: 21.5,-19.5 - parent: 2 - uid: 2165 components: - type: Transform @@ -73759,36 +77451,6 @@ entities: - type: Transform pos: 15.602974,35.641438 parent: 2 - - uid: 4090 - components: - - type: Transform - pos: 21.304989,-19.377043 - parent: 2 - - uid: 7267 - components: - - type: Transform - pos: 21.664364,-19.377043 - parent: 2 - - uid: 7268 - components: - - type: Transform - pos: 21.492489,-19.283293 - parent: 2 - - uid: 8693 - components: - - type: Transform - pos: 32.390015,26.521107 - parent: 2 - - uid: 8694 - components: - - type: Transform - pos: 32.546265,26.521107 - parent: 2 - - uid: 8695 - components: - - type: Transform - pos: 32.68689,26.505482 - parent: 2 - proto: Railing entities: - uid: 6662 @@ -73821,20 +77483,18 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-9.5 parent: 2 - - uid: 13640 + - uid: 14954 components: - type: Transform - pos: 53.5,36.5 + rot: -1.5707963267948966 rad + pos: 3.5,-28.5 parent: 2 - - uid: 13641 +- proto: RailingCornerSmall + entities: + - uid: 15742 components: - type: Transform - pos: 54.5,36.5 - parent: 2 - - uid: 13642 - components: - - type: Transform - pos: 55.5,36.5 + pos: 3.5,-29.5 parent: 2 - proto: RandomArcade entities: @@ -73845,16 +77505,16 @@ entities: parent: 2 - proto: RandomArtifactSpawner entities: + - uid: 5445 + components: + - type: Transform + pos: 62.5,29.5 + parent: 2 - uid: 10421 components: - type: Transform pos: 64.5,28.5 parent: 2 - - uid: 10422 - components: - - type: Transform - pos: 62.5,28.5 - parent: 2 - proto: RandomBoard entities: - uid: 11863 @@ -73877,6 +77537,158 @@ entities: - type: Transform pos: 37.5,-17.5 parent: 2 +- proto: RandomCableHVSpawner + entities: + - uid: 1815 + components: + - type: Transform + pos: 81.5,45.5 + parent: 2 + - uid: 2565 + components: + - type: Transform + pos: 82.5,46.5 + parent: 2 + - uid: 2567 + components: + - type: Transform + pos: 82.5,44.5 + parent: 2 + - uid: 2568 + components: + - type: Transform + pos: 78.5,44.5 + parent: 2 + - uid: 2569 + components: + - type: Transform + pos: 86.5,46.5 + parent: 2 + - uid: 2572 + components: + - type: Transform + pos: 86.5,44.5 + parent: 2 + - uid: 4402 + components: + - type: Transform + pos: 84.5,45.5 + parent: 2 + - uid: 4409 + components: + - type: Transform + pos: 86.5,45.5 + parent: 2 + - uid: 4573 + components: + - type: Transform + pos: 80.5,45.5 + parent: 2 + - uid: 4729 + components: + - type: Transform + pos: 87.5,45.5 + parent: 2 + - uid: 4744 + components: + - type: Transform + pos: 85.5,45.5 + parent: 2 + - uid: 5013 + components: + - type: Transform + pos: 83.5,45.5 + parent: 2 + - uid: 5493 + components: + - type: Transform + pos: 78.5,46.5 + parent: 2 + - uid: 5495 + components: + - type: Transform + pos: 82.5,45.5 + parent: 2 + - uid: 5500 + components: + - type: Transform + pos: 77.5,45.5 + parent: 2 + - uid: 5639 + components: + - type: Transform + pos: 79.5,45.5 + parent: 2 + - uid: 6322 + components: + - type: Transform + pos: 78.5,45.5 + parent: 2 + - uid: 8524 + components: + - type: Transform + pos: 76.5,45.5 + parent: 2 + - uid: 15761 + components: + - type: Transform + pos: -13.5,-35.5 + parent: 2 + - uid: 15762 + components: + - type: Transform + pos: -12.5,-35.5 + parent: 2 + - uid: 15763 + components: + - type: Transform + pos: -11.5,-35.5 + parent: 2 + - uid: 15764 + components: + - type: Transform + pos: -10.5,-35.5 + parent: 2 + - uid: 15765 + components: + - type: Transform + pos: -9.5,-35.5 + parent: 2 + - uid: 15766 + components: + - type: Transform + pos: -8.5,-35.5 + parent: 2 + - uid: 15767 + components: + - type: Transform + pos: -7.5,-35.5 + parent: 2 + - uid: 15768 + components: + - type: Transform + pos: -6.5,-35.5 + parent: 2 + - uid: 15769 + components: + - type: Transform + pos: -5.5,-35.5 + parent: 2 + - uid: 15770 + components: + - type: Transform + pos: -4.5,-35.5 + parent: 2 + - uid: 15771 + components: + - type: Transform + pos: -3.5,-35.5 + parent: 2 + - uid: 15772 + components: + - type: Transform + pos: -2.5,-35.5 + parent: 2 - proto: RandomFoodMeal entities: - uid: 12793 @@ -73893,11 +77705,21 @@ entities: parent: 2 - proto: RandomPainting entities: + - uid: 5532 + components: + - type: Transform + pos: 44.5,23.5 + parent: 2 - uid: 12820 components: - type: Transform pos: 8.5,17.5 parent: 2 + - uid: 14845 + components: + - type: Transform + pos: 54.5,39.5 + parent: 2 - proto: RandomPosterAny entities: - uid: 2270 @@ -73905,20 +77727,15 @@ entities: - type: Transform pos: 79.5,9.5 parent: 2 - - uid: 5532 + - uid: 3260 components: - type: Transform - pos: 52.5,32.5 + pos: 68.5,34.5 parent: 2 - - uid: 7827 + - uid: 10118 components: - type: Transform - pos: 68.5,33.5 - parent: 2 - - uid: 8584 - components: - - type: Transform - pos: 58.5,38.5 + pos: 40.5,39.5 parent: 2 - uid: 11520 components: @@ -73930,6 +77747,24 @@ entities: - type: Transform pos: 10.5,31.5 parent: 2 + - uid: 15694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,46.5 + parent: 2 + - uid: 15701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,42.5 + parent: 2 + - uid: 15702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,51.5 + parent: 2 - proto: RandomPosterContraband entities: - uid: 2271 @@ -73937,21 +77772,16 @@ entities: - type: Transform pos: 69.5,41.5 parent: 2 - - uid: 2274 - components: - - type: Transform - pos: 40.5,39.5 - parent: 2 - - uid: 5528 - components: - - type: Transform - pos: 53.5,41.5 - parent: 2 - uid: 5624 components: - type: Transform pos: 16.5,-9.5 parent: 2 + - uid: 10676 + components: + - type: Transform + pos: 60.5,41.5 + parent: 2 - uid: 11176 components: - type: Transform @@ -73964,11 +77794,32 @@ entities: parent: 2 - proto: RandomPosterLegit entities: + - uid: 4130 + components: + - type: Transform + pos: 45.5,21.5 + parent: 2 + - uid: 5443 + components: + - type: Transform + pos: 36.5,17.5 + parent: 2 + - uid: 5477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,38.5 + parent: 2 - uid: 7573 components: - type: Transform pos: 10.5,2.5 parent: 2 + - uid: 7953 + components: + - type: Transform + pos: 30.5,19.5 + parent: 2 - uid: 8117 components: - type: Transform @@ -74031,18 +77882,8 @@ entities: - type: Transform pos: 78.5,7.5 parent: 2 - - uid: 14652 - components: - - type: Transform - pos: 59.5,34.5 - parent: 2 - proto: RandomSpawner entities: - - uid: 3433 - components: - - type: Transform - pos: 70.5,27.5 - parent: 2 - uid: 5688 components: - type: Transform @@ -74053,21 +77894,11 @@ entities: - type: Transform pos: 15.5,-25.5 parent: 2 - - uid: 8932 - components: - - type: Transform - pos: 70.5,29.5 - parent: 2 - uid: 9308 components: - type: Transform pos: 68.5,8.5 parent: 2 - - uid: 11866 - components: - - type: Transform - pos: 57.5,-13.5 - parent: 2 - uid: 11867 components: - type: Transform @@ -74088,31 +77919,6 @@ entities: - type: Transform pos: 20.5,26.5 parent: 2 - - uid: 11879 - components: - - type: Transform - pos: 83.5,7.5 - parent: 2 - - uid: 11880 - components: - - type: Transform - pos: 68.5,11.5 - parent: 2 - - uid: 11884 - components: - - type: Transform - pos: 71.5,37.5 - parent: 2 - - uid: 11893 - components: - - type: Transform - pos: 18.5,36.5 - parent: 2 - - uid: 11895 - components: - - type: Transform - pos: 21.5,37.5 - parent: 2 - uid: 12409 components: - type: Transform @@ -74143,11 +77949,6 @@ entities: - type: Transform pos: 47.5,-1.5 parent: 2 - - uid: 12415 - components: - - type: Transform - pos: 25.5,12.5 - parent: 2 - uid: 12417 components: - type: Transform @@ -74202,10 +78003,10 @@ entities: - type: Transform pos: 25.5,3.5 parent: 2 - - uid: 11032 + - uid: 9898 components: - type: Transform - pos: 20.5,35.5 + pos: 18.5,35.5 parent: 2 - proto: RandomVendingSnacks entities: @@ -74214,20 +78015,27 @@ entities: - type: Transform pos: 5.5,13.5 parent: 2 -- proto: Recycler - entities: - - uid: 829 + - uid: 10721 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,34.5 + pos: 19.5,35.5 parent: 2 +- proto: Recycler + entities: - uid: 5855 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-29.5 parent: 2 + - uid: 13115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,34.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - proto: ReinforcedPlasmaWindow entities: - uid: 321 @@ -74270,16 +78078,6 @@ entities: - type: Transform pos: 47.5,-33.5 parent: 2 - - uid: 2363 - components: - - type: Transform - pos: 38.5,25.5 - parent: 2 - - uid: 2364 - components: - - type: Transform - pos: 41.5,25.5 - parent: 2 - uid: 2411 components: - type: Transform @@ -74320,26 +78118,28 @@ entities: - type: Transform pos: 36.5,-33.5 parent: 2 - - uid: 8532 + - uid: 8548 components: - type: Transform - pos: 37.5,27.5 - parent: 2 - - uid: 8534 - components: - - type: Transform - pos: 37.5,26.5 + rot: 1.5707963267948966 rad + pos: 62.5,26.5 parent: 2 - uid: 8665 components: - type: Transform pos: 45.5,-45.5 parent: 2 - - uid: 8699 + - uid: 8689 components: - type: Transform pos: 63.5,26.5 parent: 2 + - uid: 9565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,32.5 + parent: 2 - uid: 10088 components: - type: Transform @@ -74355,21 +78155,17 @@ entities: - type: Transform pos: 45.5,-48.5 parent: 2 - - uid: 12296 - components: - - type: Transform - pos: 40.5,29.5 - parent: 2 - - uid: 12442 - components: - - type: Transform - pos: 39.5,29.5 - parent: 2 - uid: 12986 components: - type: Transform pos: 45.5,-46.5 parent: 2 + - uid: 13517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,32.5 + parent: 2 - proto: ReinforcedWindow entities: - uid: 6 @@ -74392,6 +78188,12 @@ entities: - type: Transform pos: -4.5,-11.5 parent: 2 + - uid: 37 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,23.5 + parent: 2 - uid: 45 components: - type: Transform @@ -74492,16 +78294,6 @@ entities: - type: Transform pos: 2.5,7.5 parent: 2 - - uid: 418 - components: - - type: Transform - pos: 53.5,12.5 - parent: 2 - - uid: 427 - components: - - type: Transform - pos: 55.5,12.5 - parent: 2 - uid: 445 components: - type: Transform @@ -74542,11 +78334,6 @@ entities: - type: Transform pos: 65.5,14.5 parent: 2 - - uid: 622 - components: - - type: Transform - pos: 28.5,29.5 - parent: 2 - uid: 674 components: - type: Transform @@ -74612,16 +78399,6 @@ entities: - type: Transform pos: 4.5,32.5 parent: 2 - - uid: 982 - components: - - type: Transform - pos: 20.5,-37.5 - parent: 2 - - uid: 984 - components: - - type: Transform - pos: 22.5,-37.5 - parent: 2 - uid: 986 components: - type: Transform @@ -74712,26 +78489,11 @@ entities: - type: Transform pos: 2.5,12.5 parent: 2 - - uid: 1231 - components: - - type: Transform - pos: 56.5,42.5 - parent: 2 - uid: 1251 components: - type: Transform pos: 33.5,-34.5 parent: 2 - - uid: 1256 - components: - - type: Transform - pos: 52.5,38.5 - parent: 2 - - uid: 1275 - components: - - type: Transform - pos: 55.5,42.5 - parent: 2 - uid: 1308 components: - type: Transform @@ -74872,25 +78634,10 @@ entities: - type: Transform pos: -3.5,0.5 parent: 2 - - uid: 1948 - components: - - type: Transform - pos: 52.5,39.5 - parent: 2 - uid: 2028 components: - type: Transform - pos: 16.5,-37.5 - parent: 2 - - uid: 2053 - components: - - type: Transform - pos: 4.5,28.5 - parent: 2 - - uid: 2055 - components: - - type: Transform - pos: 5.5,28.5 + pos: 42.5,48.5 parent: 2 - uid: 2056 components: @@ -74902,126 +78649,48 @@ entities: - type: Transform pos: 5.5,25.5 parent: 2 - - uid: 2059 - components: - - type: Transform - pos: 4.5,22.5 - parent: 2 - - uid: 2060 - components: - - type: Transform - pos: 5.5,22.5 - parent: 2 - uid: 2167 components: - type: Transform pos: -4.5,-15.5 parent: 2 - - uid: 2210 + - uid: 2230 components: - type: Transform - pos: 47.5,30.5 - parent: 2 - - uid: 2213 - components: - - type: Transform - pos: 60.5,36.5 + rot: 3.141592653589793 rad + pos: 35.5,16.5 parent: 2 - uid: 2231 components: - type: Transform pos: 75.5,23.5 parent: 2 - - uid: 2240 + - uid: 2251 components: - type: Transform - pos: 28.5,21.5 + pos: 63.5,33.5 parent: 2 - - uid: 2241 + - uid: 2254 components: - type: Transform - pos: 28.5,20.5 + pos: 62.5,33.5 parent: 2 - - uid: 2242 + - uid: 2289 components: - type: Transform - pos: 28.5,18.5 + pos: 35.5,24.5 parent: 2 - - uid: 2243 + - uid: 2425 components: - type: Transform - pos: 28.5,17.5 - parent: 2 - - uid: 2256 - components: - - type: Transform - pos: 31.5,21.5 - parent: 2 - - uid: 2257 - components: - - type: Transform - pos: 31.5,17.5 - parent: 2 - - uid: 2284 - components: - - type: Transform - pos: 44.5,34.5 - parent: 2 - - uid: 2285 - components: - - type: Transform - pos: 44.5,35.5 - parent: 2 - - uid: 2286 - components: - - type: Transform - pos: 44.5,36.5 - parent: 2 - - uid: 2367 - components: - - type: Transform - pos: 37.5,24.5 - parent: 2 - - uid: 2368 - components: - - type: Transform - pos: 37.5,23.5 - parent: 2 - - uid: 2369 - components: - - type: Transform - pos: 38.5,20.5 - parent: 2 - - uid: 2370 - components: - - type: Transform - pos: 37.5,21.5 - parent: 2 - - uid: 2373 - components: - - type: Transform - pos: 42.5,24.5 - parent: 2 - - uid: 2374 - components: - - type: Transform - pos: 42.5,22.5 + rot: 3.141592653589793 rad + pos: 34.5,16.5 parent: 2 - uid: 2427 components: - type: Transform pos: 88.5,-6.5 parent: 2 - - uid: 2458 - components: - - type: Transform - pos: 43.5,16.5 - parent: 2 - - uid: 2459 - components: - - type: Transform - pos: 41.5,16.5 - parent: 2 - uid: 2476 components: - type: Transform @@ -75197,16 +78866,6 @@ entities: - type: Transform pos: 59.5,-14.5 parent: 2 - - uid: 3069 - components: - - type: Transform - pos: 42.5,40.5 - parent: 2 - - uid: 3070 - components: - - type: Transform - pos: 41.5,40.5 - parent: 2 - uid: 3086 components: - type: Transform @@ -75227,65 +78886,10 @@ entities: - type: Transform pos: 18.5,44.5 parent: 2 - - uid: 3098 - components: - - type: Transform - pos: 48.5,49.5 - parent: 2 - - uid: 3099 - components: - - type: Transform - pos: 48.5,48.5 - parent: 2 - - uid: 3100 - components: - - type: Transform - pos: 47.5,48.5 - parent: 2 - uid: 3101 components: - type: Transform - pos: 46.5,48.5 - parent: 2 - - uid: 3102 - components: - - type: Transform - pos: 45.5,48.5 - parent: 2 - - uid: 3103 - components: - - type: Transform - pos: 45.5,47.5 - parent: 2 - - uid: 3104 - components: - - type: Transform - pos: 44.5,47.5 - parent: 2 - - uid: 3105 - components: - - type: Transform - pos: 43.5,47.5 - parent: 2 - - uid: 3110 - components: - - type: Transform - pos: 46.5,45.5 - parent: 2 - - uid: 3111 - components: - - type: Transform - pos: 47.5,45.5 - parent: 2 - - uid: 3112 - components: - - type: Transform - pos: 48.5,45.5 - parent: 2 - - uid: 3113 - components: - - type: Transform - pos: 49.5,45.5 + pos: 35.5,28.5 parent: 2 - uid: 3120 components: @@ -75297,60 +78901,42 @@ entities: - type: Transform pos: -25.5,-6.5 parent: 2 - - uid: 3127 + - uid: 3146 components: - type: Transform - pos: 50.5,46.5 + pos: 40.5,29.5 parent: 2 - - uid: 3128 + - uid: 3147 components: - type: Transform - pos: 50.5,47.5 + pos: 39.5,29.5 parent: 2 - - uid: 3129 + - uid: 3157 components: - type: Transform - pos: 51.5,47.5 + rot: 3.141592653589793 rad + pos: 36.5,28.5 parent: 2 - - uid: 3130 + - uid: 3162 components: - type: Transform - pos: 52.5,47.5 + pos: 35.5,27.5 parent: 2 - - uid: 3143 + - uid: 3164 components: - type: Transform - pos: 47.5,39.5 + pos: 35.5,25.5 parent: 2 - - uid: 3144 + - uid: 3174 components: - type: Transform - pos: 47.5,38.5 + rot: 3.141592653589793 rad + pos: 36.5,29.5 parent: 2 - - uid: 3145 + - uid: 3279 components: - type: Transform - pos: 47.5,37.5 - parent: 2 - - uid: 3211 - components: - - type: Transform - pos: 60.5,47.5 - parent: 2 - - uid: 3212 - components: - - type: Transform - pos: 61.5,47.5 - parent: 2 - - uid: 3214 - components: - - type: Transform - pos: 62.5,47.5 - parent: 2 - - uid: 3265 - components: - - type: Transform - pos: 62.5,46.5 + pos: 40.5,23.5 parent: 2 - uid: 3327 components: @@ -75362,25 +78948,11 @@ entities: - type: Transform pos: -7.5,-7.5 parent: 2 - - uid: 3335 - components: - - type: Transform - pos: 50.5,49.5 - parent: 2 - - uid: 3336 - components: - - type: Transform - pos: 51.5,49.5 - parent: 2 - uid: 3337 components: - type: Transform - pos: 52.5,49.5 - parent: 2 - - uid: 3338 - components: - - type: Transform - pos: 53.5,49.5 + rot: 3.141592653589793 rad + pos: 51.5,51.5 parent: 2 - uid: 3340 components: @@ -75392,55 +78964,16 @@ entities: - type: Transform pos: -21.5,-4.5 parent: 2 - - uid: 3345 - components: - - type: Transform - pos: 59.5,49.5 - parent: 2 - - uid: 3346 - components: - - type: Transform - pos: 60.5,49.5 - parent: 2 - uid: 3347 components: - type: Transform - pos: 61.5,49.5 + rot: 3.141592653589793 rad + pos: 52.5,51.5 parent: 2 - - uid: 3348 + - uid: 3350 components: - type: Transform - pos: 62.5,49.5 - parent: 2 - - uid: 3389 - components: - - type: Transform - pos: 64.5,49.5 - parent: 2 - - uid: 3390 - components: - - type: Transform - pos: 64.5,48.5 - parent: 2 - - uid: 3391 - components: - - type: Transform - pos: 65.5,48.5 - parent: 2 - - uid: 3392 - components: - - type: Transform - pos: 66.5,48.5 - parent: 2 - - uid: 3393 - components: - - type: Transform - pos: 67.5,48.5 - parent: 2 - - uid: 3394 - components: - - type: Transform - pos: 67.5,47.5 + pos: 50.5,51.5 parent: 2 - uid: 3397 components: @@ -75477,36 +79010,11 @@ entities: - type: Transform pos: 75.5,22.5 parent: 2 - - uid: 3479 - components: - - type: Transform - pos: 48.5,17.5 - parent: 2 - uid: 3480 components: - type: Transform pos: 48.5,19.5 parent: 2 - - uid: 3499 - components: - - type: Transform - pos: 54.5,26.5 - parent: 2 - - uid: 3500 - components: - - type: Transform - pos: 55.5,26.5 - parent: 2 - - uid: 3503 - components: - - type: Transform - pos: 57.5,26.5 - parent: 2 - - uid: 3504 - components: - - type: Transform - pos: 58.5,26.5 - parent: 2 - uid: 3594 components: - type: Transform @@ -75667,11 +79175,6 @@ entities: - type: Transform pos: 33.5,-35.5 parent: 2 - - uid: 4134 - components: - - type: Transform - pos: 56.5,26.5 - parent: 2 - uid: 4165 components: - type: Transform @@ -75797,11 +79300,6 @@ entities: - type: Transform pos: 47.5,-37.5 parent: 2 - - uid: 4812 - components: - - type: Transform - pos: 56.5,50.5 - parent: 2 - uid: 5004 components: - type: Transform @@ -75882,6 +79380,12 @@ entities: - type: Transform pos: 2.5,3.5 parent: 2 + - uid: 5335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,16.5 + parent: 2 - uid: 5357 components: - type: Transform @@ -75892,6 +79396,12 @@ entities: - type: Transform pos: 2.5,4.5 parent: 2 + - uid: 5411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,37.5 + parent: 2 - uid: 5417 components: - type: Transform @@ -75907,36 +79417,6 @@ entities: - type: Transform pos: 39.5,-41.5 parent: 2 - - uid: 5489 - components: - - type: Transform - pos: 72.5,33.5 - parent: 2 - - uid: 5490 - components: - - type: Transform - pos: 72.5,32.5 - parent: 2 - - uid: 5491 - components: - - type: Transform - pos: 72.5,31.5 - parent: 2 - - uid: 5492 - components: - - type: Transform - pos: 72.5,29.5 - parent: 2 - - uid: 5493 - components: - - type: Transform - pos: 72.5,28.5 - parent: 2 - - uid: 5494 - components: - - type: Transform - pos: 72.5,27.5 - parent: 2 - uid: 5728 components: - type: Transform @@ -75977,6 +79457,11 @@ entities: - type: Transform pos: 42.5,-2.5 parent: 2 + - uid: 6536 + components: + - type: Transform + pos: 64.5,33.5 + parent: 2 - uid: 6807 components: - type: Transform @@ -76062,6 +79547,12 @@ entities: - type: Transform pos: -12.5,-2.5 parent: 2 + - uid: 7755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,29.5 + parent: 2 - uid: 7763 components: - type: Transform @@ -76092,11 +79583,6 @@ entities: - type: Transform pos: -25.5,-4.5 parent: 2 - - uid: 7945 - components: - - type: Transform - pos: 34.5,16.5 - parent: 2 - uid: 7957 components: - type: Transform @@ -76112,6 +79598,62 @@ entities: - type: Transform pos: -17.5,-2.5 parent: 2 + - uid: 8398 + components: + - type: Transform + pos: 38.5,23.5 + parent: 2 + - uid: 8453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,29.5 + parent: 2 + - uid: 8457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,23.5 + parent: 2 + - uid: 8587 + components: + - type: Transform + pos: 37.5,23.5 + parent: 2 + - uid: 8597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,51.5 + parent: 2 + - uid: 8599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,32.5 + parent: 2 + - uid: 8616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,51.5 + parent: 2 + - uid: 8634 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 + - uid: 8636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,29.5 + parent: 2 + - uid: 8694 + components: + - type: Transform + pos: -26.5,-21.5 + parent: 2 - uid: 8736 components: - type: Transform @@ -76322,20 +79864,41 @@ entities: - type: Transform pos: 116.5,-19.5 parent: 2 - - uid: 9334 + - uid: 9265 components: - type: Transform - pos: 43.5,40.5 + rot: 3.141592653589793 rad + pos: 16.5,-37.5 parent: 2 - - uid: 10086 + - uid: 9284 components: - type: Transform - pos: 52.5,25.5 + rot: 3.141592653589793 rad + pos: 17.5,-37.5 parent: 2 - - uid: 10087 + - uid: 9292 components: - type: Transform - pos: 52.5,23.5 + rot: 3.141592653589793 rad + pos: 73.5,31.5 + parent: 2 + - uid: 9294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-37.5 + parent: 2 + - uid: 9295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-37.5 + parent: 2 + - uid: 9296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,28.5 parent: 2 - uid: 10123 components: @@ -76357,11 +79920,28 @@ entities: - type: Transform pos: 52.5,1.5 parent: 2 + - uid: 10539 + components: + - type: Transform + pos: 40.5,48.5 + parent: 2 + - uid: 10587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,12.5 + parent: 2 - uid: 10768 components: - type: Transform pos: 73.5,24.5 parent: 2 + - uid: 11280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,29.5 + parent: 2 - uid: 11609 components: - type: Transform @@ -76377,50 +79957,21 @@ entities: - type: Transform pos: -26.5,-13.5 parent: 2 - - uid: 11737 - components: - - type: Transform - pos: 57.5,30.5 - parent: 2 - - uid: 11860 - components: - - type: Transform - pos: 56.5,30.5 - parent: 2 - - uid: 11861 - components: - - type: Transform - pos: 55.5,30.5 - parent: 2 - uid: 11971 components: - type: Transform pos: 45.5,-31.5 parent: 2 - - uid: 12080 - components: - - type: Transform - pos: 57.5,42.5 - parent: 2 - uid: 12421 components: - type: Transform pos: -9.5,-10.5 parent: 2 - - uid: 12431 + - uid: 12435 components: - type: Transform - pos: 56.5,49.5 - parent: 2 - - uid: 12439 - components: - - type: Transform - pos: 54.5,46.5 - parent: 2 - - uid: 12443 - components: - - type: Transform - pos: 58.5,46.5 + rot: 3.141592653589793 rad + pos: 62.5,51.5 parent: 2 - uid: 12444 components: @@ -76447,21 +79998,6 @@ entities: - type: Transform pos: -7.5,-15.5 parent: 2 - - uid: 12662 - components: - - type: Transform - pos: 55.5,46.5 - parent: 2 - - uid: 12670 - components: - - type: Transform - pos: 57.5,46.5 - parent: 2 - - uid: 12761 - components: - - type: Transform - pos: 47.5,31.5 - parent: 2 - uid: 12804 components: - type: Transform @@ -76532,16 +80068,6 @@ entities: - type: Transform pos: -9.5,1.5 parent: 2 - - uid: 13120 - components: - - type: Transform - pos: 23.5,34.5 - parent: 2 - - uid: 13142 - components: - - type: Transform - pos: 24.5,34.5 - parent: 2 - uid: 13255 components: - type: Transform @@ -76572,21 +80098,16 @@ entities: - type: Transform pos: -13.5,-21.5 parent: 2 - - uid: 13283 + - uid: 13287 components: - type: Transform - pos: 56.5,51.5 + pos: 41.5,48.5 parent: 2 - uid: 13295 components: - type: Transform pos: -25.5,-21.5 parent: 2 - - uid: 13297 - components: - - type: Transform - pos: -26.5,-21.5 - parent: 2 - uid: 13298 components: - type: Transform @@ -76647,20 +80168,10 @@ entities: - type: Transform pos: 8.5,-41.5 parent: 2 - - uid: 13557 + - uid: 13650 components: - type: Transform - pos: 65.5,35.5 - parent: 2 - - uid: 13558 - components: - - type: Transform - pos: 65.5,36.5 - parent: 2 - - uid: 13559 - components: - - type: Transform - pos: 65.5,37.5 + pos: 32.5,16.5 parent: 2 - uid: 13656 components: @@ -76672,11 +80183,6 @@ entities: - type: Transform pos: -25.5,-8.5 parent: 2 - - uid: 13692 - components: - - type: Transform - pos: 17.5,-37.5 - parent: 2 - uid: 13786 components: - type: Transform @@ -76767,6 +80273,17 @@ entities: - type: Transform pos: 82.5,35.5 parent: 2 + - uid: 14232 + components: + - type: Transform + pos: 44.5,48.5 + parent: 2 + - uid: 14238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,23.5 + parent: 2 - uid: 14363 components: - type: Transform @@ -76797,6 +80314,16 @@ entities: - type: Transform pos: 3.5,25.5 parent: 2 + - uid: 14858 + components: + - type: Transform + pos: 28.5,20.5 + parent: 2 + - uid: 14859 + components: + - type: Transform + pos: 28.5,21.5 + parent: 2 - uid: 14923 components: - type: Transform @@ -76812,10 +80339,21 @@ entities: - type: Transform pos: 12.5,-38.5 parent: 2 - - uid: 15365 + - uid: 15676 components: - type: Transform - pos: 33.5,16.5 + pos: 45.5,48.5 + parent: 2 + - uid: 15677 + components: + - type: Transform + pos: 46.5,48.5 + parent: 2 + - uid: 15877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,12.5 parent: 2 - proto: RemoteSignaller entities: @@ -76824,27 +80362,12 @@ entities: - type: Transform pos: 19.330996,46.803196 parent: 2 - - uid: 15427 - components: - - type: MetaData - name: robotics blast doors - - type: Transform - pos: 46.333313,11.606956 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8248: - - - Pressed - - Toggle - 11022: - - - Pressed - - Toggle - proto: ResearchAndDevelopmentServer entities: - - uid: 8233 + - uid: 5321 components: - type: Transform - pos: 49.5,25.5 + pos: 49.5,23.5 parent: 2 - proto: Retractor entities: @@ -76853,63 +80376,74 @@ entities: - type: Transform pos: 66.55991,-3.281434 parent: 2 +- proto: RevolverCapGun + entities: + - uid: 15182 + components: + - type: Transform + pos: 48.41018,44.784416 + parent: 2 +- proto: RiceSeeds + entities: + - uid: 8730 + components: + - type: Transform + pos: 57.497494,41.422585 + parent: 2 - proto: RiotBulletShield entities: - - uid: 2404 + - uid: 9926 components: - type: Transform - pos: 40.60262,28.679474 - parent: 2 - - uid: 7584 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10405 components: - type: Transform - pos: 40.594807,28.656036 - parent: 2 - - uid: 8351 - components: - - type: Transform - pos: 40.57918,28.913849 - parent: 2 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: RiotLaserShield entities: - - uid: 6422 + - uid: 11017 components: - type: Transform - pos: 40.04793,28.648224 - parent: 2 - - uid: 8419 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12773 components: - type: Transform - pos: 40.04012,28.835724 - parent: 2 - - uid: 8422 - components: - - type: Transform - pos: 40.063557,28.726349 - parent: 2 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: RiotShield entities: - - uid: 8348 + - uid: 15200 components: - type: Transform - pos: 40.368244,28.741974 - parent: 2 - - uid: 8417 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15337 components: - type: Transform - pos: 40.368244,28.609161 - parent: 2 - - uid: 14664 - components: - - type: Transform - pos: 40.336994,28.882599 - parent: 2 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: RobocopCircuitBoard entities: - uid: 14284 components: - type: Transform - pos: 86.54398,28.473265 + pos: 86.50753,32.46467 parent: 2 - proto: RockGuitarInstrument entities: @@ -76947,11 +80481,6 @@ entities: - type: Transform pos: 67.45054,-4.453309 parent: 2 - - uid: 5395 - components: - - type: Transform - pos: 55.53906,10.407994 - parent: 2 - proto: Scalpel entities: - uid: 5137 @@ -76962,7 +80491,7 @@ entities: - uid: 5394 components: - type: Transform - pos: 55.523434,10.407994 + pos: 52.58589,8.339501 parent: 2 - uid: 10073 components: @@ -76971,10 +80500,27 @@ entities: parent: 2 - proto: ScrapCamera entities: - - uid: 6843 + - uid: 10083 components: - type: Transform - pos: 67.493965,34.506084 + pos: 51.39755,42.20345 + parent: 2 + - uid: 13568 + components: + - type: Transform + pos: 69.38568,33.532196 + parent: 2 + - uid: 15705 + components: + - type: Transform + pos: 58.145233,50.61697 + parent: 2 +- proto: ScrapFireExtinguisher + entities: + - uid: 13569 + components: + - type: Transform + pos: 70.49884,30.786736 parent: 2 - proto: Screen entities: @@ -77049,6 +80595,56 @@ entities: rot: 1.5707963267948966 rad pos: 88.5,32.5 parent: 2 + - uid: 15658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,50.5 + parent: 2 +- proto: ScreenTimer + entities: + - uid: 15631 + components: + - type: Transform + pos: 51.5,39.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: SignalTimer + maxLength: 1 + delay: 0.7 + - type: DeviceLinkSource + linkedPorts: + 15632: + - - Timer + - Trigger + - type: ActiveSignalTimer + - uid: 15632 + components: + - type: Transform + pos: 50.5,39.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: SignalTimer + maxLength: 1 + delay: 0.7 + - type: DeviceLinkSource + linkedPorts: + 9342: + - - Timer + - Forward + - - Start + - Reverse + 15631: + - - Timer + - Trigger + 15156: + - - Timer + - Forward + - - Start + - Reverse + - type: ActiveSignalTimer - proto: Screwdriver entities: - uid: 11132 @@ -77058,10 +80654,10 @@ entities: parent: 2 - proto: SecurityTechFab entities: - - uid: 12373 + - uid: 8508 components: - type: Transform - pos: 38.5,21.5 + pos: 42.5,35.5 parent: 2 - type: TechnologyDatabase supportedDisciplines: @@ -77071,16 +80667,21 @@ entities: - CivilianServices - proto: SeedExtractor entities: - - uid: 3159 + - uid: 2431 components: - type: Transform - pos: 53.5,36.5 + pos: 59.5,45.5 parent: 2 - uid: 6677 components: - type: Transform pos: 45.5,-4.5 parent: 2 + - uid: 14870 + components: + - type: Transform + pos: 40.5,18.5 + parent: 2 - proto: ShardGlass entities: - uid: 10809 @@ -77093,6 +80694,13 @@ entities: - type: Transform pos: 90.27248,-20.82429 parent: 2 +- proto: ShardGlassReinforced + entities: + - uid: 10311 + components: + - type: Transform + pos: 71.58744,34.19874 + parent: 2 - proto: SheetGlass entities: - uid: 784 @@ -77107,21 +80715,6 @@ entities: - type: Transform pos: 33.519444,-17.381672 parent: 2 - - uid: 5327 - components: - - type: Transform - pos: 56.186665,17.583338 - parent: 2 - - uid: 5328 - components: - - type: Transform - pos: 56.186665,17.583338 - parent: 2 - - uid: 5329 - components: - - type: Transform - pos: 56.186665,17.583338 - parent: 2 - uid: 5636 components: - type: Transform @@ -77132,10 +80725,16 @@ entities: - type: Transform pos: 16.999237,-26.465462 parent: 2 - - uid: 10311 + - uid: 8429 components: - type: Transform - pos: 8.421515,-6.356274 + pos: 55.510555,17.572374 + parent: 2 + - uid: 14829 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 55.527084,17.569584 parent: 2 - proto: SheetPlasma entities: @@ -77149,7 +80748,8 @@ entities: - uid: 7529 components: - type: Transform - pos: 71.06963,13.620979 + rot: -12.566370614359172 rad + pos: 71.4212,13.651101 parent: 2 - uid: 14581 components: @@ -77170,27 +80770,27 @@ entities: - type: Transform pos: 17.5,-26.5 parent: 2 - - uid: 10312 + - uid: 7756 components: - type: Transform - pos: 8.609015,-6.340649 + pos: 17.522242,-26.53012 parent: 2 - proto: SheetPlastic entities: - - uid: 5333 + - uid: 7827 components: - type: Transform - pos: 56.436665,17.505213 + pos: 18.15394,-26.405436 parent: 2 - - uid: 5334 + - uid: 8421 components: - type: Transform - pos: 56.436665,17.505213 + pos: 56.041805,17.55675 parent: 2 - - uid: 5335 + - uid: 10656 components: - type: Transform - pos: 56.436665,17.505213 + pos: 55.99271,17.57192 parent: 2 - proto: SheetSteel entities: @@ -77206,46 +80806,6 @@ entities: - type: Transform pos: 33.507664,-17.468887 parent: 2 - - uid: 5152 - components: - - type: Transform - pos: 43.528275,-35.489674 - parent: 2 - - uid: 5153 - components: - - type: Transform - pos: 43.528275,-35.489674 - parent: 2 - - uid: 5330 - components: - - type: Transform - pos: 56.63979,17.598963 - parent: 2 - - uid: 5331 - components: - - type: Transform - pos: 56.63979,17.598963 - parent: 2 - - uid: 5332 - components: - - type: Transform - pos: 56.63979,17.598963 - parent: 2 - - uid: 5383 - components: - - type: Transform - pos: 50.524685,8.532994 - parent: 2 - - uid: 5384 - components: - - type: Transform - pos: 50.524685,8.532994 - parent: 2 - - uid: 5385 - components: - - type: Transform - pos: 50.524685,8.532994 - parent: 2 - uid: 5633 components: - type: Transform @@ -77254,7 +80814,7 @@ entities: - uid: 5634 components: - type: Transform - pos: 16.5,-26.5 + pos: 56.604305,17.55675 parent: 2 - uid: 7271 components: @@ -77266,21 +80826,21 @@ entities: - type: Transform pos: 30.5,-30.5 parent: 2 - - uid: 8175 + - uid: 8470 components: - type: Transform - pos: 43.528275,-35.489674 - parent: 2 - - uid: 10313 - components: - - type: Transform - pos: 8.53089,-6.434399 + pos: 36.47758,27.594019 parent: 2 - uid: 12088 components: - type: Transform pos: 16.49948,-26.476994 parent: 2 + - uid: 15581 + components: + - type: Transform + pos: 56.55521,17.556295 + parent: 2 - proto: SheetSteel1 entities: - uid: 4672 @@ -77307,20 +80867,29 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ShotGunCabinetFilled - entities: - - uid: 2221 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,18.5 - parent: 2 - proto: Shovel entities: - uid: 1053 components: - type: Transform - pos: 5.5,31.5 + pos: 7.4232864,29.512466 + parent: 2 +- proto: ShuttersNormal + entities: + - uid: 8446 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - uid: 8541 + components: + - type: Transform + pos: 11.5,29.5 + parent: 2 + - uid: 9640 + components: + - type: Transform + pos: 12.5,29.5 parent: 2 - proto: ShuttersNormalOpen entities: @@ -77363,10 +80932,31 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,-6.5 parent: 2 - - uid: 2090 + - uid: 2065 components: - type: Transform - pos: 11.5,29.5 + pos: 32.5,16.5 + parent: 2 + - uid: 2261 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 3494 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - uid: 4635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-38.5 + parent: 2 + - uid: 5447 + components: + - type: Transform + pos: 38.5,23.5 parent: 2 - uid: 6512 components: @@ -77374,39 +80964,35 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,-5.5 parent: 2 - - uid: 12381 + - uid: 8575 components: - type: Transform - pos: 13.5,29.5 + pos: 37.5,23.5 parent: 2 - - uid: 12824 + - uid: 8592 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,17.5 + pos: 40.5,23.5 parent: 2 - - uid: 12825 + - uid: 8621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,20.5 + pos: 36.5,23.5 parent: 2 - - uid: 12826 + - uid: 9038 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,18.5 + pos: 33.5,16.5 parent: 2 - - uid: 12839 + - uid: 9266 components: - type: Transform - pos: 12.5,29.5 + pos: 39.5,23.5 parent: 2 - - uid: 13183 + - uid: 11676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,21.5 + pos: 47.5,37.5 parent: 2 - uid: 13476 components: @@ -77459,59 +81045,41 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-33.5 parent: 2 - - uid: 13644 - components: - - type: Transform - pos: 55.5,30.5 - parent: 2 - - uid: 13645 - components: - - type: Transform - pos: 56.5,30.5 - parent: 2 - - uid: 13646 - components: - - type: Transform - pos: 57.5,30.5 - parent: 2 - - uid: 13647 - components: - - type: Transform - pos: 55.5,42.5 - parent: 2 - - uid: 13648 - components: - - type: Transform - pos: 56.5,42.5 - parent: 2 - - uid: 13649 - components: - - type: Transform - pos: 57.5,42.5 - parent: 2 - - uid: 13650 + - uid: 13629 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,38.5 + pos: 35.5,25.5 parent: 2 - - uid: 13651 + - uid: 13630 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,39.5 + pos: 35.5,24.5 parent: 2 - - uid: 13652 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,36.5 - parent: 2 - - uid: 13915 + - uid: 14599 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,29.5 + pos: 28.5,30.5 + parent: 2 + - uid: 14600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,31.5 + parent: 2 + - uid: 14860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,20.5 + parent: 2 + - uid: 14861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,21.5 parent: 2 - uid: 14910 components: @@ -77531,82 +81099,31 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,16.5 parent: 2 - - uid: 15370 - components: - - type: Transform - pos: 33.5,16.5 - parent: 2 - - uid: 15371 - components: - - type: Transform - pos: 34.5,16.5 - parent: 2 - proto: ShuttersRadiationOpen entities: - - uid: 449 - components: - - type: Transform - pos: 17.5,-37.5 - parent: 2 - - uid: 780 - components: - - type: Transform - pos: 20.5,-37.5 - parent: 2 - - uid: 2044 - components: - - type: Transform - pos: 16.5,-37.5 - parent: 2 - - uid: 3241 - components: - - type: Transform - pos: 22.5,-44.5 - parent: 2 - - uid: 3972 - components: - - type: Transform - pos: 23.5,-44.5 - parent: 2 - - uid: 3992 - components: - - type: Transform - pos: 21.5,-44.5 - parent: 2 - - uid: 4502 + - uid: 8673 components: - type: Transform + rot: 3.141592653589793 rad pos: 22.5,-37.5 parent: 2 - - uid: 4635 + - uid: 8932 components: - type: Transform - pos: 26.5,-43.5 + rot: 3.141592653589793 rad + pos: 16.5,-37.5 parent: 2 - - uid: 4636 + - uid: 9282 components: - type: Transform - pos: 25.5,-43.5 + rot: 3.141592653589793 rad + pos: 17.5,-37.5 parent: 2 - - uid: 7808 + - uid: 9332 components: - type: Transform - pos: 20.5,-44.5 - parent: 2 - - uid: 8031 - components: - - type: Transform - pos: 19.5,-44.5 - parent: 2 - - uid: 10959 - components: - - type: Transform - pos: 16.5,-43.5 - parent: 2 - - uid: 10999 - components: - - type: Transform - pos: 17.5,-43.5 + rot: 3.141592653589793 rad + pos: 20.5,-37.5 parent: 2 - proto: ShuttersWindowOpen entities: @@ -77742,17 +81259,6 @@ entities: parent: 2 - proto: SignalButton entities: - - uid: 128 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,28.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8103: - - - Pressed - - Toggle - uid: 1471 components: - type: MetaData @@ -77771,50 +81277,57 @@ entities: 270: - - Pressed - Toggle - - uid: 7809 + - uid: 2443 + components: + - type: MetaData + name: signal button (Inner Doors) + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.41377,27.721725 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8414: + - - Pressed + - Open + 8412: + - - Pressed + - Open + - type: Label + currentLabel: Inner Doors + - type: NameModifier + baseName: signal button + - uid: 11020 + components: + - type: MetaData + name: signal button (Outer Doors) + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.41377,27.494875 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 318: + - - Pressed + - Open + 257: + - - Pressed + - Open + - type: Label + currentLabel: Outer Doors + - type: NameModifier + baseName: signal button + - uid: 14932 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,22.5 + pos: 51.5,34.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 8067: + 15632: - - Pressed - - Toggle - - uid: 13002 - components: - - type: Transform - pos: 10.5,29.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2090: - - - Pressed - - Toggle - 12839: - - - Pressed - - Toggle - 12381: - - - Pressed - - Toggle - - uid: 14913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,15.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 14912: - - - Pressed - - Toggle - 14910: - - - Pressed - - Toggle - 14911: - - - Pressed - - Toggle + - Trigger - proto: SignalButtonDirectional entities: - uid: 543 @@ -77842,152 +81355,44 @@ entities: 1154: - - Pressed - Toggle - - uid: 3993 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-40.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 4636: - - - Pressed - - Toggle - 4635: - - - Pressed - - Toggle - 3972: - - - Pressed - - Toggle - 3241: - - - Pressed - - Toggle - 3992: - - - Pressed - - Toggle - 7808: - - - Pressed - - Toggle - 8031: - - - Pressed - - Toggle - 10999: - - - Pressed - - Toggle - 10959: - - - Pressed - - Toggle - - uid: 11001 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-37.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 449: - - - Pressed - - Toggle - 2044: - - - Pressed - - Toggle - 780: - - - Pressed - - Toggle - 4502: - - - Pressed - - Toggle - - uid: 11019 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,16.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 15371: - - - Pressed - - Toggle - 15370: - - - Pressed - - Toggle - - uid: 13655 + - uid: 10538 components: - type: MetaData - name: perma shutters + name: signal button (Inner Doors) - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,33.5 + pos: 31.69,31.78 parent: 2 - type: DeviceLinkSource linkedPorts: - 13650: + 8414: - - Pressed - - Toggle - 13651: + - Open + 8412: - - Pressed - - Toggle - 13652: - - - Pressed - - Toggle - 13644: - - - Pressed - - Toggle - 13645: - - - Pressed - - Toggle - 13646: - - - Pressed - - Toggle - 13647: - - - Pressed - - Toggle - 13648: - - - Pressed - - Toggle - 13649: - - - Pressed - - Toggle - - uid: 14566 - components: - - type: Transform - pos: 61.5,26.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5351: - - - Pressed - - Toggle - 5361: - - - Pressed - - Toggle + - Open + - type: Label + currentLabel: Inner Doors + - type: NameModifier + baseName: signal button - uid: 14742 components: + - type: MetaData + name: signal button (Outer Doors) - type: Transform - pos: 31.77084,21.456566 + pos: 31.31,31.78 parent: 2 - type: DeviceLinkSource linkedPorts: - 12825: + 257: - - Pressed - - Toggle - 13183: + - Open + 318: - - Pressed - - Toggle - - uid: 14924 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.777786,17.53082 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12826: - - - Pressed - - Toggle - 12824: - - - Pressed - - Toggle + - Open + - type: Label + currentLabel: Outer Doors + - type: NameModifier + baseName: signal button - uid: 15124 components: - type: Transform @@ -78011,33 +81416,488 @@ entities: 15121: - - Pressed - Toggle - - uid: 15127 + - uid: 15804 components: + - type: MetaData + name: signal button (Front Doors) - type: Transform rot: 3.141592653589793 rad - pos: 30.5,27.5 + pos: 49.5,16.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 13915: + 10449: + - - Pressed + - Open + 3035: - - Pressed - Toggle - - uid: 15286 + - type: Label + currentLabel: Front Doors + - type: NameModifier + baseName: signal button +- proto: SignalSwitch + entities: + - uid: 5331 components: + - type: MetaData + name: signal switch (Shutters) + - type: Transform + pos: 31.49404,32.001522 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14600: + - - On + - Open + - - Off + - Close + 14599: + - - On + - Open + - - Off + - Close + - type: Label + currentLabel: Shutters + - type: NameModifier + baseName: signal switch + - uid: 10605 + components: + - type: MetaData + name: signal switch (Blast Doors) + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 365: + - - On + - Open + - - Off + - Close + 8520: + - - On + - Open + - - Off + - Close + 8557: + - - On + - Open + - - Off + - Close + - type: Label + currentLabel: Blast Doors + - type: NameModifier + baseName: signal switch +- proto: SignalSwitchDirectional + entities: + - uid: 2053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,15.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14912: + - - Off + - Close + - - On + - Open + 14910: + - - On + - Open + - - Off + - Close + 14911: + - - On + - Open + - - Off + - Close + - uid: 2059 + components: + - type: MetaData + name: signal switch (Storage Bay) + - type: Transform + pos: 10.5,29.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8541: + - - On + - Open + - - Off + - Close + 9640: + - - Off + - Close + - - On + - Open + 8446: + - - On + - Open + - - Off + - Close + - type: Label + currentLabel: Storage Bay + - type: NameModifier + baseName: signal switch + - uid: 7856 + components: + - type: MetaData + name: signal switch (Brig Shutters) + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.060936,27.49635 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3494: + - - On + - Open + - - Off + - Close + 2261: + - - On + - Open + - - Off + - Close + 9038: + - - On + - Open + - - Off + - Close + 2065: + - - On + - Open + - - Off + - Close + 14860: + - - On + - Open + - - Off + - Close + 14861: + - - On + - Open + - - Off + - Close + - type: Label + currentLabel: Brig Shutters + - type: NameModifier + baseName: signal switch + - uid: 10979 + components: + - type: MetaData + name: signal switch (Window Shutters) + - type: Transform + pos: 11.5,-32.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13490: + - - On + - Open + - - Off + - Close + 13489: + - - On + - Open + - - Off + - Close + 13488: + - - On + - Open + - - Off + - Close + 4635: + - - On + - Open + - - Off + - Close + 13478: + - - On + - Open + - - Off + - Close + 13477: + - - On + - Open + - - Off + - Close + 13476: + - - On + - Open + - - Off + - Close + 13481: + - - On + - Open + - - Off + - Close + 13482: + - - On + - Open + - - Off + - Close + 13480: + - - On + - Open + - - Off + - Close + - type: Label + currentLabel: Window Shutters + - type: NameModifier + baseName: signal switch + - uid: 11164 + components: + - type: MetaData + name: signal switch (Bay Conveyor Belts) - type: Transform pos: 6.5,34.5 parent: 2 - type: DeviceLinkSource linkedPorts: + 967: + - - On + - Forward + - - Off + - Off + 999: + - - On + - Forward + - - Off + - Off + 944: + - - On + - Forward + - - Off + - Off + 11473: + - - On + - Forward + - - Off + - Off 895: - - - Pressed - - Toggle + - - On + - Open + - - Off + - Close + - type: Label + currentLabel: Bay Conveyor Belts + - type: NameModifier + baseName: signal switch + - uid: 12384 + components: + - type: MetaData + name: signal switch (Shutters) + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,39.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11676: + - - On + - Open + - - Off + - Close + - type: Label + currentLabel: Shutters + - type: NameModifier + baseName: signal switch + - uid: 13484 + components: + - type: MetaData + name: signal switch (Radiation Shutters) + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-37.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9282: + - - On + - Open + - - Off + - Close + 8932: + - - On + - Open + - - Off + - Close + 9332: + - - On + - Open + - - Off + - Close + 8673: + - - Off + - Close + - - On + - Open + - type: Label + currentLabel: Radiation Shutters + - type: NameModifier + baseName: signal switch + - uid: 13584 + components: + - type: MetaData + name: signal switch (Loading Dock Belts) + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2051: + - - On + - Forward + - - Off + - Off + 5467: + - - On + - Forward + - - Off + - Off + 258: + - - On + - Forward + - - Off + - Off + 320: + - - On + - Forward + - - Off + - Off + 450: + - - On + - Forward + - - Off + - Off + 2064: + - - On + - Forward + - - Off + - Off + 4321: + - - On + - Forward + - - Off + - Off + 7972: + - - On + - Forward + - - Off + - Off + 5518: + - - On + - Forward + - - Off + - Off + 8239: + - - On + - Forward + - - Off + - Off + 2009: + - - Off + - Close + - - On + - Open + 3357: + - - On + - Open + - - Off + - Close + 2000: + - - Off + - Close + - - On + - Open + 15789: + - - On + - Open + - - Off + - Close + - type: Label + currentLabel: Loading Dock Belts + - type: NameModifier + baseName: signal switch + - uid: 13706 + components: + - type: MetaData + name: signal switch (Control Room Shutters) + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.060936,27.72783 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13629: + - - On + - Open + - - Off + - Close + 13630: + - - On + - Open + - - Off + - Close + 8621: + - - On + - Open + - - Off + - Close + 8575: + - - On + - Open + - - Off + - Close + 5447: + - - On + - Open + - - Off + - Close + 9266: + - - On + - Open + - - Off + - Close + 8592: + - - On + - Open + - - Off + - Close + - type: Label + currentLabel: Control Room Shutters + - type: NameModifier + baseName: signal switch + - uid: 14657 + components: + - type: MetaData + name: signal switch (Janitorial Service) + - type: Transform + pos: 29.5,32.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2363: + - - On + - On + - - Off + - Off + - type: Label + currentLabel: Janitorial Service + - type: NameModifier + baseName: signal switch - proto: SignAnomaly entities: - - uid: 5066 + - uid: 15513 components: - type: Transform - pos: 61.5,21.5 + pos: 58.5,22.5 parent: 2 - proto: SignAnomaly2 entities: @@ -78048,11 +81908,10 @@ entities: parent: 2 - proto: SignArmory entities: - - uid: 7678 + - uid: 671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,23.5 + pos: 39.5,32.5 parent: 2 - proto: SignAtmos entities: @@ -78096,6 +81955,14 @@ entities: - type: Transform pos: 41.5,-36.5 parent: 2 +- proto: SignCansScience + entities: + - uid: 11522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,12.5 + parent: 2 - proto: SignCargo entities: - uid: 11211 @@ -78143,11 +82010,31 @@ entities: parent: 2 - proto: SignCryogenicsMed entities: + - uid: 7365 + components: + - type: Transform + pos: 48.5,24.5 + parent: 2 - uid: 11804 components: - type: Transform pos: 63.5,-0.5 parent: 2 +- proto: SignDangerMed + entities: + - uid: 15523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,26.5 + parent: 2 +- proto: SignDetective + entities: + - uid: 9252 + components: + - type: Transform + pos: 54.5,34.5 + parent: 2 - proto: SignDirectionalBridge entities: - uid: 7329 @@ -78189,6 +82076,19 @@ entities: - type: Transform pos: 28.5037,2.3089128 parent: 2 +- proto: SignDirectionalEscapePod + entities: + - uid: 10722 + components: + - type: Transform + pos: 60.521824,46.423424 + parent: 2 + - uid: 15684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.52563,35.58913 + parent: 2 - proto: SignDirectionalEvac entities: - uid: 7894 @@ -78321,6 +82221,17 @@ entities: - type: Transform pos: 3.5,-33.5 parent: 2 + - uid: 9903 + components: + - type: Transform + pos: 60.521824,46.62134 + parent: 2 + - uid: 12296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.52563,35.412045 + parent: 2 - uid: 12297 components: - type: Transform @@ -78333,12 +82244,6 @@ entities: rot: 3.141592653589793 rad pos: 68.5,19.5 parent: 2 - - uid: 12299 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,45.5 - parent: 2 - proto: SignDirectionalSupply entities: - uid: 5418 @@ -78361,6 +82266,14 @@ entities: rot: 3.141592653589793 rad pos: 12.5,11.5 parent: 2 +- proto: SignDoors + entities: + - uid: 12754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,52.5 + parent: 2 - proto: SignElectricalMed entities: - uid: 12351 @@ -78378,41 +82291,6 @@ entities: - type: Transform pos: 31.5,-49.5 parent: 2 - - uid: 14698 - components: - - type: Transform - pos: 28.5,22.5 - parent: 2 - - uid: 14850 - components: - - type: Transform - pos: 50.5,38.5 - parent: 2 - - uid: 14851 - components: - - type: Transform - pos: 50.5,43.5 - parent: 2 - - uid: 14852 - components: - - type: Transform - pos: 52.5,44.5 - parent: 2 - - uid: 14853 - components: - - type: Transform - pos: 60.5,44.5 - parent: 2 - - uid: 14854 - components: - - type: Transform - pos: 62.5,41.5 - parent: 2 - - uid: 14855 - components: - - type: Transform - pos: 62.5,31.5 - parent: 2 - uid: 14949 components: - type: Transform @@ -78431,12 +82309,6 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-33.5 parent: 2 - - uid: 15369 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,16.5 - parent: 2 - proto: SignEngine entities: - uid: 5157 @@ -78458,15 +82330,17 @@ entities: parent: 2 - proto: SignEscapePods entities: - - uid: 5027 + - uid: 12434 components: - type: Transform - pos: 85.5,3.5 + rot: -1.5707963267948966 rad + pos: 65.5,45.5 parent: 2 - - uid: 15453 + - uid: 14770 components: - type: Transform - pos: 41.5,43.5 + rot: 1.5707963267948966 rad + pos: 86.5,3.5 parent: 2 - uid: 15458 components: @@ -78496,12 +82370,6 @@ entities: parent: 2 - proto: SignFire entities: - - uid: 12280 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,26.5 - parent: 2 - uid: 12993 components: - type: Transform @@ -78520,10 +82388,12 @@ entities: - type: Transform pos: 33.5,-31.5 parent: 2 - - uid: 10437 +- proto: SignGenpop + entities: + - uid: 8573 components: - type: Transform - pos: 61.5,27.5 + pos: 32.5,26.5 parent: 2 - proto: SignGravity entities: @@ -78554,10 +82424,10 @@ entities: parent: 2 - proto: SignInterrogation entities: - - uid: 8439 + - uid: 8933 components: - type: Transform - pos: 38.5,32.5 + pos: 55.5,31.5 parent: 2 - proto: SignJanitor entities: @@ -78576,6 +82446,12 @@ entities: parent: 2 - proto: SignLaserMed entities: + - uid: 11001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-37.5 + parent: 2 - uid: 12289 components: - type: Transform @@ -78603,10 +82479,11 @@ entities: parent: 2 - proto: SignMagneticsMed entities: - - uid: 6846 + - uid: 12178 components: - type: Transform - pos: 3.5,39.5 + rot: 3.141592653589793 rad + pos: 3.5,40.5 parent: 2 - uid: 14680 components: @@ -78645,6 +82522,11 @@ entities: - type: Transform pos: 65.5,-7.5 parent: 2 + - uid: 12182 + components: + - type: Transform + pos: 51.5,46.5 + parent: 2 - proto: SignNTMine entities: - uid: 10969 @@ -78665,13 +82547,6 @@ entities: - type: Transform pos: 16.5,40.5 parent: 2 -- proto: SignPrison - entities: - - uid: 13138 - components: - - type: Transform - pos: 47.5,33.5 - parent: 2 - proto: SignRadiationMed entities: - uid: 747 @@ -78679,10 +82554,10 @@ entities: - type: Transform pos: 18.5,-40.5 parent: 2 - - uid: 4012 + - uid: 15635 components: - type: Transform - pos: 24.5,-37.5 + pos: 19.5,-37.5 parent: 2 - proto: SignRND entities: @@ -78699,25 +82574,24 @@ entities: parent: 2 - proto: SignRobo entities: + - uid: 5277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,12.5 + parent: 2 - uid: 8612 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,12.5 parent: 2 - - uid: 12292 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,12.5 - parent: 2 - proto: SignSalvage entities: - - uid: 6779 + - uid: 14914 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,29.5 + pos: 9.5,29.5 parent: 2 - proto: SignScience entities: @@ -78727,13 +82601,6 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,15.5 parent: 2 -- proto: SignSecurearea - entities: - - uid: 11939 - components: - - type: Transform - pos: 17.5,-15.5 - parent: 2 - proto: SignSecureMed entities: - uid: 1518 @@ -78790,22 +82657,12 @@ entities: - type: Transform pos: 87.5,32.5 parent: 2 - - uid: 14574 - components: - - type: Transform - pos: 82.5,32.5 - parent: 2 - uid: 14592 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,24.5 parent: 2 - - uid: 14849 - components: - - type: Transform - pos: 47.5,36.5 - parent: 2 - uid: 14951 components: - type: Transform @@ -78842,13 +82699,27 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-29.5 parent: 2 -- proto: SignSecurity +- proto: SignSecureMedRed entities: - - uid: 12294 + - uid: 221 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,27.5 + pos: 39.5,-15.5 + parent: 2 +- proto: SignSecurity + entities: + - uid: 9015 + components: + - type: Transform + pos: 28.5,29.5 + parent: 2 +- proto: SignServer + entities: + - uid: 5201 + components: + - type: Transform + pos: 52.5,25.5 parent: 2 - proto: SignShipDock entities: @@ -78862,19 +82733,13 @@ entities: - type: Transform pos: -11.5,1.5 parent: 2 -- proto: SignShock - entities: - - uid: 11017 - components: - - type: Transform - pos: 42.5,-13.5 - parent: 2 - proto: SignSmoking entities: - - uid: 5466 + - uid: 3432 components: - type: Transform - pos: 68.5,38.5 + rot: 3.141592653589793 rad + pos: 68.5,40.5 parent: 2 - uid: 9721 components: @@ -78898,11 +82763,6 @@ entities: - type: Transform pos: 5.529085,-16.484226 parent: 2 - - uid: 10083 - components: - - type: Transform - pos: 62.5,29.5 - parent: 2 - uid: 12823 components: - type: Transform @@ -78944,11 +82804,6 @@ entities: parent: 2 - proto: SignToolStorage entities: - - uid: 5704 - components: - - type: Transform - pos: 68.5,40.5 - parent: 2 - uid: 11200 components: - type: Transform @@ -78960,14 +82815,6 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,-13.5 parent: 2 -- proto: SignToxins - entities: - - uid: 12304 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,12.5 - parent: 2 - proto: SignVault entities: - uid: 10444 @@ -78982,6 +82829,13 @@ entities: - type: Transform pos: 78.5,0.5 parent: 2 +- proto: SignXenobio + entities: + - uid: 13126 + components: + - type: Transform + pos: 68.5,28.5 + parent: 2 - proto: SingularityGenerator entities: - uid: 750 @@ -78999,6 +82853,12 @@ entities: - type: Transform pos: 11.5,13.5 parent: 2 + - uid: 2402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,15.5 + parent: 2 - uid: 5276 components: - type: Transform @@ -79021,11 +82881,6 @@ entities: rot: -1.5707963267948966 rad pos: 53.5,-7.5 parent: 2 - - uid: 10446 - components: - - type: Transform - pos: 51.5,15.5 - parent: 2 - uid: 10853 components: - type: Transform @@ -79049,11 +82904,13 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,6.5 parent: 2 - - uid: 13628 +- proto: SinkStemlessWater + entities: + - uid: 8554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,36.5 + rot: 3.141592653589793 rad + pos: 44.5,21.5 parent: 2 - proto: SinkWide entities: @@ -79076,11 +82933,6 @@ entities: parent: 2 - proto: Skub entities: - - uid: 5403 - components: - - type: Transform - pos: 62.485527,20.60704 - parent: 2 - uid: 13072 components: - type: Transform @@ -79211,19 +83063,12 @@ entities: - type: Transform pos: 79.5,34.5 parent: 2 - - uid: 14741 - components: - - type: MetaData - name: Security SMES - - type: Transform - pos: 37.5,33.5 - parent: 2 - proto: SmokingPipeFilledTobacco entities: - - uid: 11946 + - uid: 6913 components: - type: Transform - pos: 32.982197,41.628204 + pos: 35.496292,41.910683 parent: 2 - proto: SodaDispenser entities: @@ -79465,6 +83310,36 @@ entities: - type: Transform pos: -13.5,-33.5 parent: 2 + - uid: 2302 + components: + - type: Transform + pos: 87.5,40.5 + parent: 2 + - uid: 2307 + components: + - type: Transform + pos: 85.5,40.5 + parent: 2 + - uid: 2374 + components: + - type: Transform + pos: 87.5,50.5 + parent: 2 + - uid: 2380 + components: + - type: Transform + pos: 79.5,50.5 + parent: 2 + - uid: 2404 + components: + - type: Transform + pos: 77.5,50.5 + parent: 2 + - uid: 3500 + components: + - type: Transform + pos: 85.5,50.5 + parent: 2 - uid: 5535 components: - type: Transform @@ -79665,6 +83540,11 @@ entities: - type: Transform pos: 85.5,47.5 parent: 2 + - uid: 8558 + components: + - type: Transform + pos: 79.5,40.5 + parent: 2 - uid: 8904 components: - type: Transform @@ -79840,6 +83720,51 @@ entities: - type: Transform pos: 117.5,-19.5 parent: 2 + - uid: 9279 + components: + - type: Transform + pos: 77.5,40.5 + parent: 2 + - uid: 15743 + components: + - type: Transform + pos: -5.5,-40.5 + parent: 2 + - uid: 15744 + components: + - type: Transform + pos: -3.5,-40.5 + parent: 2 + - uid: 15745 + components: + - type: Transform + pos: -3.5,-30.5 + parent: 2 + - uid: 15746 + components: + - type: Transform + pos: -5.5,-30.5 + parent: 2 + - uid: 15753 + components: + - type: Transform + pos: -11.5,-40.5 + parent: 2 + - uid: 15754 + components: + - type: Transform + pos: -13.5,-40.5 + parent: 2 + - uid: 15755 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 2 + - uid: 15756 + components: + - type: Transform + pos: -11.5,-30.5 + parent: 2 - proto: SolarTracker entities: - uid: 1443 @@ -79866,6 +83791,12 @@ entities: parent: 2 - type: SpamEmitSound enabled: False + - uid: 15191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,21.5 + parent: 2 - proto: SpawnMechRipley entities: - uid: 14751 @@ -79882,10 +83813,10 @@ entities: parent: 2 - proto: SpawnMobBandito entities: - - uid: 12772 + - uid: 4123 components: - type: Transform - pos: 62.5,10.5 + pos: 64.5,10.5 parent: 2 - proto: SpawnMobCatGeneric entities: @@ -79910,24 +83841,25 @@ entities: parent: 2 - proto: SpawnMobFoxRenault entities: - - uid: 12231 + - uid: 15496 components: - type: Transform - pos: 31.5,41.5 + pos: 31.5,39.5 parent: 2 - proto: SpawnMobMcGriff entities: - - uid: 2493 + - uid: 15816 components: - type: Transform - pos: 36.5,19.5 + pos: 40.5,27.5 parent: 2 - proto: SpawnMobMonkeyPunpun entities: - - uid: 6527 + - uid: 1646 components: - type: Transform - pos: 39.5,-5.5 + rot: 1.5707963267948966 rad + pos: 38.5,-10.5 parent: 2 - proto: SpawnMobMouse entities: @@ -79941,16 +83873,6 @@ entities: - type: Transform pos: 73.5,-15.5 parent: 2 - - uid: 12797 - components: - - type: Transform - pos: 43.5,44.5 - parent: 2 - - uid: 12798 - components: - - type: Transform - pos: 67.5,39.5 - parent: 2 - uid: 12799 components: - type: Transform @@ -79968,7 +83890,7 @@ entities: parent: 2 - proto: SpawnMobPollyParrot entities: - - uid: 2409 + - uid: 9259 components: - type: Transform pos: 11.5,-33.5 @@ -79989,10 +83911,10 @@ entities: parent: 2 - proto: SpawnMobShiva entities: - - uid: 8444 + - uid: 1195 components: - type: Transform - pos: 44.5,22.5 + pos: 43.5,41.5 parent: 2 - proto: SpawnMobSlothPaperwork entities: @@ -80036,15 +83958,15 @@ entities: parent: 2 - proto: SpawnPointBorg entities: - - uid: 14628 + - uid: 3034 components: - type: Transform - pos: 49.5,9.5 + pos: 51.5,10.5 parent: 2 - - uid: 14629 + - uid: 3667 components: - type: Transform - pos: 51.5,9.5 + pos: 49.5,10.5 parent: 2 - proto: SpawnPointBotanist entities: @@ -80060,10 +83982,10 @@ entities: parent: 2 - proto: SpawnPointCaptain entities: - - uid: 8682 + - uid: 15473 components: - type: Transform - pos: 33.5,40.5 + pos: 36.5,42.5 parent: 2 - proto: SpawnPointCargoTechnician entities: @@ -80131,10 +84053,10 @@ entities: parent: 2 - proto: SpawnPointDetective entities: - - uid: 8679 + - uid: 10425 components: - type: Transform - pos: 42.5,19.5 + pos: 58.5,38.5 parent: 2 - proto: SpawnPointHeadOfPersonnel entities: @@ -80145,10 +84067,10 @@ entities: parent: 2 - proto: SpawnPointHeadOfSecurity entities: - - uid: 8438 + - uid: 8696 components: - type: Transform - pos: 44.5,24.5 + pos: 48.5,42.5 parent: 2 - proto: SpawnPointJanitor entities: @@ -80289,87 +84211,92 @@ entities: parent: 2 - proto: SpawnPointQuartermaster entities: - - uid: 14990 + - uid: 11900 components: - type: Transform - pos: 7.5,18.5 + pos: 6.5,15.5 parent: 2 - proto: SpawnPointResearchAssistant entities: - - uid: 10657 + - uid: 15842 components: - type: Transform - pos: 57.5,23.5 + pos: 49.5,17.5 parent: 2 - - uid: 10658 + - uid: 15871 components: - type: Transform - pos: 56.5,23.5 + pos: 53.5,18.5 parent: 2 - proto: SpawnPointResearchDirector entities: - - uid: 12770 + - uid: 10594 components: - type: Transform - pos: 61.5,9.5 + pos: 62.5,9.5 parent: 2 - proto: SpawnPointSalvageSpecialist entities: - - uid: 14764 + - uid: 6912 components: - type: Transform - pos: 7.5,31.5 + pos: 8.5,31.5 parent: 2 - - uid: 14765 + - uid: 7809 components: - type: Transform - pos: 8.5,32.5 + pos: 8.5,30.5 parent: 2 - proto: SpawnPointScientist entities: - - uid: 10654 - components: - - type: Transform - pos: 57.5,24.5 - parent: 2 - - uid: 10655 - components: - - type: Transform - pos: 56.5,24.5 - parent: 2 - - uid: 10656 + - uid: 5676 components: - type: Transform pos: 55.5,24.5 parent: 2 + - uid: 11670 + components: + - type: Transform + pos: 57.5,24.5 + parent: 2 + - uid: 15576 + components: + - type: Transform + pos: 56.5,24.5 + parent: 2 + - uid: 15583 + components: + - type: Transform + pos: 54.5,24.5 + parent: 2 - proto: SpawnPointSecurityCadet entities: - - uid: 8437 + - uid: 15797 components: - type: Transform - pos: 34.5,27.5 + pos: 38.5,25.5 parent: 2 - - uid: 8696 + - uid: 15798 components: - type: Transform - pos: 34.5,26.5 + pos: 37.5,26.5 parent: 2 - proto: SpawnPointSecurityOfficer entities: - - uid: 8159 + - uid: 6291 components: - type: Transform - pos: 31.5,29.5 + pos: 37.5,33.5 parent: 2 - - uid: 13584 + - uid: 9147 components: - type: Transform - pos: 30.5,29.5 + pos: 35.5,33.5 parent: 2 - - uid: 13585 + - uid: 9148 components: - type: Transform - pos: 29.5,29.5 + pos: 36.5,33.5 parent: 2 - proto: SpawnPointServiceWorker entities: @@ -80429,23 +84356,17 @@ entities: parent: 2 - proto: SpawnPointWarden entities: - - uid: 8375 + - uid: 8467 components: - type: Transform - pos: 38.5,18.5 + pos: 43.5,25.5 parent: 2 - proto: SprayBottle entities: - - uid: 5393 + - uid: 11736 components: - type: Transform - rot: 3.589668631320819E-05 rad - pos: 55.735016,10.470499 - parent: 2 - - uid: 7793 - components: - - type: Transform - pos: 55.34302,10.727416 + pos: 70.321815,33.64177 parent: 2 - proto: SprayBottleSpaceCleaner entities: @@ -80454,6 +84375,11 @@ entities: - type: Transform pos: 82.67393,-4.422255 parent: 2 + - uid: 12047 + components: + - type: Transform + pos: 52.414017,8.823876 + parent: 2 - proto: SprayBottleWater entities: - uid: 6812 @@ -80495,7 +84421,7 @@ entities: - uid: 14285 components: - type: Transform - pos: 84.42593,28.382923 + pos: 84.52714,28.474094 parent: 2 - proto: StationMap entities: @@ -80517,16 +84443,16 @@ 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 pos: 9.5,2.5 parent: 2 + - uid: 8230 + components: + - type: Transform + pos: 61.5,16.5 + parent: 2 - uid: 11292 components: - type: Transform @@ -80538,18 +84464,11 @@ entities: rot: 3.141592653589793 rad pos: 34.5,12.5 parent: 2 - - uid: 15380 + - uid: 15681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,35.5 - parent: 2 -- proto: Stimpack - entities: - - uid: 12493 - components: - - type: Transform - pos: 11.490012,-11.457567 + rot: 1.5707963267948966 rad + pos: 24.5,34.5 parent: 2 - proto: Stool entities: @@ -80570,34 +84489,11 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,-7.5 parent: 2 - - uid: 3406 - components: - - type: Transform - pos: 71.5,46.5 - parent: 2 - - uid: 4304 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-41.5 - parent: 2 - - uid: 4406 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,28.5 - parent: 2 - uid: 5067 components: - type: Transform pos: 51.5,-6.5 parent: 2 - - uid: 5512 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,40.5 - parent: 2 - uid: 5879 components: - type: Transform @@ -80621,20 +84517,11 @@ entities: - type: Transform pos: 27.5,7.5 parent: 2 - - uid: 13626 + - uid: 11903 components: - type: Transform - pos: 55.5,32.5 - parent: 2 - - uid: 13627 - components: - - type: Transform - pos: 56.5,32.5 - parent: 2 - - uid: 13752 - components: - - type: Transform - pos: 54.5,37.5 + rot: 3.141592653589793 rad + pos: 20.492794,-41.282494 parent: 2 - proto: StoolBar entities: @@ -80683,6 +84570,21 @@ entities: - type: Transform pos: 60.5,-16.5 parent: 2 + - uid: 5508 + components: + - type: Transform + pos: 53.5,43.5 + parent: 2 + - uid: 6348 + components: + - type: Transform + pos: 54.5,43.5 + parent: 2 + - uid: 7754 + components: + - type: Transform + pos: 55.5,43.5 + parent: 2 - uid: 12695 components: - type: Transform @@ -80716,11 +84618,19 @@ entities: - type: Transform pos: 36.5,-26.5 parent: 2 - - uid: 10440 + - uid: 10335 components: - type: Transform - pos: 58.5,9.5 + pos: 56.5,8.5 parent: 2 + - uid: 10763 + components: + - type: Transform + anchored: True + pos: 63.5,22.5 + parent: 2 + - type: Physics + bodyType: Static - proto: SubstationBasic entities: - uid: 54 @@ -80739,6 +84649,11 @@ entities: parent: 2 - type: PowerNetworkBattery supplyRampPosition: 2.3437593 + - uid: 679 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 2 - uid: 2039 components: - type: MetaData @@ -80769,6 +84684,13 @@ entities: parent: 2 - type: PowerNetworkBattery supplyRampPosition: 2.3437593 + - uid: 4173 + components: + - type: MetaData + name: substation (Sci) + - type: Transform + pos: 62.5,20.5 + parent: 2 - uid: 4431 components: - type: MetaData @@ -80801,15 +84723,6 @@ entities: - type: Transform pos: 69.5,-13.5 parent: 2 - - uid: 6379 - components: - - type: MetaData - name: Science Substation - - type: Transform - pos: 50.5,27.5 - parent: 2 - - type: PowerNetworkBattery - supplyRampPosition: 2.3437593 - uid: 7576 components: - type: MetaData @@ -80833,17 +84746,12 @@ entities: loadingNetworkDemand: 60.000237 currentReceiving: 60.000237 currentSupply: 60.000237 - - uid: 9041 + - uid: 10341 components: - type: MetaData - name: Security Substation + name: substation (Sec) - type: Transform - pos: 37.5,34.5 - parent: 2 - - uid: 9885 - components: - - type: Transform - pos: 15.5,-14.5 + pos: 62.5,36.5 parent: 2 - uid: 13688 components: @@ -80892,6 +84800,11 @@ entities: parent: 2 - proto: SuitStorageEVA entities: + - uid: 7947 + components: + - type: Transform + pos: 82.5,27.5 + parent: 2 - uid: 10300 components: - type: Transform @@ -80926,48 +84839,121 @@ entities: parent: 2 - proto: SuitStorageEVAPrisoner entities: - - uid: 3460 + - uid: 5106 components: - type: Transform - pos: 48.5,33.5 + pos: 34.5,24.5 parent: 2 - - uid: 3493 + - uid: 5146 components: - type: Transform - pos: 49.5,33.5 + pos: 34.5,23.5 + parent: 2 +- proto: SuitStorageHOS + entities: + - uid: 14456 + components: + - type: Transform + pos: 46.5,38.5 parent: 2 - proto: SuitStorageNTSRA entities: - - uid: 12168 + - uid: 128 components: - type: Transform pos: 49.5,-15.5 parent: 2 - proto: SuitStorageRD entities: - - uid: 10661 + - uid: 3143 components: - type: Transform - pos: 60.5,8.5 + pos: 60.5,10.5 parent: 2 - proto: SuitStorageSec entities: - - uid: 11209 + - uid: 3183 components: + - type: MetaData + name: suit storage unit (2) - type: Transform - pos: 38.5,24.5 + pos: 39.5,33.5 parent: 2 - - uid: 11735 + - 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: + - 12242 + - 12294 + - 12199 + - type: Label + currentLabel: 2 + - type: NameModifier + baseName: suit storage unit + - uid: 12746 components: + - type: MetaData + name: suit storage unit (2) - type: Transform - pos: 41.5,24.5 + pos: 41.5,33.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: + - 12760 + - 12761 + - 12765 + - type: Label + currentLabel: 2 + - type: NameModifier + baseName: suit storage unit - proto: SuitStorageWarden entities: - - uid: 7780 + - uid: 4400 components: - type: Transform - pos: 39.5,19.5 + pos: 40.5,24.5 parent: 2 - proto: SurveillanceCameraCommand entities: @@ -81075,14 +85061,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: Secure Storage Boards - - uid: 13761 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,36.5 - parent: 2 - - type: SurveillanceCamera - id: Camera Routers - uid: 14168 components: - type: Transform @@ -81169,14 +85147,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Captain's Office - - uid: 14676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,42.5 - parent: 2 - - type: SurveillanceCamera - id: Captain's Bedroom - uid: 14677 components: - type: Transform @@ -81194,17 +85164,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Singulo South - - uid: 5877 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,46.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Solars Northwest ' - uid: 7462 components: - type: Transform @@ -81224,6 +85183,11 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Anchor Room + - uid: 8685 + components: + - type: Transform + pos: 26.5,-36.5 + parent: 2 - uid: 10986 components: - type: Transform @@ -81232,14 +85196,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Singulo West - - uid: 10989 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-16.5 - parent: 2 - - type: SurveillanceCamera - id: Telecomms - uid: 10995 components: - type: Transform @@ -81460,28 +85416,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos Tanks South - - uid: 13738 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-14.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Telecomms Airlock - - uid: 13748 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,46.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Solars Northwest Door - uid: 14678 components: - type: Transform @@ -81490,8 +85424,30 @@ entities: parent: 2 - type: SurveillanceCamera id: Singulo Power + - uid: 14793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-32.5 + parent: 2 + - uid: 14831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 2 - proto: SurveillanceCameraGeneral entities: + - uid: 8684 + components: + - type: Transform + pos: 37.5,13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North Hall 1 - uid: 12665 components: - type: Transform @@ -81611,28 +85567,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Central Hall - - uid: 12738 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,15.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Central Hall North - - uid: 12739 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,8.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Central Hall East - uid: 12740 components: - type: Transform @@ -81687,28 +85621,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Main Hall Bar - - uid: 13744 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,15.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Security South - - uid: 13745 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,22.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Security/Cargo - uid: 13747 components: - type: Transform @@ -81758,6 +85670,17 @@ entities: parent: 2 - type: SurveillanceCamera id: Arrivals Starboard + - uid: 14650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North Hall 1 - proto: SurveillanceCameraMedical entities: - uid: 1712 @@ -81923,62 +85846,97 @@ entities: id: Virology Quarantine 1 - proto: SurveillanceCameraRouterCommand entities: - - uid: 2300 + - uid: 10014 components: - type: Transform - pos: 32.5,35.5 + pos: 17.5,-15.5 parent: 2 - proto: SurveillanceCameraRouterEngineering entities: - - uid: 8404 + - uid: 10026 components: - type: Transform - pos: 30.5,35.5 + pos: 15.5,-15.5 parent: 2 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 8230 + - uid: 12378 components: - type: Transform - pos: 49.5,23.5 + pos: 13.5,-19.5 parent: 2 - proto: SurveillanceCameraRouterMedical entities: - - uid: 10316 + - uid: 15494 components: - type: Transform - pos: 32.5,37.5 - parent: 2 -- proto: SurveillanceCameraRouterScience - entities: - - uid: 10317 - components: - - type: Transform - pos: 31.5,37.5 + pos: 14.5,-17.5 parent: 2 - proto: SurveillanceCameraRouterSecurity entities: - - uid: 3160 + - uid: 4644 components: - type: Transform - pos: 31.5,35.5 + pos: 15.5,-19.5 + parent: 2 + - uid: 6899 + components: + - type: Transform + pos: 17.5,-19.5 parent: 2 - proto: SurveillanceCameraRouterService entities: - - uid: 8139 + - uid: 15493 components: - type: Transform - pos: 51.5,23.5 + pos: 17.5,-17.5 parent: 2 - proto: SurveillanceCameraRouterSupply entities: - - uid: 10315 + - uid: 9748 components: - type: Transform - pos: 30.5,37.5 + pos: 13.5,-15.5 parent: 2 - proto: SurveillanceCameraScience entities: + - uid: 3495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,15.5 + parent: 2 + - uid: 8462 + components: + - type: Transform + pos: 54.5,17.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science - Research & Development + - uid: 8654 + components: + - type: Transform + pos: 70.5,13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science - Anomaly + - uid: 12548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science - South Hall - uid: 12763 components: - type: Transform @@ -81990,61 +85948,6 @@ entities: - SurveillanceCameraScience nameSet: True id: Science Front - - uid: 12764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,20.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: RND - - uid: 12765 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,24.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science Server Room - - uid: 12768 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,14.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Anomaly Lab - - uid: 12769 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,10.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: RD Office - - uid: 12773 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,15.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science Entrance - uid: 12774 components: - type: Transform @@ -82055,7 +85958,7 @@ entities: setupAvailableNetworks: - SurveillanceCameraScience nameSet: True - id: Robotics + id: Science - Robotics - uid: 13740 components: - type: Transform @@ -82066,7 +85969,7 @@ entities: setupAvailableNetworks: - SurveillanceCameraScience nameSet: True - id: Artifact Chamber + id: Science - Xenoarcheology - uid: 13746 components: - type: Transform @@ -82078,23 +85981,96 @@ entities: - SurveillanceCameraScience nameSet: True id: Science Entrance + - uid: 14562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science - RD Office + - uid: 15568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,21.5 + parent: 2 + - uid: 15618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,25.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science - Lockers - proto: SurveillanceCameraSecurity entities: - - uid: 3204 + - uid: 1647 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,35.5 parent: 2 - type: SurveillanceCamera - id: Interrogation - - uid: 7722 + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security - Armory Blue + - uid: 2291 components: - type: Transform - pos: 31.5,28.5 + rot: -1.5707963267948966 rad + pos: 46.5,39.5 parent: 2 - type: SurveillanceCamera - id: Security Locker Room + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security - Office HOS + - uid: 3078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security - Front + - uid: 3488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security - Detective Office + - uid: 10892 + components: + - type: Transform + pos: 36.5,19.5 + parent: 2 + - uid: 12109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security - West Hall - uid: 12732 components: - type: Transform @@ -82117,94 +86093,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Evac Checkpoint - - uid: 12744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,27.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - - uid: 12745 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,23.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Warden's Room - - uid: 12746 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,24.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: HoS Room - - uid: 12747 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,19.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Detective Office - - uid: 12748 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,19.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Locker Room - - uid: 12749 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,18.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell 2 - - uid: 12750 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,21.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell 1 - - uid: 12751 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,24.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Entrance - uid: 12752 components: - type: Transform @@ -82216,29 +86104,50 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Court House - - uid: 13757 + - uid: 14594 + components: + - type: Transform + pos: 51.5,30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security - East Hall + - uid: 15277 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,36.5 + pos: 42.5,18.5 parent: 2 - - type: SurveillanceCamera - id: Perma Brig - - uid: 13758 + - uid: 15370 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,35.5 + rot: -1.5707963267948966 rad + pos: 34.5,33.5 parent: 2 - - type: SurveillanceCamera - id: Perma Entrance - - uid: 13759 + - uid: 15614 components: - type: Transform - pos: 38.5,30.5 + rot: 1.5707963267948966 rad + pos: 40.5,27.5 parent: 2 - type: SurveillanceCamera - id: Security Hallway + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security - Warden + - uid: 15813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,36.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security - Armory Red - proto: SurveillanceCameraService entities: - uid: 12711 @@ -82320,6 +86229,27 @@ entities: id: Janitor's Office - proto: SurveillanceCameraSupply entities: + - uid: 2055 + components: + - type: Transform + pos: 4.5,37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage Bay + - uid: 8103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,27.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Dock - uid: 9297 components: - type: Transform @@ -82327,14 +86257,10 @@ entities: pos: 6.5,30.5 parent: 2 - type: SurveillanceCamera - id: Salvage - - uid: 10979 - components: - - type: Transform - pos: 3.5,37.5 - parent: 2 - - type: SurveillanceCamera - id: Salvage Platform + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage Lockers - uid: 12724 components: - type: Transform @@ -82387,13 +86313,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Cargo Storage - - uid: 14954 - components: - - type: Transform - pos: 4.5,26.5 - parent: 2 - - type: SurveillanceCamera - id: Cargo Dock - proto: SynthesizerInstrument entities: - uid: 9740 @@ -82408,6 +86327,16 @@ entities: parent: 2 - proto: Syringe entities: + - uid: 3503 + components: + - type: Transform + pos: 63.957825,25.617743 + parent: 2 + - uid: 10610 + components: + - type: Transform + pos: 63.025978,38.577137 + parent: 2 - uid: 10709 components: - type: Transform @@ -82445,10 +86374,10 @@ entities: - type: Transform pos: 33.5,-4.5 parent: 2 - - uid: 679 + - uid: 622 components: - type: Transform - pos: 21.5,-19.5 + pos: 69.5,37.5 parent: 2 - uid: 778 components: @@ -82595,10 +86524,16 @@ entities: - type: Transform pos: 15.5,35.5 parent: 2 - - uid: 2486 + - uid: 2444 components: - type: Transform - pos: 36.5,25.5 + rot: -1.5707963267948966 rad + pos: 61.5,50.5 + parent: 2 + - uid: 2684 + components: + - type: Transform + pos: 55.5,41.5 parent: 2 - uid: 2906 components: @@ -82615,15 +86550,42 @@ entities: - type: Transform pos: 51.5,-7.5 parent: 2 + - uid: 3042 + components: + - type: Transform + pos: 44.5,9.5 + parent: 2 + - uid: 3093 + components: + - type: Transform + pos: 71.5,30.5 + parent: 2 + - uid: 3141 + components: + - type: Transform + pos: 61.5,41.5 + parent: 2 - uid: 3200 components: - type: Transform pos: 79.5,-7.5 parent: 2 - - uid: 3240 + - uid: 3204 components: - type: Transform - pos: 36.5,26.5 + rot: 3.141592653589793 rad + pos: 52.5,45.5 + parent: 2 + - uid: 3282 + components: + - type: Transform + pos: 52.5,33.5 + parent: 2 + - uid: 3428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,40.5 parent: 2 - uid: 3430 components: @@ -82635,6 +86597,11 @@ entities: - type: Transform pos: 78.5,-7.5 parent: 2 + - uid: 3499 + components: + - type: Transform + pos: 37.5,32.5 + parent: 2 - uid: 3569 components: - type: Transform @@ -82670,11 +86637,6 @@ entities: - type: Transform pos: 38.5,-9.5 parent: 2 - - uid: 4280 - components: - - type: Transform - pos: 57.5,20.5 - parent: 2 - uid: 4302 components: - type: Transform @@ -82730,6 +86692,12 @@ entities: - type: Transform pos: 74.5,-0.5 parent: 2 + - uid: 5200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-10.5 + parent: 2 - uid: 5203 components: - type: Transform @@ -82770,61 +86738,16 @@ entities: - type: Transform pos: 54.5,17.5 parent: 2 - - uid: 5310 + - uid: 5339 components: - type: Transform - pos: 55.5,20.5 - parent: 2 - - uid: 5311 - components: - - type: Transform - pos: 56.5,20.5 - parent: 2 - - uid: 5317 - components: - - type: Transform - pos: 49.5,19.5 - parent: 2 - - uid: 5318 - components: - - type: Transform - pos: 49.5,17.5 - parent: 2 - - uid: 5368 - components: - - type: Transform - pos: 55.5,10.5 - parent: 2 - - uid: 5369 - components: - - type: Transform - pos: 50.5,8.5 - parent: 2 - - uid: 5370 - components: - - type: Transform - pos: 52.5,8.5 + pos: 57.5,44.5 parent: 2 - uid: 5449 components: - type: Transform pos: 71.5,40.5 parent: 2 - - uid: 5450 - components: - - type: Transform - pos: 71.5,37.5 - parent: 2 - - uid: 5473 - components: - - type: Transform - pos: 67.5,37.5 - parent: 2 - - uid: 5475 - components: - - type: Transform - pos: 67.5,38.5 - parent: 2 - uid: 5521 components: - type: Transform @@ -82835,6 +86758,17 @@ entities: - type: Transform pos: 77.5,-13.5 parent: 2 + - uid: 6286 + components: + - type: Transform + pos: 48.5,44.5 + parent: 2 + - uid: 6336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,50.5 + parent: 2 - uid: 6756 components: - type: Transform @@ -82875,20 +86809,31 @@ entities: - type: Transform pos: 53.5,-5.5 parent: 2 + - uid: 7965 + components: + - type: Transform + pos: 6.5,40.5 + parent: 2 - uid: 7978 components: - type: Transform pos: -1.5,-3.5 parent: 2 - - uid: 8383 + - uid: 8410 components: - type: Transform - pos: 54.5,36.5 + rot: 3.141592653589793 rad + pos: 63.5,25.5 parent: 2 - - uid: 8538 + - uid: 8503 components: - type: Transform - pos: 34.5,17.5 + pos: 62.5,38.5 + parent: 2 + - uid: 8578 + components: + - type: Transform + pos: 51.5,30.5 parent: 2 - uid: 8858 components: @@ -82900,6 +86845,27 @@ entities: - type: Transform pos: 107.5,-11.5 parent: 2 + - uid: 9257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,38.5 + parent: 2 + - uid: 9333 + components: + - type: Transform + pos: 57.5,32.5 + parent: 2 + - uid: 9337 + components: + - type: Transform + pos: 63.5,38.5 + parent: 2 + - uid: 9344 + components: + - type: Transform + pos: 36.5,32.5 + parent: 2 - uid: 9354 components: - type: Transform @@ -82910,6 +86876,11 @@ entities: - type: Transform pos: 27.5,6.5 parent: 2 + - uid: 9431 + components: + - type: Transform + pos: 52.5,40.5 + parent: 2 - uid: 9621 components: - type: Transform @@ -82920,10 +86891,10 @@ entities: - type: Transform pos: 78.5,4.5 parent: 2 - - uid: 9956 + - uid: 10050 components: - type: Transform - pos: 5.5,40.5 + pos: 59.5,20.5 parent: 2 - uid: 10072 components: @@ -82935,11 +86906,6 @@ entities: - type: Transform pos: 78.5,-6.5 parent: 2 - - uid: 10137 - components: - - type: Transform - pos: 36.5,27.5 - parent: 2 - uid: 10268 components: - type: Transform @@ -82955,25 +86921,33 @@ entities: - type: Transform pos: 16.5,-5.5 parent: 2 - - uid: 10664 + - uid: 10404 components: - type: Transform - pos: 63.5,9.5 + rot: 3.141592653589793 rad + pos: 65.5,11.5 parent: 2 - - uid: 10665 + - uid: 10431 components: - type: Transform - pos: 63.5,10.5 + rot: 1.5707963267948966 rad + pos: 42.5,29.5 parent: 2 - - uid: 10668 + - uid: 10574 components: - type: Transform - pos: 63.5,8.5 + rot: 3.141592653589793 rad + pos: 65.5,10.5 parent: 2 - - uid: 10763 + - uid: 10614 components: - type: Transform - pos: 4.5,40.5 + pos: 71.5,33.5 + parent: 2 + - uid: 10655 + components: + - type: Transform + pos: 70.5,33.5 parent: 2 - uid: 10803 components: @@ -82985,6 +86959,17 @@ entities: - type: Transform pos: 70.5,11.5 parent: 2 + - uid: 10861 + components: + - type: Transform + pos: 49.5,19.5 + parent: 2 + - uid: 10886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,25.5 + parent: 2 - uid: 11119 components: - type: Transform @@ -83010,11 +86995,6 @@ entities: - type: Transform pos: 57.5,-14.5 parent: 2 - - uid: 11191 - components: - - type: Transform - pos: 46.5,11.5 - parent: 2 - uid: 11302 components: - type: Transform @@ -83055,15 +87035,11 @@ entities: - type: Transform pos: 51.5,4.5 parent: 2 - - uid: 11522 + - uid: 11472 components: - type: Transform - pos: 46.5,9.5 - parent: 2 - - uid: 11736 - components: - - type: Transform - pos: 36.5,28.5 + rot: 3.141592653589793 rad + pos: 60.5,20.5 parent: 2 - uid: 11830 components: @@ -83110,82 +87086,125 @@ entities: - type: Transform pos: 78.5,7.5 parent: 2 - - uid: 12582 + - uid: 12442 components: - type: Transform - pos: 20.5,-19.5 + pos: 60.5,19.5 + parent: 2 + - uid: 12743 + components: + - type: Transform + pos: 48.5,11.5 + parent: 2 + - uid: 12745 + components: + - type: Transform + pos: 45.5,9.5 parent: 2 - uid: 13105 components: - type: Transform pos: 15.5,24.5 parent: 2 + - uid: 13469 + components: + - type: Transform + pos: 70.5,30.5 + parent: 2 + - uid: 13516 + components: + - type: Transform + pos: 39.5,47.5 + parent: 2 - uid: 13564 components: - type: Transform pos: 50.5,4.5 parent: 2 - - uid: 13609 - components: - - type: Transform - pos: 54.5,41.5 - parent: 2 - - uid: 13610 - components: - - type: Transform - pos: 55.5,41.5 - parent: 2 - - uid: 13611 - components: - - type: Transform - pos: 56.5,41.5 - parent: 2 - - uid: 13624 - components: - - type: Transform - pos: 56.5,31.5 - parent: 2 - - uid: 13625 - components: - - type: Transform - pos: 55.5,31.5 - parent: 2 - uid: 14068 components: - type: Transform pos: -17.5,0.5 parent: 2 + - uid: 14235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,40.5 + parent: 2 + - uid: 14830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,28.5 + parent: 2 - uid: 15302 components: - type: Transform pos: 38.5,-29.5 parent: 2 - - uid: 15372 + - uid: 15657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,47.5 + parent: 2 +- proto: TableCounterMetal + entities: + - uid: 2373 + components: + - type: Transform + pos: 55.5,42.5 + parent: 2 + - uid: 2407 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 + - uid: 2563 + components: + - type: Transform + pos: 37.5,22.5 + parent: 2 + - uid: 3253 + components: + - type: Transform + pos: 54.5,42.5 + parent: 2 + - uid: 4131 + components: + - type: Transform + pos: 38.5,22.5 + parent: 2 + - uid: 6243 + components: + - type: Transform + pos: 36.5,22.5 + parent: 2 + - uid: 6281 components: - type: Transform pos: 33.5,17.5 parent: 2 -- proto: TableCarpet - entities: - - uid: 2266 + - uid: 6333 components: - type: Transform - pos: 70.5,28.5 + pos: 34.5,17.5 parent: 2 - - uid: 3429 + - uid: 8359 components: - type: Transform - pos: 70.5,29.5 + pos: 53.5,42.5 parent: 2 - - uid: 5501 + - uid: 8425 components: - type: Transform - pos: 70.5,33.5 + pos: 36.5,21.5 parent: 2 - - uid: 6007 + - uid: 9239 components: - type: Transform - pos: 70.5,27.5 + pos: 35.5,17.5 parent: 2 - proto: TableCounterWood entities: @@ -83209,6 +87228,58 @@ entities: - type: Transform pos: 19.5,-9.5 parent: 2 +- proto: TableFancyBlue + entities: + - uid: 15461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,32.5 + parent: 2 + - uid: 15462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,33.5 + parent: 2 +- proto: TableFancyRed + entities: + - uid: 2295 + components: + - type: Transform + pos: 44.5,43.5 + parent: 2 + - uid: 8495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,41.5 + parent: 2 + - uid: 8779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,41.5 + parent: 2 + - uid: 12764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,29.5 + parent: 2 + - uid: 15460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,30.5 + parent: 2 +- proto: TableFrame + entities: + - uid: 15700 + components: + - type: Transform + pos: 54.5,47.5 + parent: 2 - proto: TableGlass entities: - uid: 12696 @@ -83350,21 +87421,6 @@ entities: - type: Transform pos: 17.5,40.5 parent: 2 - - uid: 2420 - components: - - type: Transform - pos: 28.5,25.5 - parent: 2 - - uid: 2431 - components: - - type: Transform - pos: 32.5,27.5 - parent: 2 - - uid: 2432 - components: - - type: Transform - pos: 32.5,26.5 - parent: 2 - uid: 2991 components: - type: Transform @@ -83375,11 +87431,23 @@ entities: - type: Transform pos: 51.5,1.5 parent: 2 + - uid: 3063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,30.5 + parent: 2 - uid: 3512 components: - type: Transform pos: 48.5,18.5 parent: 2 + - uid: 3528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,17.5 + parent: 2 - uid: 4146 components: - type: Transform @@ -83465,16 +87533,39 @@ entities: - type: Transform pos: 54.5,-4.5 parent: 2 + - uid: 5400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,32.5 + parent: 2 + - uid: 5401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,32.5 + parent: 2 - uid: 5813 components: - type: Transform pos: 34.5,-8.5 parent: 2 + - uid: 6534 + components: + - type: Transform + pos: 7.5,29.5 + parent: 2 - uid: 7545 components: - type: Transform pos: 55.5,-10.5 parent: 2 + - uid: 7566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,31.5 + parent: 2 - uid: 7611 components: - type: Transform @@ -83485,11 +87576,6 @@ entities: - type: Transform pos: 54.5,-10.5 parent: 2 - - uid: 7679 - components: - - type: Transform - pos: 38.5,19.5 - parent: 2 - uid: 7739 components: - type: Transform @@ -83500,25 +87586,17 @@ entities: - type: Transform pos: 47.5,12.5 parent: 2 - - uid: 8433 + - uid: 8563 components: - type: Transform - pos: 39.5,21.5 + rot: -1.5707963267948966 rad + pos: 36.5,27.5 parent: 2 - - uid: 8445 + - uid: 9133 components: - type: Transform - pos: 39.5,28.5 - parent: 2 - - uid: 8518 - components: - - type: Transform - pos: 40.5,28.5 - parent: 2 - - uid: 8675 - components: - - type: Transform - pos: 40.5,35.5 + rot: 1.5707963267948966 rad + pos: 36.5,24.5 parent: 2 - uid: 10310 components: @@ -83530,11 +87608,6 @@ entities: - type: Transform pos: 17.5,42.5 parent: 2 - - uid: 11475 - components: - - type: Transform - pos: 39.5,17.5 - parent: 2 - uid: 11800 components: - type: Transform @@ -83545,16 +87618,17 @@ entities: - type: Transform pos: 12.5,-34.5 parent: 2 + - uid: 11944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,31.5 + parent: 2 - uid: 12423 components: - type: Transform pos: 49.5,1.5 parent: 2 - - uid: 13103 - components: - - type: Transform - pos: 38.5,28.5 - parent: 2 - uid: 14245 components: - type: Transform @@ -83570,6 +87644,11 @@ entities: - type: Transform pos: 86.5,28.5 parent: 2 + - uid: 14525 + components: + - type: Transform + pos: 50.5,34.5 + parent: 2 - uid: 14554 components: - type: Transform @@ -83590,6 +87669,11 @@ entities: - type: Transform pos: 89.5,32.5 parent: 2 + - uid: 14656 + components: + - type: Transform + pos: 51.5,34.5 + parent: 2 - uid: 14661 components: - type: Transform @@ -83649,49 +87733,11 @@ entities: - type: Transform pos: 8.5,3.5 parent: 2 - - uid: 2405 - components: - - type: Transform - pos: 44.5,23.5 - parent: 2 - - uid: 2406 - components: - - type: Transform - pos: 45.5,23.5 - parent: 2 - - uid: 2407 - components: - - type: Transform - pos: 45.5,24.5 - parent: 2 - - uid: 2478 - components: - - type: Transform - pos: 43.5,19.5 - parent: 2 - - uid: 2713 + - uid: 2272 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,33.5 - parent: 2 - - uid: 2714 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,32.5 - parent: 2 - - uid: 2715 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,30.5 - parent: 2 - - uid: 2716 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,29.5 + pos: 30.5,41.5 parent: 2 - uid: 2719 components: @@ -83722,10 +87768,15 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,39.5 parent: 2 - - uid: 5407 + - uid: 3091 components: - type: Transform - pos: 34.5,41.5 + pos: 59.5,36.5 + parent: 2 + - uid: 5269 + components: + - type: Transform + pos: 32.5,41.5 parent: 2 - uid: 5408 components: @@ -83735,17 +87786,12 @@ entities: - uid: 5409 components: - type: Transform - pos: 32.5,41.5 + pos: 30.5,42.5 parent: 2 - - uid: 5410 + - uid: 6339 components: - type: Transform - pos: 30.5,41.5 - parent: 2 - - uid: 5413 - components: - - type: Transform - pos: 37.5,43.5 + pos: 44.5,24.5 parent: 2 - uid: 7262 components: @@ -83757,6 +87803,11 @@ entities: - type: Transform pos: 30.5,6.5 parent: 2 + - uid: 7753 + components: + - type: Transform + pos: 44.5,25.5 + parent: 2 - uid: 8646 components: - type: Transform @@ -83782,21 +87833,37 @@ entities: - type: Transform pos: 83.5,7.5 parent: 2 + - uid: 8707 + components: + - type: Transform + pos: 55.5,37.5 + parent: 2 + - uid: 8713 + components: + - type: Transform + pos: 54.5,37.5 + parent: 2 - uid: 9004 components: - type: Transform pos: 18.5,29.5 parent: 2 + - uid: 9310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,39.5 + parent: 2 + - uid: 10084 + components: + - type: Transform + pos: 35.5,43.5 + parent: 2 - uid: 10635 components: - type: Transform pos: 30.5,7.5 parent: 2 - - uid: 11477 - components: - - type: Transform - pos: 43.5,20.5 - parent: 2 - uid: 12727 components: - type: Transform @@ -83809,6 +87876,12 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-42.5 parent: 2 + - uid: 14847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,42.5 + parent: 2 - proto: TargetClown entities: - uid: 9607 @@ -83816,6 +87889,14 @@ entities: - type: Transform pos: 27.5,8.5 parent: 2 +- proto: TargetSyndicate + entities: + - uid: 2203 + components: + - type: Transform + pos: 50.5,38.5 + parent: 2 + - type: Conveyed - proto: TegCenter entities: - uid: 13127 @@ -83841,168 +87922,62 @@ entities: parent: 2 - type: PointLight color: '#FF3300FF' -- proto: TelecomServer +- proto: TelecomServerFilledCargo entities: - - uid: 533 + - uid: 15809 components: - type: Transform - pos: 16.5,-16.5 + pos: 12.5,-15.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 535 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 5183 +- proto: TelecomServerFilledCommand + entities: + - uid: 10001 components: - type: Transform - pos: 13.5,-16.5 + pos: 16.5,-15.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 412 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 10443 +- proto: TelecomServerFilledCommon + entities: + - uid: 15810 components: - type: Transform - pos: 14.5,-16.5 + pos: 12.5,-19.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 413 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 12111 +- proto: TelecomServerFilledEngineering + entities: + - uid: 9760 components: - type: Transform - pos: 15.5,-16.5 + pos: 14.5,-15.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 414 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 12112 +- proto: TelecomServerFilledMedical + entities: + - uid: 12362 components: - type: Transform - pos: 13.5,-18.5 + pos: 13.5,-17.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 421 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 12232 +- proto: TelecomServerFilledScience + entities: + - uid: 4454 components: - type: Transform - pos: 14.5,-18.5 + pos: 14.5,-19.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 422 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 12233 +- proto: TelecomServerFilledSecurity + entities: + - uid: 6898 components: - type: Transform - pos: 15.5,-18.5 + pos: 16.5,-19.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 423 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 12395 +- proto: TelecomServerFilledService + entities: + - uid: 12383 components: - type: Transform - pos: 16.5,-18.5 + pos: 16.5,-17.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 424 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - proto: TeslaCoil entities: - uid: 2038 @@ -84076,11 +88051,6 @@ entities: parent: 2 - proto: TintedWindow entities: - - uid: 171 - components: - - type: Transform - pos: 41.5,32.5 - parent: 2 - uid: 1165 components: - type: Transform @@ -84106,25 +88076,17 @@ entities: - type: Transform pos: 62.5,-8.5 parent: 2 - - uid: 10993 - components: - - type: Transform - pos: 17.5,-16.5 - parent: 2 - - uid: 10994 - components: - - type: Transform - pos: 17.5,-18.5 - parent: 2 - uid: 11195 components: - type: Transform pos: 60.5,-8.5 parent: 2 - - uid: 14525 +- proto: ToiletDirtyWater + entities: + - uid: 8395 components: - type: Transform - pos: 39.5,32.5 + pos: 43.5,22.5 parent: 2 - proto: ToiletEmpty entities: @@ -84139,12 +88101,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,12.5 parent: 2 - - uid: 3253 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,34.5 - parent: 2 - uid: 5701 components: - type: Transform @@ -84156,11 +88112,6 @@ entities: rot: 3.141592653589793 rad pos: 79.5,-13.5 parent: 2 - - uid: 8702 - components: - - type: Transform - pos: 59.5,38.5 - parent: 2 - uid: 9019 components: - type: Transform @@ -84182,11 +88133,6 @@ entities: parent: 2 - proto: ToolboxElectricalFilled entities: - - uid: 5378 - components: - - type: Transform - pos: 52.6158,11.657994 - parent: 2 - uid: 5626 components: - type: Transform @@ -84197,6 +88143,40 @@ entities: - type: Transform pos: 36.482082,-14.3137665 parent: 2 +- proto: ToolboxEmergency + entities: + - uid: 13141 + components: + - type: MetaData + desc: A bright red toolbox, stocked with everything a warden needs to maintain their brig. + name: warden's toolbox + - type: Transform + pos: 44.461845,24.599695 + parent: 2 + - type: Storage + storedItems: + 13169: + position: 3,0 + _rotation: North + 13431: + position: 0,0 + _rotation: South + 13499: + position: 1,0 + _rotation: South + 13502: + position: 2,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 13431 + - 13499 + - 13502 + - 13169 - proto: ToolboxEmergencyFilled entities: - uid: 4997 @@ -84219,26 +88199,21 @@ entities: parent: 2 - proto: ToolboxMechanicalFilled entities: - - uid: 2949 - components: - - type: Transform - pos: 6.500301,40.636074 - parent: 2 - uid: 4998 components: - type: Transform pos: 35.491802,46.459015 parent: 2 + - uid: 5244 + components: + - type: Transform + pos: 44.514893,9.766216 + parent: 2 - uid: 7357 components: - type: Transform pos: 18.414553,24.540695 parent: 2 - - uid: 11020 - components: - - type: Transform - pos: 46.489563,11.711195 - parent: 2 - uid: 11410 components: - type: Transform @@ -84249,6 +88224,32 @@ entities: - type: Transform pos: 36.482082,-14.5012665 parent: 2 +- proto: Tourniquet + entities: + - uid: 8619 + components: + - type: Transform + pos: 36.49021,32.681957 + parent: 2 + - uid: 12438 + components: + - type: Transform + pos: 36.693336,32.541332 + parent: 2 +- proto: TowelColorOrange + entities: + - uid: 13167 + components: + - type: Transform + pos: 39.307285,22.41729 + parent: 2 +- proto: TowercapSeeds + entities: + - uid: 2601 + components: + - type: Transform + pos: 59.45062,42.28196 + parent: 2 - proto: ToyAi entities: - uid: 14649 @@ -84263,11 +88264,6 @@ entities: - type: Transform pos: 12.5,12.5 parent: 2 - - uid: 13632 - components: - - type: Transform - pos: 56.426826,31.732376 - parent: 2 - proto: ToySpawner entities: - uid: 8652 @@ -84277,6 +88273,11 @@ entities: parent: 2 - proto: TrashBag entities: + - uid: 8394 + components: + - type: Transform + pos: 39.281395,22.796711 + parent: 2 - uid: 10811 components: - type: Transform @@ -84295,6 +88296,18 @@ entities: - type: Transform pos: 26.493341,6.2912045 parent: 2 +- proto: trayScanner + entities: + - uid: 10338 + components: + - type: Transform + pos: 49.60256,19.49661 + parent: 2 + - uid: 10893 + components: + - type: Transform + pos: 64.6922,25.570868 + parent: 2 - proto: TrumpetInstrument entities: - uid: 5030 @@ -84302,64 +88315,29 @@ entities: - type: Transform pos: 84.55714,10.563628 parent: 2 -- proto: TwoWayLever +- proto: TurnstileGenpopEnter entities: - - uid: 607 + - uid: 2312 components: - type: Transform - pos: 9.5,33.5 + pos: 33.5,22.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 829: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 967: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 944: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 450: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 999: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 14660: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 12384: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off +- proto: TurnstileGenpopLeave + entities: + - uid: 3179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,22.5 + parent: 2 + - uid: 3212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,24.5 + parent: 2 +- proto: TwoWayLever + entities: - uid: 5856 components: - type: Transform @@ -84465,90 +88443,48 @@ entities: - Open - - Middle - Close - - uid: 8101 + - uid: 12180 components: + - type: MetaData + name: two way lever (Recycler) - type: Transform - pos: 6.5,28.5 + rot: 3.141592653589793 rad + pos: 9.5,33.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2037: + 13728: - - Left - - Forward - - - Right - Reverse - - - Middle - - Off - 2041: - - - Left - - Forward - - Right - - Reverse + - Forward - - Middle - Off 2042: - - Left - - Forward - - - Right - Reverse + - - Right + - Forward - - Middle - Off - 2064: + 13115: - - Left - Forward - - Right - Reverse - - Middle - Off - 13731: + 8327: - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - - uid: 8446 - components: - - type: Transform - pos: 6.5,22.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2040: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 2067: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 2051: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 2066: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 8239: - - - Left - - Forward - - - Right - Reverse + - - Right + - Forward - - Middle - Off + - type: Label + currentLabel: Recycler + - type: NameModifier + baseName: two way lever - proto: UniformPrinter entities: - uid: 10283 @@ -84653,6 +88589,16 @@ entities: - type: Transform pos: 24.5,42.5 parent: 2 + - uid: 3184 + components: + - type: Transform + pos: 17.5,35.5 + parent: 2 + - uid: 3324 + components: + - type: Transform + pos: 57.5,47.5 + parent: 2 - uid: 5349 components: - type: MetaData @@ -84660,13 +88606,6 @@ entities: - type: Transform pos: 63.5,16.5 parent: 2 - - uid: 5426 - components: - - type: MetaData - name: cigarette machine - - type: Transform - pos: 34.5,43.5 - parent: 2 - uid: 6615 components: - type: Transform @@ -84677,11 +88616,6 @@ entities: - type: Transform pos: -21.5,-14.5 parent: 2 - - uid: 11033 - components: - - type: Transform - pos: 19.5,35.5 - parent: 2 - proto: VendingMachineClothing entities: - uid: 127 @@ -84703,6 +88637,16 @@ entities: - type: Transform pos: 11.5,-3.5 parent: 2 + - uid: 2574 + components: + - type: Transform + pos: 56.5,47.5 + parent: 2 + - uid: 3203 + components: + - type: Transform + pos: 67.5,44.5 + parent: 2 - uid: 5350 components: - type: MetaData @@ -84710,13 +88654,6 @@ entities: - type: Transform pos: 62.5,16.5 parent: 2 - - uid: 5468 - components: - - type: MetaData - name: Hot drinks machine - - type: Transform - pos: 67.5,41.5 - parent: 2 - uid: 7774 components: - type: Transform @@ -84729,13 +88666,6 @@ entities: - type: Transform pos: 107.5,-12.5 parent: 2 - - uid: 11224 - components: - - type: MetaData - name: Hot drinks machine - - type: Transform - pos: 45.5,20.5 - parent: 2 - proto: VendingMachineCondiments entities: - uid: 6757 @@ -84752,10 +88682,10 @@ entities: parent: 2 - proto: VendingMachineDetDrobe entities: - - uid: 7711 + - uid: 2493 components: - type: Transform - pos: 41.5,17.5 + pos: 58.5,35.5 parent: 2 - proto: VendingMachineDinnerware entities: @@ -84764,6 +88694,18 @@ entities: - type: Transform pos: 33.5,-12.5 parent: 2 +- proto: VendingMachineDonut + entities: + - uid: 3356 + components: + - type: Transform + pos: 55.5,47.5 + parent: 2 + - uid: 13511 + components: + - type: Transform + pos: 54.5,30.5 + parent: 2 - proto: VendingMachineEngiDrobe entities: - uid: 4093 @@ -84785,11 +88727,6 @@ entities: - type: Transform pos: 8.5,5.5 parent: 2 - - uid: 13622 - components: - - type: Transform - pos: 54.5,31.5 - parent: 2 - proto: VendingMachineGeneDrobe entities: - uid: 11912 @@ -84841,14 +88778,14 @@ entities: parent: 2 - proto: VendingMachineRoboDrobe entities: - - uid: 5376 + - uid: 42 components: - type: Transform - pos: 53.5,11.5 + pos: 46.5,9.5 parent: 2 - proto: VendingMachineRobotics entities: - - uid: 10078 + - uid: 10053 components: - type: Transform pos: 50.5,11.5 @@ -84862,24 +88799,24 @@ entities: parent: 2 - proto: VendingMachineSciDrobe entities: - - uid: 11953 + - uid: 8409 components: - type: Transform - pos: 58.5,25.5 + pos: 53.5,25.5 parent: 2 - proto: VendingMachineSec entities: - - uid: 8442 + - uid: 11674 components: - type: Transform - pos: 31.5,28.5 + pos: 34.5,34.5 parent: 2 - proto: VendingMachineSecDrobe entities: - - uid: 6184 + - uid: 9146 components: - type: Transform - pos: 29.5,28.5 + pos: 34.5,32.5 parent: 2 - proto: VendingMachineSeeds entities: @@ -84888,26 +88825,24 @@ entities: - type: Transform pos: 43.5,-4.5 parent: 2 -- proto: VendingMachineSeedsUnlocked - entities: - - uid: 13605 + - uid: 7681 components: - type: Transform - pos: 55.5,36.5 + pos: 40.5,17.5 parent: 2 - proto: VendingMachineSovietSoda entities: - - uid: 5467 + - uid: 15675 components: - type: Transform - pos: 67.5,35.5 + pos: 49.5,50.5 parent: 2 - proto: VendingMachineSustenance entities: - - uid: 13623 + - uid: 13648 components: - type: Transform - pos: 57.5,31.5 + pos: 34.5,21.5 parent: 2 - proto: VendingMachineTankDispenserEngineering entities: @@ -84923,11 +88858,6 @@ entities: - type: Transform pos: 22.5,-34.5 parent: 2 - - uid: 3476 - components: - - type: Transform - pos: 50.5,33.5 - parent: 2 - uid: 10305 components: - type: Transform @@ -84992,18 +88922,10 @@ entities: parent: 2 - proto: WallmountTelescreen entities: - - uid: 10831 + - uid: 13575 components: - type: Transform - pos: 31.5,43.5 - parent: 2 -- proto: WallmountTelescreenFrame - entities: - - uid: 14562 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,30.5 + pos: 30.5,43.5 parent: 2 - proto: WallReinforced entities: @@ -85012,6 +88934,11 @@ entities: - type: Transform pos: 5.5,14.5 parent: 2 + - uid: 18 + components: + - type: Transform + pos: 42.5,23.5 + parent: 2 - uid: 20 components: - type: Transform @@ -85022,11 +88949,22 @@ entities: - type: Transform pos: -9.5,-21.5 parent: 2 + - uid: 63 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 - uid: 67 components: - type: Transform pos: 14.5,-13.5 parent: 2 + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,40.5 + parent: 2 - uid: 83 components: - type: Transform @@ -85097,6 +89035,11 @@ entities: - type: Transform pos: 7.5,-10.5 parent: 2 + - uid: 184 + components: + - type: Transform + pos: 38.5,32.5 + parent: 2 - uid: 201 components: - type: Transform @@ -85177,11 +89120,6 @@ entities: - type: Transform pos: 8.5,-10.5 parent: 2 - - uid: 319 - components: - - type: Transform - pos: 60.5,32.5 - parent: 2 - uid: 324 components: - type: Transform @@ -85207,6 +89145,23 @@ entities: - type: Transform pos: -25.5,-3.5 parent: 2 + - uid: 349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,28.5 + parent: 2 + - uid: 404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,40.5 + parent: 2 + - uid: 422 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 - uid: 435 components: - type: Transform @@ -85222,6 +89177,11 @@ entities: - type: Transform pos: -27.5,1.5 parent: 2 + - uid: 466 + components: + - type: Transform + pos: 52.5,7.5 + parent: 2 - uid: 470 components: - type: Transform @@ -85387,11 +89347,6 @@ entities: - type: Transform pos: 17.5,-14.5 parent: 2 - - uid: 616 - components: - - type: Transform - pos: 17.5,-15.5 - parent: 2 - uid: 618 components: - type: Transform @@ -85417,11 +89372,6 @@ entities: - type: Transform pos: 11.5,-16.5 parent: 2 - - uid: 625 - components: - - type: Transform - pos: 11.5,-17.5 - parent: 2 - uid: 626 components: - type: Transform @@ -85432,50 +89382,15 @@ entities: - type: Transform pos: 11.5,-19.5 parent: 2 - - uid: 629 - components: - - type: Transform - pos: 12.5,-15.5 - parent: 2 - - uid: 630 - components: - - type: Transform - pos: 12.5,-16.5 - parent: 2 - - uid: 631 - components: - - type: Transform - pos: 12.5,-17.5 - parent: 2 - - uid: 632 - components: - - type: Transform - pos: 12.5,-18.5 - parent: 2 - - uid: 633 - components: - - type: Transform - pos: 12.5,-19.5 - parent: 2 - uid: 634 components: - type: Transform pos: 12.5,-20.5 parent: 2 - - uid: 635 - components: - - type: Transform - pos: 15.5,-15.5 - parent: 2 - - uid: 636 - components: - - type: Transform - pos: 14.5,-15.5 - parent: 2 - uid: 637 components: - type: Transform - pos: 13.5,-15.5 + pos: 15.5,-11.5 parent: 2 - uid: 638 components: @@ -85527,36 +89442,6 @@ entities: - type: Transform pos: 24.5,-20.5 parent: 2 - - uid: 648 - components: - - type: Transform - pos: 13.5,-19.5 - parent: 2 - - uid: 649 - components: - - type: Transform - pos: 14.5,-19.5 - parent: 2 - - uid: 650 - components: - - type: Transform - pos: 15.5,-19.5 - parent: 2 - - uid: 651 - components: - - type: Transform - pos: 16.5,-19.5 - parent: 2 - - uid: 652 - components: - - type: Transform - pos: 17.5,-19.5 - parent: 2 - - uid: 653 - components: - - type: Transform - pos: 18.5,-19.5 - parent: 2 - uid: 654 components: - type: Transform @@ -85587,11 +89472,6 @@ entities: - type: Transform pos: 24.5,-14.5 parent: 2 - - uid: 669 - components: - - type: Transform - pos: 53.5,42.5 - parent: 2 - uid: 687 components: - type: Transform @@ -85942,6 +89822,12 @@ entities: - type: Transform pos: 18.5,-40.5 parent: 2 + - uid: 984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,52.5 + parent: 2 - uid: 993 components: - type: Transform @@ -85982,26 +89868,39 @@ entities: - type: Transform pos: 14.5,-39.5 parent: 2 + - uid: 1109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,24.5 + parent: 2 + - uid: 1152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,52.5 + parent: 2 - uid: 1218 components: - type: Transform pos: 37.5,-29.5 parent: 2 - - uid: 1219 + - uid: 1223 components: - type: Transform - pos: 16.5,-15.5 - parent: 2 - - uid: 1230 - components: - - type: Transform - pos: 48.5,32.5 + pos: 37.5,41.5 parent: 2 - uid: 1250 components: - type: Transform pos: 30.5,-58.5 parent: 2 + - uid: 1256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,44.5 + parent: 2 - uid: 1264 components: - type: Transform @@ -86197,6 +90096,12 @@ entities: - type: Transform pos: 16.5,39.5 parent: 2 + - uid: 1521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-20.5 + parent: 2 - uid: 1576 components: - type: Transform @@ -86307,10 +90212,10 @@ entities: - type: Transform pos: 40.5,-17.5 parent: 2 - - uid: 1763 + - uid: 1762 components: - type: Transform - pos: 37.5,32.5 + pos: 63.5,8.5 parent: 2 - uid: 1828 components: @@ -86367,6 +90272,12 @@ entities: - type: Transform pos: -0.5,-20.5 parent: 2 + - uid: 2040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,37.5 + parent: 2 - uid: 2058 components: - type: Transform @@ -86392,16 +90303,17 @@ entities: - type: Transform pos: 47.5,-24.5 parent: 2 + - uid: 2090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,2.5 + parent: 2 - uid: 2102 components: - type: Transform pos: 24.5,28.5 parent: 2 - - uid: 2117 - components: - - type: Transform - pos: 43.5,25.5 - parent: 2 - uid: 2122 components: - type: Transform @@ -86427,31 +90339,27 @@ entities: - type: Transform pos: 49.5,-28.5 parent: 2 - - uid: 2190 + - uid: 2153 components: - type: Transform - pos: 28.5,16.5 + rot: 1.5707963267948966 rad + pos: 58.5,27.5 + parent: 2 + - uid: 2189 + components: + - type: Transform + pos: 52.5,38.5 parent: 2 - uid: 2191 components: - type: Transform pos: 29.5,16.5 parent: 2 - - uid: 2192 - components: - - type: Transform - pos: 30.5,16.5 - parent: 2 - uid: 2193 components: - type: Transform pos: 31.5,16.5 parent: 2 - - uid: 2194 - components: - - type: Transform - pos: 32.5,16.5 - parent: 2 - uid: 2196 components: - type: Transform @@ -86462,296 +90370,210 @@ entities: - type: Transform pos: 28.5,22.5 parent: 2 - - uid: 2198 - components: - - type: Transform - pos: 28.5,26.5 - parent: 2 - - uid: 2199 - components: - - type: Transform - pos: 28.5,27.5 - parent: 2 - - uid: 2200 - components: - - type: Transform - pos: 29.5,27.5 - parent: 2 - uid: 2201 components: - type: Transform - pos: 30.5,27.5 - parent: 2 - - uid: 2202 - components: - - type: Transform - pos: 31.5,27.5 - parent: 2 - - uid: 2203 - components: - - type: Transform - pos: 28.5,28.5 - parent: 2 - - uid: 2204 - components: - - type: Transform - pos: 36.5,29.5 + pos: 34.5,35.5 parent: 2 - uid: 2205 components: - type: Transform - pos: 28.5,30.5 + rot: 1.5707963267948966 rad + pos: 61.5,29.5 parent: 2 - - uid: 2206 + - uid: 2210 components: - type: Transform - pos: 28.5,31.5 - parent: 2 - - uid: 2207 - components: - - type: Transform - pos: 29.5,31.5 - parent: 2 - - uid: 2208 - components: - - type: Transform - pos: 30.5,31.5 - parent: 2 - - uid: 2209 - components: - - type: Transform - pos: 31.5,31.5 - parent: 2 - - uid: 2211 - components: - - type: Transform - pos: 51.5,29.5 + rot: 1.5707963267948966 rad + pos: 59.5,40.5 parent: 2 - uid: 2212 components: - type: Transform - pos: 60.5,35.5 + rot: -1.5707963267948966 rad + pos: 35.5,22.5 parent: 2 - uid: 2214 components: - type: Transform - pos: 60.5,37.5 - parent: 2 - - uid: 2215 - components: - - type: Transform - pos: 60.5,38.5 - parent: 2 - - uid: 2217 - components: - - type: Transform - pos: 60.5,34.5 + pos: 38.5,33.5 parent: 2 - uid: 2218 components: - type: Transform - pos: 49.5,29.5 + pos: 57.5,40.5 parent: 2 - - uid: 2219 + - uid: 2227 components: - type: Transform - pos: 43.5,32.5 - parent: 2 - - uid: 2220 - components: - - type: Transform - pos: 50.5,29.5 - parent: 2 - - uid: 2226 - components: - - type: Transform - pos: 63.5,44.5 + rot: 1.5707963267948966 rad + pos: 28.5,18.5 parent: 2 - uid: 2228 components: - type: Transform - pos: 31.5,32.5 + pos: 50.5,29.5 parent: 2 - uid: 2229 components: - type: Transform - pos: 40.5,38.5 + rot: 1.5707963267948966 rad + pos: 58.5,40.5 parent: 2 - - uid: 2230 + - uid: 2240 components: - type: Transform - pos: 34.5,32.5 + pos: 55.5,31.5 parent: 2 - - uid: 2232 + - uid: 2244 components: - type: Transform - pos: 42.5,37.5 + rot: 3.141592653589793 rad + pos: 28.5,26.5 parent: 2 - - uid: 2233 + - uid: 2245 components: - type: Transform - pos: 42.5,36.5 + pos: 52.5,39.5 parent: 2 - - uid: 2234 + - uid: 2257 components: - type: Transform - pos: 42.5,35.5 - parent: 2 - - uid: 2235 - components: - - type: Transform - pos: 42.5,34.5 - parent: 2 - - uid: 2260 - components: - - type: Transform - pos: 35.5,29.5 + rot: 3.141592653589793 rad + pos: 36.5,40.5 parent: 2 - uid: 2262 components: - type: Transform - pos: 37.5,29.5 + rot: 3.141592653589793 rad + pos: 35.5,40.5 + parent: 2 + - uid: 2263 + components: + - type: Transform + pos: 61.5,32.5 + parent: 2 + - uid: 2265 + components: + - type: Transform + pos: 55.5,39.5 + parent: 2 + - uid: 2266 + components: + - type: Transform + pos: 31.5,29.5 parent: 2 - uid: 2267 components: - type: Transform - pos: 42.5,29.5 + rot: 3.141592653589793 rad + pos: 32.5,22.5 parent: 2 - uid: 2268 components: - type: Transform - pos: 43.5,29.5 + rot: -1.5707963267948966 rad + pos: 51.5,39.5 parent: 2 - - uid: 2269 + - uid: 2281 components: - type: Transform - pos: 44.5,29.5 + pos: 48.5,29.5 parent: 2 - - uid: 2272 + - uid: 2288 components: - type: Transform - pos: 44.5,32.5 + pos: 41.5,16.5 parent: 2 - - uid: 2273 + - uid: 2292 components: - type: Transform - pos: 44.5,33.5 + rot: 3.141592653589793 rad + pos: 35.5,23.5 parent: 2 - - uid: 2277 + - uid: 2293 components: - type: Transform - pos: 44.5,38.5 + pos: 60.5,40.5 parent: 2 - - uid: 2278 + - uid: 2297 components: - type: Transform - pos: 44.5,37.5 + rot: 3.141592653589793 rad + pos: 32.5,26.5 parent: 2 - uid: 2306 components: - type: Transform pos: 12.5,-57.5 parent: 2 - - uid: 2313 + - uid: 2318 components: - type: Transform - pos: 40.5,18.5 + rot: 1.5707963267948966 rad + pos: 40.5,37.5 parent: 2 - - uid: 2327 + - uid: 2328 components: - type: Transform - pos: 37.5,25.5 + rot: -1.5707963267948966 rad + pos: 30.5,36.5 parent: 2 - - uid: 2331 - components: - - type: Transform - pos: 42.5,25.5 - parent: 2 - - uid: 2334 + - uid: 2329 components: - type: Transform + rot: -1.5707963267948966 rad pos: 43.5,26.5 parent: 2 - - uid: 2335 - components: - - type: Transform - pos: 44.5,26.5 - parent: 2 - - uid: 2336 - components: - - type: Transform - pos: 45.5,26.5 - parent: 2 - - uid: 2337 - components: - - type: Transform - pos: 46.5,26.5 - parent: 2 - - uid: 2338 - components: - - type: Transform - pos: 46.5,25.5 - parent: 2 - - uid: 2339 - components: - - type: Transform - pos: 46.5,24.5 - parent: 2 - - uid: 2340 - components: - - type: Transform - pos: 46.5,23.5 - parent: 2 - - uid: 2341 - components: - - type: Transform - pos: 46.5,22.5 - parent: 2 - - uid: 2342 - components: - - type: Transform - pos: 46.5,21.5 - parent: 2 - - uid: 2343 + - uid: 2330 components: - type: Transform + rot: 1.5707963267948966 rad pos: 45.5,21.5 parent: 2 - - uid: 2344 + - uid: 2357 components: - type: Transform - pos: 44.5,21.5 + pos: 60.5,37.5 parent: 2 - - uid: 2345 + - uid: 2362 components: - type: Transform - pos: 43.5,21.5 + rot: -1.5707963267948966 rad + pos: 49.5,39.5 parent: 2 - - uid: 2346 + - uid: 2367 components: - type: Transform - pos: 42.5,21.5 + rot: -1.5707963267948966 rad + pos: 49.5,34.5 parent: 2 - - uid: 2348 + - uid: 2372 components: - type: Transform - pos: 40.5,21.5 - parent: 2 - - uid: 2349 - components: - - type: Transform - pos: 40.5,20.5 - parent: 2 - - uid: 2350 - components: - - type: Transform - pos: 40.5,19.5 + rot: -1.5707963267948966 rad + pos: 47.5,43.5 parent: 2 - uid: 2400 components: - type: Transform pos: 51.5,-27.5 parent: 2 + - uid: 2406 + components: + - type: Transform + pos: 50.5,40.5 + parent: 2 + - uid: 2409 + components: + - type: Transform + pos: 42.5,16.5 + parent: 2 + - uid: 2432 + components: + - type: Transform + pos: 62.5,37.5 + parent: 2 - uid: 2439 components: - type: Transform @@ -86762,16 +90584,6 @@ entities: - type: Transform pos: 51.5,-23.5 parent: 2 - - uid: 2443 - components: - - type: Transform - pos: 40.5,17.5 - parent: 2 - - uid: 2444 - components: - - type: Transform - pos: 40.5,16.5 - parent: 2 - uid: 2445 components: - type: Transform @@ -86787,55 +90599,39 @@ entities: - type: Transform pos: 37.5,16.5 parent: 2 - - uid: 2448 + - uid: 2459 components: - type: Transform - pos: 36.5,16.5 + rot: -1.5707963267948966 rad + pos: 51.5,46.5 + parent: 2 + - uid: 2465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,32.5 + parent: 2 + - uid: 2477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,26.5 + parent: 2 + - uid: 2478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,26.5 parent: 2 - uid: 2485 components: - type: Transform pos: 3.5,14.5 parent: 2 - - uid: 2563 + - uid: 2562 components: - type: Transform - pos: 29.5,33.5 - parent: 2 - - uid: 2568 - components: - - type: Transform - pos: 33.5,34.5 - parent: 2 - - uid: 2569 - components: - - type: Transform - pos: 29.5,34.5 - parent: 2 - - uid: 2570 - components: - - type: Transform - pos: 29.5,35.5 - parent: 2 - - uid: 2571 - components: - - type: Transform - pos: 29.5,37.5 - parent: 2 - - uid: 2572 - components: - - type: Transform - pos: 33.5,35.5 - parent: 2 - - uid: 2573 - components: - - type: Transform - pos: 33.5,36.5 - parent: 2 - - uid: 2574 - components: - - type: Transform - pos: 33.5,37.5 + pos: 68.5,48.5 parent: 2 - uid: 2575 components: @@ -86895,7 +90691,8 @@ entities: - uid: 2586 components: - type: Transform - pos: 31.5,43.5 + rot: -1.5707963267948966 rad + pos: 40.5,39.5 parent: 2 - uid: 2587 components: @@ -86920,17 +90717,12 @@ entities: - uid: 2591 components: - type: Transform - pos: 35.5,43.5 - parent: 2 - - uid: 2592 - components: - - type: Transform - pos: 35.5,42.5 + pos: 45.5,39.5 parent: 2 - uid: 2593 components: - type: Transform - pos: 35.5,41.5 + pos: 50.5,41.5 parent: 2 - uid: 2594 components: @@ -86947,46 +90739,6 @@ entities: - type: Transform pos: 38.5,44.5 parent: 2 - - uid: 2597 - components: - - type: Transform - pos: 38.5,43.5 - parent: 2 - - uid: 2598 - components: - - type: Transform - pos: 38.5,42.5 - parent: 2 - - uid: 2599 - components: - - type: Transform - pos: 38.5,41.5 - parent: 2 - - uid: 2600 - components: - - type: Transform - pos: 38.5,40.5 - parent: 2 - - uid: 2601 - components: - - type: Transform - pos: 38.5,39.5 - parent: 2 - - uid: 2602 - components: - - type: Transform - pos: 37.5,39.5 - parent: 2 - - uid: 2603 - components: - - type: Transform - pos: 36.5,39.5 - parent: 2 - - uid: 2604 - components: - - type: Transform - pos: 35.5,39.5 - parent: 2 - uid: 2605 components: - type: Transform @@ -87172,11 +90924,6 @@ entities: - type: Transform pos: 14.5,34.5 parent: 2 - - uid: 2685 - components: - - type: Transform - pos: 35.5,16.5 - parent: 2 - uid: 2785 components: - type: Transform @@ -87432,21 +91179,6 @@ entities: - type: Transform pos: 49.5,7.5 parent: 2 - - uid: 3034 - components: - - type: Transform - pos: 50.5,7.5 - parent: 2 - - uid: 3035 - components: - - type: Transform - pos: 51.5,7.5 - parent: 2 - - uid: 3036 - components: - - type: Transform - pos: 52.5,7.5 - parent: 2 - uid: 3037 components: - type: Transform @@ -87487,100 +91219,74 @@ entities: - type: Transform pos: 48.5,20.5 parent: 2 - - uid: 3063 + - uid: 3069 components: - type: Transform - pos: 40.5,39.5 - parent: 2 - - uid: 3064 - components: - - type: Transform - pos: 40.5,40.5 - parent: 2 - - uid: 3065 - components: - - type: Transform - pos: 44.5,39.5 + pos: 58.5,33.5 parent: 2 - uid: 3071 components: - type: Transform pos: 55.5,-20.5 parent: 2 + - uid: 3072 + components: + - type: Transform + pos: 75.5,-20.5 + parent: 2 - uid: 3073 components: - type: Transform pos: 55.5,-21.5 parent: 2 - - uid: 3074 + - uid: 3095 components: - type: Transform - pos: 42.5,43.5 + rot: -1.5707963267948966 rad + pos: 60.5,35.5 parent: 2 - - uid: 3075 + - uid: 3097 components: - type: Transform - pos: 42.5,44.5 + pos: 63.5,7.5 parent: 2 - - uid: 3076 + - uid: 3102 components: - type: Transform - pos: 42.5,45.5 + rot: -1.5707963267948966 rad + pos: 40.5,40.5 parent: 2 - - uid: 3077 + - uid: 3106 components: - type: Transform - pos: 42.5,46.5 + rot: -1.5707963267948966 rad + pos: 40.5,38.5 parent: 2 - - uid: 3078 + - uid: 3107 components: - type: Transform - pos: 42.5,47.5 + pos: 61.5,33.5 parent: 2 - - uid: 3079 + - uid: 3110 components: - type: Transform - pos: 45.5,45.5 + rot: 3.141592653589793 rad + pos: 41.5,40.5 parent: 2 - - uid: 3080 + - uid: 3117 components: - type: Transform - pos: 45.5,44.5 - parent: 2 - - uid: 3081 - components: - - type: Transform - pos: 45.5,43.5 - parent: 2 - - uid: 3082 - components: - - type: Transform - pos: 46.5,43.5 - parent: 2 - - uid: 3083 - components: - - type: Transform - pos: 46.5,42.5 - parent: 2 - - uid: 3084 - components: - - type: Transform - pos: 46.5,41.5 - parent: 2 - - uid: 3085 - components: - - type: Transform - pos: 46.5,40.5 + pos: 59.5,35.5 parent: 2 - uid: 3119 components: - type: Transform pos: -26.5,-2.5 parent: 2 - - uid: 3125 + - uid: 3127 components: - type: Transform - pos: 50.5,45.5 + pos: 55.5,33.5 parent: 2 - uid: 3133 components: @@ -87592,65 +91298,49 @@ entities: - type: Transform pos: -21.5,-3.5 parent: 2 - - uid: 3142 + - uid: 3148 components: - type: Transform - pos: 37.5,28.5 + pos: 60.5,39.5 parent: 2 - - uid: 3146 + - uid: 3152 components: - type: Transform - pos: 47.5,36.5 - parent: 2 - - uid: 3149 - components: - - type: Transform - pos: 47.5,33.5 - parent: 2 - - uid: 3150 - components: - - type: Transform - pos: 47.5,32.5 + pos: 42.5,36.5 parent: 2 - uid: 3153 components: - type: Transform - pos: 47.5,29.5 + rot: 3.141592653589793 rad + pos: 31.5,26.5 parent: 2 - uid: 3155 components: - type: Transform - pos: 48.5,28.5 + rot: 1.5707963267948966 rad + pos: 28.5,17.5 parent: 2 - - uid: 3158 + - uid: 3156 components: - type: Transform - pos: 51.5,28.5 + rot: 3.141592653589793 rad + pos: 35.5,26.5 parent: 2 - - uid: 3164 + - uid: 3166 components: - type: Transform - pos: 40.5,37.5 + pos: 55.5,30.5 parent: 2 - uid: 3169 components: - type: Transform pos: 35.5,35.5 parent: 2 - - uid: 3170 - components: - - type: Transform - pos: 38.5,37.5 - parent: 2 - uid: 3178 components: - type: Transform - pos: 52.5,33.5 - parent: 2 - - uid: 3179 - components: - - type: Transform - pos: 35.5,34.5 + rot: -1.5707963267948966 rad + pos: 47.5,29.5 parent: 2 - uid: 3180 components: @@ -87667,91 +91357,94 @@ entities: - type: Transform pos: 69.5,-10.5 parent: 2 - - uid: 3194 + - uid: 3186 components: - type: Transform - pos: 38.5,29.5 - parent: 2 - - uid: 3195 - components: - - type: Transform - pos: 43.5,28.5 - parent: 2 - - uid: 3196 - components: - - type: Transform - pos: 43.5,27.5 - parent: 2 - - uid: 3198 - components: - - type: Transform - pos: 61.5,29.5 - parent: 2 - - uid: 3199 - components: - - type: Transform - pos: 61.5,28.5 + rot: -1.5707963267948966 rad + pos: 60.5,36.5 parent: 2 - uid: 3201 components: - type: Transform pos: 65.5,29.5 parent: 2 - - uid: 3203 + - uid: 3208 components: - type: Transform - pos: 41.5,37.5 - parent: 2 - - uid: 3207 - components: - - type: Transform - pos: 32.5,32.5 + rot: 3.141592653589793 rad + pos: 34.5,22.5 parent: 2 - uid: 3210 components: - type: Transform pos: -4.5,-17.5 parent: 2 + - uid: 3230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-14.5 + parent: 2 - uid: 3236 components: - type: Transform pos: 70.5,-13.5 parent: 2 - - uid: 3256 + - uid: 3237 components: - type: Transform - pos: 48.5,29.5 + rot: -1.5707963267948966 rad + pos: 51.5,45.5 + parent: 2 + - uid: 3239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,24.5 + parent: 2 + - uid: 3240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,39.5 + parent: 2 + - uid: 3242 + components: + - type: Transform + pos: 43.5,16.5 + parent: 2 + - uid: 3243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,16.5 + parent: 2 + - uid: 3247 + components: + - type: Transform + pos: 33.5,35.5 + parent: 2 + - uid: 3250 + components: + - type: Transform + pos: 30.5,35.5 + parent: 2 + - uid: 3259 + components: + - type: Transform + pos: 44.5,20.5 parent: 2 - uid: 3262 components: - type: Transform - pos: 62.5,29.5 - parent: 2 - - uid: 3264 - components: - - type: Transform - pos: 62.5,45.5 - parent: 2 - - uid: 3266 - components: - - type: Transform - pos: 63.5,45.5 + rot: 1.5707963267948966 rad + pos: 49.5,51.5 parent: 2 - uid: 3268 components: - type: Transform pos: 65.5,45.5 parent: 2 - - uid: 3269 - components: - - type: Transform - pos: 65.5,44.5 - parent: 2 - - uid: 3270 - components: - - type: Transform - pos: 65.5,43.5 - parent: 2 - uid: 3271 components: - type: Transform @@ -87772,35 +91465,10 @@ entities: - type: Transform pos: 65.5,33.5 parent: 2 - - uid: 3275 - components: - - type: Transform - pos: 65.5,34.5 - parent: 2 - - uid: 3279 - components: - - type: Transform - pos: 65.5,38.5 - parent: 2 - - uid: 3280 - components: - - type: Transform - pos: 65.5,39.5 - parent: 2 - - uid: 3281 - components: - - type: Transform - pos: 65.5,40.5 - parent: 2 - - uid: 3282 - components: - - type: Transform - pos: 65.5,41.5 - parent: 2 - uid: 3283 components: - type: Transform - pos: 65.5,42.5 + pos: 46.5,32.5 parent: 2 - uid: 3285 components: @@ -87842,21 +91510,23 @@ entities: - type: Transform pos: 47.5,-26.5 parent: 2 - - uid: 3315 - components: - - type: Transform - pos: 49.5,49.5 - parent: 2 - - uid: 3316 - components: - - type: Transform - pos: 63.5,49.5 - parent: 2 - uid: 3318 components: - type: Transform pos: -7.5,-17.5 parent: 2 + - uid: 3331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,51.5 + parent: 2 + - uid: 3338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,27.5 + parent: 2 - uid: 3352 components: - type: Transform @@ -87902,21 +91572,11 @@ entities: - type: Transform pos: 71.5,43.5 parent: 2 - - uid: 3372 - components: - - type: Transform - pos: 70.5,43.5 - parent: 2 - uid: 3373 components: - type: Transform pos: 72.5,35.5 parent: 2 - - uid: 3374 - components: - - type: Transform - pos: 71.5,35.5 - parent: 2 - uid: 3375 components: - type: Transform @@ -87942,20 +91602,39 @@ entities: - type: Transform pos: 72.5,40.5 parent: 2 + - uid: 3381 + components: + - type: Transform + pos: 49.5,36.5 + parent: 2 - uid: 3383 components: - type: Transform - pos: 70.5,35.5 + rot: -1.5707963267948966 rad + pos: 45.5,29.5 parent: 2 - - uid: 3384 + - uid: 3388 components: - type: Transform - pos: 69.5,35.5 + pos: 45.5,20.5 parent: 2 - - uid: 3385 + - uid: 3389 components: - type: Transform - pos: 68.5,35.5 + rot: -1.5707963267948966 rad + pos: 73.5,30.5 + parent: 2 + - uid: 3390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,34.5 + parent: 2 + - uid: 3391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,26.5 parent: 2 - uid: 3419 components: @@ -88002,6 +91681,11 @@ entities: - type: Transform pos: 73.5,19.5 parent: 2 + - uid: 3429 + components: + - type: Transform + pos: 54.5,26.5 + parent: 2 - uid: 3435 components: - type: Transform @@ -88057,26 +91741,11 @@ entities: - type: Transform pos: 65.5,25.5 parent: 2 - - uid: 3453 - components: - - type: Transform - pos: 61.5,27.5 - parent: 2 - - uid: 3454 - components: - - type: Transform - pos: 61.5,26.5 - parent: 2 - uid: 3456 components: - type: Transform pos: 12.5,34.5 parent: 2 - - uid: 3462 - components: - - type: Transform - pos: 61.5,22.5 - parent: 2 - uid: 3463 components: - type: Transform @@ -88132,50 +91801,15 @@ entities: - type: Transform pos: 61.5,17.5 parent: 2 - - uid: 3481 - components: - - type: Transform - pos: 50.5,26.5 - parent: 2 - uid: 3482 components: - type: Transform pos: 52.5,26.5 parent: 2 - - uid: 3483 + - uid: 3493 components: - type: Transform - pos: 51.5,22.5 - parent: 2 - - uid: 3484 - components: - - type: Transform - pos: 52.5,22.5 - parent: 2 - - uid: 3488 - components: - - type: Transform - pos: 51.5,26.5 - parent: 2 - - uid: 3491 - components: - - type: Transform - pos: 49.5,22.5 - parent: 2 - - uid: 3492 - components: - - type: Transform - pos: 50.5,22.5 - parent: 2 - - uid: 3494 - components: - - type: Transform - pos: 51.5,27.5 - parent: 2 - - uid: 3498 - components: - - type: Transform - pos: 49.5,26.5 + pos: 40.5,16.5 parent: 2 - uid: 3505 components: @@ -88197,11 +91831,6 @@ entities: - type: Transform pos: 48.5,25.5 parent: 2 - - uid: 3509 - components: - - type: Transform - pos: 48.5,26.5 - parent: 2 - uid: 3510 components: - type: Transform @@ -88217,11 +91846,6 @@ entities: - type: Transform pos: 48.5,-26.5 parent: 2 - - uid: 3528 - components: - - type: Transform - pos: 61.5,16.5 - parent: 2 - uid: 3536 components: - type: Transform @@ -88317,21 +91941,6 @@ entities: - type: Transform pos: 86.5,2.5 parent: 2 - - uid: 3560 - components: - - type: Transform - pos: 85.5,2.5 - parent: 2 - - uid: 3561 - components: - - type: Transform - pos: 85.5,3.5 - parent: 2 - - uid: 3562 - components: - - type: Transform - pos: 85.5,5.5 - parent: 2 - uid: 3564 components: - type: Transform @@ -88455,7 +92064,8 @@ entities: - uid: 3634 components: - type: Transform - pos: 69.5,12.5 + rot: 1.5707963267948966 rad + pos: 43.5,48.5 parent: 2 - uid: 3635 components: @@ -88592,16 +92202,6 @@ entities: - type: Transform pos: 59.5,11.5 parent: 2 - - uid: 3668 - components: - - type: Transform - pos: 64.5,11.5 - parent: 2 - - uid: 3669 - components: - - type: Transform - pos: 64.5,10.5 - parent: 2 - uid: 3670 components: - type: Transform @@ -88610,17 +92210,8 @@ entities: - uid: 3671 components: - type: Transform - pos: 64.5,8.5 - parent: 2 - - uid: 3672 - components: - - type: Transform - pos: 64.5,7.5 - parent: 2 - - uid: 3673 - components: - - type: Transform - pos: 63.5,7.5 + rot: 3.141592653589793 rad + pos: 66.5,9.5 parent: 2 - uid: 3674 components: @@ -88957,16 +92548,6 @@ entities: - type: Transform pos: 84.5,-11.5 parent: 2 - - uid: 3821 - components: - - type: Transform - pos: 59.5,31.5 - parent: 2 - - uid: 3822 - components: - - type: Transform - pos: 50.5,32.5 - parent: 2 - uid: 3829 components: - type: Transform @@ -89032,6 +92613,11 @@ entities: - type: Transform pos: 72.5,-17.5 parent: 2 + - uid: 3851 + components: + - type: Transform + pos: 73.5,-20.5 + parent: 2 - uid: 3865 components: - type: Transform @@ -89047,11 +92633,6 @@ entities: - type: Transform pos: 76.5,-19.5 parent: 2 - - uid: 3868 - components: - - type: Transform - pos: 73.5,-19.5 - parent: 2 - uid: 3879 components: - type: Transform @@ -89177,6 +92758,11 @@ entities: - type: Transform pos: 15.5,-59.5 parent: 2 + - uid: 4018 + components: + - type: Transform + pos: 37.5,42.5 + parent: 2 - uid: 4044 components: - type: Transform @@ -89217,15 +92803,10 @@ entities: - type: Transform pos: 23.5,-37.5 parent: 2 - - uid: 4127 + - uid: 4132 components: - type: Transform - pos: 52.5,40.5 - parent: 2 - - uid: 4128 - components: - - type: Transform - pos: 36.5,32.5 + pos: 28.5,32.5 parent: 2 - uid: 4166 components: @@ -89272,6 +92853,11 @@ entities: - type: Transform pos: 32.5,-21.5 parent: 2 + - uid: 4188 + components: + - type: Transform + pos: 37.5,43.5 + parent: 2 - uid: 4229 components: - type: Transform @@ -89352,36 +92938,21 @@ entities: - type: Transform pos: 33.5,-37.5 parent: 2 - - uid: 4346 - components: - - type: Transform - pos: 59.5,41.5 - parent: 2 - uid: 4347 components: - type: Transform - pos: 60.5,39.5 + pos: 28.5,29.5 parent: 2 - - uid: 4348 + - uid: 4349 components: - type: Transform - pos: 48.5,36.5 + pos: 55.5,29.5 parent: 2 - uid: 4364 components: - type: Transform pos: 12.5,-53.5 parent: 2 - - uid: 4367 - components: - - type: Transform - pos: 59.5,39.5 - parent: 2 - - uid: 4368 - components: - - type: Transform - pos: 50.5,36.5 - parent: 2 - uid: 4369 components: - type: Transform @@ -89447,20 +93018,10 @@ entities: - type: Transform pos: 28.5,-45.5 parent: 2 - - uid: 4397 + - uid: 4404 components: - type: Transform - pos: 51.5,33.5 - parent: 2 - - uid: 4398 - components: - - type: Transform - pos: 38.5,32.5 - parent: 2 - - uid: 4399 - components: - - type: Transform - pos: 47.5,40.5 + pos: 57.5,34.5 parent: 2 - uid: 4417 components: @@ -89527,16 +93088,6 @@ entities: - type: Transform pos: 41.5,-37.5 parent: 2 - - uid: 4568 - components: - - type: Transform - pos: 59.5,26.5 - parent: 2 - - uid: 4573 - components: - - type: Transform - pos: 60.5,26.5 - parent: 2 - uid: 4633 components: - type: Transform @@ -89557,11 +93108,6 @@ entities: - type: Transform pos: -7.5,1.5 parent: 2 - - uid: 4744 - components: - - type: Transform - pos: 52.5,32.5 - parent: 2 - uid: 4829 components: - type: Transform @@ -89572,15 +93118,11 @@ entities: - type: Transform pos: 4.5,15.5 parent: 2 - - uid: 5194 + - uid: 5183 components: - type: Transform - pos: 38.5,33.5 - parent: 2 - - uid: 5199 - components: - - type: Transform - pos: 59.5,30.5 + rot: 3.141592653589793 rad + pos: 16.5,-14.5 parent: 2 - uid: 5291 components: @@ -89602,6 +93144,41 @@ entities: - type: Transform pos: 45.5,-41.5 parent: 2 + - uid: 5310 + components: + - type: Transform + pos: 60.5,37.5 + parent: 2 + - uid: 5318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,22.5 + parent: 2 + - uid: 5319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,25.5 + parent: 2 + - uid: 5322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,22.5 + parent: 2 + - uid: 5328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,10.5 + parent: 2 + - uid: 5351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,26.5 + parent: 2 - uid: 5353 components: - type: Transform @@ -89612,25 +93189,32 @@ entities: - type: Transform pos: 2.5,9.5 parent: 2 - - uid: 5362 - components: - - type: Transform - pos: 52.5,41.5 - parent: 2 - uid: 5388 components: - type: Transform pos: 68.5,47.5 parent: 2 - - uid: 5477 + - uid: 5441 components: - type: Transform - pos: 72.5,34.5 + rot: 3.141592653589793 rad + pos: 48.5,50.5 parent: 2 - - uid: 5478 + - uid: 5442 components: - type: Transform - pos: 72.5,30.5 + pos: 64.5,50.5 + parent: 2 + - uid: 5451 + components: + - type: Transform + pos: 46.5,35.5 + parent: 2 + - uid: 5459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,37.5 parent: 2 - uid: 5479 components: @@ -89652,25 +93236,67 @@ entities: - type: Transform pos: 69.5,26.5 parent: 2 + - uid: 5489 + components: + - type: Transform + pos: 58.5,34.5 + parent: 2 + - uid: 5492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,22.5 + parent: 2 - uid: 5498 components: - type: Transform pos: 70.5,21.5 parent: 2 - - uid: 5508 + - uid: 5503 components: - type: Transform - pos: 44.5,40.5 + pos: 73.5,33.5 parent: 2 - uid: 5510 components: - type: Transform pos: 74.5,21.5 parent: 2 + - uid: 5515 + components: + - type: Transform + pos: 56.5,40.5 + parent: 2 + - uid: 5522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,22.5 + parent: 2 + - uid: 5531 + components: + - type: Transform + pos: 55.5,34.5 + parent: 2 + - uid: 5648 + components: + - type: Transform + pos: 54.5,29.5 + parent: 2 + - uid: 5650 + components: + - type: Transform + pos: 64.5,51.5 + parent: 2 + - uid: 5674 + components: + - type: Transform + pos: 46.5,37.5 + parent: 2 - uid: 5677 components: - type: Transform - pos: 53.5,46.5 + pos: 53.5,29.5 parent: 2 - uid: 5685 components: @@ -89687,15 +93313,38 @@ entities: - type: Transform pos: 51.5,-11.5 parent: 2 - - uid: 5736 + - uid: 5757 components: - type: Transform - pos: 58.5,35.5 + pos: 5.5,28.5 + parent: 2 + - uid: 5859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,32.5 + parent: 2 + - uid: 5876 + components: + - type: Transform + pos: 4.5,28.5 + parent: 2 + - uid: 5877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,22.5 + parent: 2 + - uid: 5929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-14.5 parent: 2 - uid: 5967 components: - type: Transform - pos: 59.5,46.5 + pos: 43.5,23.5 parent: 2 - uid: 6119 components: @@ -89722,15 +93371,10 @@ entities: - type: Transform pos: 14.5,-40.5 parent: 2 - - uid: 6139 + - uid: 6184 components: - type: Transform - pos: 49.5,32.5 - parent: 2 - - uid: 6196 - components: - - type: Transform - pos: 60.5,41.5 + pos: 63.5,9.5 parent: 2 - uid: 6209 components: @@ -89747,15 +93391,40 @@ entities: - type: Transform pos: 60.5,-20.5 parent: 2 - - uid: 6212 + - uid: 6313 components: - type: Transform - pos: 39.5,43.5 + rot: -1.5707963267948966 rad + pos: 45.5,42.5 parent: 2 - - uid: 6335 + - uid: 6318 components: - type: Transform - pos: 30.5,34.5 + rot: 1.5707963267948966 rad + pos: 38.5,37.5 + parent: 2 + - uid: 6323 + components: + - type: Transform + pos: 56.5,39.5 + parent: 2 + - uid: 6349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,37.5 + parent: 2 + - uid: 6422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,11.5 + parent: 2 + - uid: 6672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,26.5 parent: 2 - uid: 6680 components: @@ -89787,6 +93456,17 @@ entities: - type: Transform pos: 63.5,-20.5 parent: 2 + - uid: 6797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,30.5 + parent: 2 + - uid: 6798 + components: + - type: Transform + pos: 68.5,49.5 + parent: 2 - uid: 6814 components: - type: Transform @@ -89802,26 +93482,36 @@ entities: - type: Transform pos: -4.5,-13.5 parent: 2 + - uid: 6843 + components: + - type: Transform + pos: 68.5,49.5 + parent: 2 + - uid: 6848 + components: + - type: Transform + pos: 68.5,50.5 + parent: 2 + - uid: 6866 + components: + - type: Transform + pos: 68.5,51.5 + parent: 2 - uid: 6867 components: - type: Transform pos: 4.5,14.5 parent: 2 - - uid: 6868 + - uid: 6873 components: - type: Transform - pos: 60.5,33.5 + pos: 41.5,43.5 parent: 2 - uid: 6880 components: - type: Transform pos: 14.5,-12.5 parent: 2 - - uid: 6881 - components: - - type: Transform - pos: 15.5,-12.5 - parent: 2 - uid: 6882 components: - type: Transform @@ -89842,6 +93532,17 @@ entities: - type: Transform pos: 9.5,-39.5 parent: 2 + - uid: 6917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,20.5 + parent: 2 + - uid: 6945 + components: + - type: Transform + pos: 47.5,48.5 + parent: 2 - uid: 7251 components: - type: Transform @@ -89932,25 +93633,43 @@ entities: - type: Transform pos: -8.5,14.5 parent: 2 + - uid: 7711 + components: + - type: Transform + pos: 62.5,35.5 + parent: 2 + - uid: 7722 + components: + - type: Transform + pos: 61.5,37.5 + parent: 2 - uid: 7750 components: - type: Transform pos: -8.5,-8.5 parent: 2 - - uid: 7754 + - uid: 7752 components: - type: Transform - pos: 41.5,29.5 + rot: 3.141592653589793 rad + pos: 30.5,26.5 parent: 2 - - uid: 7755 + - uid: 7759 components: - type: Transform - pos: 35.5,32.5 + pos: 56.5,26.5 parent: 2 - - uid: 7756 + - uid: 7761 components: - type: Transform - pos: 63.5,43.5 + rot: 3.141592653589793 rad + pos: 64.5,49.5 + parent: 2 + - uid: 7762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,48.5 parent: 2 - uid: 7769 components: @@ -89962,6 +93681,23 @@ entities: - type: Transform pos: -19.5,-8.5 parent: 2 + - uid: 7803 + components: + - type: Transform + pos: 72.5,34.5 + parent: 2 + - uid: 7834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,48.5 + parent: 2 + - uid: 7835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,48.5 + parent: 2 - uid: 7839 components: - type: Transform @@ -89977,6 +93713,18 @@ entities: - type: Transform pos: -21.5,-17.5 parent: 2 + - uid: 7845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,48.5 + parent: 2 + - uid: 7849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,48.5 + parent: 2 - uid: 7875 components: - type: Transform @@ -90167,6 +93915,17 @@ entities: - type: Transform pos: 2.5,-27.5 parent: 2 + - uid: 7937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,26.5 + parent: 2 + - uid: 7939 + components: + - type: Transform + pos: 55.5,26.5 + parent: 2 - uid: 8044 components: - type: Transform @@ -90182,6 +93941,12 @@ entities: - type: Transform pos: 5.5,29.5 parent: 2 + - uid: 8101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,3.5 + parent: 2 - uid: 8102 components: - type: Transform @@ -90197,11 +93962,6 @@ entities: - type: Transform pos: 12.5,-56.5 parent: 2 - - uid: 8251 - components: - - type: Transform - pos: 52.5,36.5 - parent: 2 - uid: 8255 components: - type: Transform @@ -90217,26 +93977,11 @@ entities: - type: Transform pos: -5.5,14.5 parent: 2 - - uid: 8304 - components: - - type: Transform - pos: 49.5,36.5 - parent: 2 - - uid: 8324 - components: - - type: Transform - pos: 51.5,36.5 - parent: 2 - uid: 8326 components: - type: Transform pos: 52.5,-9.5 parent: 2 - - uid: 8328 - components: - - type: Transform - pos: 44.5,20.5 - parent: 2 - uid: 8329 components: - type: Transform @@ -90257,50 +94002,235 @@ entities: - type: Transform pos: 44.5,16.5 parent: 2 - - uid: 8405 + - uid: 8370 components: - type: Transform - pos: 58.5,39.5 + pos: 68.5,50.5 parent: 2 - uid: 8411 components: - type: Transform - pos: 60.5,40.5 + rot: 3.141592653589793 rad + pos: 28.5,23.5 parent: 2 - - uid: 8436 + - uid: 8413 components: - type: Transform - pos: 53.5,41.5 + rot: 3.141592653589793 rad + pos: 29.5,26.5 + parent: 2 + - uid: 8415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,25.5 + parent: 2 + - uid: 8416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,32.5 + parent: 2 + - uid: 8422 + components: + - type: Transform + pos: 46.5,33.5 + parent: 2 + - uid: 8439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,22.5 + parent: 2 + - uid: 8440 + components: + - type: Transform + pos: 38.5,34.5 + parent: 2 + - uid: 8444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,39.5 parent: 2 - uid: 8447 components: - type: Transform pos: 3.5,22.5 parent: 2 - - uid: 8517 + - uid: 8451 components: - type: Transform - pos: 44.5,28.5 + rot: 1.5707963267948966 rad + pos: 45.5,22.5 parent: 2 - - uid: 8674 + - uid: 8474 + components: + - type: Transform + pos: 50.5,43.5 + parent: 2 + - uid: 8476 + components: + - type: Transform + pos: 46.5,34.5 + parent: 2 + - uid: 8481 + components: + - type: Transform + pos: 50.5,42.5 + parent: 2 + - uid: 8486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,32.5 + parent: 2 + - uid: 8487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,28.5 + parent: 2 + - uid: 8489 + components: + - type: Transform + pos: 37.5,40.5 + parent: 2 + - uid: 8491 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 8493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,33.5 + parent: 2 + - uid: 8499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,29.5 + parent: 2 + - uid: 8502 + components: + - type: Transform + pos: 36.5,16.5 + parent: 2 + - uid: 8516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,45.5 + parent: 2 + - uid: 8518 + components: + - type: Transform + pos: 57.5,26.5 + parent: 2 + - uid: 8542 + components: + - type: Transform + pos: 51.5,29.5 + parent: 2 + - uid: 8582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,32.5 + parent: 2 + - uid: 8591 + components: + - type: Transform + pos: 61.5,31.5 + parent: 2 + - uid: 8603 + components: + - type: Transform + pos: 73.5,27.5 + parent: 2 + - uid: 8606 + components: + - type: Transform + pos: 41.5,23.5 + parent: 2 + - uid: 8609 components: - type: Transform pos: 52.5,37.5 parent: 2 - - uid: 8677 + - uid: 8610 components: - type: Transform - pos: 53.5,31.5 + pos: 46.5,36.5 + parent: 2 + - uid: 8613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,37.5 + parent: 2 + - uid: 8617 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 8637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,32.5 + parent: 2 + - uid: 8690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,28.5 + parent: 2 + - uid: 8691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,27.5 + parent: 2 + - uid: 8693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,22.5 + parent: 2 + - uid: 8698 + components: + - type: Transform + pos: 58.5,30.5 parent: 2 - uid: 8700 components: - type: Transform - pos: 42.5,33.5 + pos: 58.5,32.5 parent: 2 - uid: 8701 components: - type: Transform - pos: 42.5,32.5 + pos: 58.5,31.5 + parent: 2 + - uid: 8702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,26.5 + parent: 2 + - uid: 8703 + components: + - type: Transform + pos: 45.5,28.5 + parent: 2 + - uid: 8712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,35.5 parent: 2 - uid: 8720 components: @@ -90427,6 +94357,18 @@ entities: - type: Transform pos: 104.5,-21.5 parent: 2 + - uid: 8795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,26.5 + parent: 2 + - uid: 8796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,43.5 + parent: 2 - uid: 8811 components: - type: Transform @@ -90532,11 +94474,61 @@ entities: - type: Transform pos: 116.5,-17.5 parent: 2 + - uid: 8983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,51.5 + parent: 2 + - uid: 9037 + components: + - type: Transform + pos: 39.5,32.5 + parent: 2 + - uid: 9041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,37.5 + parent: 2 + - uid: 9154 + components: + - type: Transform + pos: 60.5,38.5 + parent: 2 - uid: 9175 components: - type: Transform pos: 69.5,-14.5 parent: 2 + - uid: 9176 + components: + - type: Transform + pos: 59.5,28.5 + parent: 2 + - uid: 9177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,28.5 + parent: 2 + - uid: 9178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,37.5 + parent: 2 + - uid: 9212 + components: + - type: Transform + pos: 50.5,39.5 + parent: 2 + - uid: 9214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,40.5 + parent: 2 - uid: 9217 components: - type: Transform @@ -90557,25 +94549,89 @@ entities: - type: Transform pos: 39.5,-17.5 parent: 2 - - uid: 9348 + - uid: 9223 components: - type: Transform - pos: 31.5,34.5 + rot: -1.5707963267948966 rad + pos: 49.5,37.5 parent: 2 - - uid: 9455 + - uid: 9247 components: - type: Transform - pos: 32.5,34.5 + pos: 41.5,44.5 parent: 2 - - uid: 9726 + - uid: 9276 components: - type: Transform - pos: 58.5,38.5 + rot: 1.5707963267948966 rad + pos: 45.5,37.5 + parent: 2 + - uid: 9277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,26.5 + parent: 2 + - uid: 9278 + components: + - type: Transform + pos: 59.5,28.5 + parent: 2 + - uid: 9302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,29.5 + parent: 2 + - uid: 9311 + components: + - type: Transform + pos: 59.5,34.5 + parent: 2 + - uid: 9320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,54.5 + parent: 2 + - uid: 9346 + components: + - type: Transform + pos: 57.5,30.5 + parent: 2 + - uid: 9401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,37.5 + parent: 2 + - uid: 9433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,9.5 + parent: 2 + - uid: 9585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,28.5 + parent: 2 + - uid: 9749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-17.5 parent: 2 - uid: 9860 components: - type: Transform - pos: 58.5,33.5 + pos: 45.5,25.5 + parent: 2 + - uid: 9884 + components: + - type: Transform + pos: 45.5,23.5 parent: 2 - uid: 9890 components: @@ -90587,10 +94643,26 @@ entities: - type: Transform pos: 8.5,-39.5 parent: 2 + - uid: 9927 + components: + - type: Transform + pos: 44.5,23.5 + parent: 2 + - uid: 9956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,6.5 + parent: 2 + - uid: 10044 + components: + - type: Transform + pos: 34.5,41.5 + parent: 2 - uid: 10085 components: - type: Transform - pos: 58.5,34.5 + pos: 30.5,44.5 parent: 2 - uid: 10089 components: @@ -90712,6 +94784,12 @@ entities: - type: Transform pos: -1.5,-6.5 parent: 2 + - uid: 10115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,22.5 + parent: 2 - uid: 10140 components: - type: Transform @@ -90762,15 +94840,80 @@ entities: - type: Transform pos: 42.5,-20.5 parent: 2 - - uid: 10319 + - uid: 10279 components: - type: Transform - pos: 58.5,37.5 + rot: 1.5707963267948966 rad + pos: 33.5,33.5 parent: 2 - - uid: 10320 + - uid: 10293 components: - type: Transform - pos: 53.5,30.5 + rot: -1.5707963267948966 rad + pos: 56.5,38.5 + parent: 2 + - uid: 10389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,38.5 + parent: 2 + - uid: 10390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,40.5 + parent: 2 + - uid: 10401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,46.5 + parent: 2 + - uid: 10414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,35.5 + parent: 2 + - uid: 10434 + components: + - type: Transform + pos: 45.5,43.5 + parent: 2 + - uid: 10442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,36.5 + parent: 2 + - uid: 10446 + components: + - type: Transform + pos: 41.5,42.5 + parent: 2 + - uid: 10463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,36.5 + parent: 2 + - uid: 10588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,25.5 + parent: 2 + - uid: 10713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,18.5 + parent: 2 + - uid: 10715 + components: + - type: Transform + pos: 40.5,41.5 parent: 2 - uid: 10745 components: @@ -90802,6 +94945,11 @@ entities: - type: Transform pos: 86.5,-21.5 parent: 2 + - uid: 10831 + components: + - type: Transform + pos: 42.5,44.5 + parent: 2 - uid: 10842 components: - type: Transform @@ -90812,21 +94960,17 @@ entities: - type: Transform pos: 38.5,35.5 parent: 2 - - uid: 10844 - components: - - type: Transform - pos: 38.5,34.5 - parent: 2 - - uid: 10845 - components: - - type: Transform - pos: 59.5,33.5 - parent: 2 - uid: 10878 components: - type: Transform pos: 26.5,-59.5 parent: 2 + - uid: 10881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,25.5 + parent: 2 - uid: 10967 components: - type: Transform @@ -90857,35 +95001,56 @@ entities: - type: Transform pos: 11.5,-54.5 parent: 2 + - uid: 11100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,51.5 + parent: 2 + - uid: 11145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,51.5 + parent: 2 + - uid: 11146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,53.5 + parent: 2 + - uid: 11192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,53.5 + parent: 2 + - uid: 11221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,54.5 + parent: 2 - uid: 11223 components: - type: Transform pos: 16.5,43.5 parent: 2 - - uid: 11280 - components: - - type: Transform - pos: 52.5,31.5 - parent: 2 - - uid: 11398 - components: - - type: Transform - pos: 87.5,5.5 - parent: 2 - - uid: 11400 - components: - - type: Transform - pos: 87.5,3.5 - parent: 2 - uid: 11613 components: - type: Transform pos: -20.5,-8.5 parent: 2 - - uid: 11676 + - uid: 11663 components: - type: Transform - pos: 8.5,37.5 + rot: 3.141592653589793 rad + pos: 48.5,48.5 + parent: 2 + - uid: 11678 + components: + - type: Transform + pos: 52.5,34.5 parent: 2 - uid: 11691 components: @@ -90897,16 +95062,6 @@ entities: - type: Transform pos: 7.5,15.5 parent: 2 - - uid: 11733 - components: - - type: Transform - pos: 37.5,20.5 - parent: 2 - - uid: 11734 - components: - - type: Transform - pos: 39.5,20.5 - parent: 2 - uid: 11769 components: - type: Transform @@ -90967,21 +95122,6 @@ entities: - type: Transform pos: 11.5,-53.5 parent: 2 - - uid: 12102 - components: - - type: Transform - pos: 54.5,42.5 - parent: 2 - - uid: 12142 - components: - - type: Transform - pos: 58.5,42.5 - parent: 2 - - uid: 12143 - components: - - type: Transform - pos: 59.5,42.5 - parent: 2 - uid: 12228 components: - type: Transform @@ -90992,45 +95132,39 @@ entities: - type: Transform pos: 64.5,12.5 parent: 2 + - uid: 12367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,37.5 + parent: 2 + - uid: 12415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,32.5 + parent: 2 - uid: 12424 components: - type: Transform pos: 7.5,39.5 parent: 2 - - uid: 12432 - components: - - type: Transform - pos: 58.5,49.5 - parent: 2 - uid: 12433 components: - type: Transform pos: 58.5,51.5 parent: 2 - - uid: 12434 - components: - - type: Transform - pos: 58.5,50.5 - parent: 2 - - uid: 12435 - components: - - type: Transform - pos: 54.5,50.5 - parent: 2 - uid: 12436 components: - type: Transform - pos: 54.5,49.5 + rot: 3.141592653589793 rad + pos: 48.5,49.5 parent: 2 - - uid: 12438 + - uid: 12443 components: - type: Transform - pos: 59.5,47.5 - parent: 2 - - uid: 12440 - components: - - type: Transform - pos: 53.5,47.5 + rot: 1.5707963267948966 rad + pos: 33.5,34.5 parent: 2 - uid: 12446 components: @@ -91047,26 +95181,26 @@ entities: - type: Transform pos: 27.5,-41.5 parent: 2 + - uid: 12562 + components: + - type: Transform + pos: 53.5,7.5 + parent: 2 - uid: 12664 components: - type: Transform pos: 3.5,28.5 parent: 2 - - uid: 12669 + - uid: 12769 components: - type: Transform - pos: 56.5,46.5 + pos: 54.5,34.5 parent: 2 - uid: 12775 components: - type: Transform pos: 20.5,-60.5 parent: 2 - - uid: 12856 - components: - - type: Transform - pos: 39.5,45.5 - parent: 2 - uid: 12888 components: - type: Transform @@ -91202,26 +95336,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 pos: -24.5,1.5 parent: 2 - - uid: 13117 - components: - - type: Transform - pos: 36.5,20.5 - parent: 2 - - uid: 13125 - components: - - type: Transform - pos: 38.5,45.5 - parent: 2 - uid: 13184 components: - type: Transform @@ -91467,6 +95586,24 @@ entities: - type: Transform pos: 10.5,18.5 parent: 2 + - uid: 13521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,37.5 + parent: 2 + - uid: 13523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,37.5 + parent: 2 + - uid: 13526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,44.5 + parent: 2 - uid: 13561 components: - type: Transform @@ -91482,25 +95619,10 @@ entities: - type: Transform pos: 70.5,-14.5 parent: 2 - - uid: 13565 - components: - - type: Transform - pos: 51.5,32.5 - parent: 2 - - uid: 13566 - components: - - type: Transform - pos: 60.5,31.5 - parent: 2 - - uid: 13573 - components: - - type: Transform - pos: 54.5,30.5 - parent: 2 - uid: 13574 components: - type: Transform - pos: 58.5,30.5 + pos: 52.5,35.5 parent: 2 - uid: 13614 components: @@ -92182,6 +96304,12 @@ entities: - type: Transform pos: 94.5,25.5 parent: 2 + - uid: 14329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,38.5 + parent: 2 - uid: 14340 components: - type: Transform @@ -92422,6 +96550,23 @@ entities: - type: Transform pos: 94.5,31.5 parent: 2 + - uid: 14550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,38.5 + parent: 2 + - uid: 14583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,38.5 + parent: 2 + - uid: 14628 + components: + - type: Transform + pos: 50.5,7.5 + parent: 2 - uid: 14745 components: - type: Transform @@ -92452,6 +96597,12 @@ entities: - type: Transform pos: 4.5,41.5 parent: 2 + - uid: 14787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,38.5 + parent: 2 - uid: 14795 components: - type: Transform @@ -92515,32 +96666,43 @@ entities: - uid: 14823 components: - type: Transform - pos: 50.5,38.5 + rot: 3.141592653589793 rad + pos: 38.5,48.5 parent: 2 - - uid: 14828 + - uid: 14872 components: - type: Transform - pos: 50.5,43.5 + rot: -1.5707963267948966 rad + pos: 49.5,43.5 parent: 2 - - uid: 14835 + - uid: 14874 components: - type: Transform - pos: 52.5,44.5 + rot: -1.5707963267948966 rad + pos: 46.5,43.5 parent: 2 - - uid: 14837 + - uid: 14888 components: - type: Transform - pos: 62.5,41.5 + rot: 3.141592653589793 rad + pos: 38.5,47.5 parent: 2 - - uid: 14838 + - uid: 14890 components: - type: Transform - pos: 62.5,31.5 + pos: 59.5,12.5 parent: 2 - - uid: 14848 + - uid: 14892 components: - type: Transform - pos: 60.5,44.5 + rot: -1.5707963267948966 rad + pos: 63.5,37.5 + parent: 2 + - uid: 14915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,22.5 parent: 2 - uid: 14920 components: @@ -92587,20 +96749,101 @@ entities: - type: Transform pos: 12.5,-54.5 parent: 2 - - uid: 15451 + - uid: 15173 components: - type: Transform - pos: 41.5,43.5 + pos: 72.5,-21.5 parent: 2 - - uid: 15452 + - uid: 15180 components: - type: Transform - pos: 41.5,45.5 + pos: 41.5,41.5 parent: 2 - - uid: 15459 + - uid: 15184 components: - type: Transform - pos: 75.5,-19.5 + rot: 3.141592653589793 rad + pos: 43.5,44.5 + parent: 2 + - uid: 15363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,33.5 + parent: 2 + - uid: 15365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,32.5 + parent: 2 + - uid: 15369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,54.5 + parent: 2 + - uid: 15372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,40.5 + parent: 2 + - uid: 15512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,21.5 + parent: 2 + - uid: 15526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,25.5 + parent: 2 + - uid: 15532 + components: + - type: Transform + pos: 72.5,-22.5 + parent: 2 + - uid: 15533 + components: + - type: Transform + pos: 76.5,-20.5 + parent: 2 + - uid: 15540 + components: + - type: Transform + pos: 76.5,-21.5 + parent: 2 + - uid: 15541 + components: + - type: Transform + pos: 76.5,-22.5 + parent: 2 + - uid: 15544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,25.5 + parent: 2 + - uid: 15564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,21.5 + parent: 2 + - uid: 15565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,21.5 + parent: 2 + - uid: 15784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,5.5 parent: 2 - proto: WallReinforcedRust entities: @@ -92691,6 +96934,12 @@ entities: - type: Transform pos: 3.5,-2.5 parent: 2 + - uid: 185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,17.5 + parent: 2 - uid: 186 components: - type: Transform @@ -92836,6 +97085,12 @@ entities: - type: Transform pos: 10.5,32.5 parent: 2 + - uid: 449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,3.5 + parent: 2 - uid: 452 components: - type: Transform @@ -92881,6 +97136,12 @@ entities: - type: Transform pos: 10.5,-12.5 parent: 2 + - uid: 474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,38.5 + parent: 2 - uid: 475 components: - type: Transform @@ -93826,6 +98087,11 @@ entities: - type: Transform pos: 23.5,-33.5 parent: 2 + - uid: 1774 + components: + - type: Transform + pos: 53.5,22.5 + parent: 2 - uid: 1775 components: - type: Transform @@ -93891,6 +98157,11 @@ entities: - type: Transform pos: 29.5,-8.5 parent: 2 + - uid: 1902 + components: + - type: Transform + pos: 68.5,32.5 + parent: 2 - uid: 1949 components: - type: Transform @@ -94181,6 +98452,11 @@ entities: - type: Transform pos: 16.5,32.5 parent: 2 + - uid: 2133 + components: + - type: Transform + pos: 56.5,43.5 + parent: 2 - uid: 2169 components: - type: Transform @@ -94216,35 +98492,48 @@ entities: - type: Transform pos: 23.5,17.5 parent: 2 - - uid: 2244 + - uid: 2256 components: - type: Transform - pos: 29.5,22.5 + pos: 64.5,42.5 parent: 2 - - uid: 2245 + - uid: 2299 components: - type: Transform - pos: 30.5,22.5 + pos: 60.5,42.5 parent: 2 - - uid: 2246 + - uid: 2300 components: - type: Transform - pos: 31.5,22.5 + pos: 56.5,42.5 parent: 2 - - uid: 2247 + - uid: 2310 components: - type: Transform - pos: 29.5,19.5 + pos: 60.5,45.5 parent: 2 - - uid: 2248 + - uid: 2354 components: - type: Transform - pos: 30.5,19.5 + rot: 3.141592653589793 rad + pos: 56.5,44.5 parent: 2 - - uid: 2249 + - uid: 2360 components: - type: Transform - pos: 31.5,19.5 + rot: 3.141592653589793 rad + pos: 64.5,46.5 + parent: 2 + - uid: 2368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,41.5 + parent: 2 + - uid: 2489 + components: + - type: Transform + pos: 49.5,16.5 parent: 2 - uid: 2496 components: @@ -94356,11 +98645,6 @@ entities: - type: Transform pos: 34.5,12.5 parent: 2 - - uid: 2562 - components: - - type: Transform - pos: 28.5,33.5 - parent: 2 - uid: 2668 components: - type: Transform @@ -94731,50 +99015,10 @@ entities: - type: Transform pos: 67.5,6.5 parent: 2 - - uid: 3040 - components: - - type: Transform - pos: 56.5,8.5 - parent: 2 - - uid: 3041 - components: - - type: Transform - pos: 56.5,9.5 - parent: 2 - - uid: 3042 - components: - - type: Transform - pos: 56.5,10.5 - parent: 2 - - uid: 3043 - components: - - type: Transform - pos: 56.5,11.5 - parent: 2 - - uid: 3044 - components: - - type: Transform - pos: 56.5,12.5 - parent: 2 - - uid: 3051 - components: - - type: Transform - pos: 46.5,20.5 - parent: 2 - - uid: 3053 - components: - - type: Transform - pos: 49.5,16.5 - parent: 2 - uid: 3054 components: - type: Transform - pos: 50.5,16.5 - parent: 2 - - uid: 3055 - components: - - type: Transform - pos: 51.5,16.5 + pos: 54.5,22.5 parent: 2 - uid: 3056 components: @@ -94811,25 +99055,42 @@ entities: - type: Transform pos: 49.5,12.5 parent: 2 - - uid: 3356 + - uid: 3080 components: - type: Transform - pos: 68.5,46.5 + rot: 1.5707963267948966 rad + pos: 64.5,45.5 parent: 2 - - uid: 3357 + - uid: 3092 components: - type: Transform - pos: 68.5,45.5 + pos: 68.5,36.5 parent: 2 - - uid: 3358 + - uid: 3128 components: - type: Transform - pos: 68.5,44.5 + rot: 3.141592653589793 rad + pos: 54.5,46.5 parent: 2 - - uid: 3359 + - uid: 3130 components: - type: Transform - pos: 68.5,43.5 + pos: 42.5,22.5 + parent: 2 + - uid: 3140 + components: + - type: Transform + pos: 56.5,41.5 + parent: 2 + - uid: 3175 + components: + - type: Transform + pos: 61.5,42.5 + parent: 2 + - uid: 3214 + components: + - type: Transform + pos: 65.5,36.5 parent: 2 - uid: 3360 components: @@ -94841,11 +99102,6 @@ entities: - type: Transform pos: 68.5,40.5 parent: 2 - - uid: 3381 - components: - - type: Transform - pos: 68.5,41.5 - parent: 2 - uid: 3382 components: - type: Transform @@ -94856,16 +99112,6 @@ entities: - type: Transform pos: 68.5,37.5 parent: 2 - - uid: 3388 - components: - - type: Transform - pos: 68.5,38.5 - parent: 2 - - uid: 3396 - components: - - type: Transform - pos: 66.5,45.5 - parent: 2 - uid: 3414 components: - type: Transform @@ -94881,31 +99127,21 @@ entities: - type: Transform pos: 67.5,30.5 parent: 2 - - uid: 3441 - components: - - type: Transform - pos: 68.5,27.5 - parent: 2 - uid: 3442 components: - type: Transform pos: 68.5,29.5 parent: 2 - - uid: 3443 - components: - - type: Transform - pos: 68.5,33.5 - parent: 2 - - uid: 3444 - components: - - type: Transform - pos: 68.5,34.5 - parent: 2 - uid: 3461 components: - type: Transform pos: 14.5,29.5 parent: 2 + - uid: 3490 + components: + - type: Transform + pos: 41.5,20.5 + parent: 2 - uid: 3523 components: - type: Transform @@ -94951,16 +99187,6 @@ entities: - type: Transform pos: 79.5,9.5 parent: 2 - - uid: 3570 - components: - - type: Transform - pos: 78.5,11.5 - parent: 2 - - uid: 3571 - components: - - type: Transform - pos: 77.5,11.5 - parent: 2 - uid: 3572 components: - type: Transform @@ -95024,12 +99250,7 @@ entities: - uid: 3585 components: - type: Transform - pos: 79.5,11.5 - parent: 2 - - uid: 3586 - components: - - type: Transform - pos: 76.5,11.5 + pos: 59.5,50.5 parent: 2 - uid: 3598 components: @@ -95071,11 +99292,6 @@ entities: - type: Transform pos: 65.5,13.5 parent: 2 - - uid: 3666 - components: - - type: Transform - pos: 59.5,12.5 - parent: 2 - uid: 3680 components: - type: Transform @@ -95376,6 +99592,11 @@ entities: - type: Transform pos: 28.5,-20.5 parent: 2 + - uid: 4397 + components: + - type: Transform + pos: 70.5,28.5 + parent: 2 - uid: 5057 components: - type: Transform @@ -95386,25 +99607,20 @@ entities: - type: Transform pos: 40.5,-11.5 parent: 2 + - uid: 5152 + components: + - type: Transform + pos: 70.5,27.5 + parent: 2 - uid: 5174 components: - type: Transform pos: 76.5,6.5 parent: 2 - - uid: 5401 + - uid: 5309 components: - type: Transform - pos: 63.5,18.5 - parent: 2 - - uid: 5402 - components: - - type: Transform - pos: 63.5,19.5 - parent: 2 - - uid: 5404 - components: - - type: Transform - pos: 63.5,20.5 + pos: 65.5,42.5 parent: 2 - uid: 5420 components: @@ -95416,30 +99632,26 @@ entities: - type: Transform pos: 10.5,33.5 parent: 2 - - uid: 5441 + - uid: 5424 components: - type: Transform - pos: 71.5,38.5 + pos: 23.5,34.5 parent: 2 - - uid: 5442 + - uid: 5433 components: - type: Transform - pos: 70.5,38.5 + pos: 24.5,34.5 parent: 2 - - uid: 5443 + - uid: 5487 components: - type: Transform - pos: 69.5,38.5 + rot: 1.5707963267948966 rad + pos: 47.5,20.5 parent: 2 - - uid: 5748 + - uid: 5496 components: - type: Transform - pos: 56.5,21.5 - parent: 2 - - uid: 5749 - components: - - type: Transform - pos: 57.5,21.5 + pos: 68.5,34.5 parent: 2 - uid: 5785 components: @@ -95456,26 +99668,29 @@ entities: - type: Transform pos: 28.5,-7.5 parent: 2 - - uid: 6117 + - uid: 6198 components: - type: Transform - pos: 55.5,21.5 + rot: 3.141592653589793 rad + pos: 65.5,38.5 parent: 2 - - uid: 6128 + - uid: 6212 components: - type: Transform - pos: 53.5,21.5 - parent: 2 - - uid: 6138 - components: - - type: Transform - pos: 53.5,22.5 + rot: 3.141592653589793 rad + pos: 65.5,37.5 parent: 2 - uid: 6481 components: - type: Transform pos: 41.5,-2.5 parent: 2 + - uid: 6487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,46.5 + parent: 2 - uid: 6494 components: - type: Transform @@ -95506,6 +99721,23 @@ entities: - type: Transform pos: 29.5,3.5 parent: 2 + - uid: 6521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,46.5 + parent: 2 + - uid: 6530 + components: + - type: Transform + pos: 58.5,46.5 + parent: 2 + - uid: 6533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,40.5 + parent: 2 - uid: 6574 components: - type: Transform @@ -95546,11 +99778,96 @@ entities: - type: Transform pos: 75.5,5.5 parent: 2 + - uid: 7250 + components: + - type: Transform + pos: 9.5,29.5 + parent: 2 - uid: 8169 components: - type: Transform pos: 13.5,32.5 parent: 2 + - uid: 8175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,36.5 + parent: 2 + - uid: 8251 + components: + - type: Transform + pos: 60.5,43.5 + parent: 2 + - uid: 8396 + components: + - type: Transform + pos: 63.5,42.5 + parent: 2 + - uid: 8430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,18.5 + parent: 2 + - uid: 8435 + components: + - type: Transform + pos: 41.5,18.5 + parent: 2 + - uid: 8436 + components: + - type: Transform + pos: 43.5,20.5 + parent: 2 + - uid: 8454 + components: + - type: Transform + pos: 77.5,10.5 + parent: 2 + - uid: 8459 + components: + - type: Transform + pos: 42.5,20.5 + parent: 2 + - uid: 8469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,45.5 + parent: 2 + - uid: 8504 + components: + - type: Transform + pos: 64.5,37.5 + parent: 2 + - uid: 8506 + components: + - type: Transform + pos: 64.5,42.5 + parent: 2 + - uid: 8507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,41.5 + parent: 2 + - uid: 8509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,45.5 + parent: 2 + - uid: 8562 + components: + - type: Transform + pos: 62.5,42.5 + parent: 2 + - uid: 8631 + components: + - type: Transform + pos: 60.5,46.5 + parent: 2 - uid: 8805 components: - type: Transform @@ -95601,10 +99918,71 @@ entities: - type: Transform pos: 39.5,-18.5 parent: 2 - - uid: 10026 + - uid: 9238 components: - type: Transform - pos: 16.5,-10.5 + rot: -1.5707963267948966 rad + pos: 41.5,17.5 + parent: 2 + - uid: 9240 + components: + - type: Transform + pos: 59.5,46.5 + parent: 2 + - uid: 9256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,52.5 + parent: 2 + - uid: 9260 + components: + - type: Transform + pos: 68.5,35.5 + parent: 2 + - uid: 9280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,36.5 + parent: 2 + - uid: 9298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,46.5 + parent: 2 + - uid: 9300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,45.5 + parent: 2 + - uid: 9334 + components: + - type: Transform + pos: 64.5,37.5 + parent: 2 + - uid: 9340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,46.5 + parent: 2 + - uid: 9405 + components: + - type: Transform + pos: 78.5,10.5 + parent: 2 + - uid: 9418 + components: + - type: Transform + pos: 60.5,41.5 + parent: 2 + - uid: 9474 + components: + - type: Transform + pos: 70.5,29.5 parent: 2 - uid: 10027 components: @@ -95621,11 +99999,45 @@ entities: - type: Transform pos: 14.5,-8.5 parent: 2 + - uid: 10039 + components: + - type: Transform + pos: 68.5,28.5 + parent: 2 + - uid: 10307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,36.5 + parent: 2 + - uid: 10313 + components: + - type: Transform + pos: 68.5,33.5 + parent: 2 + - uid: 10399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,9.5 + parent: 2 - uid: 10812 components: - type: Transform pos: 89.5,-17.5 parent: 2 + - uid: 10839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,44.5 + parent: 2 + - uid: 10882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,11.5 + parent: 2 - uid: 11311 components: - type: Transform @@ -95636,6 +100048,11 @@ entities: - type: Transform pos: 75.5,4.5 parent: 2 + - uid: 11384 + components: + - type: Transform + pos: 51.5,16.5 + parent: 2 - uid: 11415 components: - type: Transform @@ -95666,16 +100083,64 @@ entities: - type: Transform pos: 76.5,8.5 parent: 2 + - uid: 12550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,19.5 + parent: 2 - uid: 13189 components: - type: Transform pos: 11.5,14.5 parent: 2 + - uid: 13591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,12.5 + parent: 2 + - uid: 13609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,44.5 + parent: 2 + - uid: 13651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,8.5 + parent: 2 - uid: 13684 components: - type: Transform pos: 11.5,19.5 parent: 2 + - uid: 14367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,16.5 + parent: 2 + - uid: 14566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,46.5 + parent: 2 + - uid: 14582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,46.5 + parent: 2 + - uid: 14587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,45.5 + parent: 2 - uid: 14725 components: - type: Transform @@ -95691,11 +100156,70 @@ entities: - type: Transform pos: 16.5,24.5 parent: 2 + - uid: 14827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,19.5 + parent: 2 + - uid: 14913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,5.5 + parent: 2 - uid: 15006 components: - type: Transform pos: 50.5,-14.5 parent: 2 + - uid: 15413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,53.5 + parent: 2 + - uid: 15416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,45.5 + parent: 2 + - uid: 15417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,46.5 + parent: 2 + - uid: 15418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,44.5 + parent: 2 + - uid: 15419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,43.5 + parent: 2 + - uid: 15619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,47.5 + parent: 2 + - uid: 15622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,43.5 + parent: 2 + - uid: 15644 + components: + - type: Transform + pos: 53.5,50.5 + parent: 2 - proto: WallSolidRust entities: - uid: 7884 @@ -95710,10 +100234,10 @@ entities: parent: 2 - proto: WallWeaponCapacitorRecharger entities: - - uid: 2909 + - uid: 5675 components: - type: Transform - pos: 36.5,20.5 + pos: 49.5,34.5 parent: 2 - proto: WardrobeBlueFilled entities: @@ -95793,26 +100317,40 @@ entities: - 0 - proto: WardrobePrisonFilled entities: - - uid: 8686 + - uid: 2239 components: - type: Transform - pos: 29.5,21.5 + anchored: True + pos: 34.5,25.5 parent: 2 - - uid: 8687 + - type: Physics + bodyType: Static + - uid: 8397 components: - type: Transform - pos: 29.5,17.5 - parent: 2 - - uid: 13591 - components: - - type: Transform - pos: 58.5,31.5 - parent: 2 - - uid: 13592 - components: - - type: Transform - pos: 58.5,41.5 + anchored: True + pos: 43.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 + - type: Physics + bodyType: Static - proto: WardrobeVirologyFilled entities: - uid: 10910 @@ -95884,21 +100422,31 @@ entities: parent: 2 - proto: WaterCooler entities: - - uid: 2449 - components: - - type: Transform - pos: 24.5,33.5 - parent: 2 - uid: 5643 components: - type: Transform pos: 14.5,-23.5 parent: 2 + - uid: 9143 + components: + - type: Transform + pos: 53.5,30.5 + parent: 2 + - uid: 10714 + components: + - type: Transform + pos: 46.5,44.5 + parent: 2 - uid: 11430 components: - type: Transform pos: 76.5,3.5 parent: 2 + - uid: 14792 + components: + - type: Transform + pos: 29.5,33.5 + parent: 2 - proto: WaterTankFull entities: - uid: 606 @@ -95921,30 +100469,25 @@ entities: - type: Transform pos: 29.5,-17.5 parent: 2 - - uid: 10442 + - uid: 7790 components: - type: Transform - pos: 45.5,7.5 + pos: 62.5,43.5 parent: 2 - uid: 10790 components: - type: Transform pos: 57.5,-17.5 parent: 2 - - uid: 10838 - components: - - type: Transform - pos: 66.5,47.5 - parent: 2 - uid: 12407 components: - type: Transform pos: 46.5,-19.5 parent: 2 - - uid: 13608 + - uid: 12797 components: - type: Transform - pos: 53.5,40.5 + pos: 47.5,7.5 parent: 2 - uid: 13875 components: @@ -95963,6 +100506,11 @@ entities: - type: Transform pos: 47.5,-3.5 parent: 2 + - uid: 8559 + components: + - type: Transform + pos: 40.5,22.5 + parent: 2 - proto: WaterVaporCanister entities: - uid: 1923 @@ -95970,68 +100518,35 @@ entities: - type: Transform pos: 50.5,-29.5 parent: 2 - - uid: 7845 + - uid: 12083 components: - type: Transform - pos: 58.5,11.5 + pos: 58.5,9.5 parent: 2 - proto: WeaponCapacitorRecharger entities: - - uid: 2050 - components: - - type: Transform - pos: 34.5,41.5 - parent: 2 - - uid: 3235 - components: - - type: Transform - pos: 36.5,26.5 - parent: 2 - uid: 7979 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-3.5 parent: 2 - - uid: 8537 + - uid: 8373 components: - type: Transform - pos: 34.5,17.5 + rot: 1.5707963267948966 rad + pos: 37.5,32.5 parent: 2 - - uid: 8691 + - uid: 10608 components: - type: Transform - pos: 39.5,21.5 + pos: 28.5,31.5 parent: 2 - - uid: 11146 + - uid: 11664 components: - type: Transform - pos: 44.5,23.5 + pos: 48.5,18.5 parent: 2 - - type: ContainerContainer - containers: - WeaponCapacitorCharger-powerCellContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger-slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - type: Physics - canCollide: False - uid: 12172 components: - type: Transform @@ -96044,61 +100559,106 @@ entities: - type: Transform pos: 90.5,28.5 parent: 2 -- proto: WeaponDisabler +- proto: WeaponEnergyTurretAI entities: - - uid: 2287 - components: - - type: Transform - pos: 36.50164,27.085938 - parent: 2 - - uid: 10139 - components: - - type: Transform - pos: 36.48081,27.346535 - parent: 2 -- proto: WeaponSubMachineGunWt550 - entities: - - uid: 7940 - components: - - type: Transform - pos: 45.454727,23.618372 - parent: 2 -- proto: WeaponTurretSyndicateBroken - entities: - - uid: 14238 - components: - - type: Transform - pos: 86.5,32.5 - parent: 2 - - uid: 14240 - components: - - type: Transform - pos: 84.5,32.5 - parent: 2 - - uid: 14263 - components: - - type: Transform - pos: 82.5,29.5 - parent: 2 - - uid: 14367 - components: - - type: Transform - pos: 92.5,33.5 - parent: 2 - - uid: 14521 + - uid: 7956 components: - type: Transform + rot: 3.141592653589793 rad pos: 96.5,33.5 parent: 2 - - uid: 14522 + - type: DeviceNetwork + deviceLists: + - 3821 + - uid: 8449 components: - type: Transform pos: 96.5,27.5 parent: 2 - - uid: 14523 + - type: DeviceNetwork + deviceLists: + - 3821 + - uid: 8600 components: - type: Transform - pos: 92.5,27.5 + pos: 85.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9445 + - uid: 9459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3821 +- proto: WeaponEnergyTurretAIControlPanel + entities: + - uid: 3821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 97.5,30.5 + parent: 2 + - type: DeviceList + devices: + - 8449 + - 9459 + - 7956 + - uid: 9445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,31.5 + parent: 2 + - type: DeviceList + devices: + - 8600 +- proto: WeaponEnergyTurretSecurity + entities: + - uid: 14086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6314 +- proto: WeaponEnergyTurretSecurityControlPanel + entities: + - uid: 6314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,33.5 + parent: 2 + - type: DeviceList + devices: + - 14086 +- proto: WeaponLaserCarbinePractice + entities: + - uid: 2366 + components: + - type: Transform + pos: 50.6435,34.509346 + parent: 2 +- proto: WeaponShotgunEnforcerRubber + entities: + - uid: 5153 + components: + - type: Transform + pos: 44.511932,25.36125 + parent: 2 +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 1999 + components: + - type: Transform + pos: 44.47453,43.768467 parent: 2 - proto: WeedSpray entities: @@ -96119,6 +100679,13 @@ entities: - type: Transform pos: 32.547882,-30.463009 parent: 2 +- proto: WelderIndustrialAdvanced + entities: + - uid: 8683 + components: + - type: Transform + pos: 43.46133,-35.475647 + parent: 2 - proto: WeldingFuelTankFull entities: - uid: 800 @@ -96131,20 +100698,10 @@ entities: - type: Transform pos: 17.5,26.5 parent: 2 - - uid: 3502 + - uid: 3139 components: - type: Transform - pos: 36.5,36.5 - parent: 2 - - uid: 5391 - components: - - type: Transform - pos: 47.5,9.5 - parent: 2 - - uid: 5531 - components: - - type: Transform - pos: 65.5,20.5 + pos: 61.5,43.5 parent: 2 - uid: 5705 components: @@ -96156,6 +100713,11 @@ entities: - type: Transform pos: 30.5,-17.5 parent: 2 + - uid: 9602 + components: + - type: Transform + pos: 46.5,7.5 + parent: 2 - uid: 9899 components: - type: Transform @@ -96181,6 +100743,11 @@ entities: - type: Transform pos: -15.5,-24.5 parent: 2 + - uid: 15682 + components: + - type: Transform + pos: 37.5,36.5 + parent: 2 - proto: WetFloorSign entities: - uid: 12306 @@ -96193,6 +100760,13 @@ entities: - type: Transform pos: 11.536887,-11.504442 parent: 2 +- proto: WheatSeeds + entities: + - uid: 5475 + components: + - type: Transform + pos: 57.48187,43.34446 + parent: 2 - proto: Windoor entities: - uid: 308 @@ -96225,6 +100799,54 @@ entities: rot: 3.141592653589793 rad pos: 38.5,4.5 parent: 2 + - uid: 3349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,30.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2224: + - - DoorStatus + - Close + 8633: + - - DoorStatus + - Close + - uid: 3483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,18.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3513: + - - DoorStatus + - Close + 14627: + - - DoorStatus + - Close + - uid: 3484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,17.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 14627: + - - DoorStatus + - Close + 3513: + - - DoorStatus + - Close - uid: 7775 components: - type: Transform @@ -96237,21 +100859,52 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,-1.5 parent: 2 -- proto: WindoorBarKitchenLocked - entities: - - uid: 3520 + - uid: 10315 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,-9.5 + pos: 28.5,31.5 parent: 2 -- proto: WindoorCargoLocked - entities: - - uid: 7250 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8633: + - - DoorStatus + - Close + 2224: + - - DoorStatus + - Close + - uid: 14990 components: - type: Transform - pos: 9.5,29.5 + pos: 7.5,29.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11629: + - - DoorStatus + - Close + 15185: + - - DoorStatus + - Close + - uid: 15190 + components: + - type: Transform + pos: 6.5,29.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11629: + - - DoorStatus + - Close + 15185: + - - DoorStatus + - Close - proto: WindoorChapelLocked entities: - uid: 9730 @@ -96303,12 +100956,6 @@ entities: - type: Transform pos: 77.5,-5.5 parent: 2 - - uid: 5876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-28.5 - parent: 2 - uid: 6852 components: - type: Transform @@ -96325,30 +100972,21 @@ entities: rot: -1.5707963267948966 rad pos: 113.5,-19.5 parent: 2 + - uid: 9726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,29.5 + parent: 2 - uid: 10121 components: - type: Transform pos: 80.5,-2.5 parent: 2 - - uid: 13596 + - uid: 10312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,40.5 - parent: 2 - - uid: 13597 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,32.5 - parent: 2 -- proto: WindoorSecureArmoryLocked - entities: - - uid: 13091 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,18.5 + pos: 69.5,34.5 parent: 2 - proto: WindoorSecureAtmosphericsLocked entities: @@ -96364,6 +101002,49 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,-23.5 parent: 2 +- proto: WindoorSecureBrigLocked + entities: + - uid: 2224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,30.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10315: + - - DoorStatus + - Close + - uid: 8633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,31.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10315: + - - DoorStatus + - Close + 3349: + - - DoorStatus + - Close + - uid: 10770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,30.5 + parent: 2 + - uid: 14867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,29.5 + parent: 2 - proto: WindoorSecureCargoLocked entities: - uid: 10119 @@ -96404,6 +101085,18 @@ entities: - type: Transform pos: 14.5,38.5 parent: 2 + - uid: 8538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,31.5 + parent: 2 + - uid: 8666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,31.5 + parent: 2 - uid: 14210 components: - type: Transform @@ -96456,6 +101149,12 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-23.5 parent: 2 + - uid: 5826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-15.5 + parent: 2 - uid: 5858 components: - type: Transform @@ -96474,6 +101173,12 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-24.5 parent: 2 + - uid: 12330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-15.5 + parent: 2 - uid: 15423 components: - type: Transform @@ -96514,12 +101219,38 @@ entities: parent: 2 - proto: WindoorSecureSalvageLocked entities: - - uid: 14738 + - uid: 11629 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,29.5 + pos: 6.5,29.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 15190: + - - DoorStatus + - Close + 14990: + - - DoorStatus + - Close + - uid: 15185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,29.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 14990: + - - DoorStatus + - Close + 15190: + - - DoorStatus + - Close - proto: WindoorSecureScienceLocked entities: - uid: 3513 @@ -96528,22 +101259,37 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,18.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3484: + - - DoorStatus + - Close + 3483: + - - DoorStatus + - Close - uid: 7848 components: - type: Transform pos: 47.5,12.5 parent: 2 - - uid: 8669 + - uid: 14627 components: - type: Transform - pos: 62.5,26.5 - parent: 2 - - uid: 8697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,26.5 + rot: 1.5707963267948966 rad + pos: 48.5,17.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3484: + - - DoorStatus + - Close + 3483: + - - DoorStatus + - Close - proto: WindoorSecureSecurityLawyerLocked entities: - uid: 1077 @@ -96554,29 +101300,10 @@ entities: parent: 2 - proto: WindoorSecureSecurityLocked entities: - - uid: 2258 + - uid: 5116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,20.5 - parent: 2 - - uid: 2259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,18.5 - parent: 2 - - uid: 2421 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,25.5 - parent: 2 - - uid: 2429 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,25.5 + pos: 35.5,32.5 parent: 2 - uid: 7738 components: @@ -96595,19 +101322,8 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-4.5 parent: 2 - - uid: 12661 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,29.5 - parent: 2 - proto: Window entities: - - uid: 142 - components: - - type: Transform - pos: 38.5,-10.5 - parent: 2 - uid: 289 components: - type: Transform @@ -96723,16 +101439,6 @@ entities: - type: Transform pos: 66.5,-18.5 parent: 2 - - uid: 4321 - components: - - type: Transform - pos: 7.5,29.5 - parent: 2 - - uid: 4322 - components: - - type: Transform - pos: 6.5,29.5 - parent: 2 - uid: 4957 components: - type: Transform @@ -96884,6 +101590,12 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,4.5 parent: 2 + - uid: 5141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-9.5 + parent: 2 - uid: 7076 components: - type: Transform @@ -96932,14 +101644,14 @@ entities: rot: -1.5707963267948966 rad pos: 65.5,4.5 parent: 2 -- proto: WindowReinforcedDirectional - entities: - - uid: 224 + - uid: 15812 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-15.5 + rot: -1.5707963267948966 rad + pos: 38.5,-10.5 parent: 2 +- proto: WindowReinforcedDirectional + entities: - uid: 673 components: - type: Transform @@ -96968,12 +101680,6 @@ entities: - type: Transform pos: 25.5,-30.5 parent: 2 - - uid: 1481 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,8.5 - parent: 2 - uid: 2158 components: - type: Transform @@ -96986,17 +101692,16 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,48.5 parent: 2 - - uid: 2410 + - uid: 2428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,17.5 + pos: 37.5,32.5 parent: 2 - - uid: 2679 + - uid: 3385 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,32.5 + pos: 7.5,29.5 parent: 2 - uid: 5034 components: @@ -97010,6 +101715,12 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,32.5 parent: 2 + - uid: 5336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,29.5 + parent: 2 - uid: 5364 components: - type: Transform @@ -97022,6 +101733,11 @@ entities: rot: 3.141592653589793 rad pos: 17.5,32.5 parent: 2 + - uid: 5471 + components: + - type: Transform + pos: 36.5,32.5 + parent: 2 - uid: 5656 components: - type: Transform @@ -97045,12 +101761,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-32.5 parent: 2 - - uid: 5866 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-15.5 - parent: 2 - uid: 5867 components: - type: Transform @@ -97069,44 +101779,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-29.5 parent: 2 - - uid: 6198 - components: - - type: Transform - pos: 28.5,25.5 - parent: 2 - - uid: 6327 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,28.5 - parent: 2 - - uid: 6328 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,30.5 - parent: 2 - - uid: 6329 - components: - - type: Transform - pos: 31.5,25.5 - parent: 2 - - uid: 6330 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,26.5 - parent: 2 - - uid: 6331 - components: - - type: Transform - pos: 29.5,25.5 - parent: 2 - - uid: 6332 - components: - - type: Transform - pos: 30.5,25.5 - parent: 2 - uid: 6832 components: - type: Transform @@ -97119,12 +101791,6 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,0.5 parent: 2 - - uid: 7762 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,19.5 - parent: 2 - uid: 7785 components: - type: Transform @@ -97249,6 +101915,22 @@ entities: rot: -1.5707963267948966 rad pos: 113.5,-18.5 parent: 2 + - uid: 9155 + components: + - type: Transform + pos: 34.5,32.5 + parent: 2 + - uid: 9458 + components: + - type: Transform + pos: 70.5,34.5 + parent: 2 + - uid: 9588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,29.5 + parent: 2 - uid: 9613 components: - type: Transform @@ -97279,10 +101961,11 @@ entities: rot: 3.141592653589793 rad pos: 29.5,5.5 parent: 2 - - uid: 12766 + - uid: 10573 components: - type: Transform - pos: 46.5,37.5 + rot: 3.141592653589793 rad + pos: 44.5,29.5 parent: 2 - uid: 12790 components: @@ -97308,29 +101991,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,0.5 parent: 2 - - uid: 13435 - components: - - type: Transform - pos: 58.5,12.5 - parent: 2 - - uid: 13541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,33.5 - parent: 2 - - uid: 13594 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,41.5 - parent: 2 - - uid: 13595 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,31.5 - parent: 2 - uid: 14199 components: - type: Transform @@ -97355,18 +102015,6 @@ entities: rot: 3.141592653589793 rad pos: 79.5,27.5 parent: 2 - - uid: 14235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,32.5 - parent: 2 - - uid: 14249 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,32.5 - parent: 2 - uid: 14357 components: - type: Transform @@ -97396,17 +102044,35 @@ entities: - type: Transform pos: 82.5,36.5 parent: 2 - - uid: 15085 + - uid: 14664 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,30.5 + pos: 24.5,33.5 parent: 2 - - uid: 15086 + - uid: 14825 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,29.5 + pos: 31.5,31.5 + parent: 2 + - uid: 14855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,32.5 + parent: 2 + - uid: 14856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,30.5 + parent: 2 + - uid: 14857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,29.5 parent: 2 - uid: 15424 components: @@ -97442,6 +102108,56 @@ entities: - type: Transform pos: 34.5,4.5 parent: 2 +- proto: WoodenBench + entities: + - uid: 982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,6.5 + parent: 2 + - uid: 2287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,8.5 + parent: 2 + - uid: 6306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,8.5 + parent: 2 + - uid: 6311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,5.5 + parent: 2 + - uid: 6315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,6.5 + parent: 2 + - uid: 6317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,9.5 + parent: 2 + - uid: 15646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,5.5 + parent: 2 + - uid: 15653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,9.5 + parent: 2 - proto: Wrench entities: - uid: 604 @@ -97449,14 +102165,22 @@ entities: - type: Transform pos: 30.501482,-14.418215 parent: 2 - - uid: 5325 - components: - - type: Transform - pos: 55.374165,17.598963 - parent: 2 - uid: 11127 components: - type: Transform pos: 54.489273,-14.340717 parent: 2 + - uid: 13499 + components: + - type: Transform + parent: 13141 + - type: Physics + canCollide: False +- proto: ZiptiesBroken + entities: + - uid: 9457 + components: + - type: Transform + pos: 71.78979,31.37478 + parent: 2 ... diff --git a/Resources/Maps/plasma.yml b/Resources/Maps/plasma.yml index 03e759a003..b5d76a75e0 100644 --- a/Resources/Maps/plasma.yml +++ b/Resources/Maps/plasma.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 264.0.0 + engineVersion: 266.0.0 forkId: "" forkVersion: "" - time: 07/22/2025 14:44:01 - entityCount: 26380 + time: 08/31/2025 08:36:21 + entityCount: 26386 maps: - 1 grids: @@ -10064,6 +10064,8 @@ entities: - 25266 - 25235 - 25090 + - type: Fixtures + fixtures: {} - uid: 346 components: - type: MetaData @@ -10076,6 +10078,8 @@ entities: devices: - 9330 - 18807 + - type: Fixtures + fixtures: {} - uid: 374 components: - type: MetaData @@ -10089,6 +10093,8 @@ entities: - 23516 - 9976 - 23320 + - type: Fixtures + fixtures: {} - uid: 461 components: - type: MetaData @@ -10101,6 +10107,8 @@ entities: - 23370 - 23872 - 23368 + - type: Fixtures + fixtures: {} - uid: 854 components: - type: Transform @@ -10112,6 +10120,8 @@ entities: - 457 - 18223 - 972 + - type: Fixtures + fixtures: {} - uid: 927 components: - type: MetaData @@ -10131,6 +10141,8 @@ entities: - 25858 - 25856 - 25857 + - type: Fixtures + fixtures: {} - uid: 1848 components: - type: MetaData @@ -10149,6 +10161,8 @@ entities: - 24570 - 24569 - 26337 + - type: Fixtures + fixtures: {} - uid: 2136 components: - type: MetaData @@ -10171,6 +10185,8 @@ entities: - 10020 - 10021 - 6939 + - type: Fixtures + fixtures: {} - uid: 3073 components: - type: MetaData @@ -10188,6 +10204,8 @@ entities: - 11250 - 11253 - 11254 + - type: Fixtures + fixtures: {} - uid: 3074 components: - type: MetaData @@ -10202,6 +10220,8 @@ entities: - 10402 - 11246 - 11254 + - type: Fixtures + fixtures: {} - uid: 3287 components: - type: MetaData @@ -10233,6 +10253,8 @@ entities: - 2980 - 2987 - 6938 + - type: Fixtures + fixtures: {} - uid: 4080 components: - type: MetaData @@ -10249,6 +10271,8 @@ entities: - 11179 - 16988 - 16991 + - type: Fixtures + fixtures: {} - uid: 4214 components: - type: MetaData @@ -10266,6 +10290,8 @@ entities: - 12510 - 11070 - 24045 + - type: Fixtures + fixtures: {} - uid: 5387 components: - type: MetaData @@ -10277,6 +10303,8 @@ entities: - type: DeviceList devices: - 5385 + - type: Fixtures + fixtures: {} - uid: 5658 components: - type: MetaData @@ -10288,6 +10316,8 @@ entities: - type: DeviceList devices: - 5379 + - type: Fixtures + fixtures: {} - uid: 5898 components: - type: MetaData @@ -10304,6 +10334,8 @@ entities: - 14951 - 14950 - 14948 + - type: Fixtures + fixtures: {} - uid: 5906 components: - type: MetaData @@ -10314,6 +10346,8 @@ entities: - type: DeviceList devices: - 19290 + - type: Fixtures + fixtures: {} - uid: 6850 components: - type: MetaData @@ -10327,6 +10361,8 @@ entities: - 11379 - 7088 - 11181 + - type: Fixtures + fixtures: {} - uid: 6929 components: - type: MetaData @@ -10342,6 +10378,8 @@ entities: - 18710 - 17897 - 17967 + - type: Fixtures + fixtures: {} - uid: 7346 components: - type: MetaData @@ -10359,6 +10397,8 @@ entities: - 7808 - 23895 - 22713 + - type: Fixtures + fixtures: {} - uid: 8070 components: - type: MetaData @@ -10369,6 +10409,8 @@ entities: - type: DeviceList devices: - 25859 + - type: Fixtures + fixtures: {} - uid: 8072 components: - type: MetaData @@ -10380,6 +10422,8 @@ entities: - type: DeviceList devices: - 25860 + - type: Fixtures + fixtures: {} - uid: 8411 components: - type: MetaData @@ -10392,6 +10436,8 @@ entities: - 860 - 853 - 24038 + - type: Fixtures + fixtures: {} - uid: 8934 components: - type: MetaData @@ -10407,6 +10453,8 @@ entities: - 11810 - 11072 - 5744 + - type: Fixtures + fixtures: {} - uid: 8941 components: - type: MetaData @@ -10426,6 +10474,8 @@ entities: - 13217 - 12001 - 13220 + - type: Fixtures + fixtures: {} - uid: 8947 components: - type: MetaData @@ -10444,6 +10494,8 @@ entities: - 14689 - 13863 - 15360 + - type: Fixtures + fixtures: {} - uid: 8954 components: - type: MetaData @@ -10456,6 +10508,8 @@ entities: devices: - 15356 - 5746 + - type: Fixtures + fixtures: {} - uid: 9146 components: - type: MetaData @@ -10469,6 +10523,8 @@ entities: - 12441 - 12514 - 11100 + - type: Fixtures + fixtures: {} - uid: 9162 components: - type: MetaData @@ -10482,6 +10538,8 @@ entities: - 12244 - 12247 - 2488 + - type: Fixtures + fixtures: {} - uid: 9167 components: - type: Transform @@ -10499,6 +10557,8 @@ entities: - 24662 - 4910 - 7653 + - type: Fixtures + fixtures: {} - uid: 9253 components: - type: MetaData @@ -10523,6 +10583,8 @@ entities: - 14353 - 14356 - 1782 + - type: Fixtures + fixtures: {} - uid: 9346 components: - type: MetaData @@ -10536,6 +10598,8 @@ entities: - 12298 - 25653 - 25651 + - type: Fixtures + fixtures: {} - uid: 9348 components: - type: MetaData @@ -10547,6 +10611,8 @@ entities: devices: - 14863 - 14864 + - type: Fixtures + fixtures: {} - uid: 9385 components: - type: Transform @@ -10558,6 +10624,8 @@ entities: - 24697 - 869 - 16816 + - type: Fixtures + fixtures: {} - uid: 9430 components: - type: MetaData @@ -10576,6 +10644,8 @@ entities: - 13438 - 19613 - 14948 + - type: Fixtures + fixtures: {} - uid: 9459 components: - type: MetaData @@ -10588,6 +10658,8 @@ entities: - 6868 - 7843 - 16418 + - type: Fixtures + fixtures: {} - uid: 9624 components: - type: MetaData @@ -10599,6 +10671,8 @@ entities: - type: DeviceList devices: - 9476 + - type: Fixtures + fixtures: {} - uid: 11242 components: - type: MetaData @@ -10613,6 +10687,8 @@ entities: - 2968 - 2976 - 11251 + - type: Fixtures + fixtures: {} - uid: 11243 components: - type: MetaData @@ -10630,6 +10706,8 @@ entities: - 11249 - 2976 - 11252 + - type: Fixtures + fixtures: {} - uid: 11244 components: - type: MetaData @@ -10644,6 +10722,8 @@ entities: - 23990 - 14980 - 7351 + - type: Fixtures + fixtures: {} - uid: 11298 components: - type: MetaData @@ -10662,6 +10742,8 @@ entities: - 11805 - 24031 - 24034 + - type: Fixtures + fixtures: {} - uid: 11722 components: - type: MetaData @@ -10680,6 +10762,8 @@ entities: - 24647 - 24646 - 24645 + - type: Fixtures + fixtures: {} - uid: 11837 components: - type: MetaData @@ -10706,6 +10790,8 @@ entities: - 11817 - 11816 - 23126 + - type: Fixtures + fixtures: {} - uid: 11893 components: - type: MetaData @@ -10728,6 +10814,8 @@ entities: - 7808 - 23895 - 22713 + - type: Fixtures + fixtures: {} - uid: 12151 components: - type: MetaData @@ -10770,6 +10858,8 @@ entities: - 18200 - 1658 - 19471 + - type: Fixtures + fixtures: {} - uid: 14263 components: - type: MetaData @@ -10783,6 +10873,8 @@ entities: - 14272 - 4875 - 4280 + - type: Fixtures + fixtures: {} - uid: 14861 components: - type: MetaData @@ -10795,6 +10887,8 @@ entities: - 23614 - 22162 - 19738 + - type: Fixtures + fixtures: {} - uid: 15140 components: - type: MetaData @@ -10810,6 +10904,8 @@ entities: - 24127 - 24124 - 24128 + - type: Fixtures + fixtures: {} - uid: 15348 components: - type: MetaData @@ -10827,6 +10923,8 @@ entities: - 15353 - 15355 - 15354 + - type: Fixtures + fixtures: {} - uid: 15359 components: - type: MetaData @@ -10845,6 +10943,8 @@ entities: - 11105 - 9134 - 12047 + - type: Fixtures + fixtures: {} - uid: 15364 components: - type: MetaData @@ -10858,6 +10958,8 @@ entities: - 15103 - 24123 - 1599 + - type: Fixtures + fixtures: {} - uid: 15411 components: - type: MetaData @@ -10871,6 +10973,8 @@ entities: - 24124 - 24125 - 24126 + - type: Fixtures + fixtures: {} - uid: 15412 components: - type: MetaData @@ -10884,6 +10988,8 @@ entities: - 15079 - 15078 - 24126 + - type: Fixtures + fixtures: {} - uid: 15413 components: - type: MetaData @@ -10896,6 +11002,8 @@ entities: - 24128 - 14285 - 15121 + - type: Fixtures + fixtures: {} - uid: 15415 components: - type: MetaData @@ -10915,6 +11023,8 @@ entities: - 15369 - 15373 - 15417 + - type: Fixtures + fixtures: {} - uid: 15416 components: - type: MetaData @@ -10923,6 +11033,8 @@ entities: rot: -1.5707963267948966 rad pos: -62.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15581 components: - type: MetaData @@ -10940,6 +11052,8 @@ entities: - 4826 - 5626 - 5622 + - type: Fixtures + fixtures: {} - uid: 16218 components: - type: MetaData @@ -10955,6 +11069,8 @@ entities: - 22218 - 10448 - 1166 + - type: Fixtures + fixtures: {} - uid: 17332 components: - type: MetaData @@ -10967,6 +11083,8 @@ entities: devices: - 13824 - 16746 + - type: Fixtures + fixtures: {} - uid: 17569 components: - type: MetaData @@ -10980,6 +11098,8 @@ entities: - 17180 - 24048 - 24045 + - type: Fixtures + fixtures: {} - uid: 17849 components: - type: MetaData @@ -10993,6 +11113,8 @@ entities: - 15036 - 25561 - 11829 + - type: Fixtures + fixtures: {} - uid: 18696 components: - type: MetaData @@ -11007,6 +11129,8 @@ entities: - 18024 - 18012 - 18708 + - type: Fixtures + fixtures: {} - uid: 18697 components: - type: MetaData @@ -11021,6 +11145,8 @@ entities: - 18037 - 18038 - 18048 + - type: Fixtures + fixtures: {} - uid: 18703 components: - type: MetaData @@ -11028,6 +11154,8 @@ entities: - type: Transform pos: -87.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18704 components: - type: MetaData @@ -11041,6 +11169,8 @@ entities: - 18060 - 18722 - 18072 + - type: Fixtures + fixtures: {} - uid: 18705 components: - type: MetaData @@ -11054,6 +11184,8 @@ entities: - 16034 - 17442 - 18721 + - type: Fixtures + fixtures: {} - uid: 18706 components: - type: MetaData @@ -11066,6 +11198,8 @@ entities: - 17994 - 18707 - 17241 + - type: Fixtures + fixtures: {} - uid: 19277 components: - type: MetaData @@ -11079,6 +11213,8 @@ entities: - 17091 - 19288 - 18053 + - type: Fixtures + fixtures: {} - uid: 19278 components: - type: MetaData @@ -11093,6 +11229,8 @@ entities: - 18843 - 18844 - 19289 + - type: Fixtures + fixtures: {} - uid: 19280 components: - type: MetaData @@ -11105,6 +11243,8 @@ entities: devices: - 19291 - 19292 + - type: Fixtures + fixtures: {} - uid: 19281 components: - type: MetaData @@ -11116,6 +11256,8 @@ entities: - type: DeviceList devices: - 10148 + - type: Fixtures + fixtures: {} - uid: 19282 components: - type: MetaData @@ -11130,6 +11272,8 @@ entities: - 18893 - 19285 - 18985 + - type: Fixtures + fixtures: {} - uid: 19284 components: - type: MetaData @@ -11141,6 +11285,8 @@ entities: devices: - 16940 - 5384 + - type: Fixtures + fixtures: {} - uid: 19286 components: - type: MetaData @@ -11159,6 +11305,8 @@ entities: - 26338 - 18957 - 18891 + - type: Fixtures + fixtures: {} - uid: 19293 components: - type: MetaData @@ -11173,6 +11321,8 @@ entities: - 19294 - 18965 - 15582 + - type: Fixtures + fixtures: {} - uid: 19297 components: - type: MetaData @@ -11184,11 +11334,15 @@ entities: - type: DeviceList devices: - 19298 + - type: Fixtures + fixtures: {} - uid: 19570 components: - type: Transform pos: -96.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19798 components: - type: MetaData @@ -11205,6 +11359,8 @@ entities: - 19713 - 19797 - 19714 + - type: Fixtures + fixtures: {} - uid: 19805 components: - type: MetaData @@ -11218,6 +11374,8 @@ entities: - 19804 - 10170 - 18879 + - type: Fixtures + fixtures: {} - uid: 19806 components: - type: MetaData @@ -11231,6 +11389,8 @@ entities: - 19792 - 19652 - 19653 + - type: Fixtures + fixtures: {} - uid: 19910 components: - type: MetaData @@ -11271,6 +11431,8 @@ entities: - 24779 - 24782 - 24783 + - type: Fixtures + fixtures: {} - uid: 20216 components: - type: MetaData @@ -11283,6 +11445,8 @@ entities: - 4332 - 19029 - 20094 + - type: Fixtures + fixtures: {} - uid: 20303 components: - type: MetaData @@ -11295,6 +11459,8 @@ entities: devices: - 275 - 20304 + - type: Fixtures + fixtures: {} - uid: 20316 components: - type: MetaData @@ -11320,6 +11486,8 @@ entities: - 17492 - 431 - 507 + - type: Fixtures + fixtures: {} - uid: 20318 components: - type: MetaData @@ -11332,6 +11500,8 @@ entities: - 20373 - 20374 - 20375 + - type: Fixtures + fixtures: {} - uid: 20367 components: - type: MetaData @@ -11345,6 +11515,8 @@ entities: - 20120 - 20119 - 20377 + - type: Fixtures + fixtures: {} - uid: 20372 components: - type: MetaData @@ -11360,6 +11532,8 @@ entities: - 14633 - 7825 - 20079 + - type: Fixtures + fixtures: {} - uid: 20948 components: - type: MetaData @@ -11378,6 +11552,8 @@ entities: - 24050 - 24048 - 24049 + - type: Fixtures + fixtures: {} - uid: 21036 components: - type: MetaData @@ -11390,6 +11566,8 @@ entities: - 15048 - 19791 - 14840 + - type: Fixtures + fixtures: {} - uid: 21473 components: - type: MetaData @@ -11403,6 +11581,8 @@ entities: - 20074 - 20104 - 20472 + - type: Fixtures + fixtures: {} - uid: 21674 components: - type: MetaData @@ -11415,6 +11595,8 @@ entities: - 7039 - 22285 - 24230 + - type: Fixtures + fixtures: {} - uid: 22168 components: - type: MetaData @@ -11433,6 +11615,8 @@ entities: - 24680 - 24681 - 24693 + - type: Fixtures + fixtures: {} - uid: 23400 components: - type: MetaData @@ -11445,6 +11629,8 @@ entities: devices: - 19571 - 19790 + - type: Fixtures + fixtures: {} - uid: 23457 components: - type: MetaData @@ -11458,6 +11644,8 @@ entities: - 788 - 23519 - 20779 + - type: Fixtures + fixtures: {} - uid: 23681 components: - type: MetaData @@ -11487,6 +11675,8 @@ entities: - 14628 - 16293 - 15676 + - type: Fixtures + fixtures: {} - uid: 23983 components: - type: MetaData @@ -11497,6 +11687,8 @@ entities: - type: DeviceList devices: - 23984 + - type: Fixtures + fixtures: {} - uid: 24026 components: - type: MetaData @@ -11513,6 +11705,8 @@ entities: - 14937 - 14938 - 14936 + - type: Fixtures + fixtures: {} - uid: 24037 components: - type: MetaData @@ -11525,6 +11719,8 @@ entities: devices: - 25633 - 25632 + - type: Fixtures + fixtures: {} - uid: 24043 components: - type: MetaData @@ -11538,6 +11734,8 @@ entities: - 12329 - 8663 - 24044 + - type: Fixtures + fixtures: {} - uid: 24108 components: - type: MetaData @@ -11557,6 +11755,8 @@ entities: - 24164 - 24162 - 24867 + - type: Fixtures + fixtures: {} - uid: 24232 components: - type: MetaData @@ -11572,6 +11772,8 @@ entities: - 18613 - 24515 - 24509 + - type: Fixtures + fixtures: {} - uid: 24742 components: - type: MetaData @@ -11588,6 +11790,8 @@ entities: - 24130 - 15021 - 9250 + - type: Fixtures + fixtures: {} - uid: 25258 components: - type: MetaData @@ -11605,6 +11809,8 @@ entities: - 25256 - 25150 - 25248 + - type: Fixtures + fixtures: {} - uid: 25270 components: - type: MetaData @@ -11616,6 +11822,8 @@ entities: devices: - 24899 - 25192 + - type: Fixtures + fixtures: {} - uid: 25280 components: - type: MetaData @@ -11628,6 +11836,8 @@ entities: - 25190 - 25265 - 25177 + - type: Fixtures + fixtures: {} - uid: 25402 components: - type: MetaData @@ -11636,6 +11846,8 @@ entities: rot: -1.5707963267948966 rad pos: -111.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25644 components: - type: MetaData @@ -11648,6 +11860,8 @@ entities: - 12271 - 15039 - 10133 + - type: Fixtures + fixtures: {} - uid: 25886 components: - type: MetaData @@ -11664,6 +11878,8 @@ entities: - 20361 - 20362 - 20203 + - type: Fixtures + fixtures: {} - uid: 25887 components: - type: MetaData @@ -11680,6 +11896,8 @@ entities: - 19726 - 24558 - 19789 + - type: Fixtures + fixtures: {} - uid: 26179 components: - type: MetaData @@ -11693,6 +11911,8 @@ entities: - 13210 - 13021 - 11803 + - type: Fixtures + fixtures: {} - proto: AirCanister entities: - uid: 1236 @@ -14467,7 +14687,7 @@ entities: pos: -131.5,-45.5 parent: 2 - type: Door - secondsUntilStateChange: -52604.145 + secondsUntilStateChange: -52623.953 state: Opening - type: DeviceLinkSource lastSignals: @@ -15798,6 +16018,8 @@ entities: - type: Transform pos: -44.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 381 components: - type: MetaData @@ -15806,6 +16028,8 @@ entities: rot: -1.5707963267948966 rad pos: -116.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1957 components: - type: MetaData @@ -15813,6 +16037,8 @@ entities: - type: Transform pos: -122.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2083 components: - type: MetaData @@ -15820,6 +16046,8 @@ entities: - type: Transform pos: -108.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3069 components: - type: MetaData @@ -15828,6 +16056,8 @@ entities: rot: 3.141592653589793 rad pos: -52.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3126 components: - type: MetaData @@ -15836,6 +16066,8 @@ entities: rot: -1.5707963267948966 rad pos: -65.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3136 components: - type: MetaData @@ -15844,6 +16076,8 @@ entities: rot: 1.5707963267948966 rad pos: -54.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3322 components: - type: MetaData @@ -15852,6 +16086,8 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3395 components: - type: MetaData @@ -15860,6 +16096,8 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3719 components: - type: MetaData @@ -15868,12 +16106,16 @@ entities: rot: 1.5707963267948966 rad pos: -70.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3812 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4211 components: - type: MetaData @@ -15881,6 +16123,8 @@ entities: - type: Transform pos: -20.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4216 components: - type: MetaData @@ -15889,6 +16133,8 @@ entities: rot: 3.141592653589793 rad pos: -38.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4225 components: - type: MetaData @@ -15897,11 +16143,15 @@ entities: rot: -1.5707963267948966 rad pos: -135.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4341 components: - type: Transform pos: -56.5,-76.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4387 components: - type: MetaData @@ -15910,6 +16160,8 @@ entities: rot: 3.141592653589793 rad pos: -96.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4410 components: - type: MetaData @@ -15918,11 +16170,15 @@ entities: rot: 3.141592653589793 rad pos: -84.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4419 components: - type: Transform pos: -43.5,-72.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4990 components: - type: MetaData @@ -15931,6 +16187,8 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5159 components: - type: MetaData @@ -15939,6 +16197,8 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5836 components: - type: MetaData @@ -15947,6 +16207,8 @@ entities: rot: -1.5707963267948966 rad pos: -135.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6228 components: - type: MetaData @@ -15954,11 +16216,15 @@ entities: - type: Transform pos: -125.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6662 components: - type: Transform pos: -97.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7226 components: - type: MetaData @@ -15966,6 +16232,8 @@ entities: - type: Transform pos: -14.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7956 components: - type: MetaData @@ -15974,6 +16242,8 @@ entities: rot: 3.141592653589793 rad pos: -134.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8020 components: - type: MetaData @@ -15982,6 +16252,8 @@ entities: rot: 3.141592653589793 rad pos: -127.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8021 components: - type: MetaData @@ -15990,6 +16262,8 @@ entities: rot: 3.141592653589793 rad pos: -117.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8023 components: - type: MetaData @@ -15998,6 +16272,8 @@ entities: rot: 3.141592653589793 rad pos: -129.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8027 components: - type: MetaData @@ -16006,6 +16282,8 @@ entities: rot: 1.5707963267948966 rad pos: -123.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8310 components: - type: MetaData @@ -16014,6 +16292,8 @@ entities: rot: 3.141592653589793 rad pos: -10.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8342 components: - type: MetaData @@ -16022,6 +16302,8 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8354 components: - type: MetaData @@ -16030,6 +16312,8 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8931 components: - type: MetaData @@ -16038,6 +16322,8 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8933 components: - type: MetaData @@ -16045,6 +16331,8 @@ entities: - type: Transform pos: -41.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9076 components: - type: MetaData @@ -16052,6 +16340,8 @@ entities: - type: Transform pos: -31.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9157 components: - type: MetaData @@ -16060,6 +16350,8 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9357 components: - type: MetaData @@ -16067,6 +16359,8 @@ entities: - type: Transform pos: -26.5,-61.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9638 components: - type: MetaData @@ -16075,6 +16369,8 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,-65.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9833 components: - type: MetaData @@ -16083,6 +16379,8 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10543 components: - type: MetaData @@ -16091,6 +16389,8 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11326 components: - type: MetaData @@ -16098,6 +16398,8 @@ entities: - type: Transform pos: -23.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13009 components: - type: MetaData @@ -16106,6 +16408,8 @@ entities: rot: 3.141592653589793 rad pos: -40.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13016 components: - type: MetaData @@ -16114,6 +16418,8 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13591 components: - type: MetaData @@ -16121,6 +16427,8 @@ entities: - type: Transform pos: -88.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13608 components: - type: MetaData @@ -16129,6 +16437,8 @@ entities: rot: 3.141592653589793 rad pos: -134.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13720 components: - type: MetaData @@ -16136,6 +16446,8 @@ entities: - type: Transform pos: -140.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13742 components: - type: MetaData @@ -16144,6 +16456,8 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14167 components: - type: MetaData @@ -16152,6 +16466,8 @@ entities: rot: 1.5707963267948966 rad pos: -123.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14237 components: - type: MetaData @@ -16160,6 +16476,8 @@ entities: rot: 3.141592653589793 rad pos: -17.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14281 components: - type: MetaData @@ -16168,6 +16486,8 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14753 components: - type: MetaData @@ -16176,6 +16496,8 @@ entities: rot: -1.5707963267948966 rad pos: -72.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15262 components: - type: MetaData @@ -16184,6 +16506,8 @@ entities: rot: 1.5707963267948966 rad pos: -73.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15429 components: - type: MetaData @@ -16192,6 +16516,8 @@ entities: rot: 3.141592653589793 rad pos: -55.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16220 components: - type: MetaData @@ -16199,6 +16525,8 @@ entities: - type: Transform pos: -99.5,23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16994 components: - type: MetaData @@ -16207,6 +16535,8 @@ entities: rot: -1.5707963267948966 rad pos: -96.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18201 components: - type: MetaData @@ -16215,6 +16545,8 @@ entities: rot: -1.5707963267948966 rad pos: -85.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18385 components: - type: MetaData @@ -16222,6 +16554,8 @@ entities: - type: Transform pos: -110.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18403 components: - type: MetaData @@ -16230,6 +16564,8 @@ entities: rot: 3.141592653589793 rad pos: -85.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18405 components: - type: MetaData @@ -16238,6 +16574,8 @@ entities: rot: -1.5707963267948966 rad pos: -79.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18406 components: - type: MetaData @@ -16246,17 +16584,23 @@ entities: rot: -1.5707963267948966 rad pos: -89.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18418 components: - type: Transform pos: -93.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18422 components: - type: Transform rot: -1.5707963267948966 rad pos: -97.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18990 components: - type: MetaData @@ -16265,6 +16609,8 @@ entities: rot: 1.5707963267948966 rad pos: -117.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19026 components: - type: MetaData @@ -16272,6 +16618,8 @@ entities: - type: Transform pos: -122.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19028 components: - type: MetaData @@ -16280,6 +16628,8 @@ entities: rot: 1.5707963267948966 rad pos: -117.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19053 components: - type: MetaData @@ -16288,6 +16638,8 @@ entities: rot: -1.5707963267948966 rad pos: -122.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19075 components: - type: MetaData @@ -16296,6 +16648,8 @@ entities: rot: 3.141592653589793 rad pos: -121.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19156 components: - type: MetaData @@ -16303,6 +16657,8 @@ entities: - type: Transform pos: -136.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19157 components: - type: MetaData @@ -16311,6 +16667,8 @@ entities: rot: 3.141592653589793 rad pos: -140.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19764 components: - type: MetaData @@ -16319,6 +16677,8 @@ entities: rot: 3.141592653589793 rad pos: -88.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19812 components: - type: MetaData @@ -16327,6 +16687,8 @@ entities: rot: -1.5707963267948966 rad pos: -86.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19814 components: - type: MetaData @@ -16335,6 +16697,8 @@ entities: rot: -1.5707963267948966 rad pos: -97.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19815 components: - type: MetaData @@ -16343,6 +16707,8 @@ entities: rot: 3.141592653589793 rad pos: -86.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20011 components: - type: MetaData @@ -16350,6 +16716,8 @@ entities: - type: Transform pos: -92.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20851 components: - type: MetaData @@ -16357,6 +16725,8 @@ entities: - type: Transform pos: -35.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21872 components: - type: MetaData @@ -16365,6 +16735,8 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22123 components: - type: MetaData @@ -16373,6 +16745,8 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22712 components: - type: MetaData @@ -16381,6 +16755,8 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23178 components: - type: MetaData @@ -16389,11 +16765,15 @@ entities: rot: 3.141592653589793 rad pos: -94.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23212 components: - type: Transform pos: -98.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23671 components: - type: MetaData @@ -16401,6 +16781,8 @@ entities: - type: Transform pos: -57.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24078 components: - type: MetaData @@ -16408,6 +16790,8 @@ entities: - type: Transform pos: -17.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25110 components: - type: MetaData @@ -16416,6 +16800,8 @@ entities: rot: 3.141592653589793 rad pos: -120.5,-88.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25136 components: - type: MetaData @@ -16423,6 +16809,8 @@ entities: - type: Transform pos: -119.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25880 components: - type: MetaData @@ -16431,6 +16819,8 @@ entities: rot: 3.141592653589793 rad pos: -137.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25910 components: - type: MetaData @@ -16438,6 +16828,8 @@ entities: - type: Transform pos: -117.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25949 components: - type: MetaData @@ -16446,6 +16838,8 @@ entities: rot: -1.5707963267948966 rad pos: -73.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26346 components: - type: MetaData @@ -16454,6 +16848,8 @@ entities: rot: 3.141592653589793 rad pos: -117.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: APCHighCapacity entities: - uid: 2133 @@ -16464,6 +16860,8 @@ entities: rot: 3.141592653589793 rad pos: -64.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: APCHyperCapacity entities: - uid: 3246 @@ -16474,6 +16872,8 @@ entities: rot: -1.5707963267948966 rad pos: -70.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: AppraisalTool entities: - uid: 23940 @@ -16489,12 +16889,16 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26177 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ArtifactFragment1 entities: - uid: 5997 @@ -24161,6 +24565,8 @@ entities: - type: Transform pos: -70.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BarSignEngineChange entities: - uid: 8776 @@ -24168,6 +24574,8 @@ entities: - type: Transform pos: -10.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BarSignRobustaCafe entities: - uid: 15680 @@ -24175,11 +24583,15 @@ entities: - type: Transform pos: -64.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22381 components: - type: Transform pos: -20.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BaseBallBat entities: - uid: 9740 @@ -25419,6 +25831,8 @@ entities: - type: Transform pos: -56.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BoxLatexGloves entities: - uid: 4183 @@ -25528,6 +25942,8 @@ entities: - AutoClose - - Start - Close + - type: Fixtures + fixtures: {} - uid: 14643 components: - type: Transform @@ -25543,6 +25959,8 @@ entities: - AutoClose - - Start - Close + - type: Fixtures + fixtures: {} - proto: Brutepack entities: - uid: 20642 @@ -64328,6 +64746,8 @@ entities: - type: Transform pos: -19.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: CleanerGrenade entities: - uid: 3324 @@ -68329,35 +68749,47 @@ entities: - type: Transform pos: -36.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4027 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4028 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4078 components: - type: Transform pos: -21.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4079 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13768 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: DeployableBarrier entities: - uid: 873 @@ -77628,64 +78060,86 @@ entities: - type: Transform pos: -107.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19505 components: - type: Transform rot: -1.5707963267948966 rad pos: -114.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24306 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24307 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24308 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24310 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24311 components: - type: Transform pos: -110.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24313 components: - type: Transform pos: -132.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24315 components: - type: Transform rot: 1.5707963267948966 rad pos: -123.5,-53.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24316 components: - type: Transform rot: -1.5707963267948966 rad pos: -111.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24317 components: - type: Transform rot: -1.5707963267948966 rad pos: -111.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ExtinguisherCabinetFilled entities: - uid: 3936 @@ -77693,47 +78147,63 @@ entities: - type: Transform pos: -36.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11237 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11238 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15346 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20952 components: - type: Transform pos: -116.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23939 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24321 components: - type: Transform rot: -1.5707963267948966 rad pos: -135.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24354 components: - type: Transform rot: -1.5707963267948966 rad pos: -135.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FaxMachineBase entities: - uid: 3 @@ -77807,7 +78277,7 @@ entities: pos: -51.5,-7.5 parent: 2 - type: FaxMachine - name: Head of Personell + name: Head of Personnel - uid: 17656 components: - type: Transform @@ -78087,6 +78557,8 @@ entities: devices: - 1208 - 1122 + - type: Fixtures + fixtures: {} - uid: 1814 components: - type: Transform @@ -78106,6 +78578,8 @@ entities: - 14360 - 11805 - 24025 + - type: Fixtures + fixtures: {} - uid: 3288 components: - type: MetaData @@ -78137,6 +78611,8 @@ entities: - 2980 - 2987 - 6938 + - type: Fixtures + fixtures: {} - uid: 8155 components: - type: MetaData @@ -78150,6 +78626,8 @@ entities: - 5739 - 6601 - 8333 + - type: Fixtures + fixtures: {} - uid: 9164 components: - type: MetaData @@ -78166,6 +78644,8 @@ entities: - 14590 - 13444 - 13445 + - type: Fixtures + fixtures: {} - uid: 12768 components: - type: Transform @@ -78204,6 +78684,8 @@ entities: - 24779 - 24782 - 24783 + - type: Fixtures + fixtures: {} - uid: 12769 components: - type: Transform @@ -78232,6 +78714,8 @@ entities: - 23680 - 15676 - 23679 + - type: Fixtures + fixtures: {} - uid: 13490 components: - type: MetaData @@ -78243,6 +78727,8 @@ entities: - type: DeviceList devices: - 19610 + - type: Fixtures + fixtures: {} - uid: 13492 components: - type: MetaData @@ -78255,6 +78741,8 @@ entities: - 8955 - 13485 - 19610 + - type: Fixtures + fixtures: {} - uid: 13736 components: - type: Transform @@ -78266,6 +78754,8 @@ entities: - 13788 - 13847 - 17422 + - type: Fixtures + fixtures: {} - uid: 14953 components: - type: MetaData @@ -78285,6 +78775,8 @@ entities: - 14948 - 14354 - 13438 + - type: Fixtures + fixtures: {} - uid: 14954 components: - type: MetaData @@ -78302,6 +78794,8 @@ entities: - 19471 - 14948 - 14354 + - type: Fixtures + fixtures: {} - uid: 15026 components: - type: Transform @@ -78320,6 +78814,8 @@ entities: - 11108 - 9134 - 15358 + - type: Fixtures + fixtures: {} - uid: 15347 components: - type: MetaData @@ -78337,6 +78833,8 @@ entities: - 11816 - 23126 - 11802 + - type: Fixtures + fixtures: {} - uid: 16688 components: - type: Transform @@ -78358,6 +78856,8 @@ entities: - 14597 - 24130 - 24743 + - type: Fixtures + fixtures: {} - uid: 17419 components: - type: Transform @@ -78369,6 +78869,8 @@ entities: - 11936 - 17427 - 17432 + - type: Fixtures + fixtures: {} - uid: 17420 components: - type: Transform @@ -78383,6 +78885,8 @@ entities: - 17436 - 14618 - 20370 + - type: Fixtures + fixtures: {} - uid: 17833 components: - type: Transform @@ -78407,6 +78911,8 @@ entities: - 25593 - 20380 - 20371 + - type: Fixtures + fixtures: {} - uid: 17850 components: - type: Transform @@ -78425,6 +78931,8 @@ entities: - 25643 - 25642 - 15354 + - type: Fixtures + fixtures: {} - uid: 18317 components: - type: MetaData @@ -78438,6 +78946,8 @@ entities: - 25564 - 25565 - 14590 + - type: Fixtures + fixtures: {} - uid: 18819 components: - type: MetaData @@ -78446,6 +78956,8 @@ entities: rot: -1.5707963267948966 rad pos: -142.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19506 components: - type: MetaData @@ -78460,6 +78972,8 @@ entities: - 25565 - 25564 - 19517 + - type: Fixtures + fixtures: {} - uid: 19526 components: - type: MetaData @@ -78478,6 +78992,8 @@ entities: - 13447 - 13445 - 13444 + - type: Fixtures + fixtures: {} - uid: 19747 components: - type: Transform @@ -78492,6 +79008,8 @@ entities: - 9135 - 25638 - 24046 + - type: Fixtures + fixtures: {} - uid: 22327 components: - type: MetaData @@ -78508,6 +79026,8 @@ entities: - 2984 - 2983 - 6939 + - type: Fixtures + fixtures: {} - uid: 23991 components: - type: MetaData @@ -78522,6 +79042,8 @@ entities: - 11230 - 11231 - 14980 + - type: Fixtures + fixtures: {} - uid: 24300 components: - type: Transform @@ -78555,6 +79077,8 @@ entities: - 16404 - 23865 - 15365 + - type: Fixtures + fixtures: {} - uid: 24309 components: - type: Transform @@ -78569,6 +79093,8 @@ entities: - 22802 - 22797 - 15417 + - type: Fixtures + fixtures: {} - uid: 24312 components: - type: Transform @@ -78582,6 +79108,8 @@ entities: - 14162 - 11743 - 25584 + - type: Fixtures + fixtures: {} - uid: 24784 components: - type: Transform @@ -78598,6 +79126,8 @@ entities: - 23895 - 7808 - 7345 + - type: Fixtures + fixtures: {} - uid: 24785 components: - type: Transform @@ -78610,6 +79140,8 @@ entities: - 14877 - 11265 - 22171 + - type: Fixtures + fixtures: {} - uid: 25562 components: - type: MetaData @@ -78621,6 +79153,8 @@ entities: devices: - 25563 - 19520 + - type: Fixtures + fixtures: {} - uid: 25598 components: - type: Transform @@ -78631,6 +79165,8 @@ entities: devices: - 25597 - 8935 + - type: Fixtures + fixtures: {} - uid: 25599 components: - type: Transform @@ -78640,6 +79176,8 @@ entities: - type: DeviceList devices: - 8955 + - type: Fixtures + fixtures: {} - uid: 25600 components: - type: Transform @@ -78649,6 +79187,8 @@ entities: devices: - 7540 - 8996 + - type: Fixtures + fixtures: {} - uid: 25603 components: - type: Transform @@ -78664,6 +79204,8 @@ entities: - 13484 - 25597 - 8935 + - type: Fixtures + fixtures: {} - uid: 25604 components: - type: Transform @@ -78680,6 +79222,8 @@ entities: - 13620 - 13618 - 13765 + - type: Fixtures + fixtures: {} - uid: 25607 components: - type: Transform @@ -78690,6 +79234,8 @@ entities: - 14596 - 13447 - 13446 + - type: Fixtures + fixtures: {} - uid: 25640 components: - type: Transform @@ -78707,6 +79253,8 @@ entities: - 8989 - 8976 - 9069 + - type: Fixtures + fixtures: {} - uid: 25641 components: - type: Transform @@ -78720,6 +79268,8 @@ entities: - 8976 - 9069 - 15039 + - type: Fixtures + fixtures: {} - uid: 25645 components: - type: Transform @@ -78733,6 +79283,8 @@ entities: - 5742 - 11105 - 15357 + - type: Fixtures + fixtures: {} - uid: 25647 components: - type: Transform @@ -78753,6 +79305,8 @@ entities: - 8778 - 8777 - 15355 + - type: Fixtures + fixtures: {} - uid: 25648 components: - type: Transform @@ -78765,6 +79319,8 @@ entities: - 5843 - 5827 - 15360 + - type: Fixtures + fixtures: {} - uid: 25649 components: - type: Transform @@ -78783,6 +79339,8 @@ entities: - 19613 - 14947 - 25653 + - type: Fixtures + fixtures: {} - uid: 26109 components: - type: Transform @@ -78803,6 +79361,8 @@ entities: - 25635 - 25634 - 15353 + - type: Fixtures + fixtures: {} - uid: 26263 components: - type: Transform @@ -78820,6 +79380,8 @@ entities: - 18609 - 26276 - 18829 + - type: Fixtures + fixtures: {} - uid: 26264 components: - type: Transform @@ -78830,6 +79392,8 @@ entities: devices: - 7039 - 26266 + - type: Fixtures + fixtures: {} - uid: 26265 components: - type: Transform @@ -78847,6 +79411,8 @@ entities: - 16009 - 16948 - 16010 + - type: Fixtures + fixtures: {} - proto: FireAxeCabinetFilled entities: - uid: 7884 @@ -78855,11 +79421,15 @@ entities: rot: 3.141592653589793 rad pos: -62.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25990 components: - type: Transform pos: -117.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FireExtinguisher entities: - uid: 9441 @@ -83253,7 +83823,7 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-26.5 parent: 2 -- proto: FoodDonutJellySlugcat +- proto: FoodDonutJellyScurret entities: - uid: 18408 components: @@ -83403,6 +83973,8 @@ entities: rot: 3.141592653589793 rad pos: -112.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: GameMasterCircuitBoard entities: - uid: 24943 @@ -126031,42 +126603,56 @@ entities: rot: 3.141592653589793 rad pos: -61.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23352 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23353 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23354 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25394 components: - type: Transform rot: 1.5707963267948966 rad pos: -121.5,-83.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25395 components: - type: Transform rot: 3.141592653589793 rad pos: -120.5,-84.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25396 components: - type: Transform rot: -1.5707963267948966 rad pos: -119.5,-83.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomCommand entities: - uid: 23355 @@ -126075,6 +126661,8 @@ entities: rot: 1.5707963267948966 rad pos: -65.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomCommon entities: - uid: 1224 @@ -126083,34 +126671,46 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16529 components: - type: Transform pos: -62.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16654 components: - type: Transform rot: -1.5707963267948966 rad pos: -81.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23357 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25844 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25925 components: - type: Transform pos: -101.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomEngineering entities: - uid: 4699 @@ -126119,41 +126719,55 @@ entities: rot: 1.5707963267948966 rad pos: -124.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16928 components: - type: Transform rot: 3.141592653589793 rad pos: -112.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23030 components: - type: Transform rot: 3.141592653589793 rad pos: -122.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23342 components: - type: Transform pos: -123.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23343 components: - type: Transform rot: 3.141592653589793 rad pos: -140.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23344 components: - type: Transform rot: -1.5707963267948966 rad pos: -112.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25611 components: - type: Transform rot: 1.5707963267948966 rad pos: -132.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomMedical entities: - uid: 13759 @@ -126162,41 +126776,55 @@ entities: rot: 3.141592653589793 rad pos: -36.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13761 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17025 components: - type: Transform pos: -31.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17745 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25845 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25846 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25847 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomScience entities: - uid: 12734 @@ -126204,12 +126832,16 @@ entities: - type: Transform pos: -122.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25843 components: - type: Transform rot: -1.5707963267948966 rad pos: -132.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSecurity entities: - uid: 2170 @@ -126218,33 +126850,45 @@ entities: rot: -1.5707963267948966 rad pos: -85.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18421 components: - type: Transform pos: -98.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22319 components: - type: Transform rot: 3.141592653589793 rad pos: -97.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23345 components: - type: Transform pos: -91.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23349 components: - type: Transform rot: -1.5707963267948966 rad pos: -81.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26280 components: - type: Transform pos: -93.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomService entities: - uid: 22320 @@ -126253,12 +126897,16 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25652 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSupply entities: - uid: 22321 @@ -126266,29 +126914,39 @@ entities: - type: Transform pos: -98.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25606 components: - type: Transform rot: 3.141592653589793 rad pos: -91.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25608 components: - type: Transform pos: -91.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25609 components: - type: Transform rot: 1.5707963267948966 rad pos: -87.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25610 components: - type: Transform rot: 3.141592653589793 rad pos: -89.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: JanitorialTrolley entities: - uid: 7826 @@ -126669,6 +127327,8 @@ entities: currentLabel: Plasma Storage Vent - type: NameModifier baseName: lockable button + - type: Fixtures + fixtures: {} - uid: 5326 components: - type: MetaData @@ -126685,6 +127345,8 @@ entities: currentLabel: Burn Chamber Vent - type: NameModifier baseName: lockable button + - type: Fixtures + fixtures: {} - proto: LockableButtonCommand entities: - uid: 11190 @@ -126698,6 +127360,8 @@ entities: 4662: - - Pressed - Trigger + - type: Fixtures + fixtures: {} - proto: LockableButtonEngineering entities: - uid: 5991 @@ -126723,6 +127387,8 @@ entities: currentLabel: EMERGENCY VENT - type: NameModifier baseName: lockable button + - type: Fixtures + fixtures: {} - uid: 6167 components: - type: MetaData @@ -126745,6 +127411,8 @@ entities: currentLabel: EMERGENCY VENT - type: NameModifier baseName: lockable button + - type: Fixtures + fixtures: {} - proto: LockableButtonMaintenance entities: - uid: 7242 @@ -126758,6 +127426,8 @@ entities: 20188: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 8824 components: - type: Transform @@ -126769,6 +127439,8 @@ entities: 8812: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - proto: LockableButtonMedical entities: - uid: 2458 @@ -126785,6 +127457,8 @@ entities: 5752: - - Pressed - Open + - type: Fixtures + fixtures: {} - uid: 2607 components: - type: MetaData @@ -126804,6 +127478,8 @@ entities: currentLabel: Front Door - type: NameModifier baseName: lockable button + - type: Fixtures + fixtures: {} - uid: 3989 components: - type: Transform @@ -126817,6 +127493,8 @@ entities: 3988: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 4192 components: - type: Transform @@ -126834,6 +127512,8 @@ entities: 4189: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonSecurity entities: - uid: 1099 @@ -126864,6 +127544,8 @@ entities: 20826: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 13487 components: - type: MetaData @@ -126893,6 +127575,8 @@ entities: currentLabel: Entrance Lockdown - type: NameModifier baseName: lockable button + - type: Fixtures + fixtures: {} - proto: LockerAtmosphericsFilled entities: - uid: 5383 @@ -128531,55 +129215,75 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3822 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3823 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4204 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4510 components: - type: Transform rot: 1.5707963267948966 rad pos: -86.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6160 components: - type: Transform pos: -111.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6161 components: - type: Transform pos: -109.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7555 components: - type: Transform pos: -130.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7556 components: - type: Transform pos: -128.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11241 components: - type: Transform pos: -43.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24671 components: - type: MetaData @@ -128589,6 +129293,8 @@ entities: rot: 3.141592653589793 rad pos: -69.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: MopBucketFull entities: - uid: 15958 @@ -128861,16 +129567,22 @@ entities: - type: Transform pos: -125.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14644 components: - type: Transform pos: -97.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22362 components: - type: Transform pos: -34.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: NTDefaultCircuitBoard entities: - uid: 24944 @@ -129900,6 +130612,8 @@ entities: - type: Transform pos: -23.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PirateHandyFlag entities: - uid: 24564 @@ -130505,6 +131219,8 @@ entities: - type: Transform pos: -50.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandClown entities: - uid: 23075 @@ -130512,6 +131228,8 @@ entities: - type: Transform pos: -115.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandEAT entities: - uid: 23058 @@ -130519,6 +131237,8 @@ entities: - type: Transform pos: -51.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandGreyTide entities: - uid: 23070 @@ -130526,6 +131246,8 @@ entities: - type: Transform pos: -24.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandLamarr entities: - uid: 7596 @@ -130533,6 +131255,8 @@ entities: - type: Transform pos: -133.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandMissingGloves entities: - uid: 23069 @@ -130542,6 +131266,8 @@ entities: - type: Transform pos: -27.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandMissingSpacepen entities: - uid: 23071 @@ -130549,6 +131275,8 @@ entities: - type: Transform pos: -41.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandNuclearDeviceInformational entities: - uid: 21061 @@ -130557,6 +131285,8 @@ entities: rot: 3.141592653589793 rad pos: -76.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandPunchShit entities: - uid: 23120 @@ -130564,6 +131294,8 @@ entities: - type: Transform pos: -48.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandTools entities: - uid: 23023 @@ -130571,6 +131303,8 @@ entities: - type: Transform pos: -113.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandWehWatches entities: - uid: 16594 @@ -130578,81 +131312,113 @@ entities: - type: Transform pos: -134.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16595 components: - type: Transform pos: -134.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16602 components: - type: Transform pos: -133.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16603 components: - type: Transform pos: -132.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17090 components: - type: Transform pos: -131.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22414 components: - type: Transform pos: -134.5,27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22415 components: - type: Transform pos: -134.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22416 components: - type: Transform pos: -134.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22417 components: - type: Transform pos: -133.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22418 components: - type: Transform pos: -131.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22419 components: - type: Transform pos: -130.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22420 components: - type: Transform pos: -132.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22422 components: - type: Transform pos: -130.5,27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22423 components: - type: Transform pos: -130.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22424 components: - type: Transform pos: -130.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22425 components: - type: Transform pos: -130.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegit12Gauge entities: - uid: 26354 @@ -130661,6 +131427,8 @@ entities: rot: -1.5707963267948966 rad pos: -83.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitAnatomyPoster entities: - uid: 12565 @@ -130668,6 +131436,8 @@ entities: - type: Transform pos: -34.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitBlessThisSpess entities: - uid: 25465 @@ -130676,6 +131446,8 @@ entities: rot: 3.141592653589793 rad pos: -63.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitCarpMount entities: - uid: 74 @@ -130683,6 +131455,8 @@ entities: - type: Transform pos: -48.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitDickGumshue entities: - uid: 18364 @@ -130690,6 +131464,8 @@ entities: - type: Transform pos: -96.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitIan entities: - uid: 23057 @@ -130697,6 +131473,8 @@ entities: - type: Transform pos: -47.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitJustAWeekAway entities: - uid: 2468 @@ -130704,6 +131482,8 @@ entities: - type: Transform pos: -20.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitNanotrasenLogo entities: - uid: 19620 @@ -130711,16 +131491,22 @@ entities: - type: Transform pos: -95.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23059 components: - type: Transform pos: -63.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23060 components: - type: Transform pos: -59.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitNoERP entities: - uid: 14841 @@ -130729,16 +131515,22 @@ entities: rot: 1.5707963267948966 rad pos: -80.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21550 components: - type: Transform pos: -59.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23201 components: - type: Transform pos: -35.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitObey entities: - uid: 10374 @@ -130747,6 +131539,8 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitPeriodicTable entities: - uid: 2486 @@ -130754,6 +131548,8 @@ entities: - type: Transform pos: -41.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitRenault entities: - uid: 23061 @@ -130761,6 +131557,8 @@ entities: - type: Transform pos: -53.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothDelam entities: - uid: 23029 @@ -130768,6 +131566,8 @@ entities: - type: Transform pos: -116.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothEpi entities: - uid: 25639 @@ -130776,6 +131576,8 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothHardhat entities: - uid: 23062 @@ -130783,6 +131585,8 @@ entities: - type: Transform pos: -117.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothMeth entities: - uid: 4270 @@ -130790,6 +131594,8 @@ entities: - type: Transform pos: -35.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothPiping entities: - uid: 16908 @@ -130797,6 +131603,8 @@ entities: - type: Transform pos: -142.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyReport entities: - uid: 23068 @@ -130804,6 +131612,8 @@ entities: - type: Transform pos: -89.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSecWatch entities: - uid: 18598 @@ -130811,11 +131621,15 @@ entities: - type: Transform pos: -91.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23065 components: - type: Transform pos: -98.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSpaceCops entities: - uid: 23067 @@ -130823,6 +131637,8 @@ entities: - type: Transform pos: -85.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitWorkForAFuture entities: - uid: 22504 @@ -130830,6 +131646,8 @@ entities: - type: Transform pos: -93.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PottedPlant27 entities: - uid: 5611 @@ -138068,103 +138886,143 @@ entities: rot: 3.141592653589793 rad pos: -59.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20938 components: - type: Transform pos: -36.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23792 components: - type: Transform pos: -111.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23795 components: - type: Transform pos: -122.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23819 components: - type: Transform pos: -67.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23859 components: - type: Transform pos: -67.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23861 components: - type: Transform pos: -55.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24511 components: - type: Transform pos: -65.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24512 components: - type: Transform pos: -57.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24513 components: - type: Transform pos: -48.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24514 components: - type: Transform pos: -22.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24516 components: - type: Transform pos: -34.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24517 components: - type: Transform pos: -5.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24518 components: - type: Transform pos: -9.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24519 components: - type: Transform pos: -61.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24520 components: - type: Transform pos: -106.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24521 components: - type: Transform pos: -103.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24522 components: - type: Transform pos: -58.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25466 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25467 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Screwdriver entities: - uid: 6280 @@ -138434,6 +139292,8 @@ entities: rot: -1.5707963267948966 rad pos: -66.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ShelfWood entities: - uid: 2907 @@ -138441,6 +139301,8 @@ entities: - type: Transform pos: -46.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ShellTranquilizer entities: - uid: 11626 @@ -138479,6 +139341,8 @@ entities: - type: Transform pos: -88.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ShotGunCabinetOpen entities: - uid: 23750 @@ -138487,6 +139351,8 @@ entities: rot: 3.141592653589793 rad pos: -24.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Shovel entities: - uid: 22014 @@ -139168,12 +140034,16 @@ entities: - type: Transform pos: -119.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25372 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAiUpload entities: - uid: 25373 @@ -139182,6 +140052,8 @@ entities: rot: 1.5707963267948966 rad pos: -118.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignalButton entities: - uid: 5657 @@ -139203,6 +140075,8 @@ entities: currentLabel: Burn Chamber Vent - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 5989 components: - type: MetaData @@ -139220,6 +140094,8 @@ entities: currentLabel: Vent Chamber - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 13140 components: - type: Transform @@ -139233,6 +140109,8 @@ entities: 13042: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 13435 components: - type: MetaData @@ -139249,6 +140127,8 @@ entities: 1763: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17823 components: - type: MetaData @@ -139269,6 +140149,8 @@ entities: currentLabel: Open Doors - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 20897 components: - type: MetaData @@ -139291,6 +140173,8 @@ entities: 20831: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: SignalButtonDirectional entities: - uid: 1481 @@ -139304,6 +140188,8 @@ entities: 3776: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 1521 components: - type: Transform @@ -139315,6 +140201,8 @@ entities: 3779: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 2591 components: - type: MetaData @@ -139331,6 +140219,8 @@ entities: currentLabel: Space Blast Doors - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 3619 components: - type: Transform @@ -139342,6 +140232,8 @@ entities: 3780: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 3810 components: - type: Transform @@ -139352,6 +140244,8 @@ entities: 3771: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 3811 components: - type: Transform @@ -139362,6 +140256,8 @@ entities: 3772: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 4222 components: - type: Transform @@ -139373,6 +140269,8 @@ entities: 4096: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 6068 components: - type: MetaData @@ -139389,6 +140287,8 @@ entities: currentLabel: Ignite Chamber - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 6069 components: - type: MetaData @@ -139405,6 +140305,8 @@ entities: currentLabel: Vent Chamber - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 6163 components: - type: Transform @@ -139416,6 +140318,8 @@ entities: 6157: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 6164 components: - type: Transform @@ -139427,6 +140331,8 @@ entities: 6156: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 6168 components: - type: MetaData @@ -139443,6 +140349,8 @@ entities: currentLabel: Vent Chamber - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 6169 components: - type: MetaData @@ -139459,6 +140367,8 @@ entities: currentLabel: Ignite Chamber - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 10638 components: - type: Transform @@ -139470,6 +140380,8 @@ entities: 4662: - - Pressed - Trigger + - type: Fixtures + fixtures: {} - uid: 19541 components: - type: MetaData @@ -139487,6 +140399,8 @@ entities: currentLabel: Dock Blast Doors - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 19560 components: - type: MetaData @@ -139504,6 +140418,8 @@ entities: currentLabel: Dock Blast Doors - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 19735 components: - type: MetaData @@ -139521,6 +140437,8 @@ entities: currentLabel: Salvage Blast Doors - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 19741 components: - type: MetaData @@ -139538,6 +140456,8 @@ entities: currentLabel: Disposals Blast Doors - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 21465 components: - type: MetaData @@ -139555,6 +140475,8 @@ entities: currentLabel: Disposals Blast Doors - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 22347 components: - type: MetaData @@ -139571,6 +140493,8 @@ entities: currentLabel: Space Blast Doors - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 24029 components: - type: Transform @@ -139582,6 +140506,8 @@ entities: 14940: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 25417 components: - type: Transform @@ -139593,6 +140519,8 @@ entities: 12466: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 25418 components: - type: Transform @@ -139604,6 +140532,8 @@ entities: 12043: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - proto: SignalSwitch entities: - uid: 1217 @@ -139629,6 +140559,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 1220 components: - type: Transform @@ -139652,6 +140584,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 2791 components: - type: MetaData @@ -139694,6 +140628,8 @@ entities: currentLabel: Bridge Entrance Blastdoors - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 2792 components: - type: MetaData @@ -139797,6 +140733,8 @@ entities: currentLabel: Bridge Window Blastdoors - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 2965 components: - type: MetaData @@ -139824,6 +140762,8 @@ entities: currentLabel: Line Shutters - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 2999 components: - type: MetaData @@ -139872,6 +140812,8 @@ entities: currentLabel: Window Shutters - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 4618 components: - type: Transform @@ -139884,6 +140826,8 @@ entities: - On - - Off - Off + - type: Fixtures + fixtures: {} - uid: 7079 components: - type: Transform @@ -139897,6 +140841,8 @@ entities: - On - - Off - Off + - type: Fixtures + fixtures: {} - uid: 7335 components: - type: MetaData @@ -139921,6 +140867,8 @@ entities: currentLabel: Warehouse Shutters - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 8624 components: - type: Transform @@ -139948,6 +140896,8 @@ entities: - Close lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 11613 components: - type: Transform @@ -139974,6 +140924,8 @@ entities: - Close lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 11614 components: - type: Transform @@ -140001,6 +140953,8 @@ entities: - Close lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 17822 components: - type: MetaData @@ -140034,6 +140988,8 @@ entities: currentLabel: Desk Shutters - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 22376 components: - type: Transform @@ -140057,6 +141013,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 25663 components: - type: MetaData @@ -140076,6 +141034,8 @@ entities: currentLabel: Janitor Light - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - proto: SignalSwitchDirectional entities: - uid: 280 @@ -140101,6 +141061,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 3053 components: - type: Transform @@ -140133,6 +141095,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 3834 components: - type: Transform @@ -140165,6 +141129,8 @@ entities: - Close lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 3974 components: - type: MetaData @@ -140199,6 +141165,8 @@ entities: currentLabel: Paramedic Shutters - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 3996 components: - type: Transform @@ -140226,6 +141194,8 @@ entities: - Close lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 8067 components: - type: Transform @@ -140248,6 +141218,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 8073 components: - type: Transform @@ -140271,6 +141243,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 8662 components: - type: MetaData @@ -140299,6 +141273,8 @@ entities: currentLabel: Shutters - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 8823 components: - type: Transform @@ -140321,6 +141297,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 12308 components: - type: MetaData @@ -140337,6 +141315,8 @@ entities: currentLabel: Door Bolt - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 16924 components: - type: Transform @@ -140365,6 +141345,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 17488 components: - type: Transform @@ -140387,6 +141369,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 19538 components: - type: MetaData @@ -140441,6 +141425,8 @@ entities: currentLabel: Privacy Shutters - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 24320 components: - type: MetaData @@ -140474,6 +141460,8 @@ entities: currentLabel: Emergency Lockdown - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 24811 components: - type: Transform @@ -140496,6 +141484,8 @@ entities: - Close lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 25393 components: - type: Transform @@ -140568,6 +141558,8 @@ entities: - Close lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 25397 components: - type: Transform @@ -140594,6 +141586,8 @@ entities: - Close lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 25613 components: - type: Transform @@ -140606,6 +141600,8 @@ entities: - On - - Off - Off + - type: Fixtures + fixtures: {} - uid: 25656 components: - type: Transform @@ -140619,6 +141615,8 @@ entities: - On - - Off - Off + - type: Fixtures + fixtures: {} - uid: 25659 components: - type: Transform @@ -140631,6 +141629,8 @@ entities: - On - - Off - Off + - type: Fixtures + fixtures: {} - uid: 25661 components: - type: Transform @@ -140644,6 +141644,8 @@ entities: - On - - Off - Off + - type: Fixtures + fixtures: {} - uid: 25694 components: - type: Transform @@ -140676,6 +141678,8 @@ entities: - Close lastSignals: Status: True + - type: Fixtures + fixtures: {} - proto: SignalTimer entities: - uid: 4662 @@ -140691,6 +141695,8 @@ entities: - Open - - Timer - Close + - type: Fixtures + fixtures: {} - uid: 16763 components: - type: Transform @@ -140704,6 +141710,8 @@ entities: - Open - - Timer - Close + - type: Fixtures + fixtures: {} - proto: SignAnomaly entities: - uid: 8081 @@ -140711,6 +141719,8 @@ entities: - type: Transform pos: -137.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAnomaly2 entities: - uid: 7372 @@ -140718,6 +141728,8 @@ entities: - type: Transform pos: -131.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignArcade entities: - uid: 16484 @@ -140726,6 +141738,8 @@ entities: rot: 3.141592653589793 rad pos: -22.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignArmory entities: - uid: 15880 @@ -140734,6 +141748,8 @@ entities: rot: 1.5707963267948966 rad pos: -81.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAtmos entities: - uid: 25602 @@ -140742,6 +141758,8 @@ entities: rot: 3.141592653589793 rad pos: -117.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBar entities: - uid: 15030 @@ -140749,6 +141767,8 @@ entities: - type: Transform pos: -66.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBath entities: - uid: 16049 @@ -140756,6 +141776,8 @@ entities: - type: Transform pos: -86.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBiohazardMed entities: - uid: 2507 @@ -140763,12 +141785,16 @@ entities: - type: Transform pos: -27.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9210 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBridge entities: - uid: 19161 @@ -140776,11 +141802,15 @@ entities: - type: Transform pos: -65.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24510 components: - type: Transform pos: -57.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCans entities: - uid: 5805 @@ -140789,6 +141819,8 @@ entities: rot: 1.5707963267948966 rad pos: -114.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCargo entities: - uid: 16508 @@ -140796,6 +141828,8 @@ entities: - type: Transform pos: -97.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChapel entities: - uid: 1305 @@ -140804,6 +141838,8 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChem entities: - uid: 2494 @@ -140811,6 +141847,8 @@ entities: - type: Transform pos: -35.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCloning entities: - uid: 4199 @@ -140819,6 +141857,8 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCryo entities: - uid: 2500 @@ -140826,12 +141866,16 @@ entities: - type: Transform pos: -27.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19590 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCryogenicsMed entities: - uid: 4207 @@ -140840,6 +141884,8 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalAtmos entities: - uid: 812 @@ -140848,12 +141894,16 @@ entities: rot: -1.5707963267948966 rad pos: -106.5,-8.4 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24161 components: - type: Transform rot: -1.5707963267948966 rad pos: -97.5,17.8 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBar entities: - uid: 24507 @@ -140862,6 +141912,8 @@ entities: rot: 3.141592653589793 rad pos: -66.5,-50.4 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBridge entities: - uid: 15237 @@ -140869,18 +141921,24 @@ entities: - type: Transform pos: -100.5,-0.3 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15867 components: - type: Transform rot: 1.5707963267948966 rad pos: -99.5,-11.4 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19889 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-10.2 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalChapel entities: - uid: 15862 @@ -140888,12 +141946,16 @@ entities: - type: Transform pos: -62.5,-36.6 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24506 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-50.6 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalCryo entities: - uid: 15869 @@ -140902,17 +141964,23 @@ entities: rot: 1.5707963267948966 rad pos: -99.5,-11.2 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19904 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-50.2 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20531 components: - type: Transform pos: -65.5,-13.8 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalDorms entities: - uid: 14096 @@ -140921,11 +141989,15 @@ entities: rot: 1.5707963267948966 rad pos: -75.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24508 components: - type: Transform pos: -66.5,-50.6 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEng entities: - uid: 6564 @@ -140934,54 +142006,72 @@ entities: rot: 3.141592653589793 rad pos: -106.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14748 components: - type: Transform rot: -1.5707963267948966 rad pos: -101.5,-11.4 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15234 components: - type: Transform rot: -1.5707963267948966 rad pos: -105.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15849 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-13.2 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19897 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-10.4 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23338 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23361 components: - type: Transform rot: 3.141592653589793 rad pos: -106.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24488 components: - type: Transform rot: -1.5707963267948966 rad pos: -106.5,-8.6 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25469 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEvac entities: - uid: 9028 @@ -140990,47 +142080,63 @@ entities: rot: 3.141592653589793 rad pos: -101.5,-21.3 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15858 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-13.4 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15868 components: - type: Transform rot: 1.5707963267948966 rad pos: -99.5,-11.6 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18780 components: - type: Transform rot: 3.141592653589793 rad pos: -101.5,-36.3 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19756 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-11.7 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19901 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-10.4 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20803 components: - type: Transform pos: -100.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25470 components: - type: Transform rot: 1.5707963267948966 rad pos: -76.5,-11.7 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalFood entities: - uid: 3646 @@ -141039,23 +142145,31 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-10.6 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15856 components: - type: Transform pos: -57.5,-13.8 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19164 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-50.4 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24503 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-36.4 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalHop entities: - uid: 19721 @@ -141064,6 +142178,8 @@ entities: rot: 3.141592653589793 rad pos: -54.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalHydro entities: - uid: 19162 @@ -141072,12 +142188,16 @@ entities: rot: 3.141592653589793 rad pos: -62.5,-50.2 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24504 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-36.2 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalJanitor entities: - uid: 24493 @@ -141086,6 +142206,8 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalLibrary entities: - uid: 3653 @@ -141094,17 +142216,23 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7554 components: - type: Transform pos: -62.5,-36.8 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24505 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-50.8 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalMed entities: - uid: 6487 @@ -141113,46 +142241,62 @@ entities: rot: 3.141592653589793 rad pos: -101.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11833 components: - type: Transform pos: -27.5,-10.8 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15743 components: - type: Transform pos: -100.5,-0.7 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15857 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-13.6 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15870 components: - type: Transform rot: 1.5707963267948966 rad pos: -99.5,-11.8 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18942 components: - type: Transform rot: 3.141592653589793 rad pos: -101.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22636 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-15.3 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25471 components: - type: Transform rot: 1.5707963267948966 rad pos: -76.5,-15.3 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSalvage entities: - uid: 4603 @@ -141161,6 +142305,8 @@ entities: rot: -1.5707963267948966 rad pos: -97.5,23.8 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSci entities: - uid: 994 @@ -141168,45 +142314,61 @@ entities: - type: Transform pos: -106.5,-21.7 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3662 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-10.8 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12470 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-15.7 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15236 components: - type: Transform pos: -105.5,-0.7 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15851 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-13.6 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15865 components: - type: Transform pos: -101.5,-11.8 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17092 components: - type: Transform pos: -106.5,-36.7 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25473 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-15.7 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSec entities: - uid: 8985 @@ -141214,42 +142376,56 @@ entities: - type: Transform pos: -101.5,-21.7 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15852 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-13.4 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15871 components: - type: Transform rot: 1.5707963267948966 rad pos: -101.5,-11.6 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16503 components: - type: Transform rot: 3.141592653589793 rad pos: -101.5,-36.7 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19966 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-10.6 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23720 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25472 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSolar entities: - uid: 1028 @@ -141258,57 +142434,77 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13228 components: - type: Transform pos: -16.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17458 components: - type: Transform rot: -1.5707963267948966 rad pos: -135.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26113 components: - type: Transform rot: -1.5707963267948966 rad pos: -107.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26168 components: - type: Transform pos: -135.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26169 components: - type: Transform rot: 3.141592653589793 rad pos: -135.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26170 components: - type: Transform rot: -1.5707963267948966 rad pos: -135.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26172 components: - type: Transform pos: -16.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26173 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26174 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSupply entities: - uid: 1933 @@ -141317,60 +142513,80 @@ entities: rot: 3.141592653589793 rad pos: -106.5,-36.3 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4633 components: - type: Transform rot: -1.5707963267948966 rad pos: -97.5,17.2 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4635 components: - type: Transform rot: 1.5707963267948966 rad pos: -106.5,17.8 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9345 components: - type: Transform rot: 3.141592653589793 rad pos: -106.5,-21.3 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15235 components: - type: Transform rot: 3.141592653589793 rad pos: -105.5,-0.3 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15866 components: - type: Transform rot: 3.141592653589793 rad pos: -101.5,-11.2 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19890 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-11.3 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19912 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-10.2 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20570 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-13.2 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25468 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-11.3 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDisposalSpace entities: - uid: 20769 @@ -141378,6 +142594,8 @@ entities: - type: Transform pos: -101.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignElectricalMed entities: - uid: 18084 @@ -141385,21 +142603,29 @@ entities: - type: Transform pos: -129.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19175 components: - type: Transform pos: -132.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19176 components: - type: Transform pos: -124.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19490 components: - type: Transform pos: -139.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEngine entities: - uid: 15883 @@ -141408,6 +142634,8 @@ entities: rot: 1.5707963267948966 rad pos: -132.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEngineering entities: - uid: 19165 @@ -141416,12 +142644,16 @@ entities: rot: 3.141592653589793 rad pos: -113.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19643 components: - type: Transform rot: 3.141592653589793 rad pos: -117.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEscapePods entities: - uid: 13227 @@ -141430,29 +142662,39 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17539 components: - type: Transform pos: -133.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22995 components: - type: Transform rot: -1.5707963267948966 rad pos: -103.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23006 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26171 components: - type: Transform rot: -1.5707963267948966 rad pos: -135.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEVA entities: - uid: 15900 @@ -141461,11 +142703,15 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24566 components: - type: Transform pos: -34.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignExamroom entities: - uid: 25637 @@ -141473,6 +142719,8 @@ entities: - type: Transform pos: -31.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignFire entities: - uid: 5538 @@ -141481,35 +142729,47 @@ entities: rot: -1.5707963267948966 rad pos: -114.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5662 components: - type: Transform rot: -1.5707963267948966 rad pos: -112.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5663 components: - type: Transform rot: -1.5707963267948966 rad pos: -108.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5664 components: - type: Transform rot: -1.5707963267948966 rad pos: -112.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5665 components: - type: Transform rot: -1.5707963267948966 rad pos: -108.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19492 components: - type: Transform pos: -142.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignFlammableMed entities: - uid: 1519 @@ -141517,35 +142777,47 @@ entities: - type: Transform pos: -92.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8224 components: - type: Transform pos: -90.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8290 components: - type: Transform rot: 1.5707963267948966 rad pos: -106.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8293 components: - type: Transform rot: 1.5707963267948966 rad pos: -106.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8295 components: - type: Transform rot: 1.5707963267948966 rad pos: -106.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8298 components: - type: Transform rot: 1.5707963267948966 rad pos: -106.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignGenpop entities: - uid: 9126 @@ -141554,6 +142826,8 @@ entities: rot: 1.5707963267948966 rad pos: -93.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignGravity entities: - uid: 6196 @@ -141561,6 +142835,8 @@ entities: - type: Transform pos: -121.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignHead entities: - uid: 15420 @@ -141568,6 +142844,8 @@ entities: - type: Transform pos: -31.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignHydro1 entities: - uid: 348 @@ -141575,6 +142853,8 @@ entities: - type: Transform pos: -56.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignInterrogation entities: - uid: 15913 @@ -141583,6 +142863,8 @@ entities: rot: 1.5707963267948966 rad pos: -89.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignJanitor entities: - uid: 24812 @@ -141590,6 +142872,8 @@ entities: - type: Transform pos: -20.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignKiddiePlaque entities: - uid: 6892 @@ -141597,6 +142881,8 @@ entities: - type: Transform pos: -97.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignKitchen entities: - uid: 15907 @@ -141605,6 +142891,8 @@ entities: rot: 3.141592653589793 rad pos: -56.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLibrary entities: - uid: 3841 @@ -141613,6 +142901,8 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMaterials entities: - uid: 2534 @@ -141621,6 +142911,8 @@ entities: rot: -1.5707963267948966 rad pos: -107.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMedical entities: - uid: 7561 @@ -141629,6 +142921,8 @@ entities: rot: 3.141592653589793 rad pos: -31.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMorgue entities: - uid: 2007 @@ -141636,11 +142930,15 @@ entities: - type: Transform pos: -44.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2508 components: - type: Transform pos: -40.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNews entities: - uid: 1970 @@ -141648,6 +142946,8 @@ entities: - type: Transform pos: -100.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignPlaque entities: - uid: 2815 @@ -141659,6 +142959,8 @@ entities: rot: -1.5707963267948966 rad pos: -63.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21071 components: - type: MetaData @@ -141667,6 +142969,8 @@ entities: - type: Transform pos: -108.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignPsychology entities: - uid: 9239 @@ -141674,6 +142978,8 @@ entities: - type: Transform pos: -22.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRadiationMed entities: - uid: 409 @@ -141681,11 +142987,15 @@ entities: - type: Transform pos: -121.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22228 components: - type: Transform pos: -111.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRedFour entities: - uid: 20951 @@ -141694,6 +143004,8 @@ entities: rot: 3.141592653589793 rad pos: -59.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRedOne entities: - uid: 3778 @@ -141701,6 +143013,8 @@ entities: - type: Transform pos: -69.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRedThree entities: - uid: 17548 @@ -141709,6 +143023,8 @@ entities: rot: 3.141592653589793 rad pos: -69.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRedTwo entities: - uid: 16509 @@ -141717,6 +143033,8 @@ entities: rot: 3.141592653589793 rad pos: -59.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRestroom entities: - uid: 2199 @@ -141724,11 +143042,15 @@ entities: - type: Transform pos: -38.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3787 components: - type: Transform pos: -65.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRND entities: - uid: 15919 @@ -141737,6 +143059,8 @@ entities: rot: 1.5707963267948966 rad pos: -118.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRobo entities: - uid: 15918 @@ -141745,6 +143069,8 @@ entities: rot: 1.5707963267948966 rad pos: -118.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSalvage entities: - uid: 4672 @@ -141753,6 +143079,8 @@ entities: rot: 3.141592653589793 rad pos: -92.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignScience entities: - uid: 20550 @@ -141761,12 +143089,16 @@ entities: rot: -1.5707963267948966 rad pos: -106.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20551 components: - type: Transform rot: -1.5707963267948966 rad pos: -106.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecureMed entities: - uid: 25361 @@ -141775,60 +143107,80 @@ entities: rot: 1.5707963267948966 rad pos: -112.5,-82.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25362 components: - type: Transform rot: 1.5707963267948966 rad pos: -112.5,-89.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25363 components: - type: Transform rot: 1.5707963267948966 rad pos: -115.5,-92.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25365 components: - type: Transform rot: 1.5707963267948966 rad pos: -125.5,-92.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25366 components: - type: Transform rot: 1.5707963267948966 rad pos: -128.5,-89.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25367 components: - type: Transform rot: 1.5707963267948966 rad pos: -128.5,-82.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25368 components: - type: Transform rot: 1.5707963267948966 rad pos: -128.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25369 components: - type: Transform rot: 1.5707963267948966 rad pos: -112.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25370 components: - type: Transform rot: 1.5707963267948966 rad pos: -112.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25371 components: - type: Transform rot: 1.5707963267948966 rad pos: -128.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecureMedRed entities: - uid: 21066 @@ -141836,11 +143188,15 @@ entities: - type: Transform pos: -37.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21067 components: - type: Transform pos: -39.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecurity entities: - uid: 15911 @@ -141849,6 +143205,8 @@ entities: rot: 3.141592653589793 rad pos: -93.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignShipDock entities: - uid: 16513 @@ -141857,6 +143215,8 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSmoking entities: - uid: 2844 @@ -141864,36 +143224,48 @@ entities: - type: Transform pos: -59.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23436 components: - type: Transform rot: 3.141592653589793 rad pos: -132.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23438 components: - type: Transform rot: 3.141592653589793 rad pos: -116.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23439 components: - type: Transform rot: 3.141592653589793 rad pos: -106.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23440 components: - type: Transform rot: 3.141592653589793 rad pos: -114.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23442 components: - type: Transform rot: 3.141592653589793 rad pos: -124.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSpace entities: - uid: 5983 @@ -141901,22 +143273,30 @@ entities: - type: Transform pos: -152.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9426 components: - type: Transform pos: -101.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19325 components: - type: Transform rot: 3.141592653589793 rad pos: -152.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23004 components: - type: Transform pos: -12.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSurgery entities: - uid: 6691 @@ -141925,6 +143305,8 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignTelecomms entities: - uid: 17026 @@ -141932,6 +143314,8 @@ entities: - type: Transform pos: -84.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignToolStorage entities: - uid: 15898 @@ -141940,12 +143324,16 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15899 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignVault entities: - uid: 1172 @@ -141954,12 +143342,16 @@ entities: rot: -1.5707963267948966 rad pos: -37.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15909 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignVirology entities: - uid: 4168 @@ -141967,6 +143359,8 @@ entities: - type: Transform pos: -27.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Sink entities: - uid: 698 @@ -144332,6 +145726,38 @@ entities: - type: Transform pos: -18.5,-4.5 parent: 2 +- proto: SpawnPointLatejoin + entities: + - uid: 20082 + components: + - type: Transform + pos: -30.5,17.5 + parent: 2 + - uid: 26382 + components: + - type: Transform + pos: -29.5,17.5 + parent: 2 + - uid: 26383 + components: + - type: Transform + pos: -28.5,17.5 + parent: 2 + - uid: 26384 + components: + - type: Transform + pos: -28.5,14.5 + parent: 2 + - uid: 26385 + components: + - type: Transform + pos: -29.5,14.5 + parent: 2 + - uid: 26386 + components: + - type: Transform + pos: -30.5,14.5 + parent: 2 - proto: SpawnPointLawyer entities: - uid: 354 @@ -144893,49 +146319,67 @@ entities: rot: 3.141592653589793 rad pos: -32.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13225 components: - type: Transform pos: -24.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15674 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15902 components: - type: Transform pos: -32.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20033 components: - type: Transform pos: -100.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20222 components: - type: Transform pos: -94.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22142 components: - type: Transform pos: -70.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24489 components: - type: Transform rot: 3.141592653589793 rad pos: -98.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26149 components: - type: Transform rot: 3.141592653589793 rad pos: -108.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SteelBench entities: - uid: 14239 @@ -147526,6 +148970,8 @@ entities: allowedDepartments: - Security severity: Syndicate + - type: Fixtures + fixtures: {} - proto: SyndieHandyFlag entities: - uid: 18682 @@ -151922,11 +153368,15 @@ entities: - type: Transform pos: -83.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18473 components: - type: Transform pos: -91.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallmountTelescreenFrame entities: - uid: 6590 @@ -151934,6 +153384,8 @@ entities: - type: Transform pos: -95.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallmountTelevision entities: - uid: 23944 @@ -151941,6 +153393,8 @@ entities: - type: Transform pos: -61.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallReinforced entities: - uid: 8 @@ -167802,11 +169256,15 @@ entities: - type: Transform pos: -126.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5646 components: - type: Transform pos: -118.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningCO2 entities: - uid: 10443 @@ -167814,6 +169272,8 @@ entities: - type: Transform pos: -126.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningN2 entities: - uid: 5353 @@ -167821,6 +169281,8 @@ entities: - type: Transform pos: -126.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningN2O entities: - uid: 9938 @@ -167828,6 +169290,8 @@ entities: - type: Transform pos: -126.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningO2 entities: - uid: 9947 @@ -167835,6 +169299,8 @@ entities: - type: Transform pos: -126.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningPlasma entities: - uid: 5386 @@ -167843,24 +169309,32 @@ entities: rot: -1.5707963267948966 rad pos: -114.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5650 components: - type: Transform rot: 3.141592653589793 rad pos: -135.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5651 components: - type: Transform rot: 3.141592653589793 rad pos: -118.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5894 components: - type: Transform rot: 3.141592653589793 rad pos: -132.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningTritium entities: - uid: 9914 @@ -167868,6 +169342,8 @@ entities: - type: Transform pos: -126.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningWaste entities: - uid: 5647 @@ -167875,24 +169351,32 @@ entities: - type: Transform pos: -120.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5648 components: - type: Transform rot: 3.141592653589793 rad pos: -120.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5649 components: - type: Transform rot: 3.141592653589793 rad pos: -135.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5895 components: - type: Transform rot: 3.141592653589793 rad pos: -132.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9935 components: - type: MetaData @@ -167901,6 +169385,8 @@ entities: - type: Transform pos: -126.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WaterCooler entities: - uid: 1329 @@ -168424,7 +169910,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -252710.88 + secondsUntilStateChange: -252730.69 state: Opening - type: Airlock autoClose: False diff --git a/Resources/Maps/relic.yml b/Resources/Maps/relic.yml index da123e3276..250c80a59a 100644 --- a/Resources/Maps/relic.yml +++ b/Resources/Maps/relic.yml @@ -1,15 +1,16 @@ meta: format: 7 category: Map - engineVersion: 262.0.0 + engineVersion: 264.0.0 forkId: "" forkVersion: "" - time: 06/11/2025 22:11:12 - entityCount: 8332 + time: 08/24/2025 21:13:10 + entityCount: 11566 maps: - 1 grids: - 2 +- 3564 orphans: [] nullspace: [] tilemap: @@ -22,6 +23,7 @@ tilemap: 2: FloorDark 6: FloorElevatorShaft 47: FloorFreezer + 20: FloorGreenCircuit 18: FloorHullReinforced 1: FloorHydro 64: FloorKitchen @@ -31,6 +33,7 @@ tilemap: 101: FloorSteelDamaged 11: FloorSteelDirty 4: FloorTechMaint + 19: FloorTechMaint2 3: FloorWhite 126: FloorWood 14: FloorWoodLarge @@ -50,10 +53,12 @@ entities: - type: GridTree - type: Broadphase - type: OccluderTree + - type: Parallax + parallax: RelicStation - uid: 2 components: - type: MetaData - name: grid + name: oldstation - type: Transform pos: -2.6405587,0.6332514 parent: 1 @@ -61,87 +66,87 @@ entities: chunks: 0,0: ind: 0,0 - tiles: YgAAAAADAGIAAAAAAABiAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAIAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAGIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAEABwAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAAcAAAAAAABiAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAABAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAQAHAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAACAAIAAAAAAAACAAAAAAMAAgAAAAAAAAIAAAAAAQACAAAAAAMABwAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAADAAMAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAABAAIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAIAAwAAAAAAAAMAAAAAAwACAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAAAHAAAAAAAAAwAAAAADAAMAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAABAAMAAAAAAwADAAAAAAIAAgAAAAABAAcAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAIAAwAAAAACAAMAAAAAAgADAAAAAAIAAwAAAAABAAMAAAAAAgADAAAAAAMAAwAAAAACAAMAAAAAAwADAAAAAAEAAwAAAAAAAAIAAAAAAQAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAABAAcAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAACAAMAAAAAAAACAAAAAAIABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAQADAAAAAAMAAwAAAAADAAMAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAACAAMAAAAAAwADAAAAAAIAAgAAAAABAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAEABwAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAABAAMAAAAAAwADAAAAAAEAAwAAAAADAAMAAAAAAgADAAAAAAEAAwAAAAACAA== + tiles: YgAAAAADAGIAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAQAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAACAAcAAAAAAABiAAAAAAMAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAABAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAgAHAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAwAKAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAgAHAAAAAAAAYgAAAAACAGIAAAAAAwAKAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAABAAIAAAAAAgACAAAAAAEAAgAAAAADAAIAAAAAAwACAAAAAAIABwAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAABAAMAAAAAAwADAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAMAAwAAAAAAAAIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAADAAMAAAAAAQADAAAAAAAAAwAAAAABAAMAAAAAAAACAAAAAAEABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAAAHAAAAAAAAAwAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAACAAMAAAAAAQADAAAAAAIAAwAAAAACAAMAAAAAAAADAAAAAAAAAgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAwADAAAAAAAAAwAAAAADAAIAAAAAAwAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAACAAcAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAQADAAAAAAIAAwAAAAACAAMAAAAAAQADAAAAAAEAAwAAAAABAAMAAAAAAQACAAAAAAIABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAgADAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAwADAAAAAAAAAgAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAMABwAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAACAAMAAAAAAAADAAAAAAEAAwAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAAAAA== version: 7 0,-1: ind: 0,-1 - tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAEABwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAABAAcAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAgAHAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAAABwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAQAHAAAAAAAAYgAAAAAAAA== + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAEABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAgAHAAAAAAAAYgAAAAADAA== version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAAgAAAAABAAIAAAAAAQACAAAAAAAAAgAAAAABAAIAAAAAAAACAAAAAAEAAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAAIAAAAAAAACAAAAAAEAAgAAAAACAAIAAAAAAwACAAAAAAEAAgAAAAABAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAGIAAAAAAwACAAAAAAIAAgAAAAABAAIAAAAAAwACAAAAAAMAAgAAAAACAAIAAAAAAAACAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAQACAAAAAAAAAgAAAAABAAIAAAAAAAACAAAAAAEAAgAAAAAAAAIAAAAAAwACAAAAAAAAAgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAADAAIAAAAAAgACAAAAAAAAAgAAAAACAAIAAAAAAgACAAAAAAEAAgAAAAABAAIAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAwACAAAAAAAAAgAAAAADAAIAAAAAAQACAAAAAAIAAgAAAAABAAIAAAAAAQACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAAgAAAAABAAIAAAAAAgACAAAAAAEAAgAAAAADAAIAAAAAAgACAAAAAAEAAgAAAAACAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAABiAAAAAAIACgAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAMAAgAAAAAAAAIAAAAAAgACAAAAAAEAAgAAAAACAAIAAAAAAAACAAAAAAMAAgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAAIAAAAAAgACAAAAAAIAAgAAAAADAAIAAAAAAwACAAAAAAEAAgAAAAAAAAIAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAGIAAAAAAwACAAAAAAIAAgAAAAADAAIAAAAAAAACAAAAAAIAAgAAAAACAAIAAAAAAAACAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAgACAAAAAAEAAgAAAAAAAAIAAAAAAQACAAAAAAEAAgAAAAABAAIAAAAAAgACAAAAAAAAAgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAYgAAAAAAAAIAAAAAAwACAAAAAAEAAgAAAAAAAAIAAAAAAwACAAAAAAIAAgAAAAACAAIAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAAACAAAAAAEAAgAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAABAAIAAAAAAQACAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAAgAAAAADAAIAAAAAAwACAAAAAAIAAgAAAAACAAIAAAAAAwACAAAAAAAAAgAAAAABAA== version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADAA== version: 7 1,-1: ind: 1,-1 - tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAAAHAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAMAEQAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAABABEAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAA== + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAIAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAA== version: 7 1,0: ind: 1,0 - tiles: YgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAgAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAwALAAAAAAAACwAAAAAAAAsAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAADAAAAAABAAwAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAACAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAEABwAAAAAAAAwAAAAAAQAMAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAACAAMAAAAAAwAMAAAAAAEADAAAAAADAAMAAAAAAwADAAAAAAEABwAAAAAAAGIAAAAAAwAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAAADAAAAAAAADAAAAAAAAAwAAAAAAgADAAAAAAAAAwAAAAADAAMAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAAAAwAAAAAAAAwAAAAAAAAMAAAAAAAAAwAAAAABAAMAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAAMAAAAAAgAMAAAAAAIADAAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAAADAAAAAAAADAAAAAAAAAwAAAAAAwADAAAAAAAAAwAAAAADAAMAAAAAAQBiAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAMAAwAAAAACAAwAAAAAAgAMAAAAAAEAAwAAAAADAAMAAAAAAgADAAAAAAIAYgAAAAACAGIAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAA== + tiles: YgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAgALAAAAAAAACwAAAAABAAsAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAAAwAAAAABAAMAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAIABwAAAAAAAAMAAAAAAQADAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAABAAMAAAAAAwADAAAAAAEAAwAAAAACAAMAAAAAAAADAAAAAAIABwAAAAAAAGIAAAAAAgAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAwADAAAAAAEAAwAAAAABAAMAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAgBiAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAEAAwAAAAAAAAMAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAAAAAMAAAAAAgADAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAIAAwAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAgADAAAAAAIAAwAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAADAA== version: 7 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAACAAAAAAMAAgAAAAABAAIAAAAAAgACAAAAAAIAAgAAAAACAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAgAAAAAAAAIAAAAAAwACAAAAAAMAAgAAAAACAAIAAAAAAgACAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAACAAAAAAMAAgAAAAACAAIAAAAAAwACAAAAAAMAAgAAAAADAAIAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAgAAAAABAAIAAAAAAwACAAAAAAEAAgAAAAAAAAIAAAAAAQACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 0,1: ind: 0,1 - tiles: AgAAAAABAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAIABwAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAwADAAAAAAEAAwAAAAABAAMAAAAAAQADAAAAAAAAAwAAAAADAAIAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAACAAAAAAEAAgAAAAADAAIAAAAAAgACAAAAAAMAAgAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAgBiAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAACAA== + tiles: AgAAAAABAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAMABwAAAAAAAAMAAAAAAwADAAAAAAEAAwAAAAABAAMAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAACAAIAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAACAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAABlAAAAAAIAYgAAAAADAGIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAGIAAAAAAwBlAAAAAAEAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAZQAAAAACAGUAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAYgAAAAADAGIAAAAAAwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGUAAAAAAwBiAAAAAAAAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAAYgAAAAAAAGUAAAAAAwBiAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGUAAAAABABiAAAAAAMAZQAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGUAAAAAAQBiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAGUAAAAAAABiAAAAAAAAYgAAAAAAAGUAAAAAAABlAAAAAAAAYgAAAAABAA== version: 7 1,1: ind: 1,1 - tiles: AwAAAAADAAwAAAAAAgAMAAAAAAIAAwAAAAABAAMAAAAAAQAHAAAAAAAAYgAAAAABAGIAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAAAAAcAAAAAAAAMAAAAAAIADAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAABAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAgAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAZQAAAAACAA== + tiles: AwAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAABAAcAAAAAAAAHAAAAAAAADAAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAEgAAAAAAABIAAAAAAAAHAAAAAAAABwAAAAAAABIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAAAZQAAAAACAA== version: 7 2,0: ind: 2,0 - tiles: BwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAADAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAwAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAAALAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgAHAAAAAAAACwAAAAAAAGIAAAAAAABiAAAAAAAACwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAIABwAAAAAAAAMAAAAAAQADAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAAcAAAAAAAADAAAAAAAAAwAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAgAHAAAAAAAAAwAAAAADAAMAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQAHAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAMAAAAAAgADAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAwAHAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAA== + tiles: BwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAgAHAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAwAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAEABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAACAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAwAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQALAAAAAAEABwAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAgAHAAAAAAAACwAAAAACAGIAAAAAAQBiAAAAAAAACwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAEABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAADAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAEABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQAHAAAAAAAACwAAAAACAAsAAAAAAgALAAAAAAIACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAA== version: 7 2,1: ind: 2,1 - tiles: YgAAAAACAGIAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAQALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIABwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAACwAAAAAAAAsAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAQAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAADAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAACAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAAAAAcAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAABAA== + tiles: YgAAAAACAGIAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgALAAAAAAMACwAAAAABAAsAAAAAAwALAAAAAAAACwAAAAAAAAsAAAAAAQALAAAAAAEACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAIABwAAAAAAAAsAAAAAAgALAAAAAAIACwAAAAACAAsAAAAAAQAHAAAAAAAACwAAAAACAAsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAEABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAEABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAABAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAEABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAMABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAAcAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAQAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAADAAcAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAAAAA== version: 7 0,2: ind: 0,2 - tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAA== + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAA== version: 7 1,2: ind: 1,2 - tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMABwAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAEABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAA== + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAABAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAIABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAQAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAA== version: 7 2,2: ind: 2,2 - tiles: YgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAACAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAABAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAwAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQAKAAAAAAAAYgAAAAACAAoAAAAAAABiAAAAAAEACgAAAAAAAA== + tiles: YgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAQAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQAKAAAAAAAAYgAAAAADAAoAAAAAAABiAAAAAAEACgAAAAAAAA== version: 7 3,1: ind: 3,1 - tiles: CwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAABAAIAAAAAAwACAAAAAAMAAgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAACAAAAAAIAAgAAAAADAAIAAAAAAgACAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAAsAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAAAAAIAAAAAAQACAAAAAAEAAgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAgALAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAwACAAAAAAMAAgAAAAACAAIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAADAAsAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAQACAAAAAAIAAgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAgAHAAAAAAAAAgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAACAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAAIAAAAAAQACAAAAAAIAAgAAAAAAAAIAAAAAAgACAAAAAAMAAgAAAAABAAIAAAAAAgACAAAAAAMAAgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAQACAAAAAAMAAgAAAAAAAAIAAAAAAwACAAAAAAAAAgAAAAACAAIAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAAAAgAAAAABAAIAAAAAAgACAAAAAAEAAgAAAAAAAAIAAAAAAQACAAAAAAMAAgAAAAADAAIAAAAAAwACAAAAAAEABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAAAAAIAAAAAAAACAAAAAAMAAgAAAAADAAIAAAAAAQACAAAAAAMAAgAAAAACAAIAAAAAAgACAAAAAAEAAgAAAAACAA== + tiles: CwAAAAABAAsAAAAAAwALAAAAAAMACwAAAAACAAsAAAAAAgALAAAAAAEACwAAAAAAAAsAAAAAAQAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAABwAAAAAAAAsAAAAAAQALAAAAAAMACwAAAAADAAsAAAAAAAALAAAAAAEACwAAAAACAAsAAAAAAAAHAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAACAAIAAAAAAgACAAAAAAAAAgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAwACAAAAAAMAAgAAAAACAAIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAACAAAAAAMAAgAAAAAAAAIAAAAAAwACAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAAsAAAAAAwALAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAAAAAIAAAAAAwACAAAAAAAAAgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAQALAAAAAAMACwAAAAADAAsAAAAAAgAHAAAAAAAABwAAAAAAAAIAAAAAAQACAAAAAAMAAgAAAAAAAAIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAIAYgAAAAABAAsAAAAAAAALAAAAAAEABwAAAAAAAAcAAAAAAAACAAAAAAIAAgAAAAADAAIAAAAAAQACAAAAAAEAAgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgALAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAwAHAAAAAAAAAgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAACAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAAcAAAAAAABiAAAAAAMAYgAAAAAAAAIAAAAAAAACAAAAAAEAAgAAAAADAAIAAAAAAQACAAAAAAMAAgAAAAADAAIAAAAAAgACAAAAAAMAAgAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAgACAAAAAAIAAgAAAAADAAIAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAgACAAAAAAAAAgAAAAACAAIAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAEAAgAAAAADAAIAAAAAAQACAAAAAAMAAgAAAAABAAIAAAAAAgACAAAAAAAAAgAAAAADAAIAAAAAAgACAAAAAAEABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAAAAAIAAAAAAQACAAAAAAIAAgAAAAACAAIAAAAAAgACAAAAAAEAAgAAAAAAAAIAAAAAAwACAAAAAAAAAgAAAAADAA== version: 7 3,2: ind: 3,2 - tiles: BwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAACAAIAAAAAAQACAAAAAAEAAgAAAAABAAIAAAAAAgACAAAAAAMAAgAAAAADAAIAAAAAAQACAAAAAAMAAgAAAAADAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwACAAAAAAMAAgAAAAACAAIAAAAAAgACAAAAAAEAAgAAAAACAAIAAAAAAQACAAAAAAIAAgAAAAAAAAIAAAAAAQAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAIAAgAAAAACAAIAAAAAAQACAAAAAAIAAgAAAAAAAAIAAAAAAwACAAAAAAIAAgAAAAACAAIAAAAAAgACAAAAAAEABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAEACwAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAABiAAAAAAEAYgAAAAADAAcAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwAHAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAAAHAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAQAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAACAAcAAAAAAAAIAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAAAAAcAAAAAAAAIAAAAAAAAYgAAAAACAAoAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQAHAAAAAAAABwAAAAAAAA== + tiles: BwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAABAAIAAAAAAQACAAAAAAAAAgAAAAACAAIAAAAAAAACAAAAAAIAAgAAAAABAAIAAAAAAgACAAAAAAMAAgAAAAACAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAwACAAAAAAIAAgAAAAADAAIAAAAAAQACAAAAAAEAAgAAAAAAAAIAAAAAAgACAAAAAAEAAgAAAAADAAIAAAAAAwAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAEAAgAAAAACAAIAAAAAAQACAAAAAAMAAgAAAAAAAAIAAAAAAQACAAAAAAEAAgAAAAABAAIAAAAAAwACAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAMACwAAAAAAAGIAAAAAAABiAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAEACwAAAAAAAAsAAAAAAgALAAAAAAEACwAAAAACAAsAAAAAAQBiAAAAAAAAYgAAAAABAAcAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAABAAsAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAQAHAAAAAAAACwAAAAACAAsAAAAAAQALAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAIABwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAAAAAcAAAAAAAAIAAAAAAAAYgAAAAACAAoAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAwAHAAAAAAAABwAAAAAAAA== version: 7 2,-1: ind: 2,-1 - tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAAAHAAAAAAAABAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAAcAAAAAAAAEAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAMAAAAAAQAHAAAAAAAAAwAAAAAAAAcAAAAAAAADAAAAAAMABwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAIABwAAAAAAAAMAAAAAAgAHAAAAAAAAAwAAAAADAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAEABwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAQAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAIABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAAABwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAIABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAACAAcAAAAAAABiAAAAAAAABwAAAAAAAA== + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAAAHAAAAAAAABAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAACAAcAAAAAAABiAAAAAAEAYgAAAAAAAAcAAAAAAAAEAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAQAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAIABwAAAAAAAAsAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAABAAcAAAAAAAALAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAEABwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAADAAcAAAAAAAALAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAQAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAAsAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAIABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAAAHAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAABAAcAAAAAAABiAAAAAAEABwAAAAAAAA== version: 7 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAEACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAAALAAAAAAAAYgAAAAADAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAEACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAgALAAAAAAEAYgAAAAABAA== version: 7 3,-1: ind: 3,-1 - tiles: YgAAAAABAAsAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAAALAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAGIAAAAAAgAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAADAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABiAAAAAAEACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAYgAAAAACAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAwAHAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAIAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAMAAwAAAAABAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAACAA== + tiles: YgAAAAAAAAsAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACwAAAAACAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAwALAAAAAAMABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAGIAAAAAAgAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAMAYgAAAAABAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABiAAAAAAEACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAYgAAAAADAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAMAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAAAAA== version: 7 3,-2: ind: 3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAIAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADAGIAAAAAAgALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAALAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACwAAAAADAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAsAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAAIAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAALAAAAAAMACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAGIAAAAAAgALAAAAAAMACwAAAAADAAsAAAAAAQALAAAAAAIACwAAAAADAAsAAAAAAQALAAAAAAAACwAAAAABAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 3,0: ind: 3,0 - tiles: AwAAAAADAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAGIAAAAAAwBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAsAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAADAAsAAAAAAAADAAAAAAMAYgAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAgBiAAAAAAIABwAAAAAAAGIAAAAAAwBiAAAAAAAACwAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAAAAAsAAAAAAAALAAAAAAAAAwAAAAACAGIAAAAAAQADAAAAAAIAAwAAAAABAAMAAAAAAAADAAAAAAMAAwAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAMAAAAAAABiAAAAAAIAAwAAAAADAAMAAAAAAgADAAAAAAEAAwAAAAADAAMAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAMAAAAAAgBiAAAAAAAAYgAAAAADAAcAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAgADAAAAAAIABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAAAHAAAAAAAAAwAAAAABAAMAAAAAAQADAAAAAAIAAwAAAAADAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAACAAMAAAAAAABiAAAAAAEABwAAAAAAAAMAAAAAAwADAAAAAAEAAwAAAAADAAMAAAAAAQAHAAAAAAAAYgAAAAAAAGIAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAAAYgAAAAACAGIAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAADAAcAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAABAAcAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAABwAAAAAAAAMAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAwAHAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAcAAAAAAAADAAAAAAIABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAEABwAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAABwAAAAAAAA== + tiles: YgAAAAACAGIAAAAAAwBiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAgALAAAAAAIACwAAAAADAAsAAAAAAgALAAAAAAEACwAAAAACAGIAAAAAAQBiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAAsAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAACAAsAAAAAAQBiAAAAAAMAYgAAAAADAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAIABwAAAAAAAGIAAAAAAwBiAAAAAAAACwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAAsAAAAAAwALAAAAAAAAYgAAAAADAGIAAAAAAAADAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAAAAwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAsAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAIABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAACAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAwAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAAALAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAACAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAEABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAACAAcAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAgAHAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAABwAAAAAAAA== version: 7 -1,-2: ind: -1,-2 @@ -157,23 +162,23 @@ entities: version: 7 0,3: ind: 0,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 1,3: ind: 1,3 - tiles: BwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAAsAAAAAAAAHAAAAAAAACwAAAAAAAAcAAAAAAAAAAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAAsAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAMABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAALAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAACwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAgAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAgAHAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAIABwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAAYgAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAQAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAGIAAAAAAwALAAAAAAAACwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAEABwAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAsAAAAAAgAHAAAAAAAACwAAAAADAAcAAAAAAAAAAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAAsAAAAAAgAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAMABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAABAAsAAAAAAQALAAAAAAEABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAALAAAAAAEABwAAAAAAAGIAAAAAAgAHAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAALAAAAAAIACwAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAACwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAQAHAAAAAAAACwAAAAADAAcAAAAAAAAHAAAAAAAACwAAAAACAAsAAAAAAQAHAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAAABwAAAAAAAAsAAAAAAwAHAAAAAAAABwAAAAAAAAsAAAAAAgALAAAAAAIABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAALAAAAAAIABwAAAAAAAGIAAAAAAQAHAAAAAAAAYgAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAMACwAAAAADAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAAAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAAALAAAAAAEACwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,0: ind: 4,0 - tiles: CwAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAADAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: CwAAAAABAAsAAAAAAQALAAAAAAMABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,-1: ind: 4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAwAIAAAAAAAAYgAAAAACAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABiAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAGIAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAYgAAAAADAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAAALAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAgAIAAAAAAAAYgAAAAADAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABiAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAGIAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAYgAAAAABAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACwAAAAABAAsAAAAAAQAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAwALAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,1: ind: 4,1 - tiles: CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: CAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,2: ind: 4,2 @@ -181,7 +186,7 @@ entities: version: 7 3,3: ind: 3,3 - tiles: YgAAAAAAAAoAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAEABwAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAIABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAAoAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAAAAAcAAAAAAAAIAAAAAAAAYgAAAAABAGIAAAAAAQAKAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAACAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAwAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAA== + tiles: YgAAAAABAAoAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAADAAoAAAAAAAAKAAAAAAAACgAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAAoAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAAcAAAAAAAAIAAAAAAAAYgAAAAAAAGIAAAAAAAAKAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAwAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAMABwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAABAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAQAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAAALAAAAAAIACwAAAAACAAsAAAAAAAALAAAAAAAACwAAAAABAAsAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAA== version: 7 4,3: ind: 4,3 @@ -189,7 +194,7 @@ entities: version: 7 3,4: ind: 3,4 - tiles: AAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,4: ind: 4,4 @@ -197,12 +202,16 @@ entities: version: 7 2,3: ind: 2,3 - tiles: YgAAAAADAGIAAAAAAwBiAAAAAAIABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAKAAAAAAAAYgAAAAAAAAoAAAAAAABiAAAAAAMACgAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAAACgAAAAAAAGIAAAAAAgBiAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAAoAAAAAAABiAAAAAAEAYgAAAAACAAsAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YgAAAAAAAGIAAAAAAwBiAAAAAAMABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAKAAAAAAAAYgAAAAAAAAoAAAAAAABiAAAAAAAACgAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAALAAAAAAEACwAAAAAAAAsAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAIACgAAAAAAAGIAAAAAAwBiAAAAAAAACwAAAAACAAsAAAAAAQALAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAAAAAoAAAAAAABiAAAAAAIAYgAAAAACAAsAAAAAAwALAAAAAAEACwAAAAADAAcAAAAAAAAHAAAAAAAAYgAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAEACwAAAAADAAsAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACwAAAAADAAsAAAAAAQALAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAsAAAAAAgALAAAAAAIACwAAAAABAAsAAAAAAAALAAAAAAMACwAAAAABAAcAAAAAAAALAAAAAAIACwAAAAADAAsAAAAAAQALAAAAAAEACwAAAAADAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -1,2: ind: -1,2 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 + 4,-2: + ind: 4,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAYgAAAAADAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABiAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAGIAAAAAAQAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAgAIAAAAAAAAYgAAAAABAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -226,39 +235,12 @@ entities: chunkCollection: version: 2 nodes: - - node: - angle: 1.5707963267948966 rad - color: '#FFFF00FF' - id: Arrows - decals: - 606: 23,2 - - node: - angle: 3.141592653589793 rad - color: '#FFFF00FF' - id: Arrows - decals: - 607: 31,2 - node: color: '#FFFFFFFF' - id: Arrows + id: Box decals: - 605: 30,2 - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 608: 24,2 - 609: 25,2 - 610: 26,2 - 611: 27,2 - 612: 28,2 - 613: 29,2 - 668: 27,40 - 669: 27,41 - 670: 28,41 - 671: 30,41 - 672: 31,41 - 673: 31,40 + 725: 48,3 + 726: 48,4 - node: color: '#D4D4D428' id: BrickCornerOverlayNE @@ -286,22 +268,6 @@ entities: decals: 385: 36,10 450: 37,12 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 678: 12,23 - 679: 13,23 - 680: 14,23 - 681: 12,26 - 682: 13,26 - 683: 14,26 - 691: 14,25 - 692: 13,25 - 693: 12,25 - 694: 12,22 - 695: 13,22 - 696: 14,22 - node: color: '#FFFFFFFF' id: Dirt @@ -324,93 +290,56 @@ entities: 348: 58,13 349: 58,12 350: 57,15 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 689: 11,23 - 698: 11,22 - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 688: 11,26 - 697: 11,25 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 665: 21,25 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 666: 26,25 + 710: 29,-8 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 721: 23,-9 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 655: 21,32 - 656: 21,31 - 657: 21,30 - 658: 21,29 - 659: 21,28 - 660: 21,27 - 661: 21,26 + 722: 23,-10 + 723: 23,-11 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 644: 25,33 - 645: 24,33 - 646: 23,33 - 647: 22,33 - 648: 19,33 - 649: 18,33 - 650: 17,33 + 713: 24,-9 + 714: 25,-9 + 715: 26,-9 + 716: 27,-9 + 717: 28,-9 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 631: 26,26 - 632: 26,27 - 633: 26,28 - 634: 26,29 - 635: 26,30 - 636: 26,31 - 637: 26,32 - 638: 20,27 - 639: 20,28 - 640: 20,29 - 641: 20,30 - 642: 20,31 - 643: 20,32 + 707: 29,-7 + 708: 29,-6 + 709: 29,-5 + 718: 29,-10 + 719: 29,-11 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 651: 22,25 - 652: 23,25 - 653: 24,25 - 654: 25,25 - - node: - color: '#FFFFFFFF' - id: WarningLineCorner - decals: - 662: 21,33 + 700: 22,-8 + 701: 23,-8 + 702: 24,-8 + 703: 25,-8 + 704: 26,-8 + 705: 27,-8 + 724: 28,-8 - node: color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 663: 20,33 - 664: 26,33 - - node: - color: '#FFFFFFFF' - id: body - decals: - 699: 42,13 + 720: 29,-9 - type: GridAtmosphere version: 2 data: @@ -438,7 +367,7 @@ entities: 1,1: 0: 65523 1,2: - 0: 47280 + 0: 47282 1,3: 0: 49087 1,-1: @@ -446,9 +375,9 @@ entities: 1,4: 0: 267 2,0: - 0: 47919 + 0: 47887 2,1: - 0: 65520 + 0: 65522 2,2: 0: 65520 2,3: @@ -458,9 +387,9 @@ entities: 2,4: 0: 15 3,0: - 0: 15275 + 0: 15243 3,1: - 0: 48120 + 0: 48122 3,2: 0: 65520 3,3: @@ -482,7 +411,7 @@ entities: 0,-5: 1: 61440 0,-3: - 0: 63094 + 0: 63351 -1,-3: 0: 192 1: 13107 @@ -497,9 +426,9 @@ entities: 1,-5: 1: 61440 2,-4: - 0: 24816 + 0: 61680 2,-3: - 0: 28775 + 0: 28927 2,-2: 0: 1911 2,-5: @@ -517,19 +446,25 @@ entities: 4,-3: 0: 62207 4,-2: - 0: 57343 + 0: 20479 4,-1: 0: 65535 + -3,2: + 1: 32768 + -3,3: + 1: 128 -2,3: 0: 61167 - -2,1: - 0: 51360 -2,2: - 0: 61152 + 0: 61153 + -2,4: + 0: 3265 -2,0: 1: 8738 -2,-1: 1: 11818 + -2,1: + 0: 52416 -2,-4: 1: 43562 -2,-5: @@ -550,51 +485,58 @@ entities: 4,-5: 1: 61440 5,-4: - 0: 39408 + 0: 55792 5,-3: - 0: 64721 + 0: 56529 5,-2: - 0: 52701 + 0: 285 + 2: 52224 5,-1: - 0: 56669 + 0: 4561 + 3: 49152 5,-5: 1: 61440 5,0: - 0: 52509 + 0: 52497 + 3: 12 6,-4: 0: 240 2: 57344 6,-3: - 0: 65424 - 2: 12 + 0: 65520 6,-2: - 0: 65535 + 0: 61167 6,-1: - 0: 65263 + 0: 8958 + 4: 32768 6,-5: 1: 61440 6,0: - 0: 65294 + 0: 65282 + 4: 8 7,-4: 0: 240 2: 12288 7,-3: - 2: 3 - 0: 65408 + 0: 65520 7,-2: 0: 65535 7,-1: - 0: 23893 + 0: 19541 + 4: 4096 7,-5: 1: 61440 7,0: - 0: 65357 + 4: 1 + 0: 65356 8,-4: 0: 240 8,-3: - 0: 20208 + 0: 65520 + 8,-2: + 0: 65535 4,4: - 0: 61295 + 0: 12079 5,1: 0: 56799 5,2: @@ -602,15 +544,15 @@ entities: 5,3: 0: 56785 5,4: - 0: 65293 + 0: 3853 6,1: 0: 30719 6,2: 0: 65520 6,3: - 0: 61182 + 0: 65534 6,4: - 0: 65294 + 0: 3855 7,1: 0: 2303 7,2: @@ -618,15 +560,13 @@ entities: 7,3: 0: 65535 7,4: - 0: 65295 + 0: 3855 8,1: 0: 8191 8,2: 0: 30583 8,3: 0: 30583 - -2,4: - 0: 3264 -1,4: 0: 4080 0,7: @@ -638,71 +578,60 @@ entities: 1,8: 0: 15167 2,5: - 0: 64136 + 0: 2060 2,6: - 0: 35576 + 0: 2060 2,7: - 0: 34824 + 0: 19652 3,5: - 0: 65535 + 0: 59239 3,6: - 0: 65535 + 0: 10087 3,7: - 0: 65327 - 2,8: - 0: 35624 - 3,8: - 0: 65295 + 0: 30583 4,5: - 0: 61438 + 0: 30591 4,6: - 0: 254 - 3: 24576 + 0: 7 + 2: 57344 4,7: - 3: 6 - 4: 26112 - 5,6: - 0: 13038 - 5: 32768 - 5,7: - 0: 13107 - 5: 8 - 6: 34816 + 2: 61166 5,5: - 0: 61152 - 5,8: - 0: 36851 + 0: 15 + 1: 60928 + 5,6: + 2: 61440 + 1: 238 + 5,7: + 2: 65535 6,5: - 0: 65520 + 0: 52239 + 1: 4352 6,6: - 0: 52479 - 5: 4096 + 1: 17 + 2: 12288 + 0: 51404 6,7: - 5: 1 - 6: 4352 - 0: 52428 - 6,8: - 0: 65532 + 2: 13107 + 0: 36044 7,5: - 0: 65262 + 0: 30479 7,6: - 0: 30576 + 0: 30583 7,7: - 0: 32759 - 7,8: - 0: 65521 + 0: 32631 8,4: - 0: 65287 + 0: 3847 8,5: - 0: 30310 + 0: 30711 8,6: - 0: 30582 + 0: 30583 8,7: 0: 63351 8,0: 0: 3822 8,-1: - 0: 61156 + 0: 61152 9,0: 0: 20479 9,1: @@ -714,7 +643,7 @@ entities: 9,-1: 0: 65520 9,4: - 0: 65519 + 0: 61423 10,0: 0: 12765 10,2: @@ -740,45 +669,45 @@ entities: 11,4: 0: 61663 12,0: - 0: 62399 + 0: 62383 12,1: - 0: 32767 - 12,2: - 0: 29815 - 12,3: - 0: 3541 - 8,8: 0: 65535 + 12,2: + 0: 62719 + 12,3: + 0: 4095 + 8,8: + 0: 65527 + 9,5: + 0: 61182 9,6: 0: 30464 9,7: - 0: 29303 - 9,5: - 0: 61166 + 0: 30578 9,8: - 0: 65527 + 0: 65522 10,5: - 0: 65422 + 0: 63726 10,6: 0: 58606 10,7: 0: 49390 10,8: - 0: 18252 + 0: 53196 11,5: 0: 61679 11,6: - 0: 62207 + 0: 61695 11,7: 0: 61695 11,8: - 0: 4095 + 0: 61678 12,4: - 0: 47359 + 0: 61695 12,5: - 0: 59583 + 0: 57599 12,6: - 0: 52991 + 0: 36606 0,9: 0: 1 -1,9: @@ -789,6 +718,8 @@ entities: 1: 136 1,9: 0: 3822 + 2,8: + 0: 35616 2,9: 0: 35775 2,10: @@ -798,6 +729,8 @@ entities: 1: 61134 2,12: 1: 238 + 3,8: + 0: 65280 3,9: 0: 65535 3,10: @@ -809,7 +742,7 @@ entities: 4,8: 0: 65504 4,9: - 0: 62463 + 0: 65535 4,10: 0: 3808 4,11: @@ -817,21 +750,26 @@ entities: 4,12: 1: 8738 0: 34944 + 5,8: + 0: 40912 5,9: - 0: 39048 - 5: 8738 + 0: 48059 5,10: 0: 4088 5,11: 1: 240 + 6,8: + 0: 65520 6,9: - 0: 15283 + 0: 48051 6,10: 0: 955 6,11: 1: 240 + 7,8: + 0: 65520 7,9: - 0: 12272 + 0: 65520 7,10: 0: 255 7,11: @@ -839,22 +777,22 @@ entities: 7,12: 0: 53076 8,9: - 0: 61426 + 0: 65522 + 8,10: + 0: 255 8,11: 1: 240 - 8,10: - 0: 238 8,12: 0: 30503 9,9: 0: 65520 9,10: - 0: 238 + 0: 255 1: 57344 9,11: 1: 61166 9,12: - 1: 16462 + 1: 49358 0: 11808 10,10: 1: 61440 @@ -880,7 +818,7 @@ entities: 0: 28672 1: 238 12,7: - 0: 61164 + 0: 61160 12,8: 0: 61166 13,4: @@ -923,6 +861,7 @@ entities: 1: 4369 16,6: 1: 273 + 0: 4096 12,9: 0: 57582 12,10: @@ -931,7 +870,7 @@ entities: 12,12: 0: 30583 13,9: - 0: 29439 + 0: 29247 13,10: 0: 119 1: 61440 @@ -951,10 +890,10 @@ entities: 1: 4369 0: 52428 15,9: - 0: 13107 + 0: 12851 1: 34952 15,10: - 0: 13107 + 0: 13106 1: 34952 15,11: 0: 13107 @@ -966,20 +905,18 @@ entities: 1: 1 8,-5: 1: 61440 - 8,-2: - 0: 61166 9,-4: - 0: 59632 + 0: 57584 9,-3: - 0: 1918 + 0: 4078 9,-2: 0: 61182 9,-5: 1: 12288 10,-4: - 0: 61936 + 0: 61680 10,-3: - 0: 1375 + 0: 4095 10,-2: 0: 65535 11,-4: @@ -993,11 +930,11 @@ entities: 12,-4: 0: 4915 1: 8 - 12,-1: - 0: 47886 12,-5: 0: 61440 1: 2048 + 12,-1: + 0: 36366 13,-4: 1: 15 13,-1: @@ -1013,8 +950,8 @@ entities: 14,-1: 0: 65322 14,-5: - 0: 12288 - 1: 18176 + 0: 12834 + 1: 17749 14,-2: 0: 8192 14,0: @@ -1023,6 +960,13 @@ entities: 0: 65287 15,0: 0: 4095 + 14,-6: + 1: 20480 + 0: 8192 + 15,-8: + 1: 3840 + 16,-8: + 1: 3840 13,1: 0: 65535 13,2: @@ -1030,9 +974,9 @@ entities: 13,3: 0: 1911 14,1: - 0: 18244 + 0: 53188 14,2: - 0: 26214 + 0: 26350 15,1: 0: 30583 15,2: @@ -1085,6 +1029,7 @@ entities: 1: 15 16,-1: 0: 26112 + 1: 4 17,0: 1: 4369 17,-1: @@ -1095,14 +1040,16 @@ entities: 0: 1029 1: 8738 16,-2: - 1: 546 + 1: 16930 0: 1028 17,-4: - 1: 4096 + 1: 4369 17,-3: 1: 4369 17,-2: 1: 4369 + 17,-5: + 1: 4369 16,12: 0: 1 12,13: @@ -1127,8 +1074,8 @@ entities: 1: 15 0: 1792 13,15: - 1: 28673 - 0: 14 + 1: 28679 + 0: 8 14,13: 1: 12561 0: 2252 @@ -1144,7 +1091,7 @@ entities: 0: 9011 1: 34952 15,14: - 0: 13091 + 0: 29475 1: 2184 15,15: 0: 273 @@ -1170,14 +1117,14 @@ entities: 1: 3979 8,14: 0: 2048 - 9,13: - 0: 802 - 1: 34956 9,14: 0: 3840 1: 14 9,15: 1: 15 + 9,13: + 0: 546 + 1: 34956 10,13: 1: 65280 10,14: @@ -1187,6 +1134,20 @@ entities: 1: 15 -1,10: 1: 34952 + 16,-6: + 0: 1284 + 1: 12834 + 16,-5: + 1: 1 + 16,-7: + 1: 8738 + 0: 1028 + 17,-8: + 1: 4352 + 17,-7: + 1: 4369 + 17,-6: + 1: 4369 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -1218,26 +1179,11 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 235 - moles: - - 27.225372 - - 102.419266 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: - 0 - - 6666.982 + - 0 - 0 - 0 - 0 @@ -1267,23 +1213,6 @@ entities: temperature: 293.15 moles: - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - 6666.982 - 0 - 0 @@ -1293,13 +1222,513 @@ entities: - 0 - 0 - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance - type: NavMap - type: ImplicitRoof + - uid: 3564 + components: + - type: MetaData + name: Prison Station + - type: Transform + pos: 150.92255,68.575584 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: CAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: CAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-2: + ind: 0,-2 + tiles: CAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAGIAAAAAAABiAAAAAAEACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABiAAAAAAMAYgAAAAADAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAIACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAYgAAAAAAAGIAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAGIAAAAAAgBiAAAAAAIACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAABiAAAAAAAAYgAAAAACAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAYgAAAAADAGIAAAAAAQAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAGIAAAAAAwBiAAAAAAIACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-3: + ind: 0,-3 + tiles: CAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQAHAAAAAAAAYgAAAAABAGIAAAAAAwAHAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAgBiAAAAAAEABwAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAEACAAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAADAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAAcAAAAAAABiAAAAAAAAYgAAAAACAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAIACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAACAA== + version: 7 + 0,-4: + ind: 0,-4 + tiles: CAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAABAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAwAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAAAYgAAAAADAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAQAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAABAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAA== + version: 7 + 0,-5: + ind: 0,-5 + tiles: CAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAQAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAIACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAA== + version: 7 + 0,-6: + ind: 0,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 1,-3: + ind: 1,-3 + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAAABwAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAABAAcAAAAAAAAAAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAwAHAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAADAAcAAAAAAAAAAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAAAHAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAMABwAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAwAHAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAMABwAAAAAAAAAAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACAAcAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAIABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAwAHAAAAAAAAYgAAAAACAA== + version: 7 + 1,-4: + ind: 1,-4 + tiles: YgAAAAACAGIAAAAAAwAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAQAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAEABwAAAAAAAGIAAAAAAwBiAAAAAAEABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAQAHAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAABwAAAAAAAAAAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAAAAAcAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAEABwAAAAAAAAAAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAADAAcAAAAAAAAAAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAgAHAAAAAAAAAAAAAAAAAA== + version: 7 + 1,-2: + ind: 1,-2 + tiles: YgAAAAADAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAgBiAAAAAAMAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAgAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAMAYgAAAAADABEAAAAAAQADAAAAAAEAAwAAAAAAABEAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAAAHAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAMAAwAAAAABAAMAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAwBiAAAAAAEAYgAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAIABwAAAAAAABEAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAwARAAAAAAAAYgAAAAADAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAARAAAAAAMAAwAAAAADAAMAAAAAAAADAAAAAAEAAwAAAAAAAAMAAAAAAQADAAAAAAMAEQAAAAABAGIAAAAAAwBiAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAIAAwAAAAAAAAMAAAAAAwARAAAAAAMAEQAAAAAAABEAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAIAEQAAAAABAAMAAAAAAQADAAAAAAMAEQAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAIABwAAAAAAAA== + version: 7 + 2,-3: + ind: 2,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 2,-2: + ind: 2,-2 + tiles: BwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAQAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAMAYgAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAGIAAAAAAgAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAgBiAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAMAYgAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAGIAAAAAAwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 2,-4: + ind: 2,-4 + tiles: YgAAAAACAGIAAAAAAQBiAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAEABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAgAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 1,-5: + ind: 1,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAACAA== + version: 7 + 2,-5: + ind: 2,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAgAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAMABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 15 + 0,-1: + 0: 40413 + 1,0: + 0: 7 + 1,-1: + 0: 17749 + 0,-4: + 0: 40413 + 0,-5: + 0: 39389 + 0,-3: + 0: 40413 + 0,-2: + 0: 40413 + 1,-4: + 0: 17749 + 1,-3: + 0: 17749 + 1,-2: + 0: 18261 + 1,-5: + 0: 17493 + 0,-8: + 0: 55773 + 0,-9: + 0: 55773 + 0,-7: + 0: 55773 + 0,-6: + 0: 55773 + 1,-8: + 0: 21589 + 1,-7: + 0: 21589 + 1,-6: + 0: 21621 + 1,-9: + 0: 21521 + 2,-8: + 1: 60928 + 2,-7: + 1: 61166 + 2,-6: + 1: 61166 + 3,-8: + 1: 65294 + 3,-7: + 1: 65535 + 3,-6: + 1: 65535 + 3,-9: + 1: 61152 + 4,-8: + 1: 65287 + 4,-7: + 1: 65535 + 4,-6: + 1: 65535 + 0,-12: + 0: 55773 + 0,-13: + 0: 55709 + 0,-11: + 0: 55805 + 1: 1536 + 0,-10: + 0: 55773 + 1,-12: + 0: 4125 + 1: 34816 + 1,-11: + 0: 4881 + 1: 35976 + 1,-10: + 0: 4145 + 1: 8 + 1,-13: + 0: 21573 + 2,-12: + 0: 7 + 1: 56576 + 2,-11: + 1: 57301 + 2,-10: + 1: 3269 + 3,-11: + 1: 65522 + 3,-12: + 1: 26112 + 3,-10: + 1: 1634 + 4,-12: + 1: 30704 + 4,-11: + 1: 65520 + 4,-10: + 1: 30704 + 4,-9: + 1: 63344 + 0,-16: + 0: 56733 + 0,-17: + 0: 56729 + 0,-15: + 0: 56733 + 0,-14: + 0: 56733 + 1,-16: + 0: 21829 + 1,-15: + 0: 21829 + 1,-14: + 0: 21831 + 1,-17: + 0: 21828 + 2,-16: + 1: 34952 + 2,-15: + 2: 2176 + 3,-16: + 1: 65331 + 3: 8 + 3,-15: + 4: 544 + 1: 2184 + 3,-17: + 1: 12014 + 4,-16: + 3: 3 + 1: 62216 + 4,-15: + 1: 819 + 4,-14: + 1: 30704 + 4,-13: + 1: 30704 + 0,-20: + 0: 56793 + 0,-21: + 0: 56793 + 0,-19: + 0: 56793 + 0,-18: + 0: 56793 + 1,-20: + 0: 21844 + 1,-19: + 0: 30036 + 1,-18: + 0: 21844 + 1,-21: + 0: 30036 + 4,-17: + 1: 35775 + 0,-24: + 0: 61440 + 0,-23: + 0: 56793 + 0,-22: + 0: 56793 + 1,-24: + 0: 28672 + 1,-23: + 0: 21844 + 1,-22: + 0: 21844 + 5,-12: + 1: 65535 + 5,-11: + 1: 65535 + 5,-10: + 1: 65535 + 5,-9: + 1: 65535 + 5,-13: + 1: 65535 + 5,-8: + 1: 61166 + 6,-12: + 1: 48115 + 6,-11: + 1: 48115 + 6,-10: + 1: 48115 + 6,-9: + 1: 48115 + 6,-13: + 1: 48115 + 6,-8: + 1: 64435 + 7,-12: + 1: 13104 + 7,-11: + 1: 13104 + 7,-10: + 1: 13104 + 7,-9: + 1: 47920 + 7,-13: + 1: 13104 + 8,-9: + 1: 65280 + 5,-16: + 1: 65487 + 5,-15: + 1: 53247 + 5,-14: + 1: 65535 + 5,-17: + 1: 65535 + 6,-16: + 1: 48907 + 6,-15: + 1: 3071 + 6,-14: + 1: 48115 + 6,-17: + 1: 48123 + 7,-16: + 1: 30495 + 7,-15: + 1: 1911 + 7,-14: + 1: 13104 + 7,-17: + 1: 65535 + 8,-16: + 1: 65287 + 8,-15: + 1: 4095 + 5,-7: + 1: 36607 + 5,-6: + 1: 61166 + 5,-5: + 1: 61166 + 6,-7: + 1: 7099 + 6,-6: + 1: 65535 + 6,-5: + 1: 65535 + 7,-8: + 1: 65520 + 7,-7: + 1: 4095 + 7,-6: + 1: 30583 + 7,-5: + 1: 32631 + 8,-8: + 1: 65532 + 8,-7: + 1: 4095 + 8,-6: + 1: 13107 + 8,-5: + 1: 819 + 9,-9: + 1: 13056 + 9,-8: + 1: 13105 + 9,-7: + 1: 819 + 8,-17: + 1: 30583 + 9,-16: + 1: 4352 + 9,-15: + 1: 273 + 4,-18: + 1: 34816 + 5,-18: + 1: 65348 + 5,-19: + 1: 16384 + 6,-18: + 1: 47872 + 7,-18: + 1: 65280 + 8,-18: + 1: 30464 + uniqueMixes: + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 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 - proto: AirAlarm entities: + - uid: 56 + components: + - type: Transform + pos: 24.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 2937 + - 2938 + - 2939 + - 2940 + - 2928 + - 2918 + - 2919 + - 2925 + - 4214 + - 4211 + - 4213 + - 4215 + - 4207 + - 3323 + - 3322 + - 3315 + - 3242 + - uid: 1602 + components: + - type: Transform + pos: 28.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 2901 + - 2694 + - 1758 + - 2760 + - 1752 + - 2790 + - 2757 - uid: 2968 components: - type: Transform @@ -1312,10 +1741,66 @@ entities: - 4187 - 3981 - 3980 - - 2977 - 2978 - - 2980 - 2979 + - uid: 3162 + components: + - type: Transform + pos: 22.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 4212 + - 4215 + - 4211 + - 3146 + - 3098 + - 3099 + - 3145 + - 3130 + - 2921 + - 3246 + - 11451 + - 11454 + - 11450 + - uid: 5210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 2904 + - 8511 + - 2826 + - 8510 + - 2827 + - 8512 + - 2828 + - 2071 + - 8530 + - uid: 5864 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 6714 + - 6713 + - 6751 + - 6752 + - 6736 + - 6735 + - 6727 + - 1579 + - 1462 + - 4215 + - 2935 + - 2936 + - 11482 + - 11500 - uid: 6165 components: - type: Transform @@ -1357,6 +1842,7 @@ entities: - 8245 - 8244 - 4181 + - 2464 - uid: 6524 components: - type: Transform @@ -1370,6 +1856,8 @@ entities: - 4144 - 4145 - 4154 + - 1477 + - 7733 - uid: 6526 components: - type: Transform @@ -1381,6 +1869,7 @@ entities: - 4186 - 4051 - 8221 + - 2073 - uid: 6527 components: - type: Transform @@ -1389,23 +1878,23 @@ entities: parent: 2 - type: DeviceList devices: - - 3953 - - 3949 - - 3963 + - 4188 - 4189 - - 3772 - - 3773 + - 4191 + - 2974 + - 2978 + - 3801 - 3810 - 3788 - - 3801 + - 3772 + - 3963 + - 3773 + - 3949 + - 3953 - 3820 - 3800 - - 4191 - - 4188 - - 2974 - - 2973 - - 2978 - - 2977 + - 8549 + - 8559 - uid: 6529 components: - type: Transform @@ -1413,28 +1902,26 @@ entities: parent: 2 - type: DeviceList devices: - - 4191 - - 4190 - - 4189 - - 4192 + - 3729 + - 3757 + - 3730 + - 3999 + - 3727 + - 3726 + - 2974 + - 2972 + - 2970 + - 2962 + - 2963 + - 2964 + - 8527 + - 2790 - 4218 - 4217 - - 2973 - - 2974 - - 2970 - - 2964 - - 2963 - - 2962 - - 2897 - - 2896 - - 2971 - - 2972 - - 3726 - - 3727 - - 3731 - - 3730 - - 3757 - - 3729 + - 4189 + - 4190 + - 4191 + - 4192 - uid: 6530 components: - type: Transform @@ -1443,12 +1930,11 @@ entities: parent: 2 - type: DeviceList devices: - - 2972 - - 2971 - - 4191 - - 4190 - - 3705 - 3721 + - 3705 + - 4190 + - 4191 + - 2972 - uid: 6531 components: - type: Transform @@ -1556,21 +2042,21 @@ entities: - uid: 6537 components: - type: Transform - pos: 49.5,10.5 + pos: 48.5,10.5 parent: 2 - type: DeviceList devices: - - 2956 - - 2957 - - 4197 - - 4196 - - 4195 - - 3929 - - 3924 - - 3912 - - 3894 - - 3902 + - 3922 + - 3927 - 3901 + - 3902 + - 3894 + - 3912 + - 4195 + - 4196 + - 4197 + - 2957 + - 2956 - uid: 6538 components: - type: Transform @@ -1594,12 +2080,12 @@ entities: - 6540 - 2949 - 2950 - - 4204 - 4200 - 4199 - 4198 - 3611 - 3609 + - 3349 - uid: 6542 components: - type: Transform @@ -1607,23 +2093,16 @@ entities: parent: 2 - type: DeviceList devices: - - 8224 - - 8226 - - 6540 + - 3390 + - 3526 + - 3525 + - 3349 + - 4205 + - 4200 + - 8227 - 8225 - 2947 - - 3525 - - 3390 - - 3389 - - 3526 - - 3564 - - 3563 - - 4204 - - 4202 - - 4203 - - 4205 - - 8227 - - 4200 + - 6540 - uid: 6543 components: - type: Transform @@ -1636,8 +2115,8 @@ entities: - 2947 - 8227 - 4207 - - 4204 - 3518 + - 3349 - uid: 6545 components: - type: Transform @@ -1666,7 +2145,6 @@ entities: - uid: 6547 components: - type: Transform - rot: -1.5707963267948966 rad pos: 1.5,10.5 parent: 2 - type: DeviceList @@ -1680,112 +2158,6 @@ entities: - 3316 - 3419 - 3418 - - uid: 6548 - components: - - type: Transform - pos: 26.5,17.5 - parent: 2 - - type: DeviceList - devices: - - 2921 - - 3246 - - 4212 - - 4215 - - 4211 - - 3130 - - 3145 - - 3099 - - 3146 - - 3098 - - uid: 6550 - components: - - type: Transform - pos: 11.5,29.5 - parent: 2 - - type: DeviceList - devices: - - 2915 - - 2914 - - 2913 - - 4219 - - 4226 - - 4227 - - 4245 - - 4242 - - 4231 - - 4228 - - uid: 6551 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,22.5 - parent: 2 - - type: DeviceList - devices: - - 4219 - - 4218 - - 4211 - - 4226 - - 2913 - - 2914 - - 2915 - - 2894 - - 2895 - - 2917 - - 2916 - - 3007 - - 3072 - - uid: 6552 - components: - - type: Transform - pos: 27.5,20.5 - parent: 2 - - type: DeviceList - devices: - - 4218 - - 2067 - - 2071 - - 2898 - - 2899 - - 2903 - - 2902 - - 2896 - - 2897 - - 2894 - - 2895 - - 2891 - - 2893 - - 2983 - - 2984 - - 4191 - - uid: 6553 - components: - - type: Transform - pos: 29.5,32.5 - parent: 2 - - type: DeviceList - devices: - - 4218 - - 2071 - - 2067 - - 4272 - - 4221 - - 2909 - - 2910 - - 2911 - - 2905 - - 2906 - - 2908 - - 2907 - - 2901 - - 2900 - - 2898 - - 4275 - - 4223 - - 2738 - - 2728 - - 2741 - - 2729 - uid: 6554 components: - type: Transform @@ -1802,21 +2174,18 @@ entities: - uid: 6555 components: - type: Transform - pos: 16.5,40.5 + pos: 17.5,40.5 parent: 2 - type: DeviceList devices: - - 2067 - - 4272 - - 2908 - - 2907 - - 2906 - - 2905 - 396 - - 925 - - 1554 - - 3965 + - 8475 - 2725 + - 3965 + - 1554 + - 1624 + - 8534 + - 4272 - 4222 - uid: 6556 components: @@ -1825,28 +2194,13 @@ entities: parent: 2 - type: DeviceList devices: - - 2067 - - 4221 - - 2909 - - 2910 - - 2911 - - 1309 + - 2406 + - 1741 + - 1735 - 3038 - - 1280 - - 1278 - - uid: 6557 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,36.5 - parent: 2 - - type: DeviceList - devices: - - 2904 - - 2172 - - 2828 - - 2826 - - 2827 + - 1309 + - 4221 + - 8534 - uid: 6558 components: - type: Transform @@ -1854,12 +2208,14 @@ entities: parent: 2 - type: DeviceList devices: + - 8395 + - 2912 + - 2850 + - 8498 + - 2849 - 2071 - 4225 - - 2849 - - 2850 - 2867 - - 2912 - uid: 6559 components: - type: Transform @@ -1868,65 +2224,23 @@ entities: - type: DeviceList devices: - 2904 - - 2901 - - 2900 + - 8472 + - 8473 + - 8474 + - 8471 + - 7657 + - 1831 + - 8477 - 2912 - - 2899 - - 2902 - - 2903 - - 2172 - - 4225 - - 2067 - - 2071 - - 4218 - - 2876 - - 2874 - - 2869 - 3931 - - 3932 - - uid: 6561 - components: - - type: Transform - pos: 23.5,8.5 - parent: 2 - - type: DeviceList - devices: - - 2937 - - 2938 - - 2939 - - 2940 - - 2928 - - 2918 - - 2919 - - 2925 - - 4214 - - 4211 - - 4213 - - 4215 - - 4207 - - 3323 - - 3322 - - 3315 - - 3242 - - uid: 6562 - components: - - type: Transform - pos: 24.5,-2.5 - parent: 2 - - type: DeviceList - devices: - - 8229 - - 8226 - - 2935 - - 4203 - - 4205 - - 4204 - - 4215 - - 3263 - - 3266 - - 3285 - - 3282 - - 3281 + - 2869 + - 7658 + - 1934 + - 2071 + - 8530 + - 2790 + - 4225 + - 8534 - uid: 6563 components: - type: Transform @@ -1935,15 +2249,14 @@ entities: parent: 2 - type: DeviceList devices: - - 2944 - - 4216 - - 4202 - - 4204 - - 3092 - - 3128 - - 3082 - 3097 - - 8224 + - 11536 + - 10339 + - 3094 + - 11530 + - 2628 + - 4216 + - 2944 - uid: 6564 components: - type: Transform @@ -1951,21 +2264,23 @@ entities: parent: 2 - type: DeviceList devices: - - 2936 - - 2940 - - 2939 - - 2938 - - 2937 - 2941 - 2942 - 2943 + - 2937 + - 2938 + - 2939 + - 2940 + - 2936 + - 2935 - 3246 + - 3244 + - 3243 - 4215 - - 4212 - 4216 - 4214 - - 3243 - - 3244 + - 4212 + - 1462 - uid: 6572 components: - type: Transform @@ -1986,6 +2301,18 @@ entities: - 2964 - 2963 - 2962 + - uid: 6614 + components: + - type: Transform + pos: 13.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 6682 + - 6681 + - 8539 + - 6659 + - 6671 - uid: 7434 components: - type: Transform @@ -1994,39 +2321,30 @@ entities: parent: 2 - type: DeviceList devices: - - 2920 + - 4212 + - 4211 + - 8233 + - 4218 + - 4214 + - 2897 - 2919 - 2918 - - 2917 - 2916 - 2922 - - 4211 - - 4219 - - 4214 - - 8233 - - 4212 - 3118 - 3119 - 3185 - 3184 + - 2802 + - 8545 + - 8546 + - 11449 - uid: 8220 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,47.5 parent: 2 - - type: DeviceList - devices: - - 4188 - - 4187 - - 4186 - - 4010 - - 4015 - - 4043 - - 4035 - - 2980 - - 2979 - - 8221 - uid: 8222 components: - type: Transform @@ -2036,7 +2354,6 @@ entities: - type: DeviceList devices: - 4216 - - 4202 - 4197 - 4215 - 4217 @@ -2070,19 +2387,15 @@ entities: parent: 2 - type: DeviceList devices: - - 8225 - - 8229 - - 2931 - - 2932 - - 2930 + - 3349 - 4205 - - 4203 - - 4204 - 4213 - - 3370 - 3360 - - 3379 + - 3370 - 3378 + - 3379 + - 2931 + - 8225 - uid: 8236 components: - type: Transform @@ -2096,6 +2409,7 @@ entities: - 4210 - 4211 - 3200 + - 11438 - uid: 8240 components: - type: Transform @@ -2117,118 +2431,374 @@ entities: parent: 2 - type: DeviceList devices: - - 2932 - - 2931 - - 2930 - - 2929 - - 2928 - - 4214 - - 4213 - - 4207 - - 4205 - - 3348 - - 3351 + - 6463 - 3380 - - 3350 -- proto: AirAlarmElectronics + - 3351 + - 3348 + - 4205 + - 4207 + - 4213 + - 4214 + - 2928 + - 2929 + - 2931 + - uid: 8509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,39.5 + parent: 2 + - type: DeviceList + devices: + - 8474 + - 8473 + - 8472 + - 2406 + - 1741 + - 1735 + - 8475 + - 4223 + - 1589 + - 1278 + - 1280 + - 4221 + - 8534 + - 2071 + - 4272 + - uid: 8532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 1606 + - 8527 + - 2901 + - 8471 + - 7657 + - 1831 + - 8477 + - 3932 + - 8484 + - 8507 + - 8508 + - 2876 + - 2874 + - 2757 + - 2790 + - 2071 + - 6688 + - 4191 + - uid: 8538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,25.5 + parent: 2 + - type: DeviceList + devices: + - 6682 + - 6681 + - 6675 + - 8539 + - 8543 + - 6656 + - 6654 + - 6650 + - 6651 + - uid: 8540 + components: + - type: Transform + pos: 23.5,21.5 + parent: 2 + - type: DeviceList + devices: + - 6675 + - 6688 + - 2790 + - uid: 8542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 6681 + - 6675 + - 4218 + - 6688 + - 8543 + - 6644 + - 6643 + - uid: 8544 + components: + - type: Transform + pos: 25.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 4218 + - 6675 + - 4211 + - 4191 + - 2916 + - uid: 10232 + components: + - type: Transform + pos: 16.5,-39.5 + parent: 3564 + - type: DeviceList + devices: + - 9636 + - 9638 + - 9637 + - 9639 + - 10225 + - 10226 + - 10228 + - 10231 + - 10030 + - 10057 + - 10056 + - 10029 + - 10031 + - uid: 10233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-31.5 + parent: 3564 + - type: DeviceList + devices: + - 9631 + - 9632 + - 9633 + - 9634 + - 9635 + - 9636 + - 9638 + - 9637 + - 9640 + - 9641 + - 10222 + - 10225 + - 10226 + - 10228 + - 10231 + - 10229 + - 10227 + - 10230 + - 10114 + - 10113 + - 10116 + - 10115 + - 10014 + - 10017 + - 10079 + - 10080 + - 10013 + - 10016 + - 10015 + - 10012 + - 9926 + - uid: 10234 + components: + - type: Transform + pos: 34.5,-24.5 + parent: 3564 + - type: DeviceList + devices: + - 9635 + - 10225 + - 10226 + - 10228 + - 10227 + - 10176 + - 10180 + - 10181 + - 10178 + - 10177 + - 10182 + - uid: 10235 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 3564 + - type: DeviceList + devices: + - 9631 + - 9632 + - 10225 + - 10226 + - 10228 + - 10230 + - 10198 + - 10200 + - 10199 + - 10197 + - uid: 10236 + components: + - type: Transform + pos: 19.5,-19.5 + parent: 3564 + - type: DeviceList + devices: + - 9634 + - 9633 + - 10225 + - 10226 + - 10228 + - 10229 + - 10129 + - 10132 + - 10133 + - 10130 + - 10131 + - 10134 + - uid: 10237 + components: + - type: Transform + pos: 16.5,-64.5 + parent: 3564 + - type: DeviceList + devices: + - 9647 + - 9646 + - 10222 + - 10220 + - 10221 + - 9808 + - uid: 10238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-62.5 + parent: 3564 + - type: DeviceList + devices: + - 9645 + - 9646 + - 10220 + - 10221 + - 10222 + - 9809 + - 9807 + - uid: 10239 + components: + - type: Transform + pos: 19.5,-62.5 + parent: 3564 + - type: DeviceList + devices: + - 9641 + - 9640 + - 9645 + - 9642 + - 9643 + - 9644 + - 9649 + - 9647 + - 9650 + - 10220 + - 10221 + - 10222 + - 10223 + - 10224 + - 10225 + - 10226 + - 10228 + - 9838 + - 9818 + - 9827 + - 9828 + - 9871 + - 9853 + - 9854 + - 9872 + - uid: 10240 + components: + - type: Transform + pos: 31.5,-62.5 + parent: 3564 + - type: DeviceList + devices: + - 9648 + - 9649 + - 10222 + - 10223 + - 10224 + - 9835 + - 9837 + - 9836 + - 9834 + - uid: 10241 + components: + - type: Transform + pos: 31.5,-57.5 + parent: 3564 + - type: DeviceList + devices: + - 9642 + - 9643 + - 9644 + - 9648 + - 10224 + - 10222 + - 10223 + - 9878 + - 9880 + - 9881 + - 9879 + - uid: 11566 + components: + - type: Transform + pos: 21.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 7749 +- proto: AirCanister entities: - - uid: 765 + - uid: 53 components: - type: Transform - pos: 9.5,-12.5 + pos: 38.5,-7.5 parent: 2 - - uid: 1932 + - uid: 1941 components: - type: Transform - pos: 9.5,-12.5 + pos: 38.5,-6.5 parent: 2 -- proto: Airlock +- proto: AirlockAtmosphericsLocked entities: - - uid: 28 + - uid: 17 components: - type: Transform - pos: 9.5,1.5 + pos: 30.5,-0.5 parent: 2 - - uid: 29 + - uid: 223 components: - type: Transform - pos: 13.5,1.5 + pos: 30.5,-2.5 parent: 2 - - uid: 3230 - components: - - type: Transform - pos: 30.5,1.5 - parent: 2 - - uid: 4054 - components: - - type: Transform - pos: 44.5,-10.5 - parent: 2 - - uid: 4055 - components: - - type: Transform - pos: 42.5,-10.5 - parent: 2 - - uid: 4056 - components: - - type: Transform - pos: 40.5,-10.5 - parent: 2 -- proto: AirlockArmoryLocked - entities: - - uid: 1010 + - uid: 2056 components: - type: Transform pos: 36.5,-6.5 parent: 2 -- proto: AirlockAtmosphericsLocked - entities: - - uid: 1731 + - type: Door + secondsUntilStateChange: -12907.095 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - uid: 6838 components: - type: Transform - pos: 28.5,23.5 - parent: 2 - - uid: 1788 - components: - - type: Transform - pos: 31.5,29.5 - parent: 2 - - uid: 3239 - components: - - type: Transform - pos: 31.5,30.5 - parent: 2 -- proto: AirlockBarKitchenLocked - entities: - - uid: 1080 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-2.5 - parent: 2 -- proto: AirlockBarLocked - entities: - - uid: 1518 - components: - - type: Transform - pos: 24.5,-0.5 - parent: 2 -- proto: AirlockCargoLocked - entities: - - uid: 88 - components: - - type: Transform - pos: 16.5,21.5 - parent: 2 - - uid: 205 - components: - - type: Transform - pos: 16.5,22.5 - parent: 2 - - uid: 759 - components: - - type: Transform - pos: 16.5,25.5 + pos: 30.5,1.5 parent: 2 - proto: AirlockChapelLocked entities: @@ -2237,21 +2807,6 @@ entities: - type: Transform pos: 0.5,16.5 parent: 2 -- proto: AirlockChiefEngineerLocked - entities: - - uid: 1601 - components: - - type: Transform - pos: 42.5,33.5 - parent: 2 -- proto: AirlockChiefMedicalOfficerGlassLocked - entities: - - uid: 551 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,13.5 - parent: 2 - proto: AirlockCommandLocked entities: - uid: 971 @@ -2259,6 +2814,11 @@ entities: - type: Transform pos: 16.5,57.5 parent: 2 + - uid: 6120 + components: + - type: Transform + pos: 18.5,57.5 + parent: 2 - proto: AirlockEngineering entities: - uid: 4564 @@ -2266,20 +2826,28 @@ entities: - type: Transform pos: 33.5,49.5 parent: 2 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,36.5 + parent: 2 + - uid: 8535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,34.5 + parent: 2 + - uid: 8536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,34.5 + parent: 2 - proto: AirlockEngineeringLocked entities: - - uid: 666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,20.5 - parent: 2 - - uid: 686 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-11.5 - parent: 2 - uid: 760 components: - type: Transform @@ -2300,29 +2868,27 @@ entities: - type: Transform pos: 53.5,20.5 parent: 2 - - uid: 1744 + - uid: 2903 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,20.5 + pos: 35.5,21.5 parent: 2 - - uid: 1760 + - uid: 3113 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,23.5 - parent: 2 - - uid: 2757 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,36.5 - parent: 2 - - uid: 7603 - components: - - type: Transform - pos: 37.5,30.5 + pos: 2.5,6.5 parent: 2 + - type: AccessReader + access: + - - Borg + - - Captain + - - CentralCommand + - - ChiefEngineer + - - Engineering + - - Research + - - ResearchDirector + - - StationAi - proto: AirlockEVALocked entities: - uid: 1928 @@ -2331,218 +2897,101 @@ entities: rot: 3.141592653589793 rad pos: 53.5,38.5 parent: 2 -- proto: AirlockExternalAtmosphericsLocked +- proto: AirlockExternalCommandLocked entities: - - uid: 1438 + - uid: 140 components: - type: Transform - pos: 20.5,39.5 + pos: 15.5,58.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 1512: + 657: - - DoorStatus - DoorBolt - - uid: 1512 + - uid: 376 components: - type: Transform - pos: 18.5,39.5 + pos: 55.5,60.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 657 + components: + - type: Transform + pos: 16.5,60.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 1438: - - - DoorStatus - - DoorBolt - - 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: + 140: - - DoorStatus - DoorBolt - proto: AirlockExternalEngineeringLocked entities: - uid: 843 - components: - - type: Transform - pos: -1.5,-10.5 - parent: 2 - - type: Door - secondsUntilStateChange: -6325.9316 - state: Opening - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 6731: - - - DoorStatus - - DoorBolt - lastSignals: - DoorStatus: True - - uid: 2744 components: - type: Transform pos: 58.5,63.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 2745: - - - DoorStatus - - DoorBolt - - uid: 2745 + - uid: 7389 components: - type: Transform - pos: 58.5,65.5 + pos: -0.5,-10.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: 2 - - type: DeviceLinkSource - linkedPorts: - 4506: - - - DoorStatus - - DoorBolt - - 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: 2 - - type: DeviceLinkSource - linkedPorts: - 4265: - - - DoorStatus - - DoorBolt - - 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: Door - secondsUntilStateChange: -6328.9985 - state: Opening - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 843: - - - DoorStatus - - DoorBolt - lastSignals: - DoorStatus: True -- proto: AirlockExternalGlassAtmosphericsLocked +- proto: AirlockExternalGlass entities: - - uid: 621 + - uid: 454 components: - type: Transform - pos: 0.5,36.5 + rot: -1.5707963267948966 rad + pos: 11.5,30.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 6692: + - - DoorStatus + - InputA + - uid: 504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,29.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 6692: + - - DoorStatus + - InputB + - uid: 2984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,27.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 504: + - - DoorStatus + - DoorBolt + 454: + - - DoorStatus + - DoorBolt +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 707 + components: + - type: Transform + pos: 11.5,40.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 @@ -2552,6 +3001,30 @@ entities: - - DoorStatus - DoorBolt - uid: 721 + components: + - type: Transform + pos: 11.5,38.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 707: + - - DoorStatus + - DoorBolt + - uid: 1528 + components: + - type: Transform + pos: 0.5,36.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1587: + - - DoorStatus + - DoorBolt + - uid: 1587 components: - type: Transform pos: 0.5,34.5 @@ -2560,21 +3033,9 @@ entities: invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 621: + 1528: - - DoorStatus - DoorBolt -- proto: AirlockExternalGlassCargoLocked - entities: - - uid: 631 - components: - - type: Transform - pos: 10.5,23.5 - parent: 2 - - uid: 1954 - components: - - type: Transform - pos: 10.5,25.5 - parent: 2 - proto: AirlockExternalGlassLocked entities: - uid: 1829 @@ -2601,18 +3062,13 @@ entities: 1847: - - DoorStatus - DoorBolt - - uid: 2502 + - uid: 3232 components: - type: Transform - pos: 62.5,48.5 + pos: 57.5,-18.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 2515: - - - DoorStatus - - DoorBolt - proto: AirlockExternalGlassShuttleArrivals entities: - uid: 2515 @@ -2621,13 +3077,6 @@ entities: rot: 1.5707963267948966 rad pos: 64.5,48.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6658: - - - DoorStatus - - InputA - - - DockStatus - - InputB - type: DeviceLinkSink invokeCounter: 1 - proto: AirlockExternalGlassShuttleEmergencyLocked @@ -2661,117 +3110,54 @@ entities: - InputB - type: DeviceLinkSink invokeCounter: 1 -- proto: AirlockExternalGlassShuttleLocked + - uid: 3266 + components: + - type: Transform + pos: 57.5,-20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3235: + - - DoorStatus + - InputA + - - DockStatus + - InputB +- proto: AirlockExternalGlassShuttleEscape entities: - - uid: 729 + - uid: 674 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,23.5 + pos: 10.5,20.5 parent: 2 - - uid: 1795 + - uid: 1952 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,25.5 + pos: 10.5,24.5 parent: 2 -- proto: AirlockFreezerLocked +- proto: AirlockExternalLocked entities: - - uid: 1517 + - uid: 2795 components: - type: Transform - pos: 27.5,-10.5 + pos: 62.5,59.5 parent: 2 - proto: AirlockGlass entities: - - uid: 381 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,3.5 - parent: 2 - - uid: 2779 + - uid: 4740 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-9.5 + pos: 55.5,36.5 parent: 2 - - uid: 3228 +- proto: AirlockGlassShuttle + entities: + - uid: 10382 components: - type: Transform - pos: 30.5,-0.5 - parent: 2 - - uid: 4064 - components: - - type: Transform - pos: 30.5,-2.5 - parent: 2 - - uid: 5900 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,28.5 - parent: 2 - - uid: 8278 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,5.5 - parent: 2 - - uid: 8279 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,6.5 - parent: 2 - - uid: 8280 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,5.5 - parent: 2 - - uid: 8281 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,4.5 - parent: 2 - - uid: 8282 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,19.5 - parent: 2 - - uid: 8283 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,18.5 - parent: 2 - - uid: 8284 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,28.5 - parent: 2 - - uid: 8285 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-11.5 - parent: 2 - - uid: 8287 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,38.5 - parent: 2 - - uid: 8288 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,38.5 - parent: 2 + pos: 22.5,-72.5 + parent: 3564 - proto: AirlockHeadOfPersonnelLocked entities: - uid: 7177 @@ -2779,14 +3165,6 @@ entities: - type: Transform pos: 42.5,26.5 parent: 2 -- proto: AirlockHydroponicsLocked - entities: - - uid: 1570 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-4.5 - parent: 2 - proto: AirlockMaintCommandLocked entities: - uid: 2366 @@ -2794,6 +3172,13 @@ entities: - type: Transform pos: 62.5,27.5 parent: 2 +- proto: AirlockMaintEngiLocked + entities: + - uid: 51 + components: + - type: Transform + pos: 20.5,20.5 + parent: 2 - proto: AirlockMaintHydroLocked entities: - uid: 3587 @@ -2804,59 +3189,48 @@ entities: parent: 2 - proto: AirlockMaintLocked entities: - - uid: 182 + - uid: 686 components: - type: Transform - pos: 2.5,6.5 - parent: 2 - - uid: 1578 - components: - - type: Transform - pos: 50.5,20.5 - parent: 2 - - uid: 2122 - components: - - type: Transform - pos: 51.5,22.5 - parent: 2 - - type: Door - secondsUntilStateChange: -56215.523 - state: Opening - - type: DeviceLinkSource - lastSignals: - DoorStatus: True - - uid: 2123 - components: - - type: Transform - pos: 51.5,18.5 + pos: 6.5,-9.5 parent: 2 - uid: 2672 components: - type: Transform pos: 3.5,-8.5 parent: 2 - - uid: 3588 + - uid: 3711 components: - type: Transform - pos: 32.5,-10.5 + pos: 19.5,20.5 parent: 2 - uid: 5219 components: - type: Transform pos: 43.5,-14.5 parent: 2 + - uid: 5971 + components: + - type: Transform + pos: 17.5,19.5 + parent: 2 - uid: 7181 components: - type: Transform pos: 61.5,55.5 parent: 2 -- proto: AirlockMaintSecLocked - entities: - - uid: 1519 + - uid: 8548 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-8.5 + pos: 36.5,18.5 + parent: 2 +- proto: AirlockMedicalLocked + entities: + - uid: 8547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,17.5 parent: 2 - proto: AirlockMedicalMorgueLocked entities: @@ -2872,20 +3246,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,14.5 parent: 2 -- proto: AirlockQuartermasterGlassLocked - entities: - - uid: 1921 - components: - - type: Transform - pos: 13.5,29.5 - parent: 2 -- proto: AirlockResearchDirectorLocked - entities: - - uid: 1505 - components: - - type: Transform - pos: 50.5,12.5 - parent: 2 - proto: AirlockScienceLocked entities: - uid: 260 @@ -2898,45 +3258,165 @@ entities: - type: Transform pos: 50.5,0.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3928: + - - DoorStatus + - DoorBolt + - uid: 3928 + components: + - type: Transform + pos: 49.5,1.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1259: + - - DoorStatus + - DoorBolt + - uid: 4941 + components: + - type: Transform + pos: 50.5,10.5 + parent: 2 - uid: 6995 components: - type: Transform pos: 57.5,6.5 parent: 2 -- proto: AirSensor +- proto: AirlockSecurityLocked entities: - - uid: 2067 + - uid: 10378 components: - type: Transform - pos: 28.5,28.5 + rot: -1.5707963267948966 rad + pos: 18.5,-60.5 + parent: 3564 + - uid: 10379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-67.5 + parent: 3564 + - uid: 10380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-64.5 + parent: 3564 + - uid: 10381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-70.5 + parent: 3564 + - uid: 10383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-41.5 + parent: 3564 + - uid: 10384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-41.5 + parent: 3564 + - uid: 10385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-43.5 + parent: 3564 + - uid: 10386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-43.5 + parent: 3564 + - uid: 10387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-39.5 + parent: 3564 + - uid: 10388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-39.5 + parent: 3564 +- proto: AirSensor + entities: + - uid: 1462 + components: + - type: Transform + pos: 28.5,-6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6559 - - 6553 - - 6555 - - 6556 - - 6552 + - 5864 + - 6564 - uid: 2071 components: - type: Transform - pos: 34.5,32.5 + pos: 34.5,34.5 parent: 2 - type: DeviceNetwork deviceLists: + - 8509 + - 5210 - 6559 - 6558 - - 6553 - - 6552 + - 8532 - uid: 2172 components: - type: Transform pos: 35.5,39.5 parent: 2 + - uid: 2628 + components: + - type: Transform + pos: 37.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6563 + - uid: 2757 + components: + - type: Transform + pos: 28.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8532 + - 1602 + - uid: 2790 + components: + - type: Transform + pos: 33.5,26.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 6557 - 6559 + - 8532 + - 1602 + - 8540 + - 6529 + - uid: 3349 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6543 + - 6539 + - 8231 + - 6542 - uid: 4186 components: - type: Transform @@ -2944,7 +3424,6 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8220 - 6526 - uid: 4187 components: @@ -2954,7 +3433,6 @@ entities: - type: DeviceNetwork deviceLists: - 2968 - - 8220 - 6526 - uid: 4188 components: @@ -2963,19 +3441,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6527 - 2968 - - 8220 + - 6527 - uid: 4189 components: - type: Transform - pos: 52.5,33.5 + pos: 55.5,33.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6529 - - 6527 - 2968 + - 6527 + - 6529 - uid: 4190 components: - type: Transform @@ -2983,8 +3460,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6529 - 6530 + - 6529 - uid: 4191 components: - type: Transform @@ -2992,12 +3469,13 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6552 - - 6529 - 6530 - 6532 - 6572 + - 8532 + - 8544 - 6527 + - 6529 - uid: 4192 components: - type: Transform @@ -3005,9 +3483,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6529 - 6532 - 6531 + - 6529 - uid: 4193 components: - type: Transform @@ -3085,14 +3563,14 @@ entities: - uid: 4200 components: - type: Transform - pos: 46.5,-16.5 + pos: 45.5,-16.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6542 - 6539 - 8228 - 6538 + - 6542 - uid: 4201 components: - type: Transform @@ -3102,39 +3580,6 @@ entities: deviceLists: - 6535 - 6536 - - uid: 4202 - components: - - type: Transform - pos: 34.5,-3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 8222 - - 6563 - - 6542 - - uid: 4203 - components: - - type: Transform - pos: 29.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6542 - - 6562 - - 8231 - - uid: 4204 - components: - - type: Transform - pos: 38.5,-12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6563 - - 6542 - - 6539 - - 6562 - - 8231 - - 6543 - uid: 4205 components: - type: Transform @@ -3142,10 +3587,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6542 - - 6562 - - 8231 - 8241 + - 8231 + - 6542 - uid: 4206 components: - type: Transform @@ -3158,11 +3602,13 @@ entities: - uid: 4207 components: - type: Transform + anchored: False pos: 5.5,2.5 parent: 2 + - type: Physics + bodyType: Dynamic - type: DeviceNetwork deviceLists: - - 6561 - 6547 - 6546 - 6165 @@ -3170,6 +3616,7 @@ entities: - 8241 - 8240 - 6543 + - 56 - uid: 4208 components: - type: Transform @@ -3205,11 +3652,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6551 - - 6561 - - 7434 - - 6548 + - 56 - 8236 + - 8544 + - 3162 + - 7434 - uid: 4212 components: - type: Transform @@ -3218,8 +3665,8 @@ entities: - type: DeviceNetwork deviceLists: - 6564 + - 3162 - 7434 - - 6548 - uid: 4213 components: - type: Transform @@ -3227,10 +3674,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8231 - - 6561 - 6165 - 8241 + - 56 + - 8231 - uid: 4214 components: - type: Transform @@ -3238,11 +3685,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6564 - - 6561 - - 7434 + - 56 - 6165 - 8241 + - 6564 + - 7434 - uid: 4215 components: - type: Transform @@ -3251,10 +3698,10 @@ entities: - type: DeviceNetwork deviceLists: - 8222 + - 56 + - 5864 - 6564 - - 6562 - - 6561 - - 6548 + - 3162 - uid: 4216 components: - type: Transform @@ -3265,8 +3712,8 @@ entities: - 6572 - 8222 - 6533 - - 6563 - 6564 + - 6563 - uid: 4217 components: - type: Transform @@ -3274,10 +3721,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6529 - 6572 - 6531 - 8222 + - 6529 - uid: 4218 components: - type: Transform @@ -3285,21 +3732,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6559 - - 6553 - - 6552 - - 6551 - - 6529 - - uid: 4219 - components: - - type: Transform - pos: 18.5,21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6551 - - 6550 + - 8542 + - 8544 - 7434 + - 6529 - uid: 4221 components: - type: Transform @@ -3307,8 +3743,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6553 - 6556 + - 8509 - uid: 4222 components: - type: Transform @@ -3316,8 +3752,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6555 - 6554 + - 6555 - uid: 4225 components: - type: Transform @@ -3327,15 +3763,6 @@ entities: deviceLists: - 6559 - 6558 - - uid: 4226 - components: - - type: Transform - pos: 13.5,24.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6551 - - 6550 - uid: 4272 components: - type: Transform @@ -3343,9 +3770,57 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6553 - - 6555 - 6554 + - 8509 + - 6555 + - uid: 6675 + components: + - type: Transform + pos: 17.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8538 + - 8542 + - 8540 + - 8544 + - uid: 6681 + components: + - type: Transform + pos: 13.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6614 + - 8538 + - 8542 + - uid: 6682 + components: + - type: Transform + pos: 13.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6614 + - 8538 + - uid: 6688 + components: + - type: Transform + pos: 27.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8532 + - 8542 + - 8540 + - uid: 7749 + components: + - type: Transform + pos: 21.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11566 - uid: 8227 components: - type: Transform @@ -3353,9 +3828,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6542 - 6165 - 6543 + - 6542 - uid: 8233 components: - type: Transform @@ -3363,9 +3838,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 7434 - 8236 - 6547 + - 7434 - uid: 8243 components: - type: Transform @@ -3382,12 +3857,160 @@ entities: - type: DeviceNetwork deviceLists: - 6523 -- proto: AltarSpawner - entities: - - uid: 317 + - uid: 8530 components: - type: Transform - pos: -5.5,14.5 + pos: 33.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5210 + - 6559 + - uid: 8534 + components: + - type: Transform + pos: 24.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6556 + - 8509 + - 6555 + - 6559 + - uid: 10220 + components: + - type: Transform + pos: 15.5,-60.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10238 + - 10237 + - 10239 + - uid: 10221 + components: + - type: Transform + pos: 17.5,-65.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10238 + - 10237 + - 10239 + - uid: 10222 + components: + - type: Transform + pos: 22.5,-62.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10238 + - 10237 + - 10239 + - 10241 + - 10240 + - 10233 + - uid: 10223 + components: + - type: Transform + pos: 30.5,-59.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - 10241 + - 10240 + - uid: 10224 + components: + - type: Transform + pos: 31.5,-65.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - 10241 + - 10240 + - uid: 10225 + components: + - type: Transform + pos: 22.5,-52.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - 10233 + - 10232 + - 10236 + - 10234 + - 10235 + - uid: 10226 + components: + - type: Transform + pos: 22.5,-40.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - 10233 + - 10232 + - 10236 + - 10234 + - 10235 + - uid: 10227 + components: + - type: Transform + pos: 32.5,-28.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - 10234 + - uid: 10228 + components: + - type: Transform + pos: 22.5,-28.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - 10233 + - 10232 + - 10236 + - 10234 + - 10235 + - uid: 10229 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - 10236 + - uid: 10230 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - 10235 + - uid: 10231 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - 10232 +- proto: AltarSpawner + entities: + - uid: 11349 + components: + - type: Transform + pos: -4.5,14.5 parent: 2 - proto: AlwaysPoweredLightExterior entities: @@ -3426,6 +4049,18 @@ entities: - type: Transform pos: -0.5,-16.5 parent: 2 + - uid: 4420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,63.5 + parent: 2 + - uid: 4558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,63.5 + parent: 2 - uid: 5753 components: - type: Transform @@ -3442,15 +4077,46 @@ entities: - type: Transform pos: 55.5,-3.5 parent: 2 -- proto: AmmoTechFab - entities: - - uid: 1370 + - uid: 7114 components: - type: Transform - pos: 40.5,-4.5 + rot: -1.5707963267948966 rad + pos: 66.5,-11.5 parent: 2 + - uid: 11207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-21.5 + parent: 2 +- proto: AmeController + entities: + - uid: 7798 + components: + - type: Transform + pos: 45.5,41.5 + parent: 2 +- proto: AmmoTechFab + entities: + - uid: 9796 + components: + - type: Transform + pos: 30.5,-69.5 + parent: 3564 - proto: APCBasic entities: + - uid: 3024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,22.5 + parent: 2 + - uid: 4235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,28.5 + parent: 2 - uid: 4916 components: - type: Transform @@ -3503,17 +4169,6 @@ entities: - type: Transform pos: 44.5,21.5 parent: 2 - - uid: 4930 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,20.5 - parent: 2 - - uid: 4931 - components: - - type: Transform - pos: 15.5,29.5 - parent: 2 - uid: 4932 components: - type: Transform @@ -3522,7 +4177,7 @@ entities: - uid: 4933 components: - type: Transform - rot: 1.5707963267948966 rad + rot: -1.5707963267948966 rad pos: 22.5,39.5 parent: 2 - uid: 4934 @@ -3531,12 +4186,6 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,31.5 parent: 2 - - uid: 4935 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,34.5 - parent: 2 - uid: 4936 components: - type: Transform @@ -3549,21 +4198,10 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,12.5 parent: 2 - - uid: 4939 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,11.5 - parent: 2 - - uid: 4941 - components: - - type: Transform - pos: 51.5,7.5 - parent: 2 - uid: 4942 components: - type: Transform - rot: -1.5707963267948966 rad + rot: -3.141592653589793 rad pos: 59.5,4.5 parent: 2 - uid: 4943 @@ -3583,17 +4221,11 @@ entities: - type: Transform pos: 35.5,3.5 parent: 2 - - uid: 4946 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-3.5 - parent: 2 - uid: 4948 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-11.5 + pos: 4.5,-10.5 parent: 2 - uid: 4949 components: @@ -3647,18 +4279,120 @@ entities: - type: Transform pos: 25.5,-13.5 parent: 2 -- proto: APCElectronics + - uid: 6164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,6.5 + parent: 2 + - uid: 6660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,30.5 + parent: 2 + - uid: 7012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-6.5 + parent: 2 + - uid: 7571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-2.5 + parent: 2 + - uid: 8274 + components: + - type: Transform + pos: 50.5,15.5 + parent: 2 + - uid: 8290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,24.5 + parent: 2 +- proto: APCHighCapacity entities: - - uid: 2181 + - uid: 9462 components: - type: Transform - pos: 10.5,-12.5 - parent: 2 - - uid: 2183 + pos: 15.5,-39.5 + parent: 3564 + - uid: 9463 components: - type: Transform - pos: 10.5,-12.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 19.5,-39.5 + parent: 3564 + - uid: 9464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-31.5 + parent: 3564 + - uid: 9465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-31.5 + parent: 3564 + - uid: 9466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-30.5 + parent: 3564 + - uid: 9467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-20.5 + parent: 3564 + - uid: 9468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-59.5 + parent: 3564 + - uid: 9469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-60.5 + parent: 3564 + - uid: 9470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-64.5 + parent: 3564 + - uid: 9471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-60.5 + parent: 3564 + - uid: 9472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-70.5 + parent: 3564 + - uid: 9473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-68.5 + parent: 3564 + - uid: 9651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-46.5 + parent: 3564 - proto: ArrivalsShuttleTimer entities: - uid: 6152 @@ -3680,10 +4414,40 @@ entities: parent: 2 - proto: AtmosDeviceFanDirectional entities: - - uid: 1009 + - uid: 102 components: - type: Transform - pos: 27.5,-10.5 + rot: -1.5707963267948966 rad + pos: 26.5,31.5 + parent: 2 + - uid: 133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 2 + - uid: 291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,60.5 + parent: 2 + - uid: 1711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,63.5 + parent: 2 + - uid: 2057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,50.5 + parent: 2 + - uid: 2502 + components: + - type: Transform + pos: 37.5,53.5 parent: 2 - uid: 2611 components: @@ -3691,256 +4455,467 @@ entities: rot: 1.5707963267948966 rad pos: 64.5,48.5 parent: 2 + - uid: 2758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-11.5 + parent: 2 + - uid: 2779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,59.5 + parent: 2 + - uid: 3920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,20.5 + parent: 2 + - uid: 3921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,24.5 + parent: 2 + - uid: 6190 + components: + - type: Transform + pos: 57.5,-20.5 + parent: 2 - uid: 8276 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,60.5 parent: 2 - - uid: 8297 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,65.5 - parent: 2 - - uid: 8298 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,60.5 - parent: 2 - uid: 8299 components: - type: Transform pos: 57.5,-4.5 parent: 2 - - uid: 8300 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,40.5 - parent: 2 - - uid: 8301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,36.5 - parent: 2 - - uid: 8302 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,25.5 - parent: 2 - - uid: 8303 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,23.5 - parent: 2 - - uid: 8304 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,26.5 - parent: 2 - - uid: 8305 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,22.5 - parent: 2 - uid: 8306 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,12.5 parent: 2 - - uid: 8307 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,5.5 - parent: 2 - - uid: 8308 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-10.5 - parent: 2 - uid: 8309 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-12.5 parent: 2 + - uid: 10389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-41.5 + parent: 3564 + - uid: 11565 + components: + - type: Transform + pos: 22.5,-72.5 + parent: 3564 - proto: AtmosFixBlockerMarker entities: - - uid: 1620 + - uid: 1713 components: - type: Transform - pos: 23.5,28.5 + pos: 23.5,-4.5 parent: 2 - - uid: 1621 + - uid: 1720 components: - type: Transform - pos: 23.5,27.5 + pos: 22.5,-4.5 parent: 2 - - uid: 1679 + - uid: 2858 components: - type: Transform - pos: 24.5,28.5 + pos: 23.5,-5.5 parent: 2 - - uid: 1680 + - uid: 3110 components: - type: Transform - pos: 24.5,27.5 + pos: 22.5,-5.5 parent: 2 - - uid: 1793 - components: - - type: Transform - pos: 21.5,39.5 - parent: 2 - - uid: 1794 - components: - - type: Transform - pos: 21.5,38.5 - parent: 2 - - uid: 1797 - components: - - type: Transform - pos: 21.5,37.5 - parent: 2 - - uid: 1798 - components: - - type: Transform - pos: 21.5,36.5 - parent: 2 -- proto: AtmosFixFreezerMarker - entities: - - uid: 1520 + - uid: 4025 components: - type: Transform pos: 29.5,-12.5 parent: 2 - - uid: 1529 + - uid: 4033 components: - type: Transform pos: 28.5,-12.5 parent: 2 - - uid: 1530 + - uid: 4054 components: - type: Transform pos: 27.5,-12.5 parent: 2 - - uid: 1531 + - uid: 4055 components: - type: Transform pos: 26.5,-12.5 parent: 2 - - uid: 1532 + - uid: 4056 components: - type: Transform pos: 25.5,-12.5 parent: 2 - - uid: 2009 - components: - - type: Transform - pos: 29.5,-11.5 - parent: 2 - - uid: 2013 - components: - - type: Transform - pos: 28.5,-11.5 - parent: 2 - - uid: 2056 - components: - - type: Transform - pos: 26.5,-11.5 - parent: 2 - - uid: 2331 - components: - - type: Transform - pos: 27.5,-11.5 - parent: 2 -- proto: AtmosFixNitrogenMarker - entities: - - uid: 1389 - components: - - type: Transform - pos: 18.5,27.5 - parent: 2 - - uid: 1455 - components: - - type: Transform - pos: 17.5,28.5 - parent: 2 - - uid: 1456 - components: - - type: Transform - pos: 17.5,27.5 - parent: 2 - - uid: 1457 - components: - - type: Transform - pos: 18.5,28.5 - parent: 2 -- proto: AtmosFixOxygenMarker - entities: - - uid: 1461 - components: - - type: Transform - pos: 17.5,31.5 - parent: 2 - - uid: 1676 + - uid: 7166 components: - type: Transform pos: 17.5,30.5 parent: 2 - - uid: 1677 + - uid: 7167 components: - type: Transform - pos: 18.5,30.5 + pos: 17.5,31.5 parent: 2 - - uid: 1678 + - uid: 7196 + components: + - type: Transform + pos: 17.5,29.5 + parent: 2 + - uid: 7197 + components: + - type: Transform + pos: 17.5,28.5 + parent: 2 + - uid: 7198 + components: + - type: Transform + pos: 17.5,27.5 + parent: 2 + - uid: 7200 components: - type: Transform pos: 18.5,31.5 parent: 2 -- proto: AtmosFixPlasmaMarker - entities: - - uid: 17 + - uid: 7203 components: - type: Transform - pos: 24.5,31.5 + pos: 18.5,30.5 parent: 2 - - uid: 1395 + - uid: 7207 components: - type: Transform - pos: 23.5,30.5 + pos: 18.5,29.5 parent: 2 - - uid: 1483 + - uid: 7211 + components: + - type: Transform + pos: 18.5,27.5 + parent: 2 + - uid: 7213 + components: + - type: Transform + pos: 19.5,31.5 + parent: 2 + - uid: 7214 + components: + - type: Transform + pos: 19.5,30.5 + parent: 2 + - uid: 7215 + components: + - type: Transform + pos: 19.5,29.5 + parent: 2 + - uid: 7216 + components: + - type: Transform + pos: 19.5,28.5 + parent: 2 + - uid: 7224 + components: + - type: Transform + pos: 19.5,27.5 + parent: 2 + - uid: 7225 + components: + - type: Transform + pos: 20.5,31.5 + parent: 2 + - uid: 7251 + components: + - type: Transform + pos: 20.5,30.5 + parent: 2 + - uid: 7256 + components: + - type: Transform + pos: 20.5,29.5 + parent: 2 + - uid: 7257 + components: + - type: Transform + pos: 20.5,28.5 + parent: 2 + - uid: 7258 + components: + - type: Transform + pos: 20.5,27.5 + parent: 2 + - uid: 7259 + components: + - type: Transform + pos: 21.5,31.5 + parent: 2 + - uid: 7260 + components: + - type: Transform + pos: 21.5,30.5 + parent: 2 + - uid: 7261 + components: + - type: Transform + pos: 21.5,29.5 + parent: 2 + - uid: 7262 + components: + - type: Transform + pos: 21.5,28.5 + parent: 2 + - uid: 7263 + components: + - type: Transform + pos: 21.5,27.5 + parent: 2 + - uid: 7264 + components: + - type: Transform + pos: 22.5,31.5 + parent: 2 + - uid: 7265 + components: + - type: Transform + pos: 22.5,30.5 + parent: 2 + - uid: 7266 + components: + - type: Transform + pos: 22.5,29.5 + parent: 2 + - uid: 7268 + components: + - type: Transform + pos: 22.5,28.5 + parent: 2 + - uid: 7290 + components: + - type: Transform + pos: 22.5,27.5 + parent: 2 + - uid: 7291 components: - type: Transform pos: 23.5,31.5 parent: 2 - - uid: 1661 + - uid: 7292 + components: + - type: Transform + pos: 23.5,30.5 + parent: 2 + - uid: 7293 + components: + - type: Transform + pos: 23.5,29.5 + parent: 2 + - uid: 7294 + components: + - type: Transform + pos: 23.5,28.5 + parent: 2 + - uid: 7295 + components: + - type: Transform + pos: 23.5,27.5 + parent: 2 + - uid: 7296 + components: + - type: Transform + pos: 24.5,31.5 + parent: 2 + - uid: 7297 components: - type: Transform pos: 24.5,30.5 parent: 2 + - uid: 7356 + components: + - type: Transform + pos: 24.5,29.5 + parent: 2 + - uid: 7358 + components: + - type: Transform + pos: 24.5,28.5 + parent: 2 + - uid: 7380 + components: + - type: Transform + pos: 24.5,27.5 + parent: 2 + - uid: 7381 + components: + - type: Transform + pos: 25.5,31.5 + parent: 2 + - uid: 7418 + components: + - type: Transform + pos: 25.5,30.5 + parent: 2 + - uid: 7419 + components: + - type: Transform + pos: 25.5,29.5 + parent: 2 + - uid: 7420 + components: + - type: Transform + pos: 25.5,28.5 + parent: 2 + - uid: 7421 + components: + - type: Transform + pos: 18.5,28.5 + parent: 2 + - uid: 7422 + components: + - type: Transform + pos: 25.5,27.5 + parent: 2 + - uid: 9684 + components: + - type: Transform + pos: 15.5,-63.5 + parent: 3564 + - uid: 9685 + components: + - type: Transform + pos: 16.5,-63.5 + parent: 3564 + - uid: 9686 + components: + - type: Transform + pos: 17.5,-63.5 + parent: 3564 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 533 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 2 + - uid: 633 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 + - uid: 634 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 2 + - uid: 1491 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 + - uid: 9682 + components: + - type: Transform + pos: 13.5,-57.5 + parent: 3564 + - uid: 9683 + components: + - type: Transform + pos: 13.5,-58.5 + parent: 3564 +- proto: AtmosFixOxygenMarker + entities: + - uid: 216 + components: + - type: Transform + pos: 23.5,-0.5 + parent: 2 + - uid: 217 + components: + - type: Transform + pos: 23.5,0.5 + parent: 2 + - uid: 359 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 2 + - uid: 764 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 + - uid: 9675 + components: + - type: Transform + pos: 11.5,-57.5 + parent: 3564 + - uid: 9681 + components: + - type: Transform + pos: 11.5,-58.5 + parent: 3564 - proto: Autolathe entities: - - uid: 1536 + - uid: 848 components: - type: Transform - pos: 48.5,5.5 + pos: 54.5,21.5 parent: 2 - - uid: 2191 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices + - uid: 7795 components: - type: Transform - pos: 38.5,35.5 + pos: 52.5,7.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices + - uid: 8478 + components: + - type: Transform + pos: 35.5,33.5 + parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices +- proto: BackgammonBoard + entities: + - uid: 10306 + components: + - type: Transform + pos: 16.5,-50.5 + parent: 3564 + - uid: 10311 + components: + - type: Transform + pos: 29.5,-38.5 + parent: 3564 - proto: BagpipeInstrument entities: - uid: 1275 @@ -3953,12 +4928,19 @@ entities: - type: Transform pos: 37.848846,32.127415 parent: 1 -- proto: BarSign +- proto: BaseGasCondenser entities: - uid: 791 components: - type: Transform - pos: 27.5,1.5 + rot: -1.5707963267948966 rad + pos: 34.5,8.5 + parent: 2 + - uid: 6342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-4.5 parent: 2 - proto: Bed entities: @@ -3992,26 +4974,11 @@ entities: - type: Transform pos: 44.5,-0.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 - uid: 4924 components: - type: Transform pos: 6.5,-3.5 parent: 2 - - uid: 7642 - components: - - type: Transform - pos: 11.5,30.5 - parent: 2 - uid: 8250 components: - type: Transform @@ -4062,12 +5029,132 @@ entities: - type: Transform pos: 10.5,-1.5 parent: 2 -- proto: BedsheetCaptain - entities: - - uid: 2405 + - uid: 8319 components: - type: Transform - pos: 59.5,20.5 + pos: 59.5,25.5 + parent: 2 + - uid: 9911 + components: + - type: Transform + pos: 16.5,-52.5 + parent: 3564 + - uid: 9912 + components: + - type: Transform + pos: 16.5,-53.5 + parent: 3564 + - uid: 10270 + components: + - type: Transform + pos: 16.5,-49.5 + parent: 3564 + - uid: 10271 + components: + - type: Transform + pos: 16.5,-48.5 + parent: 3564 + - uid: 10272 + components: + - type: Transform + pos: 16.5,-44.5 + parent: 3564 + - uid: 10273 + components: + - type: Transform + pos: 16.5,-45.5 + parent: 3564 + - uid: 10274 + components: + - type: Transform + pos: 16.5,-36.5 + parent: 3564 + - uid: 10275 + components: + - type: Transform + pos: 16.5,-37.5 + parent: 3564 + - uid: 10276 + components: + - type: Transform + pos: 29.5,-32.5 + parent: 3564 + - uid: 10277 + components: + - type: Transform + pos: 29.5,-33.5 + parent: 3564 + - uid: 10278 + components: + - type: Transform + pos: 29.5,-36.5 + parent: 3564 + - uid: 10279 + components: + - type: Transform + pos: 29.5,-37.5 + parent: 3564 + - uid: 10280 + components: + - type: Transform + pos: 29.5,-40.5 + parent: 3564 + - uid: 10281 + components: + - type: Transform + pos: 29.5,-41.5 + parent: 3564 + - uid: 10282 + components: + - type: Transform + pos: 29.5,-44.5 + parent: 3564 + - uid: 10283 + components: + - type: Transform + pos: 29.5,-45.5 + parent: 3564 + - uid: 10284 + components: + - type: Transform + pos: 29.5,-48.5 + parent: 3564 + - uid: 10285 + components: + - type: Transform + pos: 29.5,-49.5 + parent: 3564 + - uid: 10286 + components: + - type: Transform + pos: 29.5,-52.5 + parent: 3564 + - uid: 10287 + components: + - type: Transform + pos: 29.5,-53.5 + parent: 3564 + - uid: 10390 + components: + - type: Transform + pos: 11.5,-37.5 + parent: 3564 + - uid: 10391 + components: + - type: Transform + pos: 14.5,-37.5 + parent: 3564 + - uid: 10392 + components: + - type: Transform + pos: 14.5,-45.5 + parent: 3564 +- proto: BedsheetCaptain + entities: + - uid: 3272 + components: + - type: Transform + pos: 59.5,25.5 parent: 2 - proto: BedsheetMedical entities: @@ -4077,12 +5164,6 @@ entities: rot: 3.141592653589793 rad pos: 14.5,9.5 parent: 2 - - uid: 705 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,9.5 - parent: 2 - uid: 1279 components: - type: Transform @@ -4095,6 +5176,16 @@ entities: rot: 3.141592653589793 rad pos: 13.5,9.5 parent: 2 + - uid: 9732 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 3564 + - uid: 9733 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 3564 - proto: BedsheetOrange entities: - uid: 827 @@ -4115,21 +5206,144 @@ entities: rot: 1.5707963267948966 rad pos: 44.5,-0.5 parent: 2 -- proto: BedsheetQM - entities: - - uid: 7641 + - uid: 9913 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,30.5 - parent: 2 -- proto: BedsheetRD - entities: - - uid: 1552 + pos: 16.5,-52.5 + parent: 3564 + - uid: 9914 components: - type: Transform - pos: 54.5,11.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 16.5,-53.5 + parent: 3564 + - uid: 10288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-49.5 + parent: 3564 + - uid: 10289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-48.5 + parent: 3564 + - uid: 10290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-45.5 + parent: 3564 + - uid: 10291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-44.5 + parent: 3564 + - uid: 10292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-37.5 + parent: 3564 + - uid: 10293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-36.5 + parent: 3564 + - uid: 10294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-32.5 + parent: 3564 + - uid: 10295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-33.5 + parent: 3564 + - uid: 10296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-36.5 + parent: 3564 + - uid: 10297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-37.5 + parent: 3564 + - uid: 10298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-40.5 + parent: 3564 + - uid: 10299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-41.5 + parent: 3564 + - uid: 10300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-44.5 + parent: 3564 + - uid: 10301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-45.5 + parent: 3564 + - uid: 10302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-48.5 + parent: 3564 + - uid: 10303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-49.5 + parent: 3564 + - uid: 10304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-52.5 + parent: 3564 + - uid: 10305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-53.5 + parent: 3564 + - uid: 10393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-37.5 + parent: 3564 + - uid: 10394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-37.5 + parent: 3564 + - uid: 10395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-45.5 + parent: 3564 - proto: BedsheetSpawner entities: - uid: 5 @@ -4142,18 +5356,6 @@ entities: - type: Transform pos: 7.5,3.5 parent: 2 -- proto: BenchBlueComfy - entities: - - uid: 5732 - components: - - type: Transform - pos: 26.5,7.5 - parent: 2 - - uid: 5734 - components: - - type: Transform - pos: 25.5,7.5 - parent: 2 - proto: BikeHorn entities: - uid: 7683 @@ -4175,25 +5377,15 @@ entities: - type: Transform pos: -8.5,12.5 parent: 2 - - uid: 357 + - uid: 465 components: - type: Transform - pos: -7.5,5.5 + pos: 24.5,26.5 parent: 2 - - uid: 382 + - uid: 635 components: - type: Transform - pos: -5.5,5.5 - parent: 2 - - uid: 454 - components: - - type: Transform - pos: 8.5,26.5 - parent: 2 - - uid: 504 - components: - - type: Transform - pos: 10.5,26.5 + pos: 10.5,22.5 parent: 2 - uid: 1254 components: @@ -4215,30 +5407,34 @@ entities: - type: Transform pos: 54.5,-2.5 parent: 2 - - uid: 1581 + - uid: 1601 components: - type: Transform - pos: 10.5,22.5 + pos: 26.5,31.5 parent: 2 - - uid: 1909 + - uid: 1956 components: - type: Transform - pos: 8.5,22.5 + pos: 10.5,26.5 + parent: 2 + - uid: 3324 + components: + - type: Transform + pos: 30.5,-12.5 + parent: 2 + - uid: 4060 + components: + - type: Transform + pos: 26.5,-11.5 parent: 2 - proto: BlockGameArcade entities: - - uid: 7006 + - uid: 10572 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 + rot: -1.5707963267948966 rad + pos: 19.5,-22.5 + parent: 3564 - proto: BookAtmosAirAlarms entities: - uid: 7525 @@ -4253,11 +5449,16 @@ entities: parent: 2 - proto: BookAtmosDistro entities: - - uid: 7170 + - uid: 1504 components: - type: Transform - pos: 56.330864,29.44333 + pos: 56.5,29.5 parent: 2 + - uid: 10424 + components: + - type: Transform + pos: 17.5,-59.5 + parent: 3564 - proto: BookAtmosVentsMore entities: - uid: 7171 @@ -4272,6 +5473,11 @@ entities: - type: Transform pos: 17.5,0.5 parent: 2 + - uid: 10425 + components: + - type: Transform + pos: 17.5,-59.5 + parent: 3564 - proto: BookChemicalCompendium entities: - uid: 7125 @@ -4301,10 +5507,10 @@ entities: parent: 2 - proto: BookEngineersHandbook entities: - - uid: 7124 + - uid: 2280 components: - type: Transform - pos: 56.580864,29.656294 + pos: 56.5,29.5 parent: 2 - uid: 7526 components: @@ -4316,6 +5522,11 @@ entities: - type: Transform pos: 17.5,-0.5 parent: 2 + - uid: 10423 + components: + - type: Transform + pos: 17.5,-59.5 + parent: 3564 - proto: BookHowToCookForFortySpaceman entities: - uid: 7534 @@ -4358,11 +5569,16 @@ entities: parent: 2 - proto: BookSecurity entities: - - uid: 7187 + - uid: 306 components: - type: Transform - pos: 34.231915,2.6751459 + pos: 34.5,2.5 parent: 2 + - uid: 10430 + components: + - type: Transform + pos: 33.5,-66.5 + parent: 3564 - proto: BookSpaceEncyclopedia entities: - uid: 2368 @@ -4382,10 +5598,10 @@ entities: parent: 2 - proto: BookSpaceLaw entities: - - uid: 6665 + - uid: 3164 components: - type: Transform - pos: 34.52879,2.3938959 + pos: 34.5,2.5 parent: 2 - uid: 7126 components: @@ -4397,11 +5613,6 @@ entities: - type: Transform pos: 17.5,0.5 parent: 2 - - uid: 7588 - components: - - type: Transform - pos: 57.5,17.5 - parent: 2 - proto: BookTheBookOfControl entities: - uid: 7529 @@ -4409,29 +5620,12 @@ entities: - type: Transform pos: 17.5,-0.5 parent: 2 -- proto: BoozeDispenser - entities: - - uid: 2863 - components: - - type: Transform - pos: 26.5,0.5 - parent: 2 - proto: BorgCharger entities: - - uid: 1815 + - uid: 5442 components: - type: Transform - pos: 10.5,0.5 - parent: 2 - - uid: 2367 - components: - - type: Transform - pos: 54.5,9.5 - parent: 2 - - uid: 4007 - components: - - type: Transform - pos: 40.5,-9.5 + pos: 4.5,-3.5 parent: 2 - uid: 7624 components: @@ -4443,20 +5637,55 @@ entities: - type: Transform pos: 46.5,51.5 parent: 2 + - uid: 11208 + components: + - type: Transform + pos: 55.5,9.5 + parent: 2 - proto: BoxBeaker entities: - - uid: 2506 + - uid: 807 components: - type: Transform - pos: 48.5,0.05 + pos: 29.5,8.5 parent: 2 - - uid: 7420 + - uid: 7815 components: - type: Transform - pos: 32.5,10.5 + pos: 53.5,9.5 parent: 2 - proto: BoxFolderClipboard entities: + - uid: 1698 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 2 + - uid: 2286 + components: + - type: Transform + pos: 48.5,21.5 + parent: 2 + - uid: 2430 + components: + - type: Transform + pos: 48.5,21.5 + parent: 2 + - uid: 3741 + components: + - type: Transform + pos: 48.5,21.5 + parent: 2 + - uid: 3742 + components: + - type: Transform + pos: 48.5,21.5 + parent: 2 + - uid: 6583 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 - uid: 7199 components: - type: Transform @@ -4467,6 +5696,11 @@ entities: - type: Transform pos: 63.5,30.5 parent: 2 + - uid: 7218 + components: + - type: Transform + pos: 52.5,8.5 + parent: 2 - uid: 7248 components: - type: Transform @@ -4492,13 +5726,67 @@ entities: - type: Transform pos: 17.5,-0.5 parent: 2 + - uid: 8234 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - uid: 8414 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 10428 + components: + - type: Transform + pos: 32.5,-66.5 + parent: 3564 + - uid: 10536 + components: + - type: Transform + pos: 34.5,-29.5 + parent: 3564 + - uid: 10579 + components: + - type: Transform + pos: 9.5,-27.5 + parent: 3564 + - uid: 10607 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 3564 + - uid: 11513 + components: + - type: Transform + pos: 12.5,34.5 + parent: 2 +- proto: BoxHandcuff + entities: + - uid: 6053 + components: + - type: Transform + pos: 59.5,21.5 + parent: 2 - proto: BoxID entities: + - uid: 1930 + components: + - type: Transform + pos: 59.5,28.5 + parent: 2 - uid: 7205 components: - type: Transform pos: 58.5,31.5 parent: 2 +- proto: BoxLatexGloves + entities: + - uid: 10610 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 3564 - proto: BoxMesonScanners entities: - uid: 6832 @@ -4506,56 +5794,159 @@ entities: - type: Transform pos: 35.5,2.5 parent: 2 +- proto: BoxNitrileGloves + entities: + - uid: 10611 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 3564 - proto: BoxPillCanister entities: - - uid: 7418 + - uid: 118 components: - type: Transform - pos: 33.5,10.5 + pos: 30.5,8.5 parent: 2 +- proto: BoxSterileMask + entities: + - uid: 10609 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 3564 - proto: BoxSyringe entities: - - uid: 7419 + - uid: 1525 components: - type: Transform - pos: 33.5,10.5 + pos: 30.5,8.5 parent: 2 + - uid: 10343 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 3564 - proto: BoxTrashbag entities: - - uid: 7660 + - uid: 2404 components: - type: Transform - pos: -0.5,7.5 + pos: 42.5,21.5 + parent: 2 +- proto: BrigmedicIDCard + entities: + - uid: 11116 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 3564 +- proto: Brutepack1 + entities: + - uid: 3227 + components: + - type: Transform + pos: 20.5,15.5 parent: 2 - proto: Bucket entities: - - uid: 131 + - uid: 2400 components: - type: Transform - pos: 12.5,-7.5 + pos: 42.5,21.5 parent: 2 - - uid: 133 + - uid: 10554 components: - type: Transform - pos: 12.5,-7.5 - parent: 2 - - uid: 2182 - components: - - type: Transform - pos: 12.5,-7.5 - parent: 2 - - uid: 7655 - components: - - type: Transform - pos: -4.5,6.5 - parent: 2 + pos: 11.5,-20.5 + parent: 3564 - proto: CableApcExtension entities: + - uid: 318 + components: + - type: Transform + pos: 62.5,13.5 + parent: 2 + - uid: 1440 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 2 + - uid: 1506 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 1507 + components: + - type: Transform + pos: 52.5,6.5 + parent: 2 + - uid: 1530 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - uid: 1543 + components: + - type: Transform + pos: 47.5,6.5 + parent: 2 - uid: 1883 components: - type: Transform pos: 39.5,52.5 parent: 2 + - uid: 1932 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 2 + - uid: 1938 + components: + - type: Transform + pos: 31.5,20.5 + parent: 2 + - uid: 2085 + components: + - type: Transform + pos: 48.5,25.5 + parent: 2 + - uid: 2109 + components: + - type: Transform + pos: 17.5,22.5 + parent: 2 + - uid: 2110 + components: + - type: Transform + pos: 17.5,20.5 + parent: 2 + - uid: 2115 + components: + - type: Transform + pos: 17.5,19.5 + parent: 2 + - uid: 2116 + components: + - type: Transform + pos: 17.5,18.5 + parent: 2 + - uid: 2117 + components: + - type: Transform + pos: 20.5,20.5 + parent: 2 + - uid: 2118 + components: + - type: Transform + pos: 21.5,20.5 + parent: 2 + - uid: 2138 + components: + - type: Transform + pos: 22.5,20.5 + parent: 2 - uid: 2176 components: - type: Transform @@ -4566,11 +5957,116 @@ entities: - type: Transform pos: 1.5,-10.5 parent: 2 + - uid: 2180 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 2 + - uid: 2181 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 2204 + components: + - type: Transform + pos: 61.5,8.5 + parent: 2 + - uid: 2208 + components: + - type: Transform + pos: 49.5,25.5 + parent: 2 + - uid: 2341 + components: + - type: Transform + pos: 47.5,12.5 + parent: 2 + - uid: 2427 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 + - uid: 2470 + components: + - type: Transform + pos: 33.5,22.5 + parent: 2 + - uid: 2471 + components: + - type: Transform + pos: 33.5,21.5 + parent: 2 + - uid: 2472 + components: + - type: Transform + pos: 19.5,22.5 + parent: 2 + - uid: 2473 + components: + - type: Transform + pos: 17.5,23.5 + parent: 2 + - uid: 2579 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 2 + - uid: 2737 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 2 + - uid: 2741 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 2 + - uid: 2879 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 + - uid: 2881 + components: + - type: Transform + pos: 15.5,28.5 + parent: 2 + - uid: 2883 + components: + - type: Transform + pos: 32.5,20.5 + parent: 2 + - uid: 2884 + components: + - type: Transform + pos: 30.5,20.5 + parent: 2 + - uid: 2973 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 3025 + components: + - type: Transform + pos: 33.5,20.5 + parent: 2 + - uid: 3147 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 2 - uid: 4954 components: - type: Transform pos: 5.5,14.5 parent: 2 + - uid: 5010 + components: + - type: Transform + pos: 62.5,14.5 + parent: 2 - uid: 5432 components: - type: Transform @@ -4626,11 +6122,6 @@ entities: - type: Transform pos: 50.5,11.5 parent: 2 - - uid: 5454 - components: - - type: Transform - pos: 49.5,11.5 - parent: 2 - uid: 5455 components: - type: Transform @@ -4641,11 +6132,6 @@ entities: - type: Transform pos: 51.5,6.5 parent: 2 - - uid: 5457 - components: - - type: Transform - pos: 51.5,7.5 - parent: 2 - uid: 5459 components: - type: Transform @@ -5689,7 +7175,7 @@ entities: - uid: 5695 components: - type: Transform - pos: 51.5,34.5 + pos: 45.5,38.5 parent: 2 - uid: 5696 components: @@ -5731,11 +7217,6 @@ entities: - type: Transform pos: 49.5,24.5 parent: 2 - - uid: 5704 - components: - - type: Transform - pos: 48.5,24.5 - parent: 2 - uid: 5705 components: - type: Transform @@ -6161,36 +7642,6 @@ entities: - type: Transform pos: 20.5,33.5 parent: 2 - - uid: 5847 - components: - - type: Transform - pos: 20.5,32.5 - parent: 2 - - uid: 5848 - components: - - type: Transform - pos: 20.5,31.5 - parent: 2 - - uid: 5849 - components: - - type: Transform - pos: 20.5,30.5 - parent: 2 - - uid: 5850 - components: - - type: Transform - pos: 20.5,29.5 - parent: 2 - - uid: 5851 - components: - - type: Transform - pos: 20.5,28.5 - parent: 2 - - uid: 5852 - components: - - type: Transform - pos: 20.5,27.5 - parent: 2 - uid: 5853 components: - type: Transform @@ -6206,70 +7657,25 @@ entities: - type: Transform pos: 26.5,33.5 parent: 2 - - uid: 5856 - components: - - type: Transform - pos: 26.5,32.5 - parent: 2 - - uid: 5857 - components: - - type: Transform - pos: 26.5,31.5 - parent: 2 - - uid: 5858 - components: - - type: Transform - pos: 26.5,30.5 - parent: 2 - - uid: 5859 - components: - - type: Transform - pos: 26.5,29.5 - parent: 2 - - uid: 5860 - components: - - type: Transform - pos: 26.5,28.5 - parent: 2 - - uid: 5861 - components: - - type: Transform - pos: 26.5,27.5 - parent: 2 - - uid: 5862 - components: - - type: Transform - pos: 26.5,26.5 - parent: 2 - - uid: 5864 - components: - - type: Transform - pos: 26.5,25.5 - parent: 2 - - uid: 5865 - components: - - type: Transform - pos: 26.5,23.5 - parent: 2 - uid: 5866 components: - type: Transform - pos: 26.5,22.5 + pos: 26.5,-3.5 parent: 2 - uid: 5867 components: - type: Transform - pos: 26.5,24.5 + pos: 25.5,-3.5 parent: 2 - uid: 5868 components: - type: Transform - pos: 25.5,22.5 + pos: 25.5,-2.5 parent: 2 - uid: 5869 components: - type: Transform - pos: 24.5,22.5 + pos: 25.5,-1.5 parent: 2 - uid: 5878 components: @@ -6296,16 +7702,6 @@ entities: - type: Transform pos: 43.5,32.5 parent: 2 - - uid: 5883 - components: - - type: Transform - pos: 44.5,32.5 - parent: 2 - - uid: 5884 - components: - - type: Transform - pos: 45.5,32.5 - parent: 2 - uid: 5885 components: - type: Transform @@ -6531,26 +7927,6 @@ entities: - type: Transform pos: 34.5,22.5 parent: 2 - - uid: 5933 - components: - - type: Transform - pos: 15.5,29.5 - parent: 2 - - uid: 5934 - components: - - type: Transform - pos: 15.5,28.5 - parent: 2 - - uid: 5935 - components: - - type: Transform - pos: 15.5,27.5 - parent: 2 - - uid: 5936 - components: - - type: Transform - pos: 15.5,26.5 - parent: 2 - uid: 5937 components: - type: Transform @@ -6581,11 +7957,6 @@ entities: - type: Transform pos: 18.5,20.5 parent: 2 - - uid: 5943 - components: - - type: Transform - pos: 20.5,20.5 - parent: 2 - uid: 5944 components: - type: Transform @@ -6676,11 +8047,6 @@ entities: - type: Transform pos: 18.5,22.5 parent: 2 - - uid: 5962 - components: - - type: Transform - pos: 18.5,19.5 - parent: 2 - uid: 5963 components: - type: Transform @@ -6706,71 +8072,6 @@ entities: - type: Transform pos: 22.5,18.5 parent: 2 - - uid: 5968 - components: - - type: Transform - pos: 22.5,19.5 - parent: 2 - - uid: 5969 - components: - - type: Transform - pos: 23.5,19.5 - parent: 2 - - uid: 5970 - components: - - type: Transform - pos: 24.5,19.5 - parent: 2 - - uid: 5971 - components: - - type: Transform - pos: 25.5,19.5 - parent: 2 - - uid: 5972 - components: - - type: Transform - pos: 26.5,19.5 - parent: 2 - - uid: 5973 - components: - - type: Transform - pos: 27.5,19.5 - parent: 2 - - uid: 5974 - components: - - type: Transform - pos: 28.5,19.5 - parent: 2 - - uid: 5975 - components: - - type: Transform - pos: 29.5,19.5 - parent: 2 - - uid: 5976 - components: - - type: Transform - pos: 30.5,19.5 - parent: 2 - - uid: 5977 - components: - - type: Transform - pos: 31.5,19.5 - parent: 2 - - uid: 5978 - components: - - type: Transform - pos: 32.5,19.5 - parent: 2 - - uid: 5979 - components: - - type: Transform - pos: 33.5,19.5 - parent: 2 - - uid: 5980 - components: - - type: Transform - pos: 34.5,19.5 - parent: 2 - uid: 5981 components: - type: Transform @@ -7441,6 +8742,11 @@ entities: - type: Transform pos: -2.5,17.5 parent: 2 + - uid: 6149 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 2 - uid: 6150 components: - type: Transform @@ -7486,6 +8792,11 @@ entities: - type: Transform pos: 3.5,15.5 parent: 2 + - uid: 6166 + components: + - type: Transform + pos: 25.5,0.5 + parent: 2 - uid: 6167 components: - type: Transform @@ -7496,11 +8807,21 @@ entities: - type: Transform pos: 3.5,14.5 parent: 2 + - uid: 6169 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 2 - uid: 6171 components: - type: Transform pos: 3.5,17.5 parent: 2 + - uid: 6172 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 2 - uid: 6178 components: - type: Transform @@ -7556,26 +8877,6 @@ entities: - type: Transform pos: 20.5,-2.5 parent: 2 - - uid: 6190 - components: - - type: Transform - pos: 19.5,-2.5 - parent: 2 - - uid: 6191 - components: - - type: Transform - pos: 19.5,-3.5 - parent: 2 - - uid: 6192 - components: - - type: Transform - pos: 19.5,-4.5 - parent: 2 - - uid: 6193 - components: - - type: Transform - pos: 19.5,-5.5 - parent: 2 - uid: 6194 components: - type: Transform @@ -7616,11 +8917,6 @@ entities: - type: Transform pos: 13.5,-7.5 parent: 2 - - uid: 6202 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 2 - uid: 6203 components: - type: Transform @@ -7766,11 +9062,6 @@ entities: - type: Transform pos: 9.5,0.5 parent: 2 - - uid: 6233 - components: - - type: Transform - pos: 9.5,1.5 - parent: 2 - uid: 6234 components: - type: Transform @@ -7781,11 +9072,6 @@ entities: - type: Transform pos: 13.5,0.5 parent: 2 - - uid: 6236 - components: - - type: Transform - pos: 13.5,1.5 - parent: 2 - uid: 6237 components: - type: Transform @@ -8271,60 +9557,10 @@ entities: - type: Transform pos: 57.5,-15.5 parent: 2 - - uid: 6338 + - uid: 6339 components: - type: Transform - pos: 40.5,-13.5 - parent: 2 - - uid: 6340 - components: - - type: Transform - pos: 40.5,-12.5 - parent: 2 - - uid: 6341 - components: - - type: Transform - pos: 41.5,-12.5 - parent: 2 - - uid: 6342 - components: - - type: Transform - pos: 42.5,-12.5 - parent: 2 - - uid: 6382 - components: - - type: Transform - pos: 39.5,-12.5 - parent: 2 - - uid: 6415 - components: - - type: Transform - pos: 38.5,-12.5 - parent: 2 - - uid: 6419 - components: - - type: Transform - pos: 38.5,-11.5 - parent: 2 - - uid: 6420 - components: - - type: Transform - pos: 38.5,-10.5 - parent: 2 - - uid: 6421 - components: - - type: Transform - pos: 37.5,-10.5 - parent: 2 - - uid: 6422 - components: - - type: Transform - pos: 36.5,-10.5 - parent: 2 - - uid: 6423 - components: - - type: Transform - pos: 35.5,-10.5 + pos: 25.5,-4.5 parent: 2 - uid: 6424 components: @@ -8396,66 +9632,6 @@ entities: - type: Transform pos: 34.5,0.5 parent: 2 - - uid: 6438 - components: - - type: Transform - pos: 34.5,-3.5 - parent: 2 - - uid: 6439 - components: - - type: Transform - pos: 34.5,-4.5 - parent: 2 - - uid: 6440 - components: - - type: Transform - pos: 34.5,-5.5 - parent: 2 - - uid: 6441 - components: - - type: Transform - pos: 34.5,-6.5 - parent: 2 - - uid: 6442 - components: - - type: Transform - pos: 35.5,-6.5 - parent: 2 - - uid: 6443 - components: - - type: Transform - pos: 36.5,-6.5 - parent: 2 - - uid: 6444 - components: - - type: Transform - pos: 37.5,-6.5 - parent: 2 - - uid: 6445 - components: - - type: Transform - pos: 38.5,-6.5 - parent: 2 - - uid: 6446 - components: - - type: Transform - pos: 39.5,-6.5 - parent: 2 - - uid: 6447 - components: - - type: Transform - pos: 40.5,-6.5 - parent: 2 - - uid: 6448 - components: - - type: Transform - pos: 41.5,-6.5 - parent: 2 - - uid: 6449 - components: - - type: Transform - pos: 42.5,-6.5 - parent: 2 - uid: 6450 components: - type: Transform @@ -8486,121 +9662,11 @@ entities: - type: Transform pos: 41.5,-2.5 parent: 2 - - uid: 6456 - components: - - type: Transform - pos: 29.5,-3.5 - parent: 2 - uid: 6457 components: - type: Transform pos: 28.5,-3.5 parent: 2 - - uid: 6458 - components: - - type: Transform - pos: 28.5,-4.5 - parent: 2 - - uid: 6459 - components: - - type: Transform - pos: 28.5,-5.5 - parent: 2 - - uid: 6460 - components: - - type: Transform - pos: 28.5,-6.5 - parent: 2 - - uid: 6461 - components: - - type: Transform - pos: 28.5,-7.5 - parent: 2 - - uid: 6462 - components: - - type: Transform - pos: 28.5,-8.5 - parent: 2 - - uid: 6463 - components: - - type: Transform - pos: 28.5,-9.5 - parent: 2 - - uid: 6464 - components: - - type: Transform - pos: 27.5,-9.5 - parent: 2 - - uid: 6465 - components: - - type: Transform - pos: 27.5,-10.5 - parent: 2 - - uid: 6466 - components: - - type: Transform - pos: 29.5,-9.5 - parent: 2 - - uid: 6467 - components: - - type: Transform - pos: 30.5,-9.5 - parent: 2 - - uid: 6468 - components: - - type: Transform - pos: 29.5,-5.5 - parent: 2 - - uid: 6469 - components: - - type: Transform - pos: 27.5,-3.5 - parent: 2 - - uid: 6470 - components: - - type: Transform - pos: 25.5,-3.5 - parent: 2 - - uid: 6471 - components: - - type: Transform - pos: 24.5,-3.5 - parent: 2 - - uid: 6472 - components: - - type: Transform - pos: 23.5,-3.5 - parent: 2 - - uid: 6473 - components: - - type: Transform - pos: 26.5,-3.5 - parent: 2 - - uid: 6474 - components: - - type: Transform - pos: 26.5,-2.5 - parent: 2 - - uid: 6475 - components: - - type: Transform - pos: 26.5,-1.5 - parent: 2 - - uid: 6476 - components: - - type: Transform - pos: 26.5,-9.5 - parent: 2 - - uid: 6477 - components: - - type: Transform - pos: 25.5,-9.5 - parent: 2 - - uid: 6478 - components: - - type: Transform - pos: 24.5,-9.5 - parent: 2 - uid: 6479 components: - type: Transform @@ -8821,75 +9887,2370 @@ entities: - type: Transform pos: 38.5,44.5 parent: 2 + - uid: 6571 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 2 + - uid: 6576 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 - uid: 6597 components: - type: Transform - pos: 23.5,22.5 + pos: 25.5,-7.5 parent: 2 - - uid: 7290 + - uid: 6599 components: - type: Transform - pos: 26.5,-0.5 + pos: 24.5,-7.5 parent: 2 - - uid: 7291 + - uid: 6600 components: - type: Transform - pos: 25.5,-0.5 + pos: 23.5,-7.5 parent: 2 - - uid: 7292 + - uid: 6601 components: - type: Transform - pos: 24.5,-0.5 + pos: 25.5,-8.5 parent: 2 - - uid: 7293 + - uid: 6602 components: - type: Transform - pos: 27.5,-0.5 + pos: 25.5,-9.5 parent: 2 - - uid: 7294 + - uid: 6603 components: - type: Transform - pos: 28.5,-0.5 + pos: 27.5,-7.5 + parent: 2 + - uid: 6604 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 2 + - uid: 6605 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 2 + - uid: 6606 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 2 + - uid: 6607 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 2 + - uid: 6609 + components: + - type: Transform + pos: 30.5,-6.5 + parent: 2 + - uid: 6610 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 2 + - uid: 6611 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 2 + - uid: 6799 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 2 + - uid: 6800 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 2 + - uid: 6801 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 2 + - uid: 6802 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 2 + - uid: 6803 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 2 + - uid: 6804 + components: + - type: Transform + pos: 38.5,-6.5 + parent: 2 + - uid: 6805 + components: + - type: Transform + pos: 39.5,-6.5 + parent: 2 + - uid: 6806 + components: + - type: Transform + pos: 40.5,-6.5 + parent: 2 + - uid: 6807 + components: + - type: Transform + pos: 41.5,-6.5 + parent: 2 + - uid: 6808 + components: + - type: Transform + pos: 42.5,-6.5 + parent: 2 + - uid: 6809 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 2 + - uid: 6810 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 2 + - uid: 6811 + components: + - type: Transform + pos: 30.5,-8.5 + parent: 2 + - uid: 6812 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 2 + - uid: 6813 + components: + - type: Transform + pos: 31.5,-9.5 + parent: 2 + - uid: 6816 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 2 + - uid: 6817 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 2 + - uid: 6818 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 2 + - uid: 6819 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 2 + - uid: 6820 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 2 + - uid: 6821 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 2 + - uid: 6822 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 2 + - uid: 6823 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 2 + - uid: 6824 + components: + - type: Transform + pos: 37.5,-10.5 + parent: 2 + - uid: 6825 + components: + - type: Transform + pos: 38.5,-10.5 + parent: 2 + - uid: 6826 + components: + - type: Transform + pos: 39.5,-10.5 + parent: 2 + - uid: 6827 + components: + - type: Transform + pos: 40.5,-10.5 + parent: 2 + - uid: 6833 + components: + - type: Transform + pos: 41.5,-10.5 + parent: 2 + - uid: 6834 + components: + - type: Transform + pos: 42.5,-10.5 + parent: 2 + - uid: 6835 + components: + - type: Transform + pos: 43.5,-10.5 + parent: 2 + - uid: 6836 + components: + - type: Transform + pos: 44.5,-10.5 + parent: 2 + - uid: 6837 + components: + - type: Transform + pos: 41.5,-11.5 + parent: 2 + - uid: 7006 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 2 + - uid: 7007 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - uid: 7173 + components: + - type: Transform + pos: 48.5,6.5 + parent: 2 + - uid: 7412 + components: + - type: Transform + pos: 47.5,11.5 + parent: 2 + - uid: 7595 + components: + - type: Transform + pos: 49.5,1.5 + parent: 2 + - uid: 7605 + components: + - type: Transform + pos: 43.5,31.5 + parent: 2 + - uid: 7631 + components: + - type: Transform + pos: 49.5,0.5 parent: 2 - uid: 7678 components: - type: Transform pos: 10.5,26.5 parent: 2 + - uid: 7729 + components: + - type: Transform + pos: 51.5,20.5 + parent: 2 + - uid: 7730 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 7758 + components: + - type: Transform + pos: 43.5,30.5 + parent: 2 + - uid: 7805 + components: + - type: Transform + pos: 44.5,31.5 + parent: 2 + - uid: 7806 + components: + - type: Transform + pos: 45.5,31.5 + parent: 2 + - uid: 7811 + components: + - type: Transform + pos: 46.5,31.5 + parent: 2 + - uid: 7812 + components: + - type: Transform + pos: 47.5,31.5 + parent: 2 + - uid: 7825 + components: + - type: Transform + pos: 24.5,5.5 + parent: 2 - uid: 7827 components: - type: Transform pos: 1.5,34.5 parent: 2 - - uid: 8261 + - uid: 8262 components: - type: Transform - pos: 30.5,20.5 + pos: 57.5,-17.5 parent: 2 - - uid: 8265 + - uid: 8263 components: - type: Transform - pos: 42.5,-11.5 + pos: 66.5,1.5 parent: 2 - - uid: 8266 + - uid: 8271 components: - type: Transform - pos: 43.5,-11.5 + pos: 47.5,13.5 + parent: 2 + - uid: 8272 + components: + - type: Transform + pos: 48.5,13.5 + parent: 2 + - uid: 8273 + components: + - type: Transform + pos: 52.5,13.5 parent: 2 - uid: 8294 components: - type: Transform pos: 10.5,22.5 parent: 2 - - uid: 8295 + - uid: 8321 components: - type: Transform - pos: 9.5,22.5 + pos: 49.5,20.5 parent: 2 - - uid: 8296 + - uid: 8560 components: - type: Transform - pos: 9.5,26.5 + pos: 30.5,-2.5 + parent: 2 + - uid: 8561 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 2 + - uid: 8565 + components: + - type: Transform + pos: 66.5,0.5 + parent: 2 + - uid: 8566 + components: + - type: Transform + pos: 66.5,-0.5 + parent: 2 + - uid: 8567 + components: + - type: Transform + pos: 66.5,-1.5 + parent: 2 + - uid: 8568 + components: + - type: Transform + pos: 66.5,-2.5 + parent: 2 + - uid: 8569 + components: + - type: Transform + pos: 66.5,-3.5 + parent: 2 + - uid: 8570 + components: + - type: Transform + pos: 66.5,-4.5 + parent: 2 + - uid: 8571 + components: + - type: Transform + pos: 66.5,-5.5 + parent: 2 + - uid: 10792 + components: + - type: Transform + pos: 8.5,-46.5 + parent: 3564 + - uid: 10793 + components: + - type: Transform + pos: 8.5,-45.5 + parent: 3564 + - uid: 10794 + components: + - type: Transform + pos: 8.5,-44.5 + parent: 3564 + - uid: 10795 + components: + - type: Transform + pos: 8.5,-43.5 + parent: 3564 + - uid: 10796 + components: + - type: Transform + pos: 8.5,-42.5 + parent: 3564 + - uid: 10797 + components: + - type: Transform + pos: 8.5,-41.5 + parent: 3564 + - uid: 10798 + components: + - type: Transform + pos: 8.5,-40.5 + parent: 3564 + - uid: 10799 + components: + - type: Transform + pos: 15.5,-39.5 + parent: 3564 + - uid: 10800 + components: + - type: Transform + pos: 15.5,-40.5 + parent: 3564 + - uid: 10801 + components: + - type: Transform + pos: 15.5,-41.5 + parent: 3564 + - uid: 10802 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 3564 + - uid: 10803 + components: + - type: Transform + pos: 13.5,-41.5 + parent: 3564 + - uid: 10804 + components: + - type: Transform + pos: 12.5,-41.5 + parent: 3564 + - uid: 10805 + components: + - type: Transform + pos: 11.5,-41.5 + parent: 3564 + - uid: 10806 + components: + - type: Transform + pos: 10.5,-41.5 + parent: 3564 + - uid: 10807 + components: + - type: Transform + pos: 10.5,-40.5 + parent: 3564 + - uid: 10808 + components: + - type: Transform + pos: 10.5,-39.5 + parent: 3564 + - uid: 10809 + components: + - type: Transform + pos: 10.5,-42.5 + parent: 3564 + - uid: 10810 + components: + - type: Transform + pos: 10.5,-43.5 + parent: 3564 + - uid: 10811 + components: + - type: Transform + pos: 13.5,-42.5 + parent: 3564 + - uid: 10812 + components: + - type: Transform + pos: 13.5,-43.5 + parent: 3564 + - uid: 10813 + components: + - type: Transform + pos: 13.5,-40.5 + parent: 3564 + - uid: 10814 + components: + - type: Transform + pos: 13.5,-39.5 + parent: 3564 + - uid: 10815 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 3564 + - uid: 10816 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 3564 + - uid: 10817 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 3564 + - uid: 10818 + components: + - type: Transform + pos: 14.5,-32.5 + parent: 3564 + - uid: 10819 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 3564 + - uid: 10820 + components: + - type: Transform + pos: 16.5,-32.5 + parent: 3564 + - uid: 10821 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 3564 + - uid: 10822 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 3564 + - uid: 10823 + components: + - type: Transform + pos: 14.5,-29.5 + parent: 3564 + - uid: 10824 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 3564 + - uid: 10825 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 3564 + - uid: 10826 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 3564 + - uid: 10827 + components: + - type: Transform + pos: 14.5,-25.5 + parent: 3564 + - uid: 10828 + components: + - type: Transform + pos: 14.5,-24.5 + parent: 3564 + - uid: 10829 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 3564 + - uid: 10830 + components: + - type: Transform + pos: 14.5,-22.5 + parent: 3564 + - uid: 10831 + components: + - type: Transform + pos: 14.5,-21.5 + parent: 3564 + - uid: 10832 + components: + - type: Transform + pos: 15.5,-21.5 + parent: 3564 + - uid: 10833 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 3564 + - uid: 10834 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 3564 + - uid: 10835 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 3564 + - uid: 10836 + components: + - type: Transform + pos: 18.5,-22.5 + parent: 3564 + - uid: 10837 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 3564 + - uid: 10838 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 3564 + - uid: 10839 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 3564 + - uid: 10840 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 3564 + - uid: 10841 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 3564 + - uid: 10842 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 3564 + - uid: 10843 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 3564 + - uid: 10844 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 3564 + - uid: 10845 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 3564 + - uid: 10846 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 3564 + - uid: 10847 + components: + - type: Transform + pos: 15.5,-25.5 + parent: 3564 + - uid: 10848 + components: + - type: Transform + pos: 16.5,-25.5 + parent: 3564 + - uid: 10849 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 3564 + - uid: 10850 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 3564 + - uid: 10851 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 3564 + - uid: 10852 + components: + - type: Transform + pos: 15.5,-28.5 + parent: 3564 + - uid: 10853 + components: + - type: Transform + pos: 16.5,-28.5 + parent: 3564 + - uid: 10854 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 3564 + - uid: 10855 + components: + - type: Transform + pos: 18.5,-28.5 + parent: 3564 + - uid: 10856 + components: + - type: Transform + pos: 19.5,-28.5 + parent: 3564 + - uid: 10857 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 3564 + - uid: 10858 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 3564 + - uid: 10859 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 3564 + - uid: 10860 + components: + - type: Transform + pos: 10.5,-28.5 + parent: 3564 + - uid: 10861 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 3564 + - uid: 10862 + components: + - type: Transform + pos: 33.5,-31.5 + parent: 3564 + - uid: 10863 + components: + - type: Transform + pos: 33.5,-32.5 + parent: 3564 + - uid: 10864 + components: + - type: Transform + pos: 32.5,-32.5 + parent: 3564 + - uid: 10865 + components: + - type: Transform + pos: 34.5,-31.5 + parent: 3564 + - uid: 10866 + components: + - type: Transform + pos: 35.5,-31.5 + parent: 3564 + - uid: 10867 + components: + - type: Transform + pos: 36.5,-31.5 + parent: 3564 + - uid: 10868 + components: + - type: Transform + pos: 35.5,-30.5 + parent: 3564 + - uid: 10869 + components: + - type: Transform + pos: 35.5,-29.5 + parent: 3564 + - uid: 10870 + components: + - type: Transform + pos: 35.5,-28.5 + parent: 3564 + - uid: 10871 + components: + - type: Transform + pos: 35.5,-27.5 + parent: 3564 + - uid: 10872 + components: + - type: Transform + pos: 35.5,-26.5 + parent: 3564 + - uid: 10873 + components: + - type: Transform + pos: 36.5,-26.5 + parent: 3564 + - uid: 10874 + components: + - type: Transform + pos: 34.5,-26.5 + parent: 3564 + - uid: 10875 + components: + - type: Transform + pos: 33.5,-26.5 + parent: 3564 + - uid: 10876 + components: + - type: Transform + pos: 32.5,-26.5 + parent: 3564 + - uid: 10877 + components: + - type: Transform + pos: 31.5,-26.5 + parent: 3564 + - uid: 10878 + components: + - type: Transform + pos: 30.5,-26.5 + parent: 3564 + - uid: 10879 + components: + - type: Transform + pos: 29.5,-26.5 + parent: 3564 + - uid: 10880 + components: + - type: Transform + pos: 28.5,-26.5 + parent: 3564 + - uid: 10881 + components: + - type: Transform + pos: 34.5,-29.5 + parent: 3564 + - uid: 10882 + components: + - type: Transform + pos: 33.5,-29.5 + parent: 3564 + - uid: 10883 + components: + - type: Transform + pos: 32.5,-29.5 + parent: 3564 + - uid: 10884 + components: + - type: Transform + pos: 31.5,-29.5 + parent: 3564 + - uid: 10885 + components: + - type: Transform + pos: 30.5,-29.5 + parent: 3564 + - uid: 10886 + components: + - type: Transform + pos: 29.5,-29.5 + parent: 3564 + - uid: 10887 + components: + - type: Transform + pos: 28.5,-29.5 + parent: 3564 + - uid: 10888 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 3564 + - uid: 10889 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 3564 + - uid: 10890 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 3564 + - uid: 10891 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 3564 + - uid: 10892 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 3564 + - uid: 10893 + components: + - type: Transform + pos: 25.5,-20.5 + parent: 3564 + - uid: 10894 + components: + - type: Transform + pos: 26.5,-20.5 + parent: 3564 + - uid: 10895 + components: + - type: Transform + pos: 27.5,-20.5 + parent: 3564 + - uid: 10896 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 3564 + - uid: 10897 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 3564 + - uid: 10898 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 3564 + - uid: 10899 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 3564 + - uid: 10900 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 3564 + - uid: 10901 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 3564 + - uid: 10902 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 3564 + - uid: 10903 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 3564 + - uid: 10904 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 3564 + - uid: 10905 + components: + - type: Transform + pos: 26.5,-17.5 + parent: 3564 + - uid: 10906 + components: + - type: Transform + pos: 27.5,-17.5 + parent: 3564 + - uid: 10907 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 3564 + - uid: 10908 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 3564 + - uid: 10909 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 3564 + - uid: 10910 + components: + - type: Transform + pos: 31.5,-17.5 + parent: 3564 + - uid: 10911 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 3564 + - uid: 10912 + components: + - type: Transform + pos: 33.5,-17.5 + parent: 3564 + - uid: 10913 + components: + - type: Transform + pos: 33.5,-18.5 + parent: 3564 + - uid: 10914 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 3564 + - uid: 10915 + components: + - type: Transform + pos: 33.5,-20.5 + parent: 3564 + - uid: 10916 + components: + - type: Transform + pos: 33.5,-21.5 + parent: 3564 + - uid: 10917 + components: + - type: Transform + pos: 33.5,-22.5 + parent: 3564 + - uid: 10918 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 3564 + - uid: 10919 + components: + - type: Transform + pos: 24.5,-22.5 + parent: 3564 + - uid: 10920 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 3564 + - uid: 10921 + components: + - type: Transform + pos: 25.5,-23.5 + parent: 3564 + - uid: 10922 + components: + - type: Transform + pos: 26.5,-23.5 + parent: 3564 + - uid: 10923 + components: + - type: Transform + pos: 27.5,-23.5 + parent: 3564 + - uid: 10924 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 3564 + - uid: 10925 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 3564 + - uid: 10926 + components: + - type: Transform + pos: 23.5,-23.5 + parent: 3564 + - uid: 10927 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 3564 + - uid: 10928 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 3564 + - uid: 10929 + components: + - type: Transform + pos: 19.5,-59.5 + parent: 3564 + - uid: 10930 + components: + - type: Transform + pos: 20.5,-59.5 + parent: 3564 + - uid: 10931 + components: + - type: Transform + pos: 21.5,-59.5 + parent: 3564 + - uid: 10932 + components: + - type: Transform + pos: 22.5,-59.5 + parent: 3564 + - uid: 10933 + components: + - type: Transform + pos: 23.5,-59.5 + parent: 3564 + - uid: 10934 + components: + - type: Transform + pos: 23.5,-58.5 + parent: 3564 + - uid: 10935 + components: + - type: Transform + pos: 23.5,-57.5 + parent: 3564 + - uid: 10936 + components: + - type: Transform + pos: 23.5,-60.5 + parent: 3564 + - uid: 10937 + components: + - type: Transform + pos: 23.5,-61.5 + parent: 3564 + - uid: 10938 + components: + - type: Transform + pos: 23.5,-62.5 + parent: 3564 + - uid: 10939 + components: + - type: Transform + pos: 24.5,-57.5 + parent: 3564 + - uid: 10940 + components: + - type: Transform + pos: 22.5,-57.5 + parent: 3564 + - uid: 10941 + components: + - type: Transform + pos: 24.5,-59.5 + parent: 3564 + - uid: 10942 + components: + - type: Transform + pos: 24.5,-61.5 + parent: 3564 + - uid: 10943 + components: + - type: Transform + pos: 22.5,-61.5 + parent: 3564 + - uid: 10944 + components: + - type: Transform + pos: 18.5,-64.5 + parent: 3564 + - uid: 10945 + components: + - type: Transform + pos: 19.5,-64.5 + parent: 3564 + - uid: 10946 + components: + - type: Transform + pos: 20.5,-64.5 + parent: 3564 + - uid: 10947 + components: + - type: Transform + pos: 21.5,-64.5 + parent: 3564 + - uid: 10948 + components: + - type: Transform + pos: 22.5,-64.5 + parent: 3564 + - uid: 10949 + components: + - type: Transform + pos: 23.5,-64.5 + parent: 3564 + - uid: 10950 + components: + - type: Transform + pos: 23.5,-65.5 + parent: 3564 + - uid: 10951 + components: + - type: Transform + pos: 23.5,-67.5 + parent: 3564 + - uid: 10952 + components: + - type: Transform + pos: 23.5,-66.5 + parent: 3564 + - uid: 10953 + components: + - type: Transform + pos: 22.5,-67.5 + parent: 3564 + - uid: 10954 + components: + - type: Transform + pos: 21.5,-67.5 + parent: 3564 + - uid: 10955 + components: + - type: Transform + pos: 20.5,-67.5 + parent: 3564 + - uid: 10956 + components: + - type: Transform + pos: 19.5,-67.5 + parent: 3564 + - uid: 10957 + components: + - type: Transform + pos: 22.5,-68.5 + parent: 3564 + - uid: 10958 + components: + - type: Transform + pos: 22.5,-69.5 + parent: 3564 + - uid: 10959 + components: + - type: Transform + pos: 22.5,-70.5 + parent: 3564 + - uid: 10960 + components: + - type: Transform + pos: 25.5,-66.5 + parent: 3564 + - uid: 10961 + components: + - type: Transform + pos: 24.5,-66.5 + parent: 3564 + - uid: 10962 + components: + - type: Transform + pos: 25.5,-67.5 + parent: 3564 + - uid: 10963 + components: + - type: Transform + pos: 28.5,-70.5 + parent: 3564 + - uid: 10964 + components: + - type: Transform + pos: 28.5,-69.5 + parent: 3564 + - uid: 10965 + components: + - type: Transform + pos: 28.5,-68.5 + parent: 3564 + - uid: 10966 + components: + - type: Transform + pos: 28.5,-67.5 + parent: 3564 + - uid: 10967 + components: + - type: Transform + pos: 28.5,-66.5 + parent: 3564 + - uid: 10968 + components: + - type: Transform + pos: 28.5,-65.5 + parent: 3564 + - uid: 10969 + components: + - type: Transform + pos: 28.5,-64.5 + parent: 3564 + - uid: 10970 + components: + - type: Transform + pos: 28.5,-63.5 + parent: 3564 + - uid: 10971 + components: + - type: Transform + pos: 29.5,-63.5 + parent: 3564 + - uid: 10972 + components: + - type: Transform + pos: 30.5,-63.5 + parent: 3564 + - uid: 10973 + components: + - type: Transform + pos: 31.5,-63.5 + parent: 3564 + - uid: 10974 + components: + - type: Transform + pos: 32.5,-63.5 + parent: 3564 + - uid: 10975 + components: + - type: Transform + pos: 33.5,-63.5 + parent: 3564 + - uid: 10976 + components: + - type: Transform + pos: 29.5,-68.5 + parent: 3564 + - uid: 10977 + components: + - type: Transform + pos: 30.5,-68.5 + parent: 3564 + - uid: 10978 + components: + - type: Transform + pos: 31.5,-68.5 + parent: 3564 + - uid: 10979 + components: + - type: Transform + pos: 32.5,-68.5 + parent: 3564 + - uid: 10980 + components: + - type: Transform + pos: 33.5,-68.5 + parent: 3564 + - uid: 10981 + components: + - type: Transform + pos: 15.5,-68.5 + parent: 3564 + - uid: 10982 + components: + - type: Transform + pos: 15.5,-67.5 + parent: 3564 + - uid: 10983 + components: + - type: Transform + pos: 15.5,-66.5 + parent: 3564 + - uid: 10984 + components: + - type: Transform + pos: 16.5,-66.5 + parent: 3564 + - uid: 10985 + components: + - type: Transform + pos: 14.5,-66.5 + parent: 3564 + - uid: 10986 + components: + - type: Transform + pos: 10.5,-60.5 + parent: 3564 + - uid: 10987 + components: + - type: Transform + pos: 11.5,-60.5 + parent: 3564 + - uid: 10988 + components: + - type: Transform + pos: 12.5,-60.5 + parent: 3564 + - uid: 10989 + components: + - type: Transform + pos: 13.5,-60.5 + parent: 3564 + - uid: 10990 + components: + - type: Transform + pos: 14.5,-60.5 + parent: 3564 + - uid: 10991 + components: + - type: Transform + pos: 15.5,-60.5 + parent: 3564 + - uid: 10992 + components: + - type: Transform + pos: 16.5,-60.5 + parent: 3564 + - uid: 10993 + components: + - type: Transform + pos: 16.5,-59.5 + parent: 3564 + - uid: 10994 + components: + - type: Transform + pos: 16.5,-58.5 + parent: 3564 + - uid: 10995 + components: + - type: Transform + pos: 12.5,-59.5 + parent: 3564 + - uid: 10996 + components: + - type: Transform + pos: 12.5,-58.5 + parent: 3564 + - uid: 10997 + components: + - type: Transform + pos: 12.5,-61.5 + parent: 3564 + - uid: 10998 + components: + - type: Transform + pos: 12.5,-62.5 + parent: 3564 + - uid: 10999 + components: + - type: Transform + pos: 16.5,-61.5 + parent: 3564 + - uid: 11000 + components: + - type: Transform + pos: 16.5,-62.5 + parent: 3564 + - uid: 11001 + components: + - type: Transform + pos: 31.5,-60.5 + parent: 3564 + - uid: 11002 + components: + - type: Transform + pos: 31.5,-59.5 + parent: 3564 + - uid: 11003 + components: + - type: Transform + pos: 32.5,-59.5 + parent: 3564 + - uid: 11004 + components: + - type: Transform + pos: 33.5,-59.5 + parent: 3564 + - uid: 11005 + components: + - type: Transform + pos: 34.5,-59.5 + parent: 3564 + - uid: 11006 + components: + - type: Transform + pos: 35.5,-59.5 + parent: 3564 + - uid: 11007 + components: + - type: Transform + pos: 36.5,-59.5 + parent: 3564 + - uid: 11008 + components: + - type: Transform + pos: 34.5,-58.5 + parent: 3564 + - uid: 11009 + components: + - type: Transform + pos: 34.5,-60.5 + parent: 3564 + - uid: 11010 + components: + - type: Transform + pos: 30.5,-59.5 + parent: 3564 + - uid: 11011 + components: + - type: Transform + pos: 29.5,-59.5 + parent: 3564 + - uid: 11012 + components: + - type: Transform + pos: 28.5,-59.5 + parent: 3564 + - uid: 11013 + components: + - type: Transform + pos: 27.5,-59.5 + parent: 3564 + - uid: 11014 + components: + - type: Transform + pos: 27.5,-58.5 + parent: 3564 + - uid: 11015 + components: + - type: Transform + pos: 27.5,-60.5 + parent: 3564 + - uid: 11016 + components: + - type: Transform + pos: 19.5,-39.5 + parent: 3564 + - uid: 11017 + components: + - type: Transform + pos: 29.5,-60.5 + parent: 3564 + - uid: 11018 + components: + - type: Transform + pos: 29.5,-58.5 + parent: 3564 + - uid: 11019 + components: + - type: Transform + pos: 20.5,-39.5 + parent: 3564 + - uid: 11020 + components: + - type: Transform + pos: 21.5,-39.5 + parent: 3564 + - uid: 11021 + components: + - type: Transform + pos: 22.5,-39.5 + parent: 3564 + - uid: 11022 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 3564 + - uid: 11023 + components: + - type: Transform + pos: 23.5,-27.5 + parent: 3564 + - uid: 11024 + components: + - type: Transform + pos: 23.5,-28.5 + parent: 3564 + - uid: 11025 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 3564 + - uid: 11026 + components: + - type: Transform + pos: 23.5,-30.5 + parent: 3564 + - uid: 11027 + components: + - type: Transform + pos: 23.5,-31.5 + parent: 3564 + - uid: 11028 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 3564 + - uid: 11029 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 3564 + - uid: 11030 + components: + - type: Transform + pos: 23.5,-34.5 + parent: 3564 + - uid: 11031 + components: + - type: Transform + pos: 23.5,-35.5 + parent: 3564 + - uid: 11032 + components: + - type: Transform + pos: 23.5,-36.5 + parent: 3564 + - uid: 11033 + components: + - type: Transform + pos: 23.5,-37.5 + parent: 3564 + - uid: 11034 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 3564 + - uid: 11035 + components: + - type: Transform + pos: 23.5,-39.5 + parent: 3564 + - uid: 11036 + components: + - type: Transform + pos: 23.5,-40.5 + parent: 3564 + - uid: 11037 + components: + - type: Transform + pos: 23.5,-41.5 + parent: 3564 + - uid: 11038 + components: + - type: Transform + pos: 23.5,-42.5 + parent: 3564 + - uid: 11039 + components: + - type: Transform + pos: 23.5,-44.5 + parent: 3564 + - uid: 11040 + components: + - type: Transform + pos: 23.5,-43.5 + parent: 3564 + - uid: 11041 + components: + - type: Transform + pos: 23.5,-45.5 + parent: 3564 + - uid: 11042 + components: + - type: Transform + pos: 23.5,-46.5 + parent: 3564 + - uid: 11043 + components: + - type: Transform + pos: 23.5,-47.5 + parent: 3564 + - uid: 11044 + components: + - type: Transform + pos: 23.5,-48.5 + parent: 3564 + - uid: 11045 + components: + - type: Transform + pos: 23.5,-49.5 + parent: 3564 + - uid: 11046 + components: + - type: Transform + pos: 23.5,-50.5 + parent: 3564 + - uid: 11047 + components: + - type: Transform + pos: 23.5,-51.5 + parent: 3564 + - uid: 11048 + components: + - type: Transform + pos: 23.5,-52.5 + parent: 3564 + - uid: 11049 + components: + - type: Transform + pos: 23.5,-53.5 + parent: 3564 + - uid: 11050 + components: + - type: Transform + pos: 23.5,-54.5 + parent: 3564 + - uid: 11051 + components: + - type: Transform + pos: 24.5,-34.5 + parent: 3564 + - uid: 11052 + components: + - type: Transform + pos: 25.5,-34.5 + parent: 3564 + - uid: 11053 + components: + - type: Transform + pos: 26.5,-34.5 + parent: 3564 + - uid: 11054 + components: + - type: Transform + pos: 27.5,-34.5 + parent: 3564 + - uid: 11055 + components: + - type: Transform + pos: 28.5,-34.5 + parent: 3564 + - uid: 11056 + components: + - type: Transform + pos: 24.5,-38.5 + parent: 3564 + - uid: 11057 + components: + - type: Transform + pos: 25.5,-38.5 + parent: 3564 + - uid: 11058 + components: + - type: Transform + pos: 26.5,-38.5 + parent: 3564 + - uid: 11059 + components: + - type: Transform + pos: 27.5,-38.5 + parent: 3564 + - uid: 11060 + components: + - type: Transform + pos: 28.5,-38.5 + parent: 3564 + - uid: 11061 + components: + - type: Transform + pos: 24.5,-42.5 + parent: 3564 + - uid: 11062 + components: + - type: Transform + pos: 25.5,-42.5 + parent: 3564 + - uid: 11063 + components: + - type: Transform + pos: 26.5,-42.5 + parent: 3564 + - uid: 11064 + components: + - type: Transform + pos: 27.5,-42.5 + parent: 3564 + - uid: 11065 + components: + - type: Transform + pos: 28.5,-42.5 + parent: 3564 + - uid: 11066 + components: + - type: Transform + pos: 24.5,-46.5 + parent: 3564 + - uid: 11067 + components: + - type: Transform + pos: 25.5,-46.5 + parent: 3564 + - uid: 11068 + components: + - type: Transform + pos: 26.5,-46.5 + parent: 3564 + - uid: 11069 + components: + - type: Transform + pos: 27.5,-46.5 + parent: 3564 + - uid: 11070 + components: + - type: Transform + pos: 28.5,-46.5 + parent: 3564 + - uid: 11071 + components: + - type: Transform + pos: 24.5,-50.5 + parent: 3564 + - uid: 11072 + components: + - type: Transform + pos: 25.5,-50.5 + parent: 3564 + - uid: 11073 + components: + - type: Transform + pos: 26.5,-50.5 + parent: 3564 + - uid: 11074 + components: + - type: Transform + pos: 27.5,-50.5 + parent: 3564 + - uid: 11075 + components: + - type: Transform + pos: 28.5,-50.5 + parent: 3564 + - uid: 11076 + components: + - type: Transform + pos: 24.5,-54.5 + parent: 3564 + - uid: 11077 + components: + - type: Transform + pos: 25.5,-54.5 + parent: 3564 + - uid: 11078 + components: + - type: Transform + pos: 26.5,-54.5 + parent: 3564 + - uid: 11079 + components: + - type: Transform + pos: 27.5,-54.5 + parent: 3564 + - uid: 11080 + components: + - type: Transform + pos: 28.5,-54.5 + parent: 3564 + - uid: 11081 + components: + - type: Transform + pos: 22.5,-54.5 + parent: 3564 + - uid: 11082 + components: + - type: Transform + pos: 21.5,-54.5 + parent: 3564 + - uid: 11083 + components: + - type: Transform + pos: 20.5,-54.5 + parent: 3564 + - uid: 11084 + components: + - type: Transform + pos: 19.5,-54.5 + parent: 3564 + - uid: 11085 + components: + - type: Transform + pos: 18.5,-54.5 + parent: 3564 + - uid: 11086 + components: + - type: Transform + pos: 17.5,-54.5 + parent: 3564 + - uid: 11087 + components: + - type: Transform + pos: 21.5,-50.5 + parent: 3564 + - uid: 11088 + components: + - type: Transform + pos: 20.5,-50.5 + parent: 3564 + - uid: 11089 + components: + - type: Transform + pos: 19.5,-50.5 + parent: 3564 + - uid: 11090 + components: + - type: Transform + pos: 22.5,-50.5 + parent: 3564 + - uid: 11091 + components: + - type: Transform + pos: 18.5,-50.5 + parent: 3564 + - uid: 11092 + components: + - type: Transform + pos: 17.5,-50.5 + parent: 3564 + - uid: 11093 + components: + - type: Transform + pos: 22.5,-46.5 + parent: 3564 + - uid: 11094 + components: + - type: Transform + pos: 21.5,-46.5 + parent: 3564 + - uid: 11095 + components: + - type: Transform + pos: 20.5,-46.5 + parent: 3564 + - uid: 11096 + components: + - type: Transform + pos: 19.5,-46.5 + parent: 3564 + - uid: 11097 + components: + - type: Transform + pos: 18.5,-46.5 + parent: 3564 + - uid: 11098 + components: + - type: Transform + pos: 17.5,-46.5 + parent: 3564 + - uid: 11099 + components: + - type: Transform + pos: 22.5,-42.5 + parent: 3564 + - uid: 11100 + components: + - type: Transform + pos: 21.5,-42.5 + parent: 3564 + - uid: 11101 + components: + - type: Transform + pos: 20.5,-42.5 + parent: 3564 + - uid: 11102 + components: + - type: Transform + pos: 20.5,-34.5 + parent: 3564 + - uid: 11103 + components: + - type: Transform + pos: 22.5,-34.5 + parent: 3564 + - uid: 11104 + components: + - type: Transform + pos: 21.5,-34.5 + parent: 3564 + - uid: 11105 + components: + - type: Transform + pos: 19.5,-38.5 + parent: 3564 + - uid: 11106 + components: + - type: Transform + pos: 18.5,-38.5 + parent: 3564 + - uid: 11107 + components: + - type: Transform + pos: 17.5,-38.5 + parent: 3564 + - uid: 11108 + components: + - type: Transform + pos: 24.5,-30.5 + parent: 3564 + - uid: 11109 + components: + - type: Transform + pos: 25.5,-30.5 + parent: 3564 + - uid: 11110 + components: + - type: Transform + pos: 22.5,-30.5 + parent: 3564 + - uid: 11111 + components: + - type: Transform + pos: 21.5,-30.5 + parent: 3564 + - uid: 11112 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 3564 + - uid: 11113 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 3564 + - uid: 11375 + components: + - type: Transform + pos: 31.5,24.5 + parent: 2 + - uid: 11376 + components: + - type: Transform + pos: 30.5,24.5 + parent: 2 + - uid: 11377 + components: + - type: Transform + pos: 29.5,24.5 + parent: 2 + - uid: 11378 + components: + - type: Transform + pos: 28.5,24.5 + parent: 2 + - uid: 11379 + components: + - type: Transform + pos: 27.5,24.5 + parent: 2 + - uid: 11380 + components: + - type: Transform + pos: 28.5,25.5 + parent: 2 + - uid: 11381 + components: + - type: Transform + pos: 28.5,26.5 + parent: 2 + - uid: 11382 + components: + - type: Transform + pos: 28.5,27.5 + parent: 2 + - uid: 11383 + components: + - type: Transform + pos: 28.5,28.5 + parent: 2 + - uid: 11384 + components: + - type: Transform + pos: 28.5,29.5 + parent: 2 + - uid: 11385 + components: + - type: Transform + pos: 27.5,29.5 + parent: 2 + - uid: 11386 + components: + - type: Transform + pos: 26.5,29.5 + parent: 2 + - uid: 11387 + components: + - type: Transform + pos: 32.5,34.5 + parent: 2 + - uid: 11388 + components: + - type: Transform + pos: 31.5,34.5 + parent: 2 + - uid: 11389 + components: + - type: Transform + pos: 30.5,34.5 + parent: 2 + - uid: 11390 + components: + - type: Transform + pos: 29.5,34.5 + parent: 2 + - uid: 11391 + components: + - type: Transform + pos: 34.5,34.5 + parent: 2 + - uid: 11392 + components: + - type: Transform + pos: 35.5,34.5 + parent: 2 + - uid: 11393 + components: + - type: Transform + pos: 36.5,34.5 + parent: 2 + - uid: 11394 + components: + - type: Transform + pos: 37.5,34.5 + parent: 2 + - uid: 11395 + components: + - type: Transform + pos: 27.5,27.5 + parent: 2 + - uid: 11396 + components: + - type: Transform + pos: 26.5,27.5 + parent: 2 + - uid: 11407 + components: + - type: Transform + pos: 24.5,6.5 + parent: 2 + - uid: 11408 + components: + - type: Transform + pos: 25.5,6.5 + parent: 2 + - uid: 11409 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 11410 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 + - uid: 11411 + components: + - type: Transform + pos: 17.5,6.5 + parent: 2 + - uid: 11412 + components: + - type: Transform + pos: 17.5,7.5 + parent: 2 + - uid: 11413 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 2 + - uid: 11414 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - uid: 11415 + components: + - type: Transform + pos: 16.5,2.5 + parent: 2 + - uid: 11416 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 + - uid: 11417 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 2 + - uid: 11418 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 2 + - uid: 11419 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 2 + - uid: 11420 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 11421 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 + - uid: 11422 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 11423 + components: + - type: Transform + pos: -1.5,12.5 + parent: 2 + - uid: 11424 + components: + - type: Transform + pos: -0.5,12.5 + parent: 2 + - uid: 11425 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 + - uid: 11426 + components: + - type: Transform + pos: 5.5,13.5 + parent: 2 + - uid: 11427 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - uid: 11428 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - uid: 11429 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 11455 + components: + - type: Transform + pos: 50.5,14.5 + parent: 2 + - uid: 11456 + components: + - type: Transform + pos: 50.5,15.5 + parent: 2 + - uid: 11457 + components: + - type: Transform + pos: 50.5,13.5 + parent: 2 + - uid: 11458 + components: + - type: Transform + pos: 49.5,13.5 + parent: 2 + - uid: 11459 + components: + - type: Transform + pos: 61.5,17.5 + parent: 2 + - uid: 11460 + components: + - type: Transform + pos: 61.5,18.5 + parent: 2 + - uid: 11461 + components: + - type: Transform + pos: 61.5,19.5 + parent: 2 + - uid: 11462 + components: + - type: Transform + pos: 61.5,20.5 + parent: 2 + - uid: 11463 + components: + - type: Transform + pos: 61.5,0.5 + parent: 2 + - uid: 11464 + components: + - type: Transform + pos: 61.5,-0.5 + parent: 2 + - uid: 11465 + components: + - type: Transform + pos: 57.5,1.5 + parent: 2 + - uid: 11466 + components: + - type: Transform + pos: 56.5,1.5 + parent: 2 + - uid: 11467 + components: + - type: Transform + pos: 59.5,7.5 + parent: 2 + - uid: 11468 + components: + - type: Transform + pos: 60.5,7.5 + parent: 2 + - uid: 11469 + components: + - type: Transform + pos: 59.5,8.5 + parent: 2 + - uid: 11470 + components: + - type: Transform + pos: 58.5,8.5 + parent: 2 + - uid: 11471 + components: + - type: Transform + pos: 54.5,7.5 + parent: 2 + - uid: 11472 + components: + - type: Transform + pos: 54.5,6.5 + parent: 2 + - uid: 11473 + components: + - type: Transform + pos: 55.5,6.5 + parent: 2 + - uid: 11549 + components: + - type: Transform + pos: 52.5,35.5 + parent: 2 + - uid: 11550 + components: + - type: Transform + pos: 52.5,36.5 + parent: 2 + - uid: 11551 + components: + - type: Transform + pos: 52.5,34.5 + parent: 2 + - uid: 11552 + components: + - type: Transform + pos: 45.5,37.5 + parent: 2 + - uid: 11553 + components: + - type: Transform + pos: 44.5,40.5 + parent: 2 + - uid: 11554 + components: + - type: Transform + pos: 45.5,40.5 + parent: 2 + - uid: 11555 + components: + - type: Transform + pos: 46.5,37.5 parent: 2 - proto: CableApcStack10 entities: @@ -8903,27 +12264,197 @@ entities: - type: Transform pos: 2.575419,-7.6192417 parent: 2 - - uid: 7709 - components: - - type: Transform - pos: 48.5,21.5 - parent: 2 - uid: 7710 components: - type: Transform pos: 49.5,21.5 parent: 2 + - uid: 11140 + components: + - type: Transform + pos: 50.5,21.5 + parent: 2 + - uid: 11149 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 - proto: CableHV entities: - - uid: 2810 + - uid: 573 components: - type: Transform - pos: 28.5,30.5 + pos: 45.5,20.5 parent: 2 - - uid: 3626 + - uid: 591 components: - type: Transform - pos: 51.5,22.5 + pos: 46.5,20.5 + parent: 2 + - uid: 659 + components: + - type: Transform + pos: 19.5,34.5 + parent: 2 + - uid: 660 + components: + - type: Transform + pos: 20.5,34.5 + parent: 2 + - uid: 783 + components: + - type: Transform + pos: 19.5,35.5 + parent: 2 + - uid: 919 + components: + - type: Transform + pos: 19.5,36.5 + parent: 2 + - uid: 1537 + components: + - type: Transform + pos: 43.5,22.5 + parent: 2 + - uid: 1541 + components: + - type: Transform + pos: 43.5,21.5 + parent: 2 + - uid: 1570 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 2 + - uid: 1585 + components: + - type: Transform + pos: 33.5,34.5 + parent: 2 + - uid: 1588 + components: + - type: Transform + pos: 32.5,34.5 + parent: 2 + - uid: 1592 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 2 + - uid: 1604 + components: + - type: Transform + pos: 47.5,38.5 + parent: 2 + - uid: 1608 + components: + - type: Transform + pos: 47.5,39.5 + parent: 2 + - uid: 1611 + components: + - type: Transform + pos: 47.5,40.5 + parent: 2 + - uid: 1613 + components: + - type: Transform + pos: 46.5,40.5 + parent: 2 + - uid: 1622 + components: + - type: Transform + pos: 16.5,38.5 + parent: 2 + - uid: 1623 + components: + - type: Transform + pos: 15.5,38.5 + parent: 2 + - uid: 1631 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - uid: 1647 + components: + - type: Transform + pos: 19.5,37.5 + parent: 2 + - uid: 1649 + components: + - type: Transform + pos: 19.5,38.5 + parent: 2 + - uid: 1659 + components: + - type: Transform + pos: 19.5,39.5 + parent: 2 + - uid: 1666 + components: + - type: Transform + pos: 15.5,37.5 + parent: 2 + - uid: 1723 + components: + - type: Transform + pos: 47.5,35.5 + parent: 2 + - uid: 1853 + components: + - type: Transform + pos: 21.5,34.5 + parent: 2 + - uid: 2135 + components: + - type: Transform + pos: 17.5,38.5 + parent: 2 + - uid: 2186 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 + - uid: 2207 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 2234 + components: + - type: Transform + pos: 36.5,21.5 + parent: 2 + - uid: 2277 + components: + - type: Transform + pos: 49.5,20.5 + parent: 2 + - uid: 2278 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 + - uid: 2531 + components: + - type: Transform + pos: 35.5,21.5 + parent: 2 + - uid: 2690 + components: + - type: Transform + pos: 18.5,38.5 + parent: 2 + - uid: 2691 + components: + - type: Transform + pos: 18.5,39.5 + parent: 2 + - uid: 2692 + components: + - type: Transform + pos: 18.5,37.5 parent: 2 - uid: 4330 components: @@ -8945,36 +12476,6 @@ entities: - type: Transform pos: 0.5,-10.5 parent: 2 - - uid: 4361 - components: - - type: Transform - pos: 1.5,-7.5 - parent: 2 - - uid: 4365 - components: - - type: Transform - pos: 1.5,-8.5 - parent: 2 - - uid: 4366 - components: - - type: Transform - pos: 1.5,-9.5 - parent: 2 - - uid: 4368 - components: - - type: Transform - pos: 1.5,-10.5 - parent: 2 - - uid: 4384 - components: - - type: Transform - pos: 1.5,-11.5 - parent: 2 - - uid: 4386 - components: - - type: Transform - pos: 1.5,-12.5 - parent: 2 - uid: 4389 components: - type: Transform @@ -9185,16 +12686,6 @@ entities: - type: Transform pos: 18.5,-5.5 parent: 2 - - uid: 4576 - components: - - type: Transform - pos: 19.5,-5.5 - parent: 2 - - uid: 4577 - components: - - type: Transform - pos: 19.5,-4.5 - parent: 2 - uid: 4578 components: - type: Transform @@ -9530,16 +13021,6 @@ entities: - type: Transform pos: 14.5,18.5 parent: 2 - - uid: 4651 - components: - - type: Transform - pos: 34.5,19.5 - parent: 2 - - uid: 4652 - components: - - type: Transform - pos: 34.5,20.5 - parent: 2 - uid: 4653 components: - type: Transform @@ -9585,36 +13066,6 @@ entities: - type: Transform pos: 34.5,29.5 parent: 2 - - uid: 4662 - components: - - type: Transform - pos: 33.5,26.5 - parent: 2 - - uid: 4663 - components: - - type: Transform - pos: 33.5,27.5 - parent: 2 - - uid: 4664 - components: - - type: Transform - pos: 33.5,28.5 - parent: 2 - - uid: 4665 - components: - - type: Transform - pos: 33.5,29.5 - parent: 2 - - uid: 4666 - components: - - type: Transform - pos: 31.5,29.5 - parent: 2 - - uid: 4667 - components: - - type: Transform - pos: 32.5,29.5 - parent: 2 - uid: 4668 components: - type: Transform @@ -9635,21 +13086,6 @@ entities: - type: Transform pos: 34.5,33.5 parent: 2 - - uid: 4672 - components: - - type: Transform - pos: 28.5,31.5 - parent: 2 - - uid: 4673 - components: - - type: Transform - pos: 28.5,32.5 - parent: 2 - - uid: 4674 - components: - - type: Transform - pos: 28.5,33.5 - parent: 2 - uid: 4675 components: - type: Transform @@ -9685,66 +13121,16 @@ entities: - type: Transform pos: 22.5,34.5 parent: 2 - - uid: 4682 - components: - - type: Transform - pos: 21.5,34.5 - parent: 2 - - uid: 4683 - components: - - type: Transform - pos: 20.5,34.5 - parent: 2 - - uid: 4684 - components: - - type: Transform - pos: 19.5,34.5 - parent: 2 - - uid: 4685 - components: - - type: Transform - pos: 18.5,34.5 - parent: 2 - - uid: 4686 - components: - - type: Transform - pos: 17.5,34.5 - parent: 2 - - uid: 4687 - components: - - type: Transform - pos: 16.5,34.5 - parent: 2 - uid: 4688 components: - type: Transform - pos: 15.5,34.5 - parent: 2 - - uid: 4689 - components: - - type: Transform - pos: 15.5,35.5 + pos: 16.5,39.5 parent: 2 - uid: 4690 components: - type: Transform pos: 15.5,36.5 parent: 2 - - uid: 4691 - components: - - type: Transform - pos: 30.5,29.5 - parent: 2 - - uid: 4692 - components: - - type: Transform - pos: 29.5,29.5 - parent: 2 - - uid: 4693 - components: - - type: Transform - pos: 28.5,29.5 - parent: 2 - uid: 4695 components: - type: Transform @@ -9755,26 +13141,6 @@ entities: - type: Transform pos: 35.5,34.5 parent: 2 - - uid: 4697 - components: - - type: Transform - pos: 36.5,34.5 - parent: 2 - - uid: 4698 - components: - - type: Transform - pos: 37.5,34.5 - parent: 2 - - uid: 4699 - components: - - type: Transform - pos: 37.5,35.5 - parent: 2 - - uid: 4700 - components: - - type: Transform - pos: 35.5,35.5 - parent: 2 - uid: 4701 components: - type: Transform @@ -9850,26 +13216,6 @@ entities: - type: Transform pos: 47.5,24.5 parent: 2 - - uid: 4716 - components: - - type: Transform - pos: 48.5,24.5 - parent: 2 - - uid: 4717 - components: - - type: Transform - pos: 49.5,24.5 - parent: 2 - - uid: 4718 - components: - - type: Transform - pos: 50.5,24.5 - parent: 2 - - uid: 4719 - components: - - type: Transform - pos: 51.5,24.5 - parent: 2 - uid: 4720 components: - type: Transform @@ -10595,10 +13941,15 @@ entities: - type: Transform pos: 32.5,48.5 parent: 2 + - uid: 4935 + components: + - type: Transform + pos: 45.5,41.5 + parent: 2 - uid: 5220 components: - type: Transform - pos: 51.5,21.5 + pos: 47.5,20.5 parent: 2 - uid: 5221 components: @@ -10625,10 +13976,35 @@ entities: - type: Transform pos: 54.5,19.5 parent: 2 + - uid: 5232 + components: + - type: Transform + pos: 45.5,40.5 + parent: 2 - uid: 5360 components: - type: Transform - pos: 51.5,23.5 + pos: 48.5,20.5 + parent: 2 + - uid: 5857 + components: + - type: Transform + pos: 31.5,34.5 + parent: 2 + - uid: 5858 + components: + - type: Transform + pos: 29.5,34.5 + parent: 2 + - uid: 5859 + components: + - type: Transform + pos: 30.5,34.5 + parent: 2 + - uid: 5883 + components: + - type: Transform + pos: 46.5,39.5 parent: 2 - uid: 6596 components: @@ -10830,10 +14206,1215 @@ entities: - type: Transform pos: 61.5,28.5 parent: 2 - - uid: 7651 + - uid: 7229 components: - type: Transform - pos: 33.5,30.5 + pos: 57.5,62.5 + parent: 2 + - uid: 7612 + components: + - type: Transform + pos: 47.5,36.5 + parent: 2 + - uid: 7755 + components: + - type: Transform + pos: 47.5,37.5 + parent: 2 + - uid: 7769 + components: + - type: Transform + pos: 43.5,34.5 + parent: 2 + - uid: 7772 + components: + - type: Transform + pos: 42.5,34.5 + parent: 2 + - uid: 7785 + components: + - type: Transform + pos: 41.5,34.5 + parent: 2 + - uid: 7788 + components: + - type: Transform + pos: 40.5,34.5 + parent: 2 + - uid: 7789 + components: + - type: Transform + pos: 39.5,34.5 + parent: 2 + - uid: 7791 + components: + - type: Transform + pos: 38.5,34.5 + parent: 2 + - uid: 7796 + components: + - type: Transform + pos: 36.5,34.5 + parent: 2 + - uid: 7797 + components: + - type: Transform + pos: 37.5,34.5 + parent: 2 + - uid: 7817 + components: + - type: Transform + pos: 46.5,35.5 + parent: 2 + - uid: 7822 + components: + - type: Transform + pos: 45.5,35.5 + parent: 2 + - uid: 7829 + components: + - type: Transform + pos: 44.5,35.5 + parent: 2 + - uid: 8026 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 3564 + - uid: 8027 + components: + - type: Transform + pos: 2.5,-39.5 + parent: 3564 + - uid: 8028 + components: + - type: Transform + pos: 2.5,-40.5 + parent: 3564 + - uid: 8029 + components: + - type: Transform + pos: 4.5,-38.5 + parent: 3564 + - uid: 8030 + components: + - type: Transform + pos: 4.5,-39.5 + parent: 3564 + - uid: 8031 + components: + - type: Transform + pos: 4.5,-40.5 + parent: 3564 + - uid: 8224 + components: + - type: Transform + pos: 43.5,35.5 + parent: 2 + - uid: 8270 + components: + - type: Transform + pos: 44.5,20.5 + parent: 2 + - uid: 8292 + components: + - type: Transform + pos: 43.5,20.5 + parent: 2 + - uid: 8349 + components: + - type: Transform + pos: 37.5,21.5 + parent: 2 + - uid: 8431 + components: + - type: Transform + pos: 48.5,25.5 + parent: 2 + - uid: 8432 + components: + - type: Transform + pos: 49.5,25.5 + parent: 2 + - uid: 8433 + components: + - type: Transform + pos: 50.5,25.5 + parent: 2 + - uid: 8649 + components: + - type: Transform + pos: 2.5,-41.5 + parent: 3564 + - uid: 8650 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 3564 + - uid: 8651 + components: + - type: Transform + pos: 2.5,-42.5 + parent: 3564 + - uid: 8652 + components: + - type: Transform + pos: 2.5,-43.5 + parent: 3564 + - uid: 8653 + components: + - type: Transform + pos: 2.5,-44.5 + parent: 3564 + - uid: 8654 + components: + - type: Transform + pos: 4.5,-44.5 + parent: 3564 + - uid: 8655 + components: + - type: Transform + pos: 4.5,-43.5 + parent: 3564 + - uid: 8656 + components: + - type: Transform + pos: 4.5,-42.5 + parent: 3564 + - uid: 8657 + components: + - type: Transform + pos: 4.5,-41.5 + parent: 3564 + - uid: 8658 + components: + - type: Transform + pos: 5.5,-41.5 + parent: 3564 + - uid: 8659 + components: + - type: Transform + pos: 3.5,-36.5 + parent: 3564 + - uid: 8660 + components: + - type: Transform + pos: 3.5,-37.5 + parent: 3564 + - uid: 8661 + components: + - type: Transform + pos: 3.5,-38.5 + parent: 3564 + - uid: 8662 + components: + - type: Transform + pos: 2.5,-35.5 + parent: 3564 + - uid: 8663 + components: + - type: Transform + pos: 2.5,-36.5 + parent: 3564 + - uid: 8664 + components: + - type: Transform + pos: 2.5,-34.5 + parent: 3564 + - uid: 8665 + components: + - type: Transform + pos: 4.5,-34.5 + parent: 3564 + - uid: 8666 + components: + - type: Transform + pos: 4.5,-35.5 + parent: 3564 + - uid: 8667 + components: + - type: Transform + pos: 4.5,-36.5 + parent: 3564 + - uid: 8668 + components: + - type: Transform + pos: 3.5,-34.5 + parent: 3564 + - uid: 8669 + components: + - type: Transform + pos: 3.5,-33.5 + parent: 3564 + - uid: 8670 + components: + - type: Transform + pos: 3.5,-32.5 + parent: 3564 + - uid: 8671 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 3564 + - uid: 8672 + components: + - type: Transform + pos: 2.5,-31.5 + parent: 3564 + - uid: 8673 + components: + - type: Transform + pos: 2.5,-32.5 + parent: 3564 + - uid: 8674 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 3564 + - uid: 8675 + components: + - type: Transform + pos: 4.5,-31.5 + parent: 3564 + - uid: 8676 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 3564 + - uid: 8677 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 3564 + - uid: 8678 + components: + - type: Transform + pos: 3.5,-29.5 + parent: 3564 + - uid: 8679 + components: + - type: Transform + pos: 3.5,-28.5 + parent: 3564 + - uid: 8680 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 3564 + - uid: 8681 + components: + - type: Transform + pos: 2.5,-27.5 + parent: 3564 + - uid: 8682 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 3564 + - uid: 8683 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 3564 + - uid: 8684 + components: + - type: Transform + pos: 4.5,-27.5 + parent: 3564 + - uid: 8685 + components: + - type: Transform + pos: 4.5,-26.5 + parent: 3564 + - uid: 8686 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 3564 + - uid: 8687 + components: + - type: Transform + pos: 3.5,-25.5 + parent: 3564 + - uid: 8688 + components: + - type: Transform + pos: 3.5,-24.5 + parent: 3564 + - uid: 8689 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 3564 + - uid: 8690 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 3564 + - uid: 8691 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 3564 + - uid: 8692 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 3564 + - uid: 8693 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 3564 + - uid: 8694 + components: + - type: Transform + pos: 4.5,-24.5 + parent: 3564 + - uid: 8695 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 3564 + - uid: 8696 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 3564 + - uid: 8697 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 3564 + - uid: 8698 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 3564 + - uid: 8699 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 3564 + - uid: 8700 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 3564 + - uid: 8701 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 3564 + - uid: 8702 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 3564 + - uid: 8703 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 3564 + - uid: 8704 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 3564 + - uid: 8705 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 3564 + - uid: 8706 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 3564 + - uid: 8707 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 3564 + - uid: 8708 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 3564 + - uid: 8709 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 3564 + - uid: 8710 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 3564 + - uid: 8711 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 3564 + - uid: 8712 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 3564 + - uid: 8713 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 3564 + - uid: 8714 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 3564 + - uid: 8715 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 3564 + - uid: 8716 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 3564 + - uid: 8717 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 3564 + - uid: 8718 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 3564 + - uid: 8719 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 3564 + - uid: 8720 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 3564 + - uid: 8721 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 3564 + - uid: 8722 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 3564 + - uid: 8723 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 3564 + - uid: 8724 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 3564 + - uid: 8725 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 3564 + - uid: 8726 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 3564 + - uid: 8727 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 3564 + - uid: 8728 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 3564 + - uid: 8729 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 3564 + - uid: 8730 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 3564 + - uid: 8731 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 3564 + - uid: 8732 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 3564 + - uid: 8733 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 3564 + - uid: 8734 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 3564 + - uid: 8735 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 3564 + - uid: 8736 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 3564 + - uid: 8737 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 3564 + - uid: 8738 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 3564 + - uid: 8739 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 3564 + - uid: 8740 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 3564 + - uid: 8741 + components: + - type: Transform + pos: 3.5,-44.5 + parent: 3564 + - uid: 8742 + components: + - type: Transform + pos: 3.5,-45.5 + parent: 3564 + - uid: 8743 + components: + - type: Transform + pos: 3.5,-46.5 + parent: 3564 + - uid: 8744 + components: + - type: Transform + pos: 2.5,-46.5 + parent: 3564 + - uid: 8745 + components: + - type: Transform + pos: 2.5,-47.5 + parent: 3564 + - uid: 8746 + components: + - type: Transform + pos: 2.5,-48.5 + parent: 3564 + - uid: 8747 + components: + - type: Transform + pos: 4.5,-46.5 + parent: 3564 + - uid: 8748 + components: + - type: Transform + pos: 4.5,-47.5 + parent: 3564 + - uid: 8749 + components: + - type: Transform + pos: 4.5,-48.5 + parent: 3564 + - uid: 8750 + components: + - type: Transform + pos: 3.5,-48.5 + parent: 3564 + - uid: 8751 + components: + - type: Transform + pos: 3.5,-49.5 + parent: 3564 + - uid: 8752 + components: + - type: Transform + pos: 3.5,-50.5 + parent: 3564 + - uid: 8753 + components: + - type: Transform + pos: 3.5,-51.5 + parent: 3564 + - uid: 8754 + components: + - type: Transform + pos: 2.5,-51.5 + parent: 3564 + - uid: 8755 + components: + - type: Transform + pos: 2.5,-52.5 + parent: 3564 + - uid: 8756 + components: + - type: Transform + pos: 2.5,-53.5 + parent: 3564 + - uid: 8757 + components: + - type: Transform + pos: 4.5,-51.5 + parent: 3564 + - uid: 8758 + components: + - type: Transform + pos: 4.5,-52.5 + parent: 3564 + - uid: 8759 + components: + - type: Transform + pos: 4.5,-53.5 + parent: 3564 + - uid: 8760 + components: + - type: Transform + pos: 3.5,-53.5 + parent: 3564 + - uid: 8761 + components: + - type: Transform + pos: 3.5,-54.5 + parent: 3564 + - uid: 8762 + components: + - type: Transform + pos: 3.5,-55.5 + parent: 3564 + - uid: 8763 + components: + - type: Transform + pos: 2.5,-55.5 + parent: 3564 + - uid: 8764 + components: + - type: Transform + pos: 2.5,-56.5 + parent: 3564 + - uid: 8765 + components: + - type: Transform + pos: 2.5,-57.5 + parent: 3564 + - uid: 8766 + components: + - type: Transform + pos: 4.5,-55.5 + parent: 3564 + - uid: 8767 + components: + - type: Transform + pos: 4.5,-56.5 + parent: 3564 + - uid: 8768 + components: + - type: Transform + pos: 4.5,-57.5 + parent: 3564 + - uid: 8769 + components: + - type: Transform + pos: 3.5,-57.5 + parent: 3564 + - uid: 8770 + components: + - type: Transform + pos: 3.5,-58.5 + parent: 3564 + - uid: 8771 + components: + - type: Transform + pos: 3.5,-59.5 + parent: 3564 + - uid: 8772 + components: + - type: Transform + pos: 2.5,-59.5 + parent: 3564 + - uid: 8773 + components: + - type: Transform + pos: 2.5,-60.5 + parent: 3564 + - uid: 8774 + components: + - type: Transform + pos: 2.5,-61.5 + parent: 3564 + - uid: 8775 + components: + - type: Transform + pos: 4.5,-59.5 + parent: 3564 + - uid: 8776 + components: + - type: Transform + pos: 4.5,-60.5 + parent: 3564 + - uid: 8777 + components: + - type: Transform + pos: 4.5,-61.5 + parent: 3564 + - uid: 8778 + components: + - type: Transform + pos: 3.5,-63.5 + parent: 3564 + - uid: 8779 + components: + - type: Transform + pos: 3.5,-61.5 + parent: 3564 + - uid: 8780 + components: + - type: Transform + pos: 3.5,-62.5 + parent: 3564 + - uid: 8781 + components: + - type: Transform + pos: 2.5,-63.5 + parent: 3564 + - uid: 8782 + components: + - type: Transform + pos: 2.5,-64.5 + parent: 3564 + - uid: 8783 + components: + - type: Transform + pos: 2.5,-65.5 + parent: 3564 + - uid: 8784 + components: + - type: Transform + pos: 4.5,-63.5 + parent: 3564 + - uid: 8785 + components: + - type: Transform + pos: 4.5,-64.5 + parent: 3564 + - uid: 8786 + components: + - type: Transform + pos: 4.5,-65.5 + parent: 3564 + - uid: 8787 + components: + - type: Transform + pos: 3.5,-65.5 + parent: 3564 + - uid: 8788 + components: + - type: Transform + pos: 3.5,-66.5 + parent: 3564 + - uid: 8789 + components: + - type: Transform + pos: 3.5,-67.5 + parent: 3564 + - uid: 8790 + components: + - type: Transform + pos: 3.5,-68.5 + parent: 3564 + - uid: 8791 + components: + - type: Transform + pos: 2.5,-68.5 + parent: 3564 + - uid: 8792 + components: + - type: Transform + pos: 2.5,-69.5 + parent: 3564 + - uid: 8793 + components: + - type: Transform + pos: 2.5,-70.5 + parent: 3564 + - uid: 8794 + components: + - type: Transform + pos: 4.5,-68.5 + parent: 3564 + - uid: 8795 + components: + - type: Transform + pos: 4.5,-69.5 + parent: 3564 + - uid: 8796 + components: + - type: Transform + pos: 4.5,-70.5 + parent: 3564 + - uid: 8797 + components: + - type: Transform + pos: 3.5,-70.5 + parent: 3564 + - uid: 8798 + components: + - type: Transform + pos: 3.5,-71.5 + parent: 3564 + - uid: 8799 + components: + - type: Transform + pos: 3.5,-72.5 + parent: 3564 + - uid: 8800 + components: + - type: Transform + pos: 2.5,-72.5 + parent: 3564 + - uid: 8801 + components: + - type: Transform + pos: 2.5,-73.5 + parent: 3564 + - uid: 8802 + components: + - type: Transform + pos: 2.5,-74.5 + parent: 3564 + - uid: 8803 + components: + - type: Transform + pos: 4.5,-72.5 + parent: 3564 + - uid: 8804 + components: + - type: Transform + pos: 4.5,-73.5 + parent: 3564 + - uid: 8805 + components: + - type: Transform + pos: 4.5,-74.5 + parent: 3564 + - uid: 8806 + components: + - type: Transform + pos: 3.5,-74.5 + parent: 3564 + - uid: 8807 + components: + - type: Transform + pos: 3.5,-75.5 + parent: 3564 + - uid: 8808 + components: + - type: Transform + pos: 3.5,-76.5 + parent: 3564 + - uid: 8809 + components: + - type: Transform + pos: 2.5,-76.5 + parent: 3564 + - uid: 8810 + components: + - type: Transform + pos: 2.5,-77.5 + parent: 3564 + - uid: 8811 + components: + - type: Transform + pos: 2.5,-78.5 + parent: 3564 + - uid: 8812 + components: + - type: Transform + pos: 4.5,-76.5 + parent: 3564 + - uid: 8813 + components: + - type: Transform + pos: 4.5,-77.5 + parent: 3564 + - uid: 8814 + components: + - type: Transform + pos: 4.5,-78.5 + parent: 3564 + - uid: 8815 + components: + - type: Transform + pos: 3.5,-78.5 + parent: 3564 + - uid: 8816 + components: + - type: Transform + pos: 3.5,-79.5 + parent: 3564 + - uid: 8817 + components: + - type: Transform + pos: 3.5,-80.5 + parent: 3564 + - uid: 8818 + components: + - type: Transform + pos: 2.5,-80.5 + parent: 3564 + - uid: 8819 + components: + - type: Transform + pos: 2.5,-81.5 + parent: 3564 + - uid: 8820 + components: + - type: Transform + pos: 2.5,-82.5 + parent: 3564 + - uid: 8821 + components: + - type: Transform + pos: 4.5,-80.5 + parent: 3564 + - uid: 8822 + components: + - type: Transform + pos: 4.5,-81.5 + parent: 3564 + - uid: 8823 + components: + - type: Transform + pos: 4.5,-82.5 + parent: 3564 + - uid: 8824 + components: + - type: Transform + pos: 3.5,-82.5 + parent: 3564 + - uid: 8825 + components: + - type: Transform + pos: 3.5,-83.5 + parent: 3564 + - uid: 8826 + components: + - type: Transform + pos: 3.5,-84.5 + parent: 3564 + - uid: 8827 + components: + - type: Transform + pos: 2.5,-84.5 + parent: 3564 + - uid: 8828 + components: + - type: Transform + pos: 2.5,-85.5 + parent: 3564 + - uid: 8829 + components: + - type: Transform + pos: 2.5,-86.5 + parent: 3564 + - uid: 8830 + components: + - type: Transform + pos: 4.5,-84.5 + parent: 3564 + - uid: 8831 + components: + - type: Transform + pos: 4.5,-85.5 + parent: 3564 + - uid: 8832 + components: + - type: Transform + pos: 4.5,-86.5 + parent: 3564 + - uid: 8833 + components: + - type: Transform + pos: 3.5,-86.5 + parent: 3564 + - uid: 8834 + components: + - type: Transform + pos: 3.5,-87.5 + parent: 3564 + - uid: 8835 + components: + - type: Transform + pos: 3.5,-88.5 + parent: 3564 + - uid: 8836 + components: + - type: Transform + pos: 2.5,-88.5 + parent: 3564 + - uid: 8837 + components: + - type: Transform + pos: 2.5,-89.5 + parent: 3564 + - uid: 8838 + components: + - type: Transform + pos: 2.5,-90.5 + parent: 3564 + - uid: 8839 + components: + - type: Transform + pos: 4.5,-88.5 + parent: 3564 + - uid: 8840 + components: + - type: Transform + pos: 4.5,-89.5 + parent: 3564 + - uid: 8841 + components: + - type: Transform + pos: 4.5,-90.5 + parent: 3564 + - uid: 9437 + components: + - type: Transform + pos: 8.5,-42.5 + parent: 3564 + - uid: 9440 + components: + - type: Transform + pos: 6.5,-41.5 + parent: 3564 + - uid: 9441 + components: + - type: Transform + pos: 7.5,-41.5 + parent: 3564 + - uid: 9442 + components: + - type: Transform + pos: 7.5,-40.5 + parent: 3564 + - uid: 9443 + components: + - type: Transform + pos: 7.5,-39.5 + parent: 3564 + - uid: 9444 + components: + - type: Transform + pos: 8.5,-41.5 + parent: 3564 + - uid: 9445 + components: + - type: Transform + pos: 8.5,-44.5 + parent: 3564 + - uid: 9446 + components: + - type: Transform + pos: 8.5,-43.5 + parent: 3564 + - uid: 9447 + components: + - type: Transform + pos: 7.5,-43.5 + parent: 3564 + - uid: 9448 + components: + - type: Transform + pos: 7.5,-43.5 + parent: 3564 + - uid: 9450 + components: + - type: Transform + pos: 7.5,-44.5 + parent: 3564 + - uid: 9451 + components: + - type: Transform + pos: 7.5,-45.5 + parent: 3564 + - uid: 9454 + components: + - type: Transform + pos: 7.5,-46.5 + parent: 3564 + - uid: 9455 + components: + - type: Transform + pos: 7.5,-47.5 + parent: 3564 + - uid: 9456 + components: + - type: Transform + pos: 8.5,-47.5 + parent: 3564 + - uid: 9457 + components: + - type: Transform + pos: 9.5,-47.5 + parent: 3564 + - uid: 9458 + components: + - type: Transform + pos: 10.5,-47.5 + parent: 3564 + - uid: 9459 + components: + - type: Transform + pos: 10.5,-46.5 + parent: 3564 + - uid: 9461 + components: + - type: Transform + pos: 10.5,-45.5 + parent: 3564 + - uid: 11339 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 2 + - uid: 11340 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 + - uid: 11344 + components: + - type: Transform + pos: 22.5,-12.5 parent: 2 - proto: CableHVStack10 entities: @@ -10857,33 +15438,168 @@ entities: - type: Transform pos: 2.497294,-7.3536167 parent: 2 - - uid: 7707 - components: - - type: Transform - pos: 48.5,21.5 - parent: 2 - uid: 7708 components: - type: Transform pos: 49.5,21.5 parent: 2 -- proto: CableMV - entities: - - uid: 1884 + - uid: 11141 components: - type: Transform - pos: 32.5,30.5 + pos: 50.5,21.5 + parent: 2 + - uid: 11151 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 +- proto: CableMV + entities: + - uid: 89 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 + - uid: 148 + components: + - type: Transform + pos: 13.5,27.5 + parent: 2 + - uid: 466 + components: + - type: Transform + pos: 29.5,34.5 + parent: 2 + - uid: 670 + components: + - type: Transform + pos: 30.5,34.5 + parent: 2 + - uid: 685 + components: + - type: Transform + pos: 13.5,25.5 + parent: 2 + - uid: 689 + components: + - type: Transform + pos: 31.5,34.5 + parent: 2 + - uid: 690 + components: + - type: Transform + pos: 32.5,34.5 + parent: 2 + - uid: 862 + components: + - type: Transform + pos: 50.5,10.5 + parent: 2 + - uid: 895 + components: + - type: Transform + pos: 48.5,6.5 + parent: 2 + - uid: 1384 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 2 + - uid: 1488 + components: + - type: Transform + pos: 43.5,32.5 + parent: 2 + - uid: 1544 + components: + - type: Transform + pos: 50.5,8.5 + parent: 2 + - uid: 1545 + components: + - type: Transform + pos: 50.5,11.5 + parent: 2 + - uid: 1546 + components: + - type: Transform + pos: 50.5,9.5 + parent: 2 + - uid: 1551 + components: + - type: Transform + pos: 50.5,14.5 + parent: 2 + - uid: 1609 + components: + - type: Transform + pos: 44.5,35.5 + parent: 2 + - uid: 1612 + components: + - type: Transform + pos: 43.5,31.5 + parent: 2 + - uid: 1961 + components: + - type: Transform + pos: 19.5,22.5 parent: 2 - uid: 1965 components: - type: Transform pos: 13.5,18.5 parent: 2 + - uid: 1966 + components: + - type: Transform + pos: 18.5,22.5 + parent: 2 + - uid: 2043 + components: + - type: Transform + pos: 50.5,12.5 + parent: 2 - uid: 2055 components: - type: Transform pos: 16.5,18.5 parent: 2 + - uid: 2157 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 + - uid: 2173 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 2 + - uid: 2620 + components: + - type: Transform + pos: 50.5,15.5 + parent: 2 + - uid: 2885 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 2886 + components: + - type: Transform + pos: 13.5,26.5 + parent: 2 + - uid: 2887 + components: + - type: Transform + pos: 13.5,28.5 + parent: 2 + - uid: 2889 + components: + - type: Transform + pos: 15.5,28.5 + parent: 2 - uid: 2933 components: - type: Transform @@ -10899,6 +15615,36 @@ entities: - type: Transform pos: 14.5,18.5 parent: 2 + - uid: 3023 + components: + - type: Transform + pos: 16.5,23.5 + parent: 2 + - uid: 3027 + components: + - type: Transform + pos: 17.5,22.5 + parent: 2 + - uid: 4226 + components: + - type: Transform + pos: 17.5,23.5 + parent: 2 + - uid: 4246 + components: + - type: Transform + pos: 14.5,23.5 + parent: 2 + - uid: 4512 + components: + - type: Transform + pos: 13.5,23.5 + parent: 2 + - uid: 4738 + components: + - type: Transform + pos: 50.5,13.5 + parent: 2 - uid: 4947 components: - type: Transform @@ -11204,16 +15950,6 @@ entities: - type: Transform pos: 18.5,-5.5 parent: 2 - - uid: 5027 - components: - - type: Transform - pos: 19.5,-5.5 - parent: 2 - - uid: 5028 - components: - - type: Transform - pos: 19.5,-4.5 - parent: 2 - uid: 5030 components: - type: Transform @@ -11389,16 +16125,6 @@ entities: - type: Transform pos: 6.5,-11.5 parent: 2 - - uid: 5070 - components: - - type: Transform - pos: 5.5,-11.5 - parent: 2 - - uid: 5071 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 2 - uid: 5072 components: - type: Transform @@ -11634,11 +16360,6 @@ entities: - type: Transform pos: 30.5,-2.5 parent: 2 - - uid: 5122 - components: - - type: Transform - pos: 30.5,-3.5 - parent: 2 - uid: 5123 components: - type: Transform @@ -11659,11 +16380,6 @@ entities: - type: Transform pos: 5.5,0.5 parent: 2 - - uid: 5127 - components: - - type: Transform - pos: 29.5,-3.5 - parent: 2 - uid: 5128 components: - type: Transform @@ -11779,71 +16495,11 @@ entities: - type: Transform pos: 17.5,21.5 parent: 2 - - uid: 5152 - components: - - type: Transform - pos: 18.5,20.5 - parent: 2 - - uid: 5153 - components: - - type: Transform - pos: 19.5,20.5 - parent: 2 - - uid: 5154 - components: - - type: Transform - pos: 20.5,20.5 - parent: 2 - - uid: 5155 - components: - - type: Transform - pos: 16.5,21.5 - parent: 2 - - uid: 5156 - components: - - type: Transform - pos: 15.5,21.5 - parent: 2 - - uid: 5157 - components: - - type: Transform - pos: 15.5,22.5 - parent: 2 - uid: 5158 components: - type: Transform pos: 15.5,23.5 parent: 2 - - uid: 5159 - components: - - type: Transform - pos: 15.5,24.5 - parent: 2 - - uid: 5162 - components: - - type: Transform - pos: 15.5,25.5 - parent: 2 - - uid: 5163 - components: - - type: Transform - pos: 15.5,26.5 - parent: 2 - - uid: 5164 - components: - - type: Transform - pos: 15.5,27.5 - parent: 2 - - uid: 5165 - components: - - type: Transform - pos: 15.5,28.5 - parent: 2 - - uid: 5166 - components: - - type: Transform - pos: 15.5,29.5 - parent: 2 - uid: 5167 components: - type: Transform @@ -12029,60 +16685,10 @@ entities: - type: Transform pos: 16.5,11.5 parent: 2 - - uid: 5207 - components: - - type: Transform - pos: 10.5,11.5 - parent: 2 - - uid: 5208 - components: - - type: Transform - pos: 9.5,11.5 - parent: 2 - - uid: 5209 - components: - - type: Transform - pos: 9.5,12.5 - parent: 2 - - uid: 5210 - components: - - type: Transform - pos: 8.5,12.5 - parent: 2 - - uid: 5211 - components: - - type: Transform - pos: 7.5,12.5 - parent: 2 - uid: 5212 components: - type: Transform - pos: 6.5,12.5 - parent: 2 - - uid: 5213 - components: - - type: Transform - pos: 5.5,12.5 - parent: 2 - - uid: 5214 - components: - - type: Transform - pos: 5.5,11.5 - parent: 2 - - uid: 5215 - components: - - type: Transform - pos: 4.5,11.5 - parent: 2 - - uid: 5216 - components: - - type: Transform - pos: 3.5,11.5 - parent: 2 - - uid: 5217 - components: - - type: Transform - pos: 3.5,10.5 + pos: 43.5,35.5 parent: 2 - uid: 5226 components: @@ -12594,11 +17200,6 @@ entities: - type: Transform pos: 49.5,6.5 parent: 2 - - uid: 5338 - components: - - type: Transform - pos: 51.5,7.5 - parent: 2 - uid: 5339 components: - type: Transform @@ -12614,31 +17215,6 @@ entities: - type: Transform pos: 48.5,8.5 parent: 2 - - uid: 5342 - components: - - type: Transform - pos: 50.5,8.5 - parent: 2 - - uid: 5343 - components: - - type: Transform - pos: 50.5,9.5 - parent: 2 - - uid: 5344 - components: - - type: Transform - pos: 50.5,10.5 - parent: 2 - - uid: 5345 - components: - - type: Transform - pos: 50.5,11.5 - parent: 2 - - uid: 5346 - components: - - type: Transform - pos: 51.5,11.5 - parent: 2 - uid: 5347 components: - type: Transform @@ -13039,6 +17615,11 @@ entities: - type: Transform pos: 61.5,48.5 parent: 2 + - uid: 5457 + components: + - type: Transform + pos: 47.5,6.5 + parent: 2 - uid: 5501 components: - type: Transform @@ -13094,11 +17675,6 @@ entities: - type: Transform pos: 44.5,21.5 parent: 2 - - uid: 5744 - components: - - type: Transform - pos: 35.5,35.5 - parent: 2 - uid: 5745 components: - type: Transform @@ -13139,51 +17715,6 @@ entities: - type: Transform pos: 31.5,31.5 parent: 2 - - uid: 5756 - components: - - type: Transform - pos: 32.5,29.5 - parent: 2 - - uid: 5757 - components: - - type: Transform - pos: 31.5,29.5 - parent: 2 - - uid: 5758 - components: - - type: Transform - pos: 30.5,29.5 - parent: 2 - - uid: 5759 - components: - - type: Transform - pos: 29.5,29.5 - parent: 2 - - uid: 5760 - components: - - type: Transform - pos: 28.5,29.5 - parent: 2 - - uid: 5761 - components: - - type: Transform - pos: 28.5,30.5 - parent: 2 - - uid: 5762 - components: - - type: Transform - pos: 28.5,31.5 - parent: 2 - - uid: 5763 - components: - - type: Transform - pos: 28.5,32.5 - parent: 2 - - uid: 5764 - components: - - type: Transform - pos: 28.5,33.5 - parent: 2 - uid: 5765 components: - type: Transform @@ -13384,6 +17915,956 @@ entities: - type: Transform pos: 6.5,2.5 parent: 2 + - uid: 6843 + components: + - type: Transform + pos: 33.5,34.5 + parent: 2 + - uid: 7008 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 2 + - uid: 7009 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 2 + - uid: 7010 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 2 + - uid: 7011 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - uid: 7115 + components: + - type: Transform + pos: 45.5,35.5 + parent: 2 + - uid: 7172 + components: + - type: Transform + pos: 43.5,33.5 + parent: 2 + - uid: 7349 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 7368 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 2 + - uid: 7579 + components: + - type: Transform + pos: 32.5,30.5 + parent: 2 + - uid: 7604 + components: + - type: Transform + pos: 43.5,30.5 + parent: 2 + - uid: 7774 + components: + - type: Transform + pos: 32.5,29.5 + parent: 2 + - uid: 8416 + components: + - type: Transform + pos: 46.5,35.5 + parent: 2 + - uid: 8417 + components: + - type: Transform + pos: 47.5,35.5 + parent: 2 + - uid: 8418 + components: + - type: Transform + pos: 47.5,36.5 + parent: 2 + - uid: 8469 + components: + - type: Transform + pos: 32.5,28.5 + parent: 2 + - uid: 8562 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 2 + - uid: 9474 + components: + - type: Transform + pos: 10.5,-45.5 + parent: 3564 + - uid: 9475 + components: + - type: Transform + pos: 10.5,-44.5 + parent: 3564 + - uid: 9476 + components: + - type: Transform + pos: 10.5,-43.5 + parent: 3564 + - uid: 9477 + components: + - type: Transform + pos: 10.5,-42.5 + parent: 3564 + - uid: 9478 + components: + - type: Transform + pos: 10.5,-41.5 + parent: 3564 + - uid: 9479 + components: + - type: Transform + pos: 11.5,-41.5 + parent: 3564 + - uid: 9480 + components: + - type: Transform + pos: 12.5,-41.5 + parent: 3564 + - uid: 9481 + components: + - type: Transform + pos: 13.5,-41.5 + parent: 3564 + - uid: 9482 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 3564 + - uid: 9483 + components: + - type: Transform + pos: 15.5,-41.5 + parent: 3564 + - uid: 9484 + components: + - type: Transform + pos: 16.5,-41.5 + parent: 3564 + - uid: 9485 + components: + - type: Transform + pos: 17.5,-41.5 + parent: 3564 + - uid: 9486 + components: + - type: Transform + pos: 15.5,-40.5 + parent: 3564 + - uid: 9487 + components: + - type: Transform + pos: 15.5,-39.5 + parent: 3564 + - uid: 9488 + components: + - type: Transform + pos: 18.5,-41.5 + parent: 3564 + - uid: 9489 + components: + - type: Transform + pos: 19.5,-41.5 + parent: 3564 + - uid: 9490 + components: + - type: Transform + pos: 20.5,-41.5 + parent: 3564 + - uid: 9491 + components: + - type: Transform + pos: 21.5,-41.5 + parent: 3564 + - uid: 9492 + components: + - type: Transform + pos: 22.5,-41.5 + parent: 3564 + - uid: 9493 + components: + - type: Transform + pos: 23.5,-41.5 + parent: 3564 + - uid: 9494 + components: + - type: Transform + pos: 22.5,-39.5 + parent: 3564 + - uid: 9495 + components: + - type: Transform + pos: 21.5,-39.5 + parent: 3564 + - uid: 9496 + components: + - type: Transform + pos: 20.5,-39.5 + parent: 3564 + - uid: 9497 + components: + - type: Transform + pos: 19.5,-39.5 + parent: 3564 + - uid: 9498 + components: + - type: Transform + pos: 23.5,-40.5 + parent: 3564 + - uid: 9499 + components: + - type: Transform + pos: 23.5,-39.5 + parent: 3564 + - uid: 9500 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 3564 + - uid: 9501 + components: + - type: Transform + pos: 23.5,-37.5 + parent: 3564 + - uid: 9502 + components: + - type: Transform + pos: 23.5,-36.5 + parent: 3564 + - uid: 9503 + components: + - type: Transform + pos: 23.5,-35.5 + parent: 3564 + - uid: 9504 + components: + - type: Transform + pos: 22.5,-32.5 + parent: 3564 + - uid: 9505 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 3564 + - uid: 9506 + components: + - type: Transform + pos: 23.5,-30.5 + parent: 3564 + - uid: 9507 + components: + - type: Transform + pos: 23.5,-31.5 + parent: 3564 + - uid: 9508 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 3564 + - uid: 9509 + components: + - type: Transform + pos: 21.5,-32.5 + parent: 3564 + - uid: 9510 + components: + - type: Transform + pos: 20.5,-32.5 + parent: 3564 + - uid: 9511 + components: + - type: Transform + pos: 19.5,-32.5 + parent: 3564 + - uid: 9512 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 3564 + - uid: 9513 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 3564 + - uid: 9514 + components: + - type: Transform + pos: 16.5,-32.5 + parent: 3564 + - uid: 9515 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 3564 + - uid: 9516 + components: + - type: Transform + pos: 14.5,-32.5 + parent: 3564 + - uid: 9517 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 3564 + - uid: 9518 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 3564 + - uid: 9519 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 3564 + - uid: 9520 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 3564 + - uid: 9521 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 3564 + - uid: 9522 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 3564 + - uid: 9523 + components: + - type: Transform + pos: 18.5,-26.5 + parent: 3564 + - uid: 9524 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 3564 + - uid: 9525 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 3564 + - uid: 9526 + components: + - type: Transform + pos: 21.5,-26.5 + parent: 3564 + - uid: 9527 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 3564 + - uid: 9528 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 3564 + - uid: 9529 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 3564 + - uid: 9530 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 3564 + - uid: 9531 + components: + - type: Transform + pos: 14.5,-29.5 + parent: 3564 + - uid: 9532 + components: + - type: Transform + pos: 23.5,-28.5 + parent: 3564 + - uid: 9533 + components: + - type: Transform + pos: 24.5,-28.5 + parent: 3564 + - uid: 9534 + components: + - type: Transform + pos: 25.5,-28.5 + parent: 3564 + - uid: 9535 + components: + - type: Transform + pos: 26.5,-28.5 + parent: 3564 + - uid: 9536 + components: + - type: Transform + pos: 27.5,-28.5 + parent: 3564 + - uid: 9537 + components: + - type: Transform + pos: 28.5,-28.5 + parent: 3564 + - uid: 9538 + components: + - type: Transform + pos: 29.5,-28.5 + parent: 3564 + - uid: 9539 + components: + - type: Transform + pos: 30.5,-28.5 + parent: 3564 + - uid: 9540 + components: + - type: Transform + pos: 31.5,-28.5 + parent: 3564 + - uid: 9541 + components: + - type: Transform + pos: 32.5,-28.5 + parent: 3564 + - uid: 9542 + components: + - type: Transform + pos: 33.5,-28.5 + parent: 3564 + - uid: 9543 + components: + - type: Transform + pos: 34.5,-28.5 + parent: 3564 + - uid: 9544 + components: + - type: Transform + pos: 34.5,-29.5 + parent: 3564 + - uid: 9545 + components: + - type: Transform + pos: 34.5,-30.5 + parent: 3564 + - uid: 9546 + components: + - type: Transform + pos: 34.5,-31.5 + parent: 3564 + - uid: 9547 + components: + - type: Transform + pos: 33.5,-31.5 + parent: 3564 + - uid: 9548 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 3564 + - uid: 9549 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 3564 + - uid: 9550 + components: + - type: Transform + pos: 23.5,-27.5 + parent: 3564 + - uid: 9551 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 3564 + - uid: 9552 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 3564 + - uid: 9553 + components: + - type: Transform + pos: 23.5,-23.5 + parent: 3564 + - uid: 9554 + components: + - type: Transform + pos: 23.5,-22.5 + parent: 3564 + - uid: 9555 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 3564 + - uid: 9556 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 3564 + - uid: 9557 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 3564 + - uid: 9558 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 3564 + - uid: 9559 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 3564 + - uid: 9560 + components: + - type: Transform + pos: 23.5,-42.5 + parent: 3564 + - uid: 9561 + components: + - type: Transform + pos: 23.5,-43.5 + parent: 3564 + - uid: 9562 + components: + - type: Transform + pos: 23.5,-44.5 + parent: 3564 + - uid: 9563 + components: + - type: Transform + pos: 23.5,-47.5 + parent: 3564 + - uid: 9564 + components: + - type: Transform + pos: 23.5,-45.5 + parent: 3564 + - uid: 9565 + components: + - type: Transform + pos: 23.5,-46.5 + parent: 3564 + - uid: 9566 + components: + - type: Transform + pos: 23.5,-48.5 + parent: 3564 + - uid: 9567 + components: + - type: Transform + pos: 23.5,-49.5 + parent: 3564 + - uid: 9568 + components: + - type: Transform + pos: 23.5,-50.5 + parent: 3564 + - uid: 9569 + components: + - type: Transform + pos: 23.5,-51.5 + parent: 3564 + - uid: 9570 + components: + - type: Transform + pos: 23.5,-54.5 + parent: 3564 + - uid: 9571 + components: + - type: Transform + pos: 23.5,-52.5 + parent: 3564 + - uid: 9572 + components: + - type: Transform + pos: 23.5,-53.5 + parent: 3564 + - uid: 9573 + components: + - type: Transform + pos: 23.5,-55.5 + parent: 3564 + - uid: 9574 + components: + - type: Transform + pos: 23.5,-56.5 + parent: 3564 + - uid: 9575 + components: + - type: Transform + pos: 23.5,-57.5 + parent: 3564 + - uid: 9576 + components: + - type: Transform + pos: 23.5,-58.5 + parent: 3564 + - uid: 9578 + components: + - type: Transform + pos: 22.5,-60.5 + parent: 3564 + - uid: 9579 + components: + - type: Transform + pos: 21.5,-60.5 + parent: 3564 + - uid: 9580 + components: + - type: Transform + pos: 20.5,-60.5 + parent: 3564 + - uid: 9581 + components: + - type: Transform + pos: 19.5,-60.5 + parent: 3564 + - uid: 9582 + components: + - type: Transform + pos: 18.5,-60.5 + parent: 3564 + - uid: 9583 + components: + - type: Transform + pos: 17.5,-60.5 + parent: 3564 + - uid: 9584 + components: + - type: Transform + pos: 16.5,-60.5 + parent: 3564 + - uid: 9585 + components: + - type: Transform + pos: 15.5,-60.5 + parent: 3564 + - uid: 9586 + components: + - type: Transform + pos: 14.5,-60.5 + parent: 3564 + - uid: 9587 + components: + - type: Transform + pos: 13.5,-60.5 + parent: 3564 + - uid: 9588 + components: + - type: Transform + pos: 12.5,-60.5 + parent: 3564 + - uid: 9589 + components: + - type: Transform + pos: 11.5,-60.5 + parent: 3564 + - uid: 9590 + components: + - type: Transform + pos: 10.5,-60.5 + parent: 3564 + - uid: 9591 + components: + - type: Transform + pos: 19.5,-59.5 + parent: 3564 + - uid: 9592 + components: + - type: Transform + pos: 23.5,-59.5 + parent: 3564 + - uid: 9593 + components: + - type: Transform + pos: 24.5,-59.5 + parent: 3564 + - uid: 9594 + components: + - type: Transform + pos: 25.5,-59.5 + parent: 3564 + - uid: 9595 + components: + - type: Transform + pos: 26.5,-59.5 + parent: 3564 + - uid: 9596 + components: + - type: Transform + pos: 27.5,-59.5 + parent: 3564 + - uid: 9597 + components: + - type: Transform + pos: 28.5,-59.5 + parent: 3564 + - uid: 9598 + components: + - type: Transform + pos: 29.5,-59.5 + parent: 3564 + - uid: 9599 + components: + - type: Transform + pos: 30.5,-59.5 + parent: 3564 + - uid: 9600 + components: + - type: Transform + pos: 31.5,-59.5 + parent: 3564 + - uid: 9601 + components: + - type: Transform + pos: 31.5,-60.5 + parent: 3564 + - uid: 9602 + components: + - type: Transform + pos: 23.5,-62.5 + parent: 3564 + - uid: 9603 + components: + - type: Transform + pos: 23.5,-63.5 + parent: 3564 + - uid: 9604 + components: + - type: Transform + pos: 23.5,-64.5 + parent: 3564 + - uid: 9605 + components: + - type: Transform + pos: 22.5,-64.5 + parent: 3564 + - uid: 9606 + components: + - type: Transform + pos: 23.5,-65.5 + parent: 3564 + - uid: 9607 + components: + - type: Transform + pos: 23.5,-67.5 + parent: 3564 + - uid: 9608 + components: + - type: Transform + pos: 22.5,-67.5 + parent: 3564 + - uid: 9609 + components: + - type: Transform + pos: 21.5,-64.5 + parent: 3564 + - uid: 9610 + components: + - type: Transform + pos: 20.5,-64.5 + parent: 3564 + - uid: 9611 + components: + - type: Transform + pos: 19.5,-64.5 + parent: 3564 + - uid: 9612 + components: + - type: Transform + pos: 18.5,-64.5 + parent: 3564 + - uid: 9613 + components: + - type: Transform + pos: 23.5,-66.5 + parent: 3564 + - uid: 9614 + components: + - type: Transform + pos: 24.5,-66.5 + parent: 3564 + - uid: 9615 + components: + - type: Transform + pos: 25.5,-66.5 + parent: 3564 + - uid: 9616 + components: + - type: Transform + pos: 26.5,-66.5 + parent: 3564 + - uid: 9617 + components: + - type: Transform + pos: 27.5,-66.5 + parent: 3564 + - uid: 9618 + components: + - type: Transform + pos: 28.5,-66.5 + parent: 3564 + - uid: 9619 + components: + - type: Transform + pos: 28.5,-67.5 + parent: 3564 + - uid: 9620 + components: + - type: Transform + pos: 28.5,-68.5 + parent: 3564 + - uid: 9621 + components: + - type: Transform + pos: 28.5,-69.5 + parent: 3564 + - uid: 9622 + components: + - type: Transform + pos: 28.5,-70.5 + parent: 3564 + - uid: 9623 + components: + - type: Transform + pos: 21.5,-67.5 + parent: 3564 + - uid: 9624 + components: + - type: Transform + pos: 20.5,-67.5 + parent: 3564 + - uid: 9625 + components: + - type: Transform + pos: 19.5,-67.5 + parent: 3564 + - uid: 9626 + components: + - type: Transform + pos: 18.5,-67.5 + parent: 3564 + - uid: 9627 + components: + - type: Transform + pos: 17.5,-67.5 + parent: 3564 + - uid: 9628 + components: + - type: Transform + pos: 16.5,-67.5 + parent: 3564 + - uid: 9629 + components: + - type: Transform + pos: 15.5,-67.5 + parent: 3564 + - uid: 9630 + components: + - type: Transform + pos: 15.5,-68.5 + parent: 3564 + - uid: 9652 + components: + - type: Transform + pos: 9.5,-41.5 + parent: 3564 + - uid: 9653 + components: + - type: Transform + pos: 8.5,-41.5 + parent: 3564 + - uid: 9654 + components: + - type: Transform + pos: 8.5,-42.5 + parent: 3564 + - uid: 9655 + components: + - type: Transform + pos: 8.5,-43.5 + parent: 3564 + - uid: 9656 + components: + - type: Transform + pos: 8.5,-44.5 + parent: 3564 + - uid: 9657 + components: + - type: Transform + pos: 8.5,-45.5 + parent: 3564 + - uid: 9658 + components: + - type: Transform + pos: 8.5,-46.5 + parent: 3564 + - uid: 9688 + components: + - type: Transform + pos: 23.5,-34.5 + parent: 3564 + - uid: 9689 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 3564 + - uid: 9690 + components: + - type: Transform + pos: 23.5,-61.5 + parent: 3564 + - uid: 9691 + components: + - type: Transform + pos: 23.5,-60.5 + parent: 3564 + - uid: 11345 + components: + - type: Transform + pos: 22.5,-12.5 + parent: 2 + - uid: 11370 + components: + - type: Transform + pos: 32.5,27.5 + parent: 2 + - uid: 11371 + components: + - type: Transform + pos: 32.5,26.5 + parent: 2 + - uid: 11372 + components: + - type: Transform + pos: 32.5,25.5 + parent: 2 + - uid: 11373 + components: + - type: Transform + pos: 32.5,24.5 + parent: 2 + - uid: 11374 + components: + - type: Transform + pos: 31.5,24.5 + parent: 2 - proto: CableMVStack10 entities: - uid: 4505 @@ -13396,16 +18877,21 @@ entities: - type: Transform pos: 2.434794,-7.4942417 parent: 2 - - uid: 7711 - components: - - type: Transform - pos: 48.5,21.5 - parent: 2 - uid: 7712 components: - type: Transform pos: 49.5,21.5 parent: 2 + - uid: 11139 + components: + - type: Transform + pos: 50.5,21.5 + parent: 2 + - uid: 11150 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 - proto: CableTerminal entities: - uid: 521 @@ -13413,42 +18899,54 @@ entities: - type: Transform pos: 0.5,-12.5 parent: 2 + - uid: 661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,38.5 + parent: 2 + - uid: 676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,39.5 + parent: 2 - uid: 1435 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,62.5 parent: 2 - - uid: 1651 + - uid: 1512 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,26.5 + pos: 18.5,37.5 parent: 2 - - uid: 1652 + - uid: 1603 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,27.5 + pos: 46.5,39.5 parent: 2 - - uid: 1653 + - uid: 2551 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,28.5 + pos: 46.5,40.5 parent: 2 - - uid: 1654 + - uid: 9438 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,29.5 - parent: 2 - - uid: 7650 + rot: -1.5707963267948966 rad + pos: 8.5,-43.5 + parent: 3564 + - uid: 9449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,30.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 8.5,-44.5 + parent: 3564 - proto: CaptainIDCard entities: - uid: 2373 @@ -13458,24 +18956,37 @@ entities: parent: 2 - proto: CaptainSabre entities: - - uid: 2407 + - uid: 7174 components: - type: Transform - pos: 59.452477,23.170856 + pos: 59.5,23.5 parent: 2 - proto: CarbonDioxideCanister entities: - - uid: 6610 + - uid: 138 components: - type: Transform - pos: 21.5,42.5 + pos: 31.5,37.5 parent: 2 -- proto: CargoMailTeleporter - entities: - - uid: 7829 + - uid: 1497 components: - type: Transform - pos: 15.5,20.5 + pos: 32.5,37.5 + parent: 2 + - uid: 1615 + components: + - type: Transform + pos: 14.5,39.5 + parent: 2 + - uid: 1634 + components: + - type: Transform + pos: 19.5,33.5 + parent: 2 + - uid: 1919 + components: + - type: Transform + pos: 43.5,-7.5 parent: 2 - proto: Carpet entities: @@ -13923,11 +19434,16 @@ entities: parent: 2 - proto: Catwalk entities: - - uid: 3964 + - uid: 847 components: - type: Transform pos: 52.5,60.5 parent: 2 + - uid: 2796 + components: + - type: Transform + pos: 53.5,60.5 + parent: 2 - uid: 4573 components: - type: Transform @@ -14283,6 +19799,481 @@ entities: - type: Transform pos: 17.5,60.5 parent: 2 + - uid: 6856 + components: + - type: Transform + pos: 3.5,-91.5 + parent: 3564 + - uid: 6857 + components: + - type: Transform + pos: 3.5,-90.5 + parent: 3564 + - uid: 6858 + components: + - type: Transform + pos: 3.5,-89.5 + parent: 3564 + - uid: 6859 + components: + - type: Transform + pos: 3.5,-88.5 + parent: 3564 + - uid: 6860 + components: + - type: Transform + pos: 3.5,-87.5 + parent: 3564 + - uid: 6861 + components: + - type: Transform + pos: 3.5,-86.5 + parent: 3564 + - uid: 6862 + components: + - type: Transform + pos: 3.5,-85.5 + parent: 3564 + - uid: 6863 + components: + - type: Transform + pos: 3.5,-84.5 + parent: 3564 + - uid: 6864 + components: + - type: Transform + pos: 3.5,-83.5 + parent: 3564 + - uid: 6865 + components: + - type: Transform + pos: 3.5,-82.5 + parent: 3564 + - uid: 6866 + components: + - type: Transform + pos: 3.5,-81.5 + parent: 3564 + - uid: 6867 + components: + - type: Transform + pos: 3.5,-79.5 + parent: 3564 + - uid: 6868 + components: + - type: Transform + pos: 3.5,-80.5 + parent: 3564 + - uid: 6869 + components: + - type: Transform + pos: 3.5,-78.5 + parent: 3564 + - uid: 6870 + components: + - type: Transform + pos: 3.5,-77.5 + parent: 3564 + - uid: 6871 + components: + - type: Transform + pos: 3.5,-76.5 + parent: 3564 + - uid: 6872 + components: + - type: Transform + pos: 3.5,-75.5 + parent: 3564 + - uid: 6873 + components: + - type: Transform + pos: 3.5,-74.5 + parent: 3564 + - uid: 6874 + components: + - type: Transform + pos: 3.5,-73.5 + parent: 3564 + - uid: 6875 + components: + - type: Transform + pos: 3.5,-72.5 + parent: 3564 + - uid: 6876 + components: + - type: Transform + pos: 3.5,-71.5 + parent: 3564 + - uid: 6877 + components: + - type: Transform + pos: 3.5,-70.5 + parent: 3564 + - uid: 6878 + components: + - type: Transform + pos: 3.5,-69.5 + parent: 3564 + - uid: 6879 + components: + - type: Transform + pos: 3.5,-68.5 + parent: 3564 + - uid: 6880 + components: + - type: Transform + pos: 3.5,-67.5 + parent: 3564 + - uid: 6881 + components: + - type: Transform + pos: 3.5,-66.5 + parent: 3564 + - uid: 6882 + components: + - type: Transform + pos: 3.5,-65.5 + parent: 3564 + - uid: 6883 + components: + - type: Transform + pos: 3.5,-64.5 + parent: 3564 + - uid: 6884 + components: + - type: Transform + pos: 3.5,-63.5 + parent: 3564 + - uid: 6885 + components: + - type: Transform + pos: 3.5,-62.5 + parent: 3564 + - uid: 6886 + components: + - type: Transform + pos: 3.5,-61.5 + parent: 3564 + - uid: 6887 + components: + - type: Transform + pos: 3.5,-60.5 + parent: 3564 + - uid: 6888 + components: + - type: Transform + pos: 3.5,-59.5 + parent: 3564 + - uid: 6889 + components: + - type: Transform + pos: 3.5,-58.5 + parent: 3564 + - uid: 6890 + components: + - type: Transform + pos: 3.5,-57.5 + parent: 3564 + - uid: 6891 + components: + - type: Transform + pos: 3.5,-56.5 + parent: 3564 + - uid: 6892 + components: + - type: Transform + pos: 3.5,-55.5 + parent: 3564 + - uid: 6893 + components: + - type: Transform + pos: 3.5,-54.5 + parent: 3564 + - uid: 6894 + components: + - type: Transform + pos: 3.5,-53.5 + parent: 3564 + - uid: 6895 + components: + - type: Transform + pos: 3.5,-52.5 + parent: 3564 + - uid: 6896 + components: + - type: Transform + pos: 3.5,-51.5 + parent: 3564 + - uid: 6897 + components: + - type: Transform + pos: 3.5,-50.5 + parent: 3564 + - uid: 6898 + components: + - type: Transform + pos: 3.5,-49.5 + parent: 3564 + - uid: 6899 + components: + - type: Transform + pos: 3.5,-48.5 + parent: 3564 + - uid: 6900 + components: + - type: Transform + pos: 3.5,-47.5 + parent: 3564 + - uid: 6901 + components: + - type: Transform + pos: 3.5,-46.5 + parent: 3564 + - uid: 6902 + components: + - type: Transform + pos: 3.5,-45.5 + parent: 3564 + - uid: 6903 + components: + - type: Transform + pos: 3.5,-44.5 + parent: 3564 + - uid: 6904 + components: + - type: Transform + pos: 3.5,-43.5 + parent: 3564 + - uid: 6905 + components: + - type: Transform + pos: 3.5,-42.5 + parent: 3564 + - uid: 6906 + components: + - type: Transform + pos: 3.5,-41.5 + parent: 3564 + - uid: 6907 + components: + - type: Transform + pos: 3.5,-40.5 + parent: 3564 + - uid: 6908 + components: + - type: Transform + pos: 3.5,-39.5 + parent: 3564 + - uid: 6909 + components: + - type: Transform + pos: 3.5,-38.5 + parent: 3564 + - uid: 6910 + components: + - type: Transform + pos: 3.5,-37.5 + parent: 3564 + - uid: 6911 + components: + - type: Transform + pos: 3.5,-36.5 + parent: 3564 + - uid: 6912 + components: + - type: Transform + pos: 3.5,-35.5 + parent: 3564 + - uid: 6913 + components: + - type: Transform + pos: 3.5,-34.5 + parent: 3564 + - uid: 6914 + components: + - type: Transform + pos: 3.5,-33.5 + parent: 3564 + - uid: 6915 + components: + - type: Transform + pos: 3.5,-32.5 + parent: 3564 + - uid: 6916 + components: + - type: Transform + pos: 3.5,-31.5 + parent: 3564 + - uid: 6917 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 3564 + - uid: 6918 + components: + - type: Transform + pos: 3.5,-29.5 + parent: 3564 + - uid: 6919 + components: + - type: Transform + pos: 3.5,-28.5 + parent: 3564 + - uid: 6920 + components: + - type: Transform + pos: 3.5,-27.5 + parent: 3564 + - uid: 6922 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 3564 + - uid: 6923 + components: + - type: Transform + pos: 3.5,-25.5 + parent: 3564 + - uid: 6924 + components: + - type: Transform + pos: 3.5,-24.5 + parent: 3564 + - uid: 6925 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 3564 + - uid: 6927 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 3564 + - uid: 6928 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 3564 + - uid: 6929 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 3564 + - uid: 6930 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 3564 + - uid: 6931 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 3564 + - uid: 6932 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 3564 + - uid: 6933 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 3564 + - uid: 6934 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 3564 + - uid: 6935 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 3564 + - uid: 6936 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 3564 + - uid: 6937 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 3564 + - uid: 6938 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 3564 + - uid: 6939 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 3564 + - uid: 6942 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 3564 + - uid: 6943 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 3564 + - uid: 6944 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 3564 + - uid: 6945 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 3564 + - uid: 6946 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 3564 + - uid: 6947 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 3564 + - uid: 6948 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 3564 + - uid: 6949 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 3564 + - uid: 6950 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 3564 + - uid: 6951 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 3564 + - uid: 7150 + components: + - type: Transform + pos: 4.5,-41.5 + parent: 3564 + - uid: 7151 + components: + - type: Transform + pos: 5.5,-41.5 + parent: 3564 + - uid: 7267 + components: + - type: Transform + pos: 54.5,60.5 + parent: 2 - proto: Chair entities: - uid: 446 @@ -14297,18 +20288,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,13.5 parent: 2 - - uid: 490 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,21.5 - parent: 2 - - uid: 579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,20.5 - parent: 2 - uid: 618 components: - type: Transform @@ -14320,18 +20299,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,12.5 parent: 2 - - uid: 1291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,22.5 - parent: 2 - - uid: 1352 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-8.5 - parent: 2 - uid: 1513 components: - type: Transform @@ -14390,12 +20357,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,-0.5 parent: 2 - - uid: 1770 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,20.5 - parent: 2 - uid: 2016 components: - type: Transform @@ -14461,38 +20422,11 @@ entities: - type: Transform pos: 57.5,18.5 parent: 2 - - uid: 3816 - components: - - type: Transform - pos: 31.5,-5.5 - parent: 2 - - uid: 4852 - components: - - type: Transform - pos: 58.5,39.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: 7114 + - uid: 2898 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,12.5 - parent: 2 - - uid: 7119 - components: - - type: Transform - pos: 42.5,13.5 + pos: 34.5,11.5 parent: 2 - uid: 7424 components: @@ -14506,35 +20440,162 @@ entities: rot: 3.141592653589793 rad pos: 33.5,15.5 parent: 2 -- proto: ChairOfficeDark - entities: - - uid: 7638 + - uid: 9705 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,32.5 - parent: 2 -- proto: ChairOfficeLight + pos: 30.5,-64.5 + parent: 3564 + - uid: 10327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-32.5 + parent: 3564 + - uid: 10328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-33.5 + parent: 3564 + - uid: 10407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-65.5 + parent: 3564 + - uid: 10408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-66.5 + parent: 3564 + - uid: 10590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-27.5 + parent: 3564 + - uid: 10591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-28.5 + parent: 3564 + - uid: 10592 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 3564 + - uid: 10593 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 3564 + - uid: 10594 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 3564 + - uid: 10595 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 3564 + - uid: 10596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-22.5 + parent: 3564 + - uid: 10597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-23.5 + parent: 3564 + - uid: 10598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-27.5 + parent: 3564 + - uid: 10599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-28.5 + parent: 3564 + - uid: 10600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-29.5 + parent: 3564 + - uid: 10601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-29.5 + parent: 3564 + - uid: 10602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-24.5 + parent: 3564 + - uid: 10603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-24.5 + parent: 3564 + - uid: 10604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-23.5 + parent: 3564 + - uid: 10605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-22.5 + parent: 3564 + - uid: 10789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-17.5 + parent: 3564 + - uid: 10790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-17.5 + parent: 3564 + - uid: 10791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-19.5 + parent: 3564 +- proto: ChairOfficeDark entities: - - uid: 533 - components: - - type: Transform - pos: 23.68446,16.648922 - parent: 2 - - uid: 1488 + - uid: 10404 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 + pos: 33.5,-65.5 + parent: 3564 - proto: ChairWood entities: + - uid: 122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,14.5 + parent: 2 - uid: 267 components: - type: Transform @@ -14649,6 +20710,24 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,15.5 parent: 2 + - uid: 11350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 2 +- proto: CheckerBoard + entities: + - uid: 10309 + components: + - type: Transform + pos: 16.5,-38.5 + parent: 3564 + - uid: 10313 + components: + - type: Transform + pos: 29.5,-46.5 + parent: 3564 - proto: ChemDispenser entities: - uid: 506 @@ -14675,6 +20754,26 @@ entities: - type: Transform pos: 32.5,16.5 parent: 2 + - uid: 10616 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 + - uid: 10617 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 + - uid: 10618 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 + - uid: 10705 + components: + - type: Transform + pos: 37.5,-26.5 + parent: 3564 - proto: ChemistryBottleEthanol entities: - uid: 7321 @@ -14706,18 +20805,23 @@ entities: - type: Transform pos: 32.5,16.5 parent: 2 + - uid: 10706 + components: + - type: Transform + pos: 37.5,-26.5 + parent: 3564 - proto: ChemistryBottleOmnizine entities: + - uid: 1345 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 - uid: 2369 components: - type: Transform pos: 63.5,29.5 parent: 2 - - uid: 7122 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 2 - proto: ChemistryBottlePotassium entities: - uid: 7447 @@ -14727,10 +20831,10 @@ entities: parent: 2 - proto: ChemistryHotplate entities: - - uid: 536 + - uid: 68 components: - type: Transform - pos: 29.5,8.5 + pos: 33.5,10.5 parent: 2 - proto: ChemMaster entities: @@ -14746,51 +20850,82 @@ entities: - type: Transform pos: 42.49843,1.5826881 parent: 2 - - uid: 7002 + - uid: 10307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.47725,-17.435534 - parent: 2 - - uid: 7116 + pos: 16.5,-54.5 + parent: 3564 + - uid: 10310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.454033,13.503255 - parent: 2 -- proto: ChurchOrganInstrument + pos: 29.5,-34.5 + parent: 3564 + - uid: 11366 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 3564 +- proto: CigarSpent entities: - - uid: 318 + - uid: 7808 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,9.5 + pos: 9.4519615,33.86504 parent: 2 - proto: CircuitImprinter entities: - - uid: 1964 + - uid: 6175 components: - type: Transform - pos: 54.5,21.5 - parent: 2 - - uid: 2391 - components: - - type: Transform - pos: 48.5,6.5 - parent: 2 -- proto: ClosetChefFilled - entities: - - uid: 2788 - components: - - type: Transform - pos: 25.5,-9.5 + pos: 53.5,7.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: ClosetEmergencyFilledRandom entities: + - uid: 1020 + components: + - type: Transform + pos: 25.5,37.5 + parent: 2 + - uid: 1299 + components: + - type: Transform + pos: 25.5,36.5 + parent: 2 + - uid: 1550 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 + - uid: 2053 + components: + - type: Transform + pos: 59.5,20.5 + parent: 2 + - uid: 2506 + components: + - type: Transform + pos: 61.5,10.5 + parent: 2 + - uid: 2977 + components: + - type: Transform + pos: 46.5,-17.5 + parent: 2 + - uid: 3273 + components: + - type: Transform + pos: 62.5,10.5 + parent: 2 - uid: 4739 components: - type: Transform - pos: 44.5,-17.5 + pos: 45.5,-17.5 parent: 2 - uid: 7018 components: @@ -14807,6 +20942,38 @@ entities: - type: Transform pos: 20.5,-10.5 parent: 2 + - uid: 8352 + components: + - type: Transform + pos: 34.5,26.5 + parent: 2 + - uid: 8353 + components: + - type: Transform + pos: 34.5,27.5 + parent: 2 + - uid: 11514 + components: + - type: Transform + pos: 13.5,34.5 + parent: 2 +- proto: ClosetEmergencyN2 + entities: + - uid: 1946 + components: + - type: Transform + pos: 56.5,20.5 + parent: 2 + - uid: 2050 + components: + - type: Transform + pos: 60.5,10.5 + parent: 2 + - uid: 7179 + components: + - type: Transform + pos: 58.5,20.5 + parent: 2 - proto: ClosetEmergencyN2FilledRandom entities: - uid: 695 @@ -14814,40 +20981,114 @@ entities: - type: Transform pos: 20.5,7.5 parent: 2 + - uid: 1001 + components: + - type: Transform + pos: 25.5,38.5 + parent: 2 + - uid: 2980 + components: + - type: Transform + pos: 47.5,-17.5 + parent: 2 + - uid: 7340 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 2 + - uid: 8354 + components: + - type: Transform + pos: 34.5,28.5 + parent: 2 - proto: ClosetFireFilled entities: - - uid: 1900 + - uid: 4006 components: - type: Transform - pos: 29.5,33.5 - parent: 2 - - uid: 2228 - components: - - type: Transform - pos: 49.5,-1.5 - parent: 2 - - uid: 2630 - components: - - type: Transform - pos: 5.5,-10.5 + pos: 42.5,-9.5 parent: 2 - uid: 7019 components: - type: Transform pos: 62.5,21.5 parent: 2 -- proto: ClosetMaintenanceFilledRandom +- proto: ClosetL3Filled entities: - - uid: 2258 + - uid: 3155 components: - type: Transform - pos: 38.5,-9.5 + pos: 48.5,9.5 + parent: 2 + - uid: 4202 + components: + - type: Transform + pos: 23.5,16.5 + parent: 2 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 5975 + components: + - type: Transform + pos: 16.5,20.5 parent: 2 - uid: 7664 components: - type: Transform pos: 19.5,-10.5 parent: 2 +- proto: ClosetSteelBase + entities: + - uid: 9910 + components: + - type: Transform + pos: 18.5,-52.5 + parent: 3564 + - uid: 10252 + components: + - type: Transform + pos: 18.5,-48.5 + parent: 3564 + - uid: 10253 + components: + - type: Transform + pos: 18.5,-44.5 + parent: 3564 + - uid: 10254 + components: + - type: Transform + pos: 18.5,-36.5 + parent: 3564 + - uid: 10255 + components: + - type: Transform + pos: 27.5,-32.5 + parent: 3564 + - uid: 10256 + components: + - type: Transform + pos: 27.5,-36.5 + parent: 3564 + - uid: 10257 + components: + - type: Transform + pos: 27.5,-40.5 + parent: 3564 + - uid: 10258 + components: + - type: Transform + pos: 27.5,-44.5 + parent: 3564 + - uid: 10259 + components: + - type: Transform + pos: 27.5,-48.5 + parent: 3564 + - uid: 10260 + components: + - type: Transform + pos: 27.5,-52.5 + parent: 3564 - proto: ClosetWallEmergencyFilledRandom entities: - uid: 7186 @@ -14874,11 +21115,48 @@ entities: - type: Transform pos: 44.5,19.5 parent: 2 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + It provides the following protection: + + - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]10%[/color]. + priority: 0 + component: Armor + title: null - uid: 7720 components: - type: Transform pos: 46.5,19.5 parent: 2 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + It provides the following protection: + + - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]10%[/color]. + priority: 0 + component: Armor + title: null + - uid: 11155 + components: + - type: Transform + pos: 44.5,19.5 + parent: 2 - proto: ClothingBackpackSatchelClown entities: - uid: 7231 @@ -14888,36 +21166,76 @@ entities: parent: 2 - proto: ClothingEyesBlindfold entities: - - uid: 2068 + - uid: 960 components: - type: Transform - pos: 33.5,-5.5 + pos: 34.5,-2.5 parent: 2 - - uid: 7123 + - uid: 972 components: - type: Transform - pos: 33.5,-6.5 + pos: 34.5,-2.5 parent: 2 - - uid: 7128 + - uid: 986 components: - type: Transform - pos: 33.5,-6.5 + pos: 35.5,-2.5 parent: 2 - - uid: 7224 + - uid: 992 components: - type: Transform - pos: 33.5,-5.5 + pos: 35.5,-2.5 parent: 2 - - uid: 7260 + - uid: 1002 components: - type: Transform - pos: 33.5,-4.5 + pos: 33.5,-2.5 parent: 2 - - uid: 7261 + - uid: 1009 components: - type: Transform - pos: 33.5,-4.5 + pos: 33.5,-2.5 parent: 2 + - uid: 10681 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10682 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10683 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10684 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10685 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10686 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10687 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10688 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 - proto: ClothingEyesGlasses entities: - uid: 7687 @@ -14927,11 +21245,86 @@ entities: parent: 2 - proto: ClothingEyesGlassesCheapSunglasses entities: + - uid: 868 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 4491 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 4492 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 4495 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 4496 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 4497 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 - uid: 7201 components: - type: Transform pos: 59.5,31.5 parent: 2 + - uid: 8373 + components: + - type: Transform + pos: 30.5,33.5 + parent: 2 + - uid: 8374 + components: + - type: Transform + pos: 29.5,33.5 + parent: 2 + - uid: 8389 + components: + - type: Transform + pos: 28.5,33.5 + parent: 2 + - uid: 8390 + components: + - type: Transform + pos: 27.5,33.5 + parent: 2 + - uid: 11162 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 11165 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 11178 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 11185 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 11343 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 - proto: ClothingEyesGlassesThermal entities: - uid: 2431 @@ -14939,8 +21332,68 @@ entities: - type: Transform pos: 35.5,2.5 parent: 2 + - uid: 4498 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 4499 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 4500 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 11163 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 11164 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 11170 + components: + - type: Transform + pos: 44.5,29.5 + parent: 2 + - uid: 11172 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 - proto: ClothingHandsGlovesColorBlack entities: + - uid: 4506 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 4576 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 4577 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 4823 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 4826 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 - uid: 7550 components: - type: Transform @@ -14951,17 +21404,127 @@ entities: - type: Transform pos: 46.5,19.5 parent: 2 -- proto: ClothingHandsGlovesColorYellowBudget - entities: - - uid: 2288 + - uid: 8387 components: - type: Transform - pos: 46.5,19.5 + pos: 28.5,33.5 parent: 2 - - uid: 6053 + - uid: 8388 components: - type: Transform - pos: 46.5,19.5 + pos: 27.5,33.5 + parent: 2 + - uid: 8620 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - uid: 8621 + components: + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 8622 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 8623 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 10473 + components: + - type: Transform + pos: 25.5,-69.5 + parent: 3564 + - uid: 10474 + components: + - type: Transform + pos: 24.5,-69.5 + parent: 3564 + - uid: 10475 + components: + - type: Transform + pos: 21.5,-69.5 + parent: 3564 + - uid: 10476 + components: + - type: Transform + pos: 20.5,-69.5 + parent: 3564 + - uid: 10477 + components: + - type: Transform + pos: 19.5,-69.5 + parent: 3564 + - uid: 11157 + components: + - type: Transform + pos: 44.5,19.5 + parent: 2 + - uid: 11176 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 11177 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 11182 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 11183 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 11184 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 11342 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 11504 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 1379 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 + - uid: 3394 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 + - uid: 3397 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 + - uid: 10535 + components: + - type: Transform + pos: 34.5,-26.5 + parent: 3564 + - uid: 11511 + components: + - type: Transform + pos: 11.5,34.5 parent: 2 - proto: ClothingHandsGlovesLatex entities: @@ -14977,12 +21540,160 @@ entities: - type: Transform pos: 38.5,-1.5 parent: 2 -- proto: ClothingMaskBreath - entities: - - uid: 7466 + - uid: 11166 components: - type: Transform - pos: 50.5,39.5 + pos: 52.5,20.5 + parent: 2 + - uid: 11167 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 11179 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 11187 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 +- proto: ClothingHeadHelmetBasic + entities: + - uid: 10415 + components: + - type: Transform + pos: 34.5,-69.5 + parent: 3564 +- proto: ClothingHeadHelmetEVALarge + entities: + - uid: 4490 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 + - uid: 8612 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - uid: 8613 + components: + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 8614 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 8615 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 10478 + components: + - type: Transform + pos: 25.5,-69.5 + parent: 3564 + - uid: 10479 + components: + - type: Transform + pos: 24.5,-69.5 + parent: 3564 + - uid: 10480 + components: + - type: Transform + pos: 21.5,-69.5 + parent: 3564 + - uid: 10481 + components: + - type: Transform + pos: 20.5,-69.5 + parent: 3564 + - uid: 10482 + components: + - type: Transform + pos: 19.5,-69.5 + parent: 3564 +- proto: ClothingHeadsetEngineering + entities: + - uid: 8383 + components: + - type: Transform + pos: 28.5,33.5 + parent: 2 + - uid: 8384 + components: + - type: Transform + pos: 27.5,33.5 + parent: 2 +- proto: ClothingHeadsetGrey + entities: + - uid: 132 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 6157 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 6191 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 6192 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 7341 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 7370 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 8573 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - uid: 8574 + components: + - type: Transform + pos: 13.5,2.5 + parent: 2 +- proto: ClothingMaskBreathMedical + entities: + - uid: 705 + components: + - type: Transform + pos: 49.5,39.5 + parent: 2 + - uid: 718 + components: + - type: Transform + pos: 49.5,39.5 + parent: 2 + - uid: 741 + components: + - type: Transform + pos: 49.5,39.5 + parent: 2 + - uid: 2528 + components: + - type: Transform + pos: 49.5,39.5 parent: 2 - proto: ClothingMaskClown entities: @@ -14993,6 +21704,11 @@ entities: parent: 2 - proto: ClothingMaskGas entities: + - uid: 7343 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 - uid: 7547 components: - type: Transform @@ -15013,19 +21729,109 @@ entities: - type: Transform pos: 18.5,-12.5 parent: 2 -- proto: ClothingMaskGoldenCursed - entities: - - uid: 7736 + - uid: 8381 components: - type: Transform - pos: 61.5,4.5 + pos: 28.5,33.5 + parent: 2 + - uid: 8382 + components: + - type: Transform + pos: 27.5,33.5 + parent: 2 + - uid: 8616 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - uid: 8617 + components: + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 8618 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 8619 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 10493 + components: + - type: Transform + pos: 25.5,-69.5 + parent: 3564 + - uid: 10494 + components: + - type: Transform + pos: 24.5,-69.5 + parent: 3564 + - uid: 10495 + components: + - type: Transform + pos: 21.5,-69.5 + parent: 3564 + - uid: 10496 + components: + - type: Transform + pos: 20.5,-69.5 + parent: 3564 + - uid: 10497 + components: + - type: Transform + pos: 19.5,-69.5 + parent: 3564 + - uid: 11503 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 +- proto: ClothingMaskGasAtmos + entities: + - uid: 1389 + components: + - type: Transform + pos: 33.5,-7.5 + parent: 2 + - uid: 1390 + components: + - type: Transform + pos: 33.5,-7.5 parent: 2 - proto: ClothingMaskMuzzle entities: - - uid: 2179 + - uid: 798 components: - type: Transform - pos: 33.5,-5.5 + pos: 34.5,-2.5 + parent: 2 + - uid: 1502 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - uid: 1503 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - uid: 1516 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 1517 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 + - uid: 1518 + components: + - type: Transform + pos: 33.5,-2.5 parent: 2 - uid: 6829 components: @@ -15047,36 +21853,11 @@ entities: - type: Transform pos: 34.5,-1.5 parent: 2 - - uid: 7185 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 2 - - uid: 7214 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 2 - - uid: 7215 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 2 - uid: 7250 components: - type: Transform pos: 34.5,-1.5 parent: 2 - - uid: 7256 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 2 - - uid: 7257 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 2 - uid: 7428 components: - type: Transform @@ -15097,6 +21878,126 @@ entities: - type: Transform pos: 48.5,19.5 parent: 2 + - uid: 10657 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10658 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10659 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10660 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10661 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10662 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10663 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10664 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10665 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10666 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10667 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10668 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10669 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10670 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10671 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10672 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10673 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10674 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10675 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10676 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10677 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10678 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10679 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10680 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 - proto: ClothingMaskSterile entities: - uid: 7301 @@ -15111,13 +22012,65 @@ entities: - type: Transform pos: 45.5,21.5 parent: 2 -- proto: ClothingNeckGoldmedal +- proto: ClothingOuterArmorBasic entities: - - uid: 7737 + - uid: 10411 components: - type: Transform - pos: 60.5,4.5 + pos: 34.5,-69.5 + parent: 3564 +- proto: ClothingOuterHardsuitEVA + entities: + - uid: 7588 + components: + - type: Transform + pos: 11.5,35.5 parent: 2 + - uid: 8608 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - uid: 8609 + components: + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 8610 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 8611 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 10488 + components: + - type: Transform + pos: 25.5,-69.5 + parent: 3564 + - uid: 10489 + components: + - type: Transform + pos: 24.5,-69.5 + parent: 3564 + - uid: 10490 + components: + - type: Transform + pos: 21.5,-69.5 + parent: 3564 + - uid: 10491 + components: + - type: Transform + pos: 20.5,-69.5 + parent: 3564 + - uid: 10492 + components: + - type: Transform + pos: 19.5,-69.5 + parent: 3564 - proto: ClothingOuterStraightjacket entities: - uid: 2433 @@ -15155,29 +22108,122 @@ entities: - type: Transform pos: 33.5,13.5 parent: 2 + - uid: 10689 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 3564 + - uid: 10690 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 3564 + - uid: 10691 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 3564 + - uid: 10692 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 3564 + - uid: 10693 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 3564 + - uid: 10694 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 3564 + - uid: 10695 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 3564 + - uid: 10696 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 3564 + - uid: 10697 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 3564 + - uid: 10698 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 3564 + - uid: 10699 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 3564 + - uid: 10700 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 3564 + - uid: 10701 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 3564 + - uid: 10702 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 3564 - proto: ClothingOuterSuitFire entities: + - uid: 794 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 2269 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 2282 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 2385 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 3361 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 4365 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 - uid: 7544 components: - type: Transform pos: 15.5,-2.5 parent: 2 -- proto: ClothingShoesBootsMag - entities: - - uid: 7194 + - uid: 8375 components: - type: Transform - pos: 49.5,39.3 + pos: 28.5,33.5 parent: 2 - - uid: 7247 + - uid: 8376 components: - type: Transform - pos: 49.5,39.5 - parent: 2 - - uid: 7249 - components: - - type: Transform - pos: 49.5,39.7 + pos: 27.5,33.5 parent: 2 - proto: ClothingShoesClown entities: @@ -15193,12 +22239,234 @@ entities: - type: Transform pos: 45.5,21.5 parent: 2 -- proto: ClothingShoesHighheelBootsFilled +- proto: ClothingShoesColorBlack entities: - - uid: 1388 + - uid: 5027 components: - type: Transform - pos: 62.5,8.5 + pos: 9.5,-12.5 + parent: 2 + - uid: 5028 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 5070 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 5071 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 5083 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 8385 + components: + - type: Transform + pos: 28.5,33.5 + parent: 2 + - uid: 8386 + components: + - type: Transform + pos: 27.5,33.5 + parent: 2 + - uid: 8632 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - uid: 8633 + components: + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 8634 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 8635 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 10412 + components: + - type: Transform + pos: 34.5,-69.5 + parent: 3564 + - uid: 10468 + components: + - type: Transform + pos: 25.5,-69.5 + parent: 3564 + - uid: 10469 + components: + - type: Transform + pos: 24.5,-69.5 + parent: 3564 + - uid: 10470 + components: + - type: Transform + pos: 21.5,-69.5 + parent: 3564 + - uid: 10471 + components: + - type: Transform + pos: 20.5,-69.5 + parent: 3564 + - uid: 10472 + components: + - type: Transform + pos: 19.5,-69.5 + parent: 3564 + - uid: 11341 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 11507 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 +- proto: ClothingShoesColorOrange + entities: + - uid: 1378 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 +- proto: ClothingShoesHighheelBootsFilled + entities: + - uid: 8268 + components: + - type: Transform + pos: 59.5,23.5 + parent: 2 +- proto: ClothingUniformJumpskirtColorBlack + entities: + - uid: 1443 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 2190 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 2930 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 7351 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 7369 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 7371 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 8379 + components: + - type: Transform + pos: 28.5,33.5 + parent: 2 + - uid: 8380 + components: + - type: Transform + pos: 27.5,33.5 + parent: 2 + - uid: 8628 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - uid: 8629 + components: + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 8630 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 8631 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 10463 + components: + - type: Transform + pos: 25.5,-69.5 + parent: 3564 + - uid: 10464 + components: + - type: Transform + pos: 24.5,-69.5 + parent: 3564 + - uid: 10465 + components: + - type: Transform + pos: 21.5,-69.5 + parent: 3564 + - uid: 10466 + components: + - type: Transform + pos: 20.5,-69.5 + parent: 3564 + - uid: 10467 + components: + - type: Transform + pos: 19.5,-69.5 + parent: 3564 + - uid: 11506 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 +- proto: ClothingUniformJumpskirtColorBlue + entities: + - uid: 2624 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - uid: 8572 + components: + - type: Transform + pos: 13.5,2.5 + parent: 2 +- proto: ClothingUniformJumpskirtColorGrey + entities: + - uid: 10414 + components: + - type: Transform + pos: 34.5,-69.5 + parent: 3564 +- proto: ClothingUniformJumpskirtColorYellow + entities: + - uid: 3299 + components: + - type: Transform + pos: 33.5,-8.5 parent: 2 - proto: ClothingUniformJumpsuitClown entities: @@ -15207,6 +22475,124 @@ entities: - type: Transform pos: 45.5,21.5 parent: 2 +- proto: ClothingUniformJumpsuitColorBlack + entities: + - uid: 96 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 131 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 2932 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 3372 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 4361 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 7352 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 8377 + components: + - type: Transform + pos: 28.5,33.5 + parent: 2 + - uid: 8378 + components: + - type: Transform + pos: 27.5,33.5 + parent: 2 + - uid: 8624 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - uid: 8625 + components: + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 8626 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 8627 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 10458 + components: + - type: Transform + pos: 25.5,-69.5 + parent: 3564 + - uid: 10459 + components: + - type: Transform + pos: 24.5,-69.5 + parent: 3564 + - uid: 10460 + components: + - type: Transform + pos: 21.5,-69.5 + parent: 3564 + - uid: 10461 + components: + - type: Transform + pos: 20.5,-69.5 + parent: 3564 + - uid: 10462 + components: + - type: Transform + pos: 19.5,-69.5 + parent: 3564 + - uid: 11505 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 +- proto: ClothingUniformJumpsuitColorBlue + entities: + - uid: 28 + components: + - type: Transform + pos: 13.5,2.5 + parent: 2 + - uid: 29 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 +- proto: ClothingUniformJumpsuitColorGrey + entities: + - uid: 10413 + components: + - type: Transform + pos: 34.5,-69.5 + parent: 3564 +- proto: ClothingUniformJumpsuitColorYellow + entities: + - uid: 3298 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 - proto: ClownRecorder entities: - uid: 7682 @@ -15214,13 +22600,6 @@ entities: - type: Transform pos: 45.5,21.5 parent: 2 -- proto: CluwneIDCard - entities: - - uid: 7173 - components: - - type: Transform - pos: 59.5,28.5 - parent: 2 - proto: ComfyChair entities: - uid: 2432 @@ -15291,12 +22670,18 @@ entities: - type: Transform pos: 61.5,29.5 parent: 2 -- proto: CommsComputerCircuitboard +- proto: ComputerAlert entities: - - uid: 8215 + - uid: 1459 components: - type: Transform - pos: 13.5,-11.5 + pos: 32.5,-4.5 + parent: 2 + - uid: 7753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,24.5 parent: 2 - proto: ComputerAnalysisConsole entities: @@ -15313,11 +22698,10 @@ entities: - ArtifactAnalyzerReceiver - proto: ComputerAtmosMonitoring entities: - - uid: 1960 + - uid: 1460 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,26.5 + pos: 31.5,-4.5 parent: 2 - uid: 2435 components: @@ -15325,28 +22709,6 @@ entities: rot: 3.141592653589793 rad pos: 60.5,28.5 parent: 2 -- proto: computerBodyScanner - entities: - - uid: 868 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,7.5 - parent: 2 -- proto: ComputerCargoBounty - entities: - - uid: 7632 - components: - - type: Transform - pos: 18.5,25.5 - parent: 2 -- proto: ComputerCargoOrders - entities: - - uid: 539 - components: - - type: Transform - pos: 19.5,25.5 - parent: 2 - proto: ComputerComms entities: - uid: 2428 @@ -15354,6 +22716,11 @@ entities: - type: Transform pos: 58.5,34.5 parent: 2 + - uid: 5154 + components: + - type: Transform + pos: 18.5,24.5 + parent: 2 - uid: 7255 components: - type: Transform @@ -15361,10 +22728,10 @@ entities: parent: 2 - proto: ComputerCrewMonitoring entities: - - uid: 619 + - uid: 1534 components: - type: Transform - pos: 13.5,16.5 + pos: 28.5,16.5 parent: 2 - uid: 7176 components: @@ -15380,18 +22747,11 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-2.5 parent: 2 - - uid: 7179 + - uid: 2162 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,23.5 - parent: 2 -- proto: ComputerFundingAllocation - entities: - - uid: 7567 - components: - - type: Transform - pos: 44.5,29.5 + pos: 56.5,25.5 parent: 2 - proto: ComputerId entities: @@ -15400,17 +22760,17 @@ entities: - type: Transform pos: 56.5,34.5 parent: 2 - - uid: 7192 +- proto: ComputerMedicalRecords + entities: + - uid: 1010 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-2.5 + pos: 13.5,16.5 parent: 2 - - uid: 8277 + - uid: 1531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,27.5 + pos: 26.5,16.5 parent: 2 - proto: ComputerPowerMonitoring entities: @@ -15420,60 +22780,85 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,62.5 parent: 2 - - uid: 1466 - components: - - type: Transform - pos: 37.5,35.5 - parent: 2 - - uid: 2613 - components: - - type: Transform - pos: 1.5,-7.5 - parent: 2 - - uid: 7174 + - uid: 1578 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,22.5 + pos: 56.5,24.5 parent: 2 + - uid: 2187 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 + - uid: 4687 + components: + - type: Transform + pos: 16.5,39.5 + parent: 2 + - uid: 9434 + components: + - type: Transform + pos: 7.5,-39.5 + parent: 3564 - proto: ComputerResearchAndDevelopment entities: - - uid: 1510 + - uid: 11211 components: - type: Transform - pos: 54.5,14.5 + pos: 51.5,9.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: ComputerShuttleCargo entities: - - uid: 7633 + - uid: 1070 components: + - type: MetaData + desc: Used to pilot the prison shuttle. + name: prison shuttle console - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,20.5 + rot: -1.5707963267948966 rad + pos: 60.5,25.5 parent: 2 - - uid: 7634 + - uid: 2039 components: + - type: MetaData + desc: Used to pilot the prison shuttle. + name: prison shuttle console - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,21.5 + rot: 3.141592653589793 rad + pos: 37.5,-2.5 parent: 2 - proto: ComputerSolarControl entities: - - uid: 1338 - components: - - type: Transform - pos: 36.5,35.5 - parent: 2 - uid: 2495 components: - type: Transform pos: 60.5,62.5 parent: 2 - - uid: 2614 + - uid: 2696 components: - type: Transform - pos: 0.5,-7.5 + rot: -1.5707963267948966 rad + pos: 21.5,36.5 parent: 2 + - uid: 2785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 2 + - uid: 9439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-42.5 + parent: 3564 - proto: ComputerStationRecords entities: - uid: 7175 @@ -15495,56 +22880,11 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-5.5 parent: 2 -- proto: ConveyorBelt - entities: - - uid: 118 + - uid: 10511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,5.5 - parent: 2 - - uid: 150 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,5.5 - parent: 2 - - uid: 165 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,5.5 - parent: 2 - - uid: 254 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,5.5 - parent: 2 - - uid: 256 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,5.5 - parent: 2 - - uid: 258 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,5.5 - parent: 2 - - uid: 259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,5.5 - parent: 2 - - uid: 294 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,5.5 - parent: 2 + pos: 31.5,-25.5 + parent: 3564 - proto: CorporateCircuitBoard entities: - uid: 389 @@ -15618,57 +22958,61 @@ entities: - type: Transform pos: -5.5,18.5 parent: 2 -- proto: CrateFilledSpawner +- proto: CrateEngineeringAMEJar entities: - - uid: 8289 + - uid: 7801 components: - type: Transform - pos: 12.5,26.5 + pos: 42.5,40.5 parent: 2 - - uid: 8290 - components: - - type: Transform - pos: 14.5,23.5 - parent: 2 -- proto: CratePermaEscapeEVA +- proto: CrateEngineeringAMEShielding entities: - - uid: 2070 + - uid: 7800 components: - type: Transform - pos: 54.5,39.5 + pos: 42.5,41.5 parent: 2 - proto: CrateSecurityArmor entities: - - uid: 1104 + - uid: 9795 components: - type: Transform - pos: 37.5,-4.5 - parent: 2 - - uid: 1105 + pos: 33.5,-61.5 + parent: 3564 +- proto: CrateSecurityHelmet + entities: + - uid: 10451 components: - type: Transform - pos: 38.5,-4.5 - parent: 2 + pos: 36.5,-61.5 + parent: 3564 +- proto: CrateSecurityNonlethal + entities: + - uid: 10450 + components: + - type: Transform + pos: 35.5,-61.5 + parent: 3564 - proto: CrateSecuritySupplies entities: - - uid: 1327 + - uid: 10399 components: - type: Transform - pos: 40.5,-7.5 - parent: 2 -- proto: CrateServiceJanitorialSupplies + pos: 34.5,-61.5 + parent: 3564 +- proto: CrateSecurityTrackingMindshieldImplants entities: - - uid: 7657 + - uid: 10449 components: - type: Transform - pos: -2.5,7.5 - parent: 2 + pos: 32.5,-61.5 + parent: 3564 - proto: CrateTrackingImplants entities: - - uid: 7211 + - uid: 1742 components: - type: Transform - pos: 33.5,-2.5 + pos: 35.5,-1.5 parent: 2 - proto: Crematorium entities: @@ -15680,28 +23024,63 @@ entities: parent: 2 - proto: CrewMonitoringServer entities: - - uid: 6339 + - uid: 1260 components: - type: Transform - pos: 37.5,26.5 + pos: -4.5,7.5 parent: 2 - proto: Crowbar entities: + - uid: 1696 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 2 + - uid: 1812 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 + - uid: 2283 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 + - uid: 5936 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 + - uid: 6193 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 2 + - uid: 6202 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 2 + - uid: 6351 + components: + - type: Transform + pos: 45.5,35.5 + parent: 2 + - uid: 6561 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 + - uid: 6562 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 - uid: 7206 components: - type: Transform pos: 59.5,31.5 parent: 2 - - uid: 7295 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 2 - - uid: 7717 - components: - - type: Transform - pos: 47.5,19.5 - parent: 2 - uid: 7718 components: - type: Transform @@ -15712,6 +23091,51 @@ entities: - type: Transform pos: 46.5,19.5 parent: 2 + - uid: 8371 + components: + - type: Transform + pos: 30.5,33.5 + parent: 2 + - uid: 8372 + components: + - type: Transform + pos: 29.5,33.5 + parent: 2 + - uid: 8402 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 8408 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 8413 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 11134 + components: + - type: Transform + pos: 51.5,20.5 + parent: 2 + - uid: 11156 + components: + - type: Transform + pos: 44.5,19.5 + parent: 2 + - uid: 11160 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 11161 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 - proto: CryogenicSleepUnitSpawner entities: - uid: 5997 @@ -15771,18 +23195,14 @@ entities: pos: 33.5,60.5 parent: 2 - type: NavMapBeacon - text: Air Tunnel - - type: WarpPoint - location: Air Tunnel + defaultText: Air Tunnel - uid: 7740 components: - type: Transform pos: 21.5,51.5 parent: 2 - type: NavMapBeacon - text: AI Foyer - - type: WarpPoint - location: AI Foyer + defaultText: AI Foyer - proto: DefaultStationBeaconAICore entities: - uid: 7738 @@ -15797,26 +23217,19 @@ entities: - type: Transform pos: 32.5,53.5 parent: 2 +- proto: DefaultStationBeaconAME + entities: + - uid: 2588 + components: + - type: Transform + pos: 45.5,37.5 + parent: 2 - proto: DefaultStationBeaconAnchor entities: - uid: 7743 components: - type: Transform - pos: 3.5,35.5 - parent: 2 -- proto: DefaultStationBeaconAnomalyGenerator - entities: - - uid: 7744 - components: - - type: Transform - pos: 47.5,12.5 - parent: 2 -- proto: DefaultStationBeaconArmory - entities: - - uid: 7745 - components: - - type: Transform - pos: 41.5,-5.5 + pos: 1.5,32.5 parent: 2 - proto: DefaultStationBeaconArrivals entities: @@ -15825,37 +23238,12 @@ entities: - type: Transform pos: 60.5,48.5 parent: 2 -- proto: DefaultStationBeaconArtifactLab - entities: - - uid: 7747 - components: - - type: Transform - pos: 50.5,3.5 - parent: 2 - proto: DefaultStationBeaconAtmospherics entities: - - uid: 7748 + - uid: 5860 components: - type: Transform - pos: 24.5,25.5 - parent: 2 -- proto: DefaultStationBeaconBar - entities: - - uid: 7749 - components: - - type: Transform - pos: 25.5,-4.5 - parent: 2 - - type: NavMapBeacon - text: Nightclub - - type: WarpPoint - location: Nightclub -- proto: DefaultStationBeaconBotany - entities: - - uid: 7750 - components: - - type: Transform - pos: 14.5,-7.5 + pos: 28.5,-7.5 parent: 2 - proto: DefaultStationBeaconBridge entities: @@ -15864,13 +23252,8 @@ entities: - type: Transform pos: 63.5,31.5 parent: 2 -- proto: DefaultStationBeaconBrig - entities: - - uid: 7751 - components: - - type: Transform - pos: 43.5,-0.5 - parent: 2 + - type: NavMapBeacon + defaultText: Control Room - proto: DefaultStationBeaconCaptainsQuarters entities: - uid: 7752 @@ -15878,27 +23261,8 @@ entities: - type: Transform pos: 57.5,22.5 parent: 2 -- proto: DefaultStationBeaconCargoBay - entities: - - uid: 7753 - components: - - type: Transform - pos: 12.5,24.5 - parent: 2 -- proto: DefaultStationBeaconCargoReception - entities: - - uid: 7754 - components: - - type: Transform - pos: 18.5,20.5 - parent: 2 -- proto: DefaultStationBeaconCERoom - entities: - - uid: 7755 - components: - - type: Transform - pos: 44.5,32.5 - parent: 2 + - type: NavMapBeacon + defaultText: Secure Storage - proto: DefaultStationBeaconChapel entities: - uid: 7756 @@ -15913,13 +23277,6 @@ entities: - type: Transform pos: 31.5,9.5 parent: 2 -- proto: DefaultStationBeaconCMORoom - entities: - - uid: 7758 - components: - - type: Transform - pos: 23.5,15.5 - parent: 2 - proto: DefaultStationBeaconCourtroom entities: - uid: 7759 @@ -15927,13 +23284,8 @@ entities: - type: Transform pos: 59.5,17.5 parent: 2 -- proto: DefaultStationBeaconDisposals - entities: - - uid: 7760 - components: - - type: Transform - pos: -1.5,5.5 - parent: 2 + - type: NavMapBeacon + defaultText: Assembly Room - proto: DefaultStationBeaconDorms entities: - uid: 7761 @@ -15941,25 +23293,29 @@ entities: - type: Transform pos: 7.5,-0.5 parent: 2 + - type: NavMapBeacon + defaultText: Crew Sleeping Area - proto: DefaultStationBeaconEngineering entities: - - uid: 7762 + - uid: 7607 components: - type: Transform - pos: 35.5,32.5 + pos: 33.5,34.5 parent: 2 - proto: DefaultStationBeaconEvac entities: - uid: 7764 components: - type: Transform - pos: 59.5,-0.5 + pos: 60.5,-0.5 parent: 2 - uid: 7765 components: - type: Transform pos: 47.5,-15.5 parent: 2 + - type: NavMapBeacon + defaultText: Observation - proto: DefaultStationBeaconEVAStorage entities: - uid: 7763 @@ -15969,10 +23325,10 @@ entities: parent: 2 - proto: DefaultStationBeaconGravGen entities: - - uid: 7766 + - uid: 2533 components: - type: Transform - pos: 44.5,40.5 + pos: 46.5,31.5 parent: 2 - proto: DefaultStationBeaconHOPOffice entities: @@ -15981,20 +23337,6 @@ entities: - type: Transform pos: 43.5,28.5 parent: 2 -- proto: DefaultStationBeaconJanitorsCloset - entities: - - uid: 7768 - components: - - type: Transform - pos: -4.5,7.5 - parent: 2 -- proto: DefaultStationBeaconKitchen - entities: - - uid: 7769 - components: - - type: Transform - pos: 25.5,-9.5 - parent: 2 - proto: DefaultStationBeaconMedbay entities: - uid: 7770 @@ -16009,26 +23351,12 @@ entities: - type: Transform pos: 3.5,14.5 parent: 2 -- proto: DefaultStationBeaconQMRoom +- proto: DefaultStationBeaconScience entities: - - uid: 7772 + - uid: 5633 components: - type: Transform - pos: 12.5,31.5 - parent: 2 -- proto: DefaultStationBeaconRDRoom - entities: - - uid: 7773 - components: - - type: Transform - pos: 54.5,13.5 - parent: 2 -- proto: DefaultStationBeaconRobotics - entities: - - uid: 7774 - components: - - type: Transform - pos: 54.5,8.5 + pos: 51.5,6.5 parent: 2 - proto: DefaultStationBeaconSecurity entities: @@ -16042,8 +23370,10 @@ entities: - uid: 7776 components: - type: Transform - pos: 9.5,-5.5 + pos: 9.5,-6.5 parent: 2 + - type: NavMapBeacon + defaultText: Security (West) - proto: DefaultStationBeaconSolars entities: - uid: 7741 @@ -16052,25 +23382,14 @@ entities: pos: 58.5,67.5 parent: 2 - type: NavMapBeacon - text: Solars North - - type: WarpPoint - location: Solars North + defaultText: Solars North - uid: 7742 components: - type: Transform pos: -3.5,-10.5 parent: 2 - type: NavMapBeacon - text: Solars South - - type: WarpPoint - location: Solars South -- proto: DefaultStationBeaconTechVault - entities: - - uid: 7777 - components: - - type: Transform - pos: 7.5,-11.5 - parent: 2 + defaultText: Solars South - proto: DefaultStationBeaconTEG entities: - uid: 7778 @@ -16078,6 +23397,13 @@ entities: - type: Transform pos: 15.5,37.5 parent: 2 +- proto: DefaultStationBeaconTelecoms + entities: + - uid: 1523 + components: + - type: Transform + pos: -2.5,6.5 + parent: 2 - proto: DefaultStationBeaconToolRoom entities: - uid: 7779 @@ -16085,13 +23411,6 @@ entities: - type: Transform pos: 44.5,20.5 parent: 2 -- proto: DefaultStationBeaconVault - entities: - - uid: 7780 - components: - - type: Transform - pos: 62.5,7.5 - parent: 2 - proto: DefibrillatorCabinetFilled entities: - uid: 6328 @@ -16106,6 +23425,13 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,11.5 parent: 2 +- proto: DefibrillatorCompact + entities: + - uid: 2051 + components: + - type: Transform + pos: 9.3894615,33.437958 + parent: 2 - proto: DeskBell entities: - uid: 2202 @@ -16113,2470 +23439,681 @@ entities: - type: Transform pos: 15.615749,14.655383 parent: 2 - - uid: 2203 - components: - - type: Transform - pos: 40.543743,0.6440766 - parent: 2 - - uid: 2232 - components: - - type: Transform - pos: 45.61084,7.272194 - parent: 2 - - uid: 7182 - components: - - type: Transform - pos: 31.5,22.5 - parent: 2 - uid: 7183 components: - type: Transform pos: 32.7,7.5 parent: 2 - - uid: 7251 - components: - - type: Transform - pos: 19.5,23.5 - parent: 2 - proto: DisposalBend entities: - - uid: 6642 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,5.5 - parent: 2 - - uid: 6643 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,6.5 - parent: 2 - - uid: 6657 - components: - - type: Transform - pos: 4.5,6.5 - parent: 2 - - uid: 6694 - components: - - type: Transform - pos: 18.5,5.5 - parent: 2 - - uid: 6695 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,4.5 - parent: 2 - - uid: 6712 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,11.5 - parent: 2 - - uid: 6724 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,11.5 - parent: 2 - - uid: 6730 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,11.5 - parent: 2 - - uid: 6744 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,29.5 - parent: 2 - - uid: 6752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,23.5 - parent: 2 - - uid: 6766 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,25.5 - parent: 2 - - uid: 6767 - components: - - type: Transform - pos: 33.5,25.5 - parent: 2 - - uid: 6768 - components: - - type: Transform - pos: 30.5,23.5 - parent: 2 - - uid: 6806 - components: - - type: Transform - pos: 17.5,22.5 - parent: 2 - - uid: 6807 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,22.5 - parent: 2 - - uid: 6808 - components: - - type: Transform - pos: 13.5,28.5 - parent: 2 - - uid: 6824 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-5.5 - parent: 2 - - uid: 6825 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-5.5 - parent: 2 - - uid: 6861 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,2.5 - parent: 2 - - uid: 6867 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,8.5 - parent: 2 - - uid: 6875 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,16.5 - parent: 2 - - uid: 6885 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,16.5 - parent: 2 - - uid: 6899 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-13.5 - parent: 2 - - uid: 6928 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,1.5 - parent: 2 - - uid: 6929 - components: - - type: Transform - pos: 49.5,8.5 - parent: 2 - - uid: 6937 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,2.5 - parent: 2 - - uid: 6938 - components: - - type: Transform - pos: 58.5,6.5 - parent: 2 - - uid: 6967 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,18.5 - parent: 2 - - uid: 6974 - components: - - type: Transform - pos: 53.5,29.5 - parent: 2 - - uid: 6976 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,24.5 - parent: 2 - - uid: 6977 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,24.5 - parent: 2 - - uid: 6978 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,23.5 - parent: 2 - - uid: 6998 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,34.5 - parent: 2 - - uid: 7013 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,36.5 - parent: 2 - - uid: 7015 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,36.5 - parent: 2 - - uid: 7051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,58.5 - parent: 2 - - uid: 7052 - components: - - type: Transform - pos: 61.5,58.5 - parent: 2 - - uid: 7053 - components: - - type: Transform - pos: 56.5,60.5 - parent: 2 - - uid: 7098 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,60.5 - parent: 2 - - uid: 7099 + - uid: 1674 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,57.5 parent: 2 - - uid: 7100 + - uid: 1710 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,57.5 parent: 2 - - uid: 7149 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,37.5 - parent: 2 - - uid: 7150 + - uid: 3238 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,37.5 + pos: 15.5,60.5 parent: 2 -- proto: DisposalJunction - entities: - - uid: 6656 + - uid: 11280 + components: + - type: Transform + pos: 56.5,60.5 + parent: 2 + - uid: 11281 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,5.5 + pos: 56.5,58.5 parent: 2 - - uid: 6682 + - uid: 11282 + components: + - type: Transform + pos: 61.5,58.5 + parent: 2 + - uid: 11305 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,5.5 + pos: 61.5,36.5 parent: 2 - - uid: 6699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,4.5 - parent: 2 - - uid: 6719 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,10.5 - parent: 2 - - uid: 6722 - components: - - type: Transform - pos: 17.5,11.5 - parent: 2 - - uid: 6762 - components: - - type: Transform - pos: 32.5,29.5 - parent: 2 - - uid: 6775 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,18.5 - parent: 2 - - uid: 6795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,18.5 - parent: 2 - - uid: 6893 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,8.5 - parent: 2 - - uid: 6930 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,6.5 - parent: 2 -- proto: DisposalJunctionFlipped - entities: - - uid: 3136 - components: - - type: Transform - pos: 51.5,29.5 - parent: 2 - - uid: 6721 - components: - - type: Transform - pos: 17.5,10.5 - parent: 2 - - uid: 6751 - components: - - type: Transform - pos: 30.5,20.5 - parent: 2 - - uid: 6788 - components: - - type: Transform - pos: 17.5,18.5 - parent: 2 - - uid: 6843 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,4.5 - parent: 2 - - uid: 6873 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,8.5 - parent: 2 - - uid: 6922 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,8.5 - parent: 2 -- proto: DisposalPipe - entities: - - uid: 156 + - uid: 11306 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,12.5 - parent: 2 - - uid: 157 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,12.5 - parent: 2 - - uid: 161 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,12.5 - parent: 2 - - uid: 162 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,12.5 - parent: 2 - - uid: 284 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,12.5 - parent: 2 - - uid: 639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,34.5 - parent: 2 - - uid: 1617 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,5.5 - parent: 2 - - uid: 3138 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,35.5 - parent: 2 - - uid: 4811 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,34.5 - parent: 2 - - uid: 6043 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,34.5 - parent: 2 - - uid: 6613 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,37.5 - parent: 2 - - uid: 6644 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,6.5 - parent: 2 - - uid: 6645 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,6.5 - parent: 2 - - uid: 6648 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-2.5 - parent: 2 - - uid: 6649 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-1.5 - parent: 2 - - uid: 6650 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-0.5 - parent: 2 - - uid: 6651 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,0.5 - parent: 2 - - uid: 6652 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,1.5 - parent: 2 - - uid: 6653 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,2.5 - parent: 2 - - uid: 6654 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,3.5 - parent: 2 - - uid: 6655 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,4.5 - parent: 2 - - uid: 6659 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,5.5 - parent: 2 - - uid: 6661 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,5.5 - parent: 2 - - uid: 6663 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,5.5 - parent: 2 - - uid: 6664 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,5.5 - parent: 2 - - uid: 6666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,5.5 - parent: 2 - - uid: 6668 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,5.5 - parent: 2 - - uid: 6670 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,5.5 - parent: 2 - - uid: 6671 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,5.5 - parent: 2 - - uid: 6672 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,5.5 - parent: 2 - - uid: 6673 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,5.5 - parent: 2 - - uid: 6675 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,5.5 - parent: 2 - - uid: 6681 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,34.5 - parent: 2 - - uid: 6685 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,34.5 - parent: 2 - - uid: 6697 - components: - - type: Transform - pos: 22.5,6.5 - parent: 2 - - uid: 6698 - components: - - type: Transform - pos: 22.5,5.5 - parent: 2 - - uid: 6700 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,4.5 - parent: 2 - - uid: 6701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,4.5 - parent: 2 - - uid: 6702 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,4.5 - parent: 2 - - uid: 6709 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,34.5 - parent: 2 - - uid: 6711 - components: - - type: Transform - pos: 10.5,10.5 - parent: 2 - - uid: 6713 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,11.5 - parent: 2 - - uid: 6714 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,11.5 - parent: 2 - - uid: 6715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,11.5 - parent: 2 - - uid: 6716 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,11.5 - parent: 2 - - uid: 6717 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,11.5 - parent: 2 - - uid: 6718 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,11.5 - parent: 2 - - uid: 6720 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,10.5 - parent: 2 - - uid: 6725 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,11.5 - parent: 2 - - uid: 6726 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,11.5 - parent: 2 - - uid: 6727 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,11.5 - parent: 2 - - uid: 6728 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,11.5 - parent: 2 - - uid: 6729 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,11.5 - parent: 2 - - uid: 6733 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,9.5 - parent: 2 - - uid: 6734 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,8.5 - parent: 2 - - uid: 6735 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,7.5 - parent: 2 - - uid: 6736 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,6.5 - parent: 2 - - uid: 6740 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,34.5 - parent: 2 - - uid: 6741 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,33.5 - parent: 2 - - uid: 6742 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,32.5 - parent: 2 - - uid: 6743 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,31.5 - parent: 2 - - uid: 6745 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,30.5 - parent: 2 - - uid: 6746 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,29.5 - parent: 2 - - uid: 6747 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,29.5 - parent: 2 - - uid: 6748 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,29.5 - parent: 2 - - uid: 6749 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,29.5 - parent: 2 - - uid: 6750 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,29.5 - parent: 2 - - uid: 6753 - components: - - type: Transform - pos: 27.5,22.5 - parent: 2 - - uid: 6754 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,23.5 - parent: 2 - - uid: 6755 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,23.5 - parent: 2 - - uid: 6757 - components: - - type: Transform - pos: 32.5,34.5 - parent: 2 - - uid: 6758 - components: - - type: Transform - pos: 32.5,33.5 - parent: 2 - - uid: 6759 - components: - - type: Transform - pos: 32.5,32.5 - parent: 2 - - uid: 6760 - components: - - type: Transform - pos: 32.5,31.5 - parent: 2 - - uid: 6761 - components: - - type: Transform - pos: 32.5,30.5 - parent: 2 - - uid: 6763 - components: - - type: Transform - pos: 32.5,28.5 - parent: 2 - - uid: 6764 - components: - - type: Transform - pos: 32.5,27.5 - parent: 2 - - uid: 6765 - components: - - type: Transform - pos: 32.5,26.5 - parent: 2 - - uid: 6769 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,24.5 - parent: 2 - - uid: 6770 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,23.5 - parent: 2 - - uid: 6771 - components: - - type: Transform - pos: 30.5,22.5 - parent: 2 - - uid: 6773 - components: - - type: Transform - pos: 30.5,21.5 - parent: 2 - - uid: 6774 - components: - - type: Transform - pos: 30.5,19.5 - parent: 2 - - uid: 6776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,18.5 - parent: 2 - - uid: 6777 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,18.5 - parent: 2 - - uid: 6778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,18.5 - parent: 2 - - uid: 6779 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,18.5 - parent: 2 - - uid: 6780 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,18.5 - parent: 2 - - uid: 6781 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,18.5 - parent: 2 - - uid: 6782 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,18.5 - parent: 2 - - uid: 6783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,18.5 - parent: 2 - - uid: 6784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,18.5 - parent: 2 - - uid: 6785 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,18.5 - parent: 2 - - uid: 6786 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,18.5 - parent: 2 - - uid: 6787 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,18.5 - parent: 2 - - uid: 6789 - components: - - type: Transform - pos: 17.5,17.5 - parent: 2 - - uid: 6790 - components: - - type: Transform - pos: 17.5,16.5 - parent: 2 - - uid: 6791 - components: - - type: Transform - pos: 17.5,15.5 - parent: 2 - - uid: 6792 - components: - - type: Transform - pos: 17.5,14.5 - parent: 2 - - uid: 6793 - components: - - type: Transform - pos: 17.5,13.5 - parent: 2 - - uid: 6794 - components: - - type: Transform - pos: 17.5,12.5 - parent: 2 - - uid: 6796 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,23.5 - parent: 2 - - uid: 6797 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,22.5 - parent: 2 - - uid: 6798 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,21.5 - parent: 2 - - uid: 6799 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,20.5 - parent: 2 - - uid: 6800 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,19.5 - parent: 2 - - uid: 6801 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,18.5 - parent: 2 - - uid: 6802 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,18.5 - parent: 2 - - uid: 6803 - components: - - type: Transform - pos: 17.5,19.5 - parent: 2 - - uid: 6804 - components: - - type: Transform - pos: 17.5,20.5 - parent: 2 - - uid: 6805 - components: - - type: Transform - pos: 17.5,21.5 - parent: 2 - - uid: 6810 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,28.5 - parent: 2 - - uid: 6811 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,22.5 - parent: 2 - - uid: 6812 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,22.5 - parent: 2 - - uid: 6813 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,22.5 - parent: 2 - - uid: 6816 - components: - - type: Transform - pos: 13.5,23.5 - parent: 2 - - uid: 6817 - components: - - type: Transform - pos: 13.5,24.5 - parent: 2 - - uid: 6818 - components: - - type: Transform - pos: 13.5,25.5 - parent: 2 - - uid: 6819 - components: - - type: Transform - pos: 13.5,26.5 - parent: 2 - - uid: 6820 - components: - - type: Transform - pos: 13.5,27.5 - parent: 2 - - uid: 6823 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-8.5 - parent: 2 - - uid: 6826 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-7.5 - parent: 2 - - uid: 6827 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-6.5 - parent: 2 - - uid: 6833 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-5.5 - parent: 2 - - uid: 6834 - components: - - type: Transform - pos: 30.5,-4.5 - parent: 2 - - uid: 6835 - components: - - type: Transform - pos: 30.5,-3.5 - parent: 2 - - uid: 6836 - components: - - type: Transform - pos: 30.5,-2.5 - parent: 2 - - uid: 6837 - components: - - type: Transform - pos: 30.5,-1.5 - parent: 2 - - uid: 6838 - components: - - type: Transform - pos: 30.5,-0.5 - parent: 2 - - uid: 6839 - components: - - type: Transform - pos: 30.5,0.5 - parent: 2 - - uid: 6840 - components: - - type: Transform - pos: 30.5,1.5 - parent: 2 - - uid: 6841 - components: - - type: Transform - pos: 30.5,2.5 - parent: 2 - - uid: 6842 - components: - - type: Transform - pos: 30.5,3.5 - parent: 2 - - uid: 6844 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,4.5 - parent: 2 - - uid: 6845 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,4.5 - parent: 2 - - uid: 6846 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,4.5 - parent: 2 - - uid: 6847 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,4.5 - parent: 2 - - uid: 6848 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,4.5 - parent: 2 - - uid: 6849 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,4.5 - parent: 2 - - uid: 6850 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,4.5 - parent: 2 - - uid: 6851 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,4.5 - parent: 2 - - uid: 6853 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,4.5 - parent: 2 - - uid: 6854 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,4.5 - parent: 2 - - uid: 6855 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,4.5 - parent: 2 - - uid: 6856 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,4.5 - parent: 2 - - uid: 6857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,4.5 - parent: 2 - - uid: 6858 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,4.5 - parent: 2 - - uid: 6862 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,3.5 - parent: 2 - - uid: 6864 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,5.5 - parent: 2 - - uid: 6865 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,6.5 - parent: 2 - - uid: 6866 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,7.5 - parent: 2 - - uid: 6869 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,6.5 - parent: 2 - - uid: 6870 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,7.5 - parent: 2 - - uid: 6871 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,8.5 - parent: 2 - - uid: 6872 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,8.5 - parent: 2 - - uid: 6876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,16.5 - parent: 2 - - uid: 6877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,16.5 - parent: 2 - - uid: 6878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,16.5 - parent: 2 - - uid: 6879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,16.5 - parent: 2 - - uid: 6880 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,16.5 - parent: 2 - - uid: 6881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,16.5 - parent: 2 - - uid: 6882 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,16.5 - parent: 2 - - uid: 6883 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,16.5 - parent: 2 - - uid: 6884 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,16.5 - parent: 2 - - uid: 6886 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,15.5 - parent: 2 - - uid: 6887 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,14.5 - parent: 2 - - uid: 6888 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,13.5 - parent: 2 - - uid: 6889 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,12.5 - parent: 2 - - uid: 6890 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,11.5 - parent: 2 - - uid: 6891 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,10.5 - parent: 2 - - uid: 6892 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,9.5 - parent: 2 - - uid: 6894 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,8.5 - parent: 2 - - uid: 6895 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,8.5 - parent: 2 - - uid: 6897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-13.5 - parent: 2 - - uid: 6898 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-13.5 - parent: 2 - - uid: 6900 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-12.5 - parent: 2 - - uid: 6901 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-11.5 - parent: 2 - - uid: 6902 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-10.5 - parent: 2 - - uid: 6903 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-9.5 - parent: 2 - - uid: 6904 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-8.5 - parent: 2 - - uid: 6905 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-7.5 - parent: 2 - - uid: 6906 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-6.5 - parent: 2 - - uid: 6907 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-5.5 - parent: 2 - - uid: 6908 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-4.5 - parent: 2 - - uid: 6909 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-3.5 - parent: 2 - - uid: 6910 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-2.5 - parent: 2 - - uid: 6911 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-1.5 - parent: 2 - - uid: 6912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-0.5 - parent: 2 - - uid: 6913 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,0.5 - parent: 2 - - uid: 6914 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,1.5 - parent: 2 - - uid: 6915 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,2.5 - parent: 2 - - uid: 6916 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,3.5 - parent: 2 - - uid: 6917 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,4.5 - parent: 2 - - uid: 6918 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,5.5 - parent: 2 - - uid: 6919 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,6.5 - parent: 2 - - uid: 6920 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,7.5 - parent: 2 - - uid: 6923 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,8.5 - parent: 2 - - uid: 6924 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,8.5 - parent: 2 - - uid: 6925 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,8.5 - parent: 2 - - uid: 6931 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,7.5 - parent: 2 - - uid: 6932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,5.5 - parent: 2 - - uid: 6933 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,4.5 - parent: 2 - - uid: 6934 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,3.5 - parent: 2 - - uid: 6935 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,2.5 - parent: 2 - - uid: 6939 - components: - - type: Transform - pos: 58.5,5.5 - parent: 2 - - uid: 6944 - components: - - type: Transform - pos: 58.5,4.5 - parent: 2 - - uid: 6945 - components: - - type: Transform - pos: 58.5,3.5 - parent: 2 - - uid: 6946 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,2.5 - parent: 2 - - uid: 6947 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,2.5 - parent: 2 - - uid: 6948 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,2.5 - parent: 2 - - uid: 6949 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,2.5 - parent: 2 - - uid: 6950 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,6.5 - parent: 2 - - uid: 6951 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,6.5 - parent: 2 - - uid: 6956 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,6.5 - parent: 2 - - uid: 6957 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,6.5 - parent: 2 - - uid: 6958 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,6.5 - parent: 2 - - uid: 6959 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,6.5 - parent: 2 - - uid: 6960 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,6.5 - parent: 2 - - uid: 6961 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,6.5 - parent: 2 - - uid: 6963 - components: - - type: Transform - pos: 38.5,22.5 - parent: 2 - - uid: 6964 - components: - - type: Transform - pos: 38.5,21.5 - parent: 2 - - uid: 6965 - components: - - type: Transform - pos: 38.5,20.5 - parent: 2 - - uid: 6966 - components: - - type: Transform - pos: 38.5,19.5 - parent: 2 - - uid: 6968 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,18.5 - parent: 2 - - uid: 6969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,18.5 - parent: 2 - - uid: 6970 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,18.5 - parent: 2 - - uid: 6971 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,18.5 - parent: 2 - - uid: 6979 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,23.5 - parent: 2 - - uid: 6980 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,23.5 - parent: 2 - - uid: 6981 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,23.5 - parent: 2 - - uid: 6982 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,23.5 - parent: 2 - - uid: 6983 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,23.5 - parent: 2 - - uid: 6984 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,23.5 - parent: 2 - - uid: 6985 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,24.5 - parent: 2 - - uid: 6986 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,24.5 - parent: 2 - - uid: 6988 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,24.5 - parent: 2 - - uid: 6989 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,24.5 - parent: 2 - - uid: 6990 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,24.5 - parent: 2 - - uid: 6991 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,29.5 - parent: 2 - - uid: 6992 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,28.5 - parent: 2 - - uid: 6993 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,27.5 - parent: 2 - - uid: 6994 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,26.5 - parent: 2 - - uid: 6996 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,25.5 - parent: 2 - - uid: 7016 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,34.5 - parent: 2 - - uid: 7017 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,36.5 - parent: 2 - - uid: 7020 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,36.5 - parent: 2 - - uid: 7021 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,36.5 - parent: 2 - - uid: 7022 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,36.5 - parent: 2 - - uid: 7024 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,36.5 - parent: 2 - - uid: 7026 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,36.5 - parent: 2 - - uid: 7027 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,36.5 - parent: 2 - - uid: 7029 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,38.5 - parent: 2 - - uid: 7030 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,39.5 - parent: 2 - - uid: 7031 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,40.5 - parent: 2 - - uid: 7032 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,41.5 - parent: 2 - - uid: 7033 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,42.5 - parent: 2 - - uid: 7034 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,43.5 - parent: 2 - - uid: 7035 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,44.5 - parent: 2 - - uid: 7036 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,45.5 - parent: 2 - - uid: 7037 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,46.5 - parent: 2 - - uid: 7038 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,47.5 - parent: 2 - - uid: 7039 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,48.5 - parent: 2 - - uid: 7041 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,49.5 - parent: 2 - - uid: 7042 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,50.5 - parent: 2 - - uid: 7043 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,51.5 - parent: 2 - - uid: 7044 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,52.5 - parent: 2 - - uid: 7045 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,53.5 - parent: 2 - - uid: 7046 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,54.5 - parent: 2 - - uid: 7047 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,55.5 - parent: 2 - - uid: 7048 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,56.5 - parent: 2 - - uid: 7049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,57.5 - parent: 2 - - uid: 7050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,59.5 - parent: 2 - - uid: 7054 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,58.5 - parent: 2 - - uid: 7055 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,58.5 - parent: 2 - - uid: 7056 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,58.5 - parent: 2 - - uid: 7057 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,58.5 - parent: 2 - - uid: 7058 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,60.5 - parent: 2 - - uid: 7059 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,60.5 - parent: 2 - - uid: 7060 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,60.5 - parent: 2 - - uid: 7061 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,60.5 - parent: 2 - - uid: 7062 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,60.5 - parent: 2 - - uid: 7063 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,60.5 - parent: 2 - - uid: 7064 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,60.5 - parent: 2 - - uid: 7065 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,60.5 - parent: 2 - - uid: 7066 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,60.5 - parent: 2 - - uid: 7067 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,60.5 - parent: 2 - - uid: 7068 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,60.5 - parent: 2 - - uid: 7069 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,60.5 - parent: 2 - - uid: 7070 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,60.5 - parent: 2 - - uid: 7071 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,60.5 - parent: 2 - - uid: 7072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,60.5 - parent: 2 - - uid: 7073 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,60.5 - parent: 2 - - uid: 7074 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,60.5 - parent: 2 - - uid: 7075 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,60.5 - parent: 2 - - uid: 7076 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,60.5 - parent: 2 - - uid: 7077 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,60.5 - parent: 2 - - uid: 7078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,60.5 - parent: 2 - - uid: 7079 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,60.5 - parent: 2 - - uid: 7080 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,60.5 - parent: 2 - - uid: 7081 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,60.5 - parent: 2 - - uid: 7082 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,60.5 - parent: 2 - - uid: 7083 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,60.5 - parent: 2 - - uid: 7084 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,60.5 - parent: 2 - - uid: 7085 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,60.5 - parent: 2 - - uid: 7086 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,60.5 - parent: 2 - - uid: 7087 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,60.5 - parent: 2 - - uid: 7088 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,60.5 - parent: 2 - - uid: 7089 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,60.5 - parent: 2 - - uid: 7090 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,60.5 - parent: 2 - - uid: 7091 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,60.5 - parent: 2 - - uid: 7092 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,60.5 - parent: 2 - - uid: 7093 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,60.5 - parent: 2 - - uid: 7094 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,60.5 - parent: 2 - - uid: 7095 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,60.5 - parent: 2 - - uid: 7096 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,60.5 - parent: 2 - - uid: 7097 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,60.5 - parent: 2 - - uid: 7102 - components: - - type: Transform - pos: 15.5,59.5 - parent: 2 - - uid: 7103 - components: - - type: Transform - pos: 15.5,58.5 - parent: 2 - - uid: 7104 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,57.5 - parent: 2 - - uid: 7151 - components: - - type: Transform - pos: 57.5,39.5 - parent: 2 - - uid: 7152 - components: - - type: Transform - pos: 57.5,38.5 - parent: 2 - - uid: 7153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,37.5 - parent: 2 - - uid: 7155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,37.5 - parent: 2 - - uid: 7156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,37.5 - parent: 2 - - uid: 7159 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,37.5 - parent: 2 - - uid: 7160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,37.5 - parent: 2 - - uid: 7161 - components: - - type: Transform - rot: 3.141592653589793 rad pos: 51.5,36.5 parent: 2 - - uid: 7162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,35.5 - parent: 2 - - uid: 7164 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,34.5 - parent: 2 - - uid: 7165 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,33.5 - parent: 2 - - uid: 7166 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,32.5 - parent: 2 - - uid: 7167 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,31.5 - parent: 2 - - uid: 7168 + - uid: 11321 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,30.5 parent: 2 -- proto: DisposalTrunk + - uid: 11322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,30.5 + parent: 2 +- proto: DisposalPipe entities: - - uid: 159 + - uid: 567 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,12.5 + pos: -6.5,12.5 parent: 2 - - uid: 1618 + - uid: 811 components: - type: Transform - pos: 26.5,35.5 + rot: -1.5707963267948966 rad + pos: 51.5,60.5 parent: 2 - - uid: 4938 + - uid: 845 components: - type: Transform - pos: 57.5,40.5 + rot: -1.5707963267948966 rad + pos: 54.5,60.5 parent: 2 - - uid: 5055 + - uid: 850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,60.5 + parent: 2 + - uid: 851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,60.5 + parent: 2 + - uid: 1393 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,23.5 + pos: 16.5,57.5 parent: 2 - - uid: 6614 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,5.5 - parent: 2 - - uid: 6647 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-3.5 - parent: 2 - - uid: 6688 + - uid: 1400 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,34.5 + pos: 50.5,60.5 parent: 2 - - uid: 6696 - components: - - type: Transform - pos: 22.5,7.5 - parent: 2 - - uid: 6704 + - uid: 1451 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,10.5 + pos: 17.5,60.5 parent: 2 - - uid: 6705 + - uid: 1456 components: - type: Transform - pos: 25.5,12.5 + rot: -1.5707963267948966 rad + pos: 49.5,60.5 parent: 2 - - uid: 6707 + - uid: 1676 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,9.5 + pos: 15.5,59.5 parent: 2 - - uid: 6739 + - uid: 1695 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,21.5 + rot: -1.5707963267948966 rad + pos: -5.5,12.5 parent: 2 - - uid: 6756 + - uid: 1746 components: - type: Transform - pos: 32.5,35.5 + rot: -1.5707963267948966 rad + pos: 47.5,60.5 + parent: 2 + - uid: 1747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,60.5 + parent: 2 + - uid: 1789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,60.5 + parent: 2 + - uid: 1939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,12.5 + parent: 2 + - uid: 3256 + components: + - type: Transform + pos: 15.5,58.5 + parent: 2 + - uid: 3330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,60.5 + parent: 2 + - uid: 3350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,12.5 + parent: 2 + - uid: 6766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,60.5 + parent: 2 + - uid: 6767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,60.5 + parent: 2 + - uid: 6768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,60.5 + parent: 2 + - uid: 6769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,60.5 + parent: 2 + - uid: 6770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,60.5 + parent: 2 + - uid: 6771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,60.5 parent: 2 - uid: 6772 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,20.5 + pos: 38.5,60.5 parent: 2 - - uid: 6809 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,28.5 - parent: 2 - - uid: 6822 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-9.5 - parent: 2 - - uid: 6860 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,2.5 - parent: 2 - - uid: 6868 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,5.5 - parent: 2 - - uid: 6874 - components: - - type: Transform - pos: 54.5,17.5 - parent: 2 - - uid: 6896 + - uid: 6773 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,-13.5 + pos: 37.5,60.5 parent: 2 - - uid: 6927 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,1.5 - parent: 2 - - uid: 6936 + - uid: 6774 components: - type: Transform rot: -1.5707963267948966 rad - pos: 63.5,2.5 + pos: 43.5,60.5 parent: 2 - - uid: 6973 + - uid: 6775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,60.5 + parent: 2 + - uid: 6776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,60.5 + parent: 2 + - uid: 6777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,60.5 + parent: 2 + - uid: 6778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,60.5 + parent: 2 + - uid: 6779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,60.5 + parent: 2 + - uid: 6780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,60.5 + parent: 2 + - uid: 6781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,60.5 + parent: 2 + - uid: 6782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,60.5 + parent: 2 + - uid: 6783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,60.5 + parent: 2 + - uid: 6784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,60.5 + parent: 2 + - uid: 6785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,60.5 + parent: 2 + - uid: 6786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,60.5 + parent: 2 + - uid: 6787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,60.5 + parent: 2 + - uid: 6788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,60.5 + parent: 2 + - uid: 6789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,60.5 + parent: 2 + - uid: 6790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,60.5 + parent: 2 + - uid: 6791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,60.5 + parent: 2 + - uid: 6792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,60.5 + parent: 2 + - uid: 6793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,60.5 + parent: 2 + - uid: 6794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,60.5 + parent: 2 + - uid: 6795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,58.5 + parent: 2 + - uid: 6796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,58.5 + parent: 2 + - uid: 6797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,58.5 + parent: 2 + - uid: 6798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,58.5 + parent: 2 + - uid: 11283 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,28.5 + pos: 56.5,59.5 parent: 2 - - uid: 7101 + - uid: 11284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,57.5 + parent: 2 + - uid: 11285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,56.5 + parent: 2 + - uid: 11286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,55.5 + parent: 2 + - uid: 11287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,54.5 + parent: 2 + - uid: 11288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,53.5 + parent: 2 + - uid: 11289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,52.5 + parent: 2 + - uid: 11290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,51.5 + parent: 2 + - uid: 11291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,50.5 + parent: 2 + - uid: 11292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,49.5 + parent: 2 + - uid: 11293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,48.5 + parent: 2 + - uid: 11294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,47.5 + parent: 2 + - uid: 11295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,46.5 + parent: 2 + - uid: 11296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,45.5 + parent: 2 + - uid: 11297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,44.5 + parent: 2 + - uid: 11298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,43.5 + parent: 2 + - uid: 11299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,42.5 + parent: 2 + - uid: 11300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,41.5 + parent: 2 + - uid: 11301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,40.5 + parent: 2 + - uid: 11302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,39.5 + parent: 2 + - uid: 11303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,38.5 + parent: 2 + - uid: 11304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,37.5 + parent: 2 + - uid: 11307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,36.5 + parent: 2 + - uid: 11308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,36.5 + parent: 2 + - uid: 11309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,36.5 + parent: 2 + - uid: 11310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,36.5 + parent: 2 + - uid: 11311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,36.5 + parent: 2 + - uid: 11312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,36.5 + parent: 2 + - uid: 11313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,36.5 + parent: 2 + - uid: 11314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,36.5 + parent: 2 + - uid: 11315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,36.5 + parent: 2 + - uid: 11316 + components: + - type: Transform + pos: 51.5,35.5 + parent: 2 + - uid: 11317 + components: + - type: Transform + pos: 51.5,34.5 + parent: 2 + - uid: 11318 + components: + - type: Transform + pos: 51.5,33.5 + parent: 2 + - uid: 11319 + components: + - type: Transform + pos: 51.5,32.5 + parent: 2 + - uid: 11320 + components: + - type: Transform + pos: 51.5,31.5 + parent: 2 + - uid: 11323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,30.5 + parent: 2 + - uid: 11324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,30.5 + parent: 2 + - uid: 11325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,30.5 + parent: 2 + - uid: 11326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,30.5 + parent: 2 + - uid: 11327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,30.5 + parent: 2 + - uid: 11328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,30.5 + parent: 2 + - uid: 11329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,30.5 + parent: 2 + - uid: 11330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,30.5 + parent: 2 + - uid: 11331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,30.5 + parent: 2 + - uid: 11332 + components: + - type: Transform + pos: 61.5,31.5 + parent: 2 + - uid: 11333 + components: + - type: Transform + pos: 61.5,32.5 + parent: 2 + - uid: 11334 + components: + - type: Transform + pos: 61.5,33.5 + parent: 2 + - uid: 11537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,12.5 + parent: 2 +- proto: DisposalTrunk + entities: + - uid: 725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,12.5 + parent: 2 + - uid: 3335 components: - type: Transform pos: 17.5,58.5 parent: 2 + - uid: 11335 + components: + - type: Transform + pos: 61.5,34.5 + parent: 2 - proto: DisposalUnit entities: - uid: 160 @@ -18592,174 +24129,50 @@ entities: - type: Transform pos: 17.5,58.5 parent: 2 - - uid: 4850 - components: - - type: Transform - pos: 57.5,40.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: 5112 - components: - - type: Transform - pos: 54.5,17.5 - parent: 2 - - uid: 5135 - components: - - type: Transform - pos: 63.5,2.5 - parent: 2 - - uid: 6646 - components: - - type: Transform - pos: 4.5,-3.5 - parent: 2 - - uid: 6689 - components: - - type: Transform - pos: 10.5,9.5 - parent: 2 - - uid: 6690 - components: - - type: Transform - pos: 20.5,10.5 - parent: 2 - - uid: 6691 - components: - - type: Transform - pos: 11.5,28.5 - parent: 2 - - uid: 6692 - components: - - type: Transform - pos: 31.5,20.5 - parent: 2 - - uid: 6693 - components: - - type: Transform - pos: 25.5,12.5 - parent: 2 - - uid: 6737 - components: - - type: Transform - pos: 27.5,21.5 - parent: 2 - - uid: 6738 - components: - - type: Transform - pos: 26.5,35.5 - parent: 2 - - uid: 6821 - components: - - type: Transform - pos: 28.5,-9.5 - parent: 2 - uid: 6830 components: - type: Transform pos: 61.5,34.5 parent: 2 - - uid: 6859 - components: - - type: Transform - pos: 37.5,2.5 - parent: 2 - - uid: 6926 - components: - - type: Transform - pos: 48.5,1.5 - parent: 2 - - uid: 6972 - components: - - type: Transform - pos: 53.5,28.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 -- proto: DisposalYJunction +- proto: DresserWardenFilled entities: - - uid: 6863 + - uid: 10432 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,4.5 - parent: 2 - - uid: 6962 - components: - - type: Transform - pos: 38.5,23.5 - parent: 2 -- proto: DogBed + pos: 32.5,-69.5 + parent: 3564 +- proto: DrinkCafeLatte entities: - - uid: 2283 + - uid: 1560 components: - type: Transform - pos: 47.5,27.5 + pos: 7.722795,34.250458 parent: 2 - - uid: 2404 - components: - - type: Transform - pos: 56.5,20.5 - parent: 2 -- proto: DoorElectronicsService +- proto: DrinkGlass entities: - - uid: 2186 + - uid: 10577 components: - type: Transform - pos: 9.5,-10.5 - parent: 2 - - uid: 2190 + pos: 11.5,-29.5 + parent: 3564 + - uid: 10578 components: - type: Transform - pos: 9.5,-10.5 - parent: 2 - - uid: 4220 - components: - - type: Transform - pos: 9.5,-10.5 - parent: 2 -- proto: DrinkBottleBeer - entities: - - uid: 2051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.777023,12.639819 - parent: 2 + pos: 11.5,-29.5 + parent: 3564 - proto: DrinkGoldenCup entities: - - uid: 7734 + - uid: 7826 components: - type: Transform - pos: 62.5,5.5 + pos: 59.5,23.5 parent: 2 - proto: Dropper entities: - - uid: 2133 + - uid: 1514 components: - type: Transform - pos: 33.5,-5.5 + pos: 34.5,-2.5 parent: 2 - uid: 7325 components: @@ -18771,8 +24184,23 @@ entities: - type: Transform pos: 12.5,13.5 parent: 2 + - uid: 10342 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 3564 + - uid: 10704 + components: + - type: Transform + pos: 37.5,-26.5 + parent: 3564 - proto: EmergencyOxygenTankFilled entities: + - uid: 5978 + components: + - type: Transform + pos: 11.5,26.5 + parent: 2 - uid: 7548 components: - type: Transform @@ -18790,20 +24218,6 @@ entities: - 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: FaxMachineBase entities: - uid: 8293 @@ -18811,12 +24225,21 @@ entities: - type: Transform pos: 60.5,31.5 parent: 2 -- proto: FaxMachineCaptain - entities: - - uid: 8292 + - type: FaxMachine + name: Bridge + - uid: 11365 components: - type: Transform - pos: 59.5,23.5 + pos: 32.5,-64.5 + parent: 3564 + - type: FaxMachine + name: Warden's Office +- proto: FaxMachineCaptain + entities: + - uid: 7336 + components: + - type: Transform + pos: 59.5,22.5 parent: 2 - proto: FireAlarm entities: @@ -18828,12 +24251,20 @@ entities: parent: 2 - type: DeviceList devices: - - 2920 + - 2897 - 2919 - 2918 - - 2917 - 2916 - 2922 + - uid: 35 + components: + - type: Transform + pos: 27.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 2921 + - 3246 - uid: 433 components: - type: Transform @@ -18852,15 +24283,33 @@ entities: - 6540 - 2949 - 2950 + - uid: 2009 + components: + - type: Transform + pos: 39.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 2944 + - uid: 2770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,40.5 + parent: 2 + - type: DeviceList + devices: + - 2406 + - 1741 + - 1735 - uid: 2967 components: - type: Transform - pos: 43.5,30.5 + pos: 44.5,30.5 parent: 2 - type: DeviceList devices: - 2972 - - 2971 - uid: 2982 components: - type: Transform @@ -18876,22 +24325,25 @@ entities: - 6541 - 2927 - 2926 + - uid: 5865 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 2935 + - 2936 - uid: 6170 components: - type: Transform pos: 59.5,38.5 parent: 2 - - type: DeviceList - devices: - - 2977 - - 2978 - - 2980 - - 2979 - uid: 6528 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,21.5 + pos: 53.5,21.5 parent: 2 - type: DeviceList devices: @@ -18904,24 +24356,16 @@ entities: parent: 2 - type: DeviceList devices: - - 2936 - - 2940 - - 2939 - - 2938 - - 2937 - 2941 - 2942 - 2943 + - 2937 + - 2938 + - 2939 + - 2940 + - 2936 + - 2935 - 3246 - - uid: 6566 - components: - - type: Transform - pos: 35.5,-3.5 - parent: 2 - - type: DeviceList - devices: - - 2944 - - 8224 - uid: 6567 components: - type: Transform @@ -18971,16 +24415,13 @@ entities: parent: 2 - type: DeviceList devices: - - 2973 - - 2974 - - 2970 + - 8527 - 2964 - 2963 - 2962 - - 2897 - - 2896 - - 2971 + - 2970 - 2972 + - 2974 - uid: 6573 components: - type: Transform @@ -18990,58 +24431,6 @@ entities: - type: DeviceList devices: - 2912 - - uid: 6574 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,25.5 - parent: 2 - - type: DeviceList - devices: - - 2904 - - 2901 - - 2900 - - 2912 - - 2899 - - 2902 - - 2903 - - uid: 6575 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,24.5 - parent: 2 - - type: DeviceList - devices: - - 2898 - - 2900 - - 2901 - - 2907 - - 2908 - - 2906 - - 2905 - - 2911 - - 2910 - - 2909 - - uid: 6576 - components: - - type: Transform - pos: 28.5,39.5 - parent: 2 - - type: DeviceList - devices: - - 2904 - - uid: 6577 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,40.5 - parent: 2 - - type: DeviceList - devices: - - 2909 - - 2910 - - 2911 - uid: 6578 components: - type: Transform @@ -19049,52 +24438,8 @@ entities: parent: 2 - type: DeviceList devices: - - 2908 - - 2907 - - 2906 - - 2905 - 396 - - uid: 6579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,26.5 - parent: 2 - - type: DeviceList - devices: - - 2915 - - 2914 - - 2913 - - uid: 6580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,19.5 - parent: 2 - - type: DeviceList - devices: - - 2913 - - 2914 - - 2915 - - 2894 - - 2895 - - 2917 - - 2916 - - uid: 6581 - components: - - type: Transform - pos: 26.5,20.5 - parent: 2 - - type: DeviceList - devices: - - 2898 - - 2899 - - 2903 - - 2902 - - 2896 - - 2897 - - 2894 - - 2895 + - 8475 - uid: 6582 components: - type: Transform @@ -19127,11 +24472,6 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,45.5 parent: 2 - - type: DeviceList - devices: - - 2980 - - 2979 - - 8221 - uid: 6586 components: - type: Transform @@ -19159,27 +24499,14 @@ entities: parent: 2 - type: DeviceList devices: - - 8224 - - 8226 - - 6540 - 8225 - 2947 - - uid: 6589 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-8.5 - parent: 2 - - type: DeviceList - devices: - - 8229 - - 8226 - - 2935 + - 6540 - uid: 6591 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,-8.5 + pos: 47.5,-7.5 parent: 2 - type: DeviceList devices: @@ -19207,8 +24534,8 @@ entities: - uid: 6594 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,8.5 + rot: 1.5707963267948966 rad + pos: 56.5,8.5 parent: 2 - type: DeviceList devices: @@ -19227,11 +24554,20 @@ entities: - 2961 - 2975 - 2976 - - uid: 7781 + - uid: 6642 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-12.5 + pos: 15.5,21.5 + parent: 2 + - type: DeviceList + devices: + - 8539 + - 8543 + - uid: 7781 + components: + - type: Transform + pos: 11.5,-9.5 parent: 2 - type: DeviceList devices: @@ -19256,9 +24592,8 @@ entities: - type: DeviceList devices: - 2974 - - 2973 - 2978 - - 2977 + - 8549 - uid: 8223 components: - type: Transform @@ -19276,15 +24611,12 @@ entities: parent: 2 - type: DeviceList devices: - - 8225 - - 8229 - 2931 - - 2932 - - 2930 + - 8225 - uid: 8232 components: - type: Transform - pos: 21.5,5.5 + pos: 25.5,8.5 parent: 2 - type: DeviceList devices: @@ -19296,16 +24628,6 @@ entities: - 2918 - 2919 - 2925 - - uid: 8234 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,14.5 - parent: 2 - - type: DeviceList - devices: - - 2921 - - 3246 - uid: 8235 components: - type: Transform @@ -19331,11 +24653,9 @@ entities: parent: 2 - type: DeviceList devices: - - 2932 - - 2931 - - 2930 - - 2929 - 2928 + - 2929 + - 2931 - uid: 8247 components: - type: Transform @@ -19353,20 +24673,251 @@ entities: - type: DeviceList devices: - 8245 -- proto: FireAxe - entities: - - uid: 7726 + - uid: 8307 components: - type: Transform - pos: 27.5,35.5 + pos: 30.5,32.5 parent: 2 + - type: DeviceList + devices: + - 2901 + - uid: 8356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,29.5 + parent: 2 + - type: DeviceList + devices: + - 8539 + - uid: 8528 + components: + - type: Transform + pos: 37.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 2904 + - 8472 + - 8473 + - 8474 + - 8471 + - 7657 + - 1831 + - 8477 + - 2912 + - uid: 8529 + components: + - type: Transform + pos: 36.5,42.5 + parent: 2 + - type: DeviceList + devices: + - 2904 + - uid: 8531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 8474 + - 8473 + - 8472 + - 2406 + - 1741 + - 1735 + - 8475 + - uid: 8533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 1606 + - 8527 + - 2901 + - 8471 + - 7657 + - 1831 + - 8477 + - uid: 8541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,21.5 + parent: 2 + - type: DeviceList + devices: + - 8543 + - uid: 10242 + components: + - type: Transform + pos: 15.5,-64.5 + parent: 3564 + - type: DeviceList + devices: + - 9647 + - 9646 + - uid: 10243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-61.5 + parent: 3564 + - type: DeviceList + devices: + - 9645 + - 9646 + - uid: 10244 + components: + - type: Transform + pos: 32.5,-62.5 + parent: 3564 + - type: DeviceList + devices: + - 9648 + - 9649 + - uid: 10245 + components: + - type: Transform + pos: 27.5,-56.5 + parent: 3564 + - type: DeviceList + devices: + - 9642 + - 9643 + - 9644 + - 9648 + - uid: 10246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-57.5 + parent: 3564 + - type: DeviceList + devices: + - 9641 + - 9640 + - 9645 + - 9642 + - 9643 + - 9644 + - 9649 + - 9647 + - 9650 + - uid: 10247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-31.5 + parent: 3564 + - type: DeviceList + devices: + - 9631 + - 9632 + - 9633 + - 9634 + - 9635 + - 9636 + - 9638 + - 9637 + - 9640 + - 9641 + - uid: 10248 + components: + - type: Transform + pos: 36.5,-24.5 + parent: 3564 + - type: DeviceList + devices: + - 9635 + - uid: 10249 + components: + - type: Transform + pos: 18.5,-19.5 + parent: 3564 + - type: DeviceList + devices: + - 9634 + - 9633 + - uid: 10250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-17.5 + parent: 3564 + - type: DeviceList + devices: + - 9631 + - 9632 + - uid: 10251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-42.5 + parent: 3564 + - type: DeviceList + devices: + - 9636 + - 9638 + - 9637 + - 9639 - proto: FireExtinguisher entities: + - uid: 1071 + components: + - type: Transform + pos: 47.5,35.5 + parent: 2 + - uid: 1288 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 2 + - uid: 1293 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 2 + - uid: 2183 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 2 + - uid: 3950 + components: + - type: Transform + pos: 60.5,42.5 + parent: 2 - uid: 3962 components: - type: Transform pos: 54.471027,32.541878 parent: 2 + - uid: 5156 + components: + - type: Transform + pos: 18.5,20.5 + parent: 2 + - uid: 5166 + components: + - type: Transform + pos: 12.5,28.5 + parent: 2 + - uid: 6705 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - uid: 6707 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 - uid: 7552 components: - type: Transform @@ -19382,6 +24933,36 @@ entities: - type: Transform pos: 15.5,-10.5 parent: 2 + - uid: 8226 + components: + - type: Transform + pos: 21.5,39.5 + parent: 2 + - uid: 8305 + components: + - type: Transform + pos: 30.5,24.5 + parent: 2 + - uid: 8362 + components: + - type: Transform + pos: 34.5,22.5 + parent: 2 + - uid: 8363 + components: + - type: Transform + pos: 39.5,33.5 + parent: 2 + - uid: 8364 + components: + - type: Transform + pos: 31.5,33.5 + parent: 2 + - uid: 11346 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 2 - proto: Firelock entities: - uid: 396 @@ -19392,94 +24973,78 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6578 - - 6555 - 433 - 6554 - - uid: 2894 + - 6578 + - 6555 + - uid: 1606 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,19.5 + pos: 31.5,20.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6581 - - 6552 - - 6580 - - 6551 - - uid: 2895 + - 8533 + - 8532 + - uid: 1735 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,18.5 + pos: 23.5,40.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6581 - - 6552 - - 6580 - - 6551 - - uid: 2896 + - 8531 + - 8509 + - 2770 + - 6556 + - uid: 1741 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,19.5 + pos: 24.5,40.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6581 - - 6552 - - 6570 - - 6529 + - 8531 + - 8509 + - 2770 + - 6556 + - uid: 1831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8528 + - 6559 + - 8533 + - 8532 + - uid: 2406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8531 + - 8509 + - 2770 + - 6556 - uid: 2897 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,18.5 + pos: 21.5,11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6581 - - 6552 - - 6570 - - 6529 - - uid: 2898 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6575 - - 6553 - - 6581 - - 6552 - - uid: 2899 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6574 - - 6559 - - 6581 - - 6552 - - uid: 2900 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,29.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6574 - - 6559 - - 6575 - - 6553 + - 7 + - 7434 - uid: 2901 components: - type: Transform @@ -19488,34 +25053,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6574 - - 6559 - - 6575 - - 6553 - - uid: 2902 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,20.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6574 - - 6559 - - 6581 - - 6552 - - uid: 2903 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,20.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6574 - - 6559 - - 6581 - - 6552 + - 8533 + - 8532 + - 8307 + - 1602 - uid: 2904 components: - type: Transform @@ -19524,94 +25065,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6576 - - 6557 - - 6574 + - 8529 + - 5210 + - 8528 - 6559 - - uid: 2905 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6575 - - 6553 - - 6578 - - 6555 - - uid: 2906 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,33.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6575 - - 6553 - - 6578 - - 6555 - - uid: 2907 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,32.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6575 - - 6553 - - 6578 - - 6555 - - uid: 2908 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,32.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6575 - - 6553 - - 6578 - - 6555 - - uid: 2909 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,36.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6575 - - 6553 - - 6577 - - 6556 - - uid: 2910 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,36.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6575 - - 6553 - - 6577 - - 6556 - - uid: 2911 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,36.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6575 - - 6553 - - 6577 - - 6556 - uid: 2912 components: - type: Transform @@ -19620,46 +25077,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6574 + - 8528 - 6559 - 6573 - 6558 - - uid: 2913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,25.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6580 - - 6551 - - 6579 - - 6550 - - uid: 2914 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6580 - - 6551 - - 6579 - - 6550 - - uid: 2915 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6580 - - 6551 - - 6579 - - 6550 - uid: 2916 components: - type: Transform @@ -19668,20 +25089,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6580 - - 6551 - - 7 - - 7434 - - uid: 2917 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,17.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6580 - - 6551 + - 8544 - 7 - 7434 - uid: 2918 @@ -19693,7 +25101,7 @@ entities: - type: DeviceNetwork deviceLists: - 8232 - - 6561 + - 56 - 7 - 7434 - uid: 2919 @@ -19705,17 +25113,7 @@ entities: - type: DeviceNetwork deviceLists: - 8232 - - 6561 - - 7 - - 7434 - - uid: 2920 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: + - 56 - 7 - 7434 - uid: 2921 @@ -19726,8 +25124,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8234 - - 6548 + - 35 + - 3162 - uid: 2922 components: - type: Transform @@ -19736,10 +25134,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 7 - - 7434 - 8235 - 8236 + - 7 + - 7434 - uid: 2923 components: - type: Transform @@ -19775,10 +25173,10 @@ entities: - type: DeviceNetwork deviceLists: - 8232 - - 6561 - 2982 - 6165 - 6584 + - 56 - uid: 2926 components: - type: Transform @@ -19814,9 +25212,9 @@ entities: - type: DeviceNetwork deviceLists: - 8232 - - 6561 - 8242 - 8241 + - 56 - uid: 2929 components: - type: Transform @@ -19830,18 +25228,6 @@ entities: - 6584 - 8242 - 8241 - - uid: 2930 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 8230 - - 8231 - - 8242 - - 8241 - uid: 2931 components: - type: Transform @@ -19850,22 +25236,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8230 - - 8231 - 8242 - 8241 - - uid: 2932 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - 8230 - 8231 - - 8242 - - 8241 - uid: 2934 components: - type: Transform @@ -19887,8 +25261,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6589 - - 6562 + - 5865 + - 5864 + - 6565 + - 6564 - uid: 2936 components: - type: Transform @@ -19897,6 +25273,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: + - 5865 + - 5864 - 6565 - 6564 - uid: 2937 @@ -19907,10 +25285,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: + - 56 + - 8232 - 6565 - 6564 - - 8232 - - 6561 - uid: 2938 components: - type: Transform @@ -19919,10 +25297,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: + - 56 + - 8232 - 6565 - 6564 - - 8232 - - 6561 - uid: 2939 components: - type: Transform @@ -19931,10 +25309,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: + - 56 + - 8232 - 6565 - 6564 - - 8232 - - 6561 - uid: 2940 components: - type: Transform @@ -19943,10 +25321,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: + - 56 + - 8232 - 6565 - 6564 - - 8232 - - 6561 - uid: 2941 components: - type: Transform @@ -19993,8 +25371,8 @@ entities: deviceLists: - 8222 - 6568 - - 6566 - 6563 + - 2009 - uid: 2947 components: - type: Transform @@ -20003,10 +25381,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6588 - - 6542 - 6587 - 6543 + - 6588 + - 6542 - uid: 2949 components: - type: Transform @@ -20146,10 +25524,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6570 - - 6529 - 6569 - 6572 + - 6570 + - 6529 - uid: 2963 components: - type: Transform @@ -20158,10 +25536,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6570 - - 6529 - 6569 - 6572 + - 6570 + - 6529 - uid: 2964 components: - type: Transform @@ -20170,10 +25548,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6570 - - 6529 - 6569 - 6572 + - 6570 + - 6529 - uid: 2965 components: - type: Transform @@ -20200,25 +25578,14 @@ entities: - uid: 2970 components: - type: Transform - pos: 43.5,21.5 + pos: 43.5,22.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6570 - - 6529 - 6528 - 6532 - - uid: 2971 - components: - - type: Transform - pos: 45.5,26.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - 6570 - 6529 - - 6530 - - 2967 - uid: 2972 components: - type: Transform @@ -20226,21 +25593,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6570 - - 6529 - 6530 - 2967 - - uid: 2973 - components: - - type: Transform - pos: 50.5,28.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - 6570 - 6529 - - 8219 - - 6527 - uid: 2974 components: - type: Transform @@ -20248,10 +25604,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: + - 6527 + - 8219 - 6570 - 6529 - - 8219 - - 6527 - uid: 2975 components: - type: Transform @@ -20274,17 +25630,6 @@ entities: - 6534 - 6594 - 6535 - - uid: 2977 - components: - - type: Transform - pos: 54.5,37.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 8219 - - 6527 - - 2968 - - 6170 - uid: 2978 components: - type: Transform @@ -20292,10 +25637,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8219 - - 6527 - 2968 - - 6170 + - 6527 + - 8219 - uid: 2979 components: - type: Transform @@ -20304,20 +25648,6 @@ entities: - type: DeviceNetwork deviceLists: - 2968 - - 6170 - - 8220 - - 6585 - - uid: 2980 - components: - - type: Transform - pos: 60.5,38.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 2968 - - 6170 - - 8220 - - 6585 - uid: 3246 components: - type: Transform @@ -20328,8 +25658,8 @@ entities: deviceLists: - 6565 - 6564 - - 8234 - - 6548 + - 35 + - 3162 - uid: 6540 components: - type: Transform @@ -20338,10 +25668,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6588 - - 6542 - 1968 - 6539 + - 6588 + - 6542 - uid: 6541 components: - type: Transform @@ -20355,6 +25685,18 @@ entities: - 6584 - 6587 - 6543 + - uid: 7657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8528 + - 6559 + - 8533 + - 8532 - uid: 8221 components: - type: Transform @@ -20362,22 +25704,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6585 - - 8220 - 6526 - 8223 - - uid: 8224 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6566 - - 6563 - - 6588 - - 6542 - uid: 8225 components: - type: Transform @@ -20386,34 +25714,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6588 - - 6542 - 8230 - 8231 - - uid: 8226 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - 6588 - 6542 - - 6589 - - 6562 - - uid: 8229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6589 - - 6562 - - 8230 - - 8231 - uid: 8237 components: - type: Transform @@ -20430,7 +25734,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,50.5 + pos: 41.5,50.5 parent: 2 - type: DeviceNetwork deviceLists: @@ -20450,43 +25754,391 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,57.5 + pos: 18.5,57.5 parent: 2 - type: DeviceNetwork deviceLists: - 8247 - 6524 -- proto: Fireplace - entities: - - uid: 2423 + - uid: 8471 components: - type: Transform - pos: 56.5,25.5 + rot: 1.5707963267948966 rad + pos: 32.5,32.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 8528 + - 6559 + - 8533 + - 8532 + - uid: 8472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8528 + - 6559 + - 8531 + - 8509 + - uid: 8473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8528 + - 6559 + - 8531 + - 8509 + - uid: 8474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8528 + - 6559 + - 8531 + - 8509 + - uid: 8475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8531 + - 8509 + - 6578 + - 6555 + - uid: 8477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8528 + - 6559 + - 8533 + - 8532 + - uid: 8527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8533 + - 8532 + - 6570 + - 6529 + - uid: 8539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8356 + - 6614 + - 6642 + - 8538 + - uid: 8543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6642 + - 8538 + - 8541 + - 8542 + - uid: 8549 + components: + - type: Transform + pos: 62.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6527 + - 8219 +- proto: FirelockGlass + entities: + - uid: 9631 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10250 + - 10235 + - 10247 + - 10233 + - uid: 9632 + components: + - type: Transform + pos: 24.5,-24.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10250 + - 10235 + - 10247 + - 10233 + - uid: 9633 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10247 + - 10233 + - 10236 + - 10249 + - uid: 9634 + components: + - type: Transform + pos: 20.5,-27.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10247 + - 10233 + - 10236 + - 10249 + - uid: 9635 + components: + - type: Transform + pos: 26.5,-28.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10247 + - 10233 + - 10248 + - 10234 + - uid: 9636 + components: + - type: Transform + pos: 19.5,-40.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10247 + - 10233 + - 10232 + - 10251 + - uid: 9637 + components: + - type: Transform + pos: 19.5,-42.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10247 + - 10233 + - 10232 + - 10251 + - uid: 9638 + components: + - type: Transform + pos: 19.5,-41.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10247 + - 10233 + - 10232 + - 10251 + - uid: 9639 + components: + - type: Transform + pos: 9.5,-41.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10232 + - 10251 + - uid: 9640 + components: + - type: Transform + pos: 22.5,-56.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10247 + - 10233 + - 10246 + - 10239 + - uid: 9641 + components: + - type: Transform + pos: 23.5,-56.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10247 + - 10233 + - 10246 + - 10239 + - uid: 9642 + components: + - type: Transform + pos: 26.5,-58.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10246 + - 10239 + - 10245 + - 10241 + - uid: 9643 + components: + - type: Transform + pos: 26.5,-59.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10246 + - 10239 + - 10245 + - 10241 + - uid: 9644 + components: + - type: Transform + pos: 26.5,-61.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10246 + - 10239 + - 10245 + - 10241 + - uid: 9645 + components: + - type: Transform + pos: 18.5,-60.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10246 + - 10239 + - 10243 + - 10238 + - uid: 9646 + components: + - type: Transform + pos: 13.5,-64.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10242 + - 10237 + - 10243 + - 10238 + - uid: 9647 + components: + - type: Transform + pos: 18.5,-67.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10246 + - 10239 + - 10242 + - 10237 + - uid: 9648 + components: + - type: Transform + pos: 28.5,-62.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10245 + - 10241 + - 10240 + - 10244 + - uid: 9649 + components: + - type: Transform + pos: 26.5,-66.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10246 + - 10239 + - 10240 + - 10244 + - uid: 9650 + components: + - type: Transform + pos: 22.5,-70.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10246 + - 10239 - proto: Flare entities: - - uid: 1579 + - uid: 1380 components: - type: Transform - pos: 28.5,35.5 + pos: 38.5,-9.5 parent: 2 - - uid: 1626 + - uid: 1721 components: - type: Transform - pos: 28.5,35.5 + pos: 38.5,-9.5 parent: 2 - - uid: 1637 + - uid: 3296 components: - type: Transform - pos: 28.5,35.5 + pos: 38.5,-9.5 parent: 2 - - uid: 1639 + - uid: 3297 components: - type: Transform - pos: 28.5,35.5 + pos: 38.5,-9.5 parent: 2 - proto: FlashlightLantern entities: + - uid: 3563 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 + - uid: 6347 + components: + - type: Transform + pos: 45.5,35.5 + parent: 2 + - uid: 6709 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 + - uid: 6711 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 - uid: 7232 components: - type: Transform @@ -20497,36 +26149,40 @@ entities: - type: Transform pos: 46.5,21.5 parent: 2 + - uid: 8282 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - uid: 11169 + components: + - type: Transform + pos: 44.5,29.5 + parent: 2 + - uid: 11175 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 11519 + components: + - type: Transform + pos: 12.5,34.5 + parent: 2 +- proto: FloorChasmEntity + entities: + - uid: 1536 + components: + - type: Transform + pos: 8.5,34.5 + parent: 2 - proto: FloorDrain entities: - - uid: 2412 + - uid: 1521 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-12.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 2864 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,0.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 3164 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,9.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 7659 - components: - - type: Transform - pos: -0.5,6.5 + pos: 31.5,10.5 parent: 2 - type: Fixtures fixtures: {} @@ -20549,50 +26205,26 @@ entities: - type: Transform pos: 45.5,21.5 parent: 2 -- proto: FoodGoldenApple +- proto: FoodPlatePlastic entities: - - uid: 7735 + - uid: 10575 components: - type: Transform - pos: 62.5,4.5 - parent: 2 -- proto: FoodPacketCupRamenTrash + pos: 11.5,-29.5 + parent: 3564 +- proto: FoodPlateSmallPlastic entities: - - uid: 2052 + - uid: 10576 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 + pos: 11.5,-29.5 + parent: 3564 +- proto: FoodTinMRETrash entities: - - uid: 2048 + - uid: 3850 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: FrezonCanister - entities: - - uid: 6611 - components: - - type: Transform - pos: 22.5,42.5 + pos: 9.8373785,33.69837 parent: 2 - proto: GameMasterCircuitBoard entities: @@ -20601,28 +26233,51 @@ entities: - type: Transform pos: 30.5,52.5 parent: 2 +- proto: GasAnalyzer + entities: + - uid: 6695 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 + - uid: 6696 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - uid: 6697 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 + - uid: 6698 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 8266 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 - proto: GasFilter entities: - - uid: 1703 + - uid: 536 components: - type: Transform - pos: 20.5,30.5 - parent: 2 - - uid: 1709 - components: - - type: Transform - pos: 20.5,29.5 - parent: 2 -- proto: GasFilterFlipped - entities: - - uid: 1712 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,32.5 + rot: -1.5707963267948966 rad + pos: 27.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 1749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-2.5 + parent: 2 +- proto: GasFilterFlipped + entities: - uid: 6608 components: - type: Transform @@ -20633,77 +26288,108 @@ entities: color: '#990000FF' - proto: GasMinerNitrogenStation entities: - - uid: 1597 + - uid: 619 components: - type: Transform - pos: 17.5,28.5 + pos: 28.5,0.5 parent: 2 + - uid: 9669 + components: + - type: Transform + pos: 13.5,-57.5 + parent: 3564 - proto: GasMinerOxygenStation entities: - - uid: 1656 + - uid: 546 components: - type: Transform - pos: 17.5,31.5 + pos: 22.5,0.5 parent: 2 + - uid: 9670 + components: + - type: Transform + pos: 11.5,-57.5 + parent: 3564 - proto: GasMixer entities: - - uid: 1695 + - uid: 308 components: - type: Transform - pos: 21.5,27.5 + pos: 52.5,3.5 + parent: 2 + - uid: 2605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-3.5 + parent: 2 + - uid: 7651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,29.5 parent: 2 - proto: GasMixerFlipped entities: - - uid: 684 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,36.5 - parent: 2 - - uid: 1479 + - uid: 52 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,25.5 + pos: 25.5,-4.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 58 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-3.5 + parent: 2 + - uid: 4063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-10.5 + parent: 2 + - uid: 9702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-61.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasOutletInjector entities: - - uid: 693 + - uid: 1375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,31.5 + pos: 27.5,-0.5 parent: 2 - - uid: 852 + - uid: 2857 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,28.5 + pos: 22.5,-4.5 parent: 2 - - uid: 1347 + - uid: 3107 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,28.5 + pos: 23.5,-0.5 parent: 2 - - uid: 1707 + - uid: 5153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,30.5 + rot: 3.141592653589793 rad + pos: 27.5,-12.5 parent: 2 - proto: GasPassiveVent entities: - - uid: 35 + - uid: 42 components: - type: Transform - pos: 23.5,-4.5 - parent: 2 - - uid: 36 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-5.5 + rot: -1.5707963267948966 rad + pos: 27.5,0.5 parent: 2 - uid: 65 components: @@ -20711,48 +26397,68 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,-2.5 parent: 2 - - uid: 794 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,36.5 - parent: 2 - - uid: 1655 + - uid: 168 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,27.5 + pos: 23.5,0.5 parent: 2 - - uid: 1700 + - uid: 2422 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,31.5 + pos: 23.5,-5.5 parent: 2 - - uid: 1702 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,31.5 - parent: 2 - - uid: 1717 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,27.5 - parent: 2 - - uid: 8274 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,1.5 - parent: 2 - - uid: 8275 + - uid: 2755 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,1.5 parent: 2 + - uid: 5732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-12.5 + parent: 2 + - uid: 7653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,29.5 + parent: 2 + - uid: 7809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,1.5 + parent: 2 + - uid: 9577 + components: + - type: Transform + pos: 11.5,-58.5 + parent: 3564 + - uid: 9692 + components: + - type: Transform + pos: 13.5,-58.5 + parent: 3564 + - uid: 9693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-63.5 + parent: 3564 + - uid: 11560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,25.5 + parent: 2 + - uid: 11564 + components: + - type: Transform + pos: 24.5,29.5 + parent: 2 - proto: GasPipeBend entities: - uid: 18 @@ -20770,17 +26476,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 51 + - uid: 40 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-8.5 - parent: 2 - - uid: 52 - components: - - type: Transform - pos: 28.5,-1.5 + pos: 28.5,-4.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 74 components: - type: Transform @@ -20793,58 +26496,24 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,3.5 parent: 2 - - uid: 659 + - uid: 229 components: - type: Transform - pos: 18.5,37.5 - parent: 2 - - uid: 687 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 811 - components: - - type: Transform - pos: 22.5,32.5 - parent: 2 - - uid: 848 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,30.5 + pos: 28.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 850 - components: - - type: Transform - pos: 21.5,31.5 - parent: 2 - - uid: 853 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,28.5 - parent: 2 - - uid: 903 - components: - - type: Transform - pos: 28.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 932 + - uid: 259 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,37.5 + pos: 26.5,0.5 + parent: 2 + - uid: 357 + components: + - type: Transform + pos: 25.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - uid: 1334 components: - type: Transform @@ -20853,14 +26522,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 1335 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1336 components: - type: Transform @@ -20869,12 +26530,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 1382 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,29.5 - parent: 2 - uid: 1404 components: - type: Transform @@ -20882,14 +26537,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1636 + - uid: 1511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,23.5 + pos: 17.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#947507FF' - uid: 1640 components: - type: Transform @@ -20897,6 +26551,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 1644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 1650 components: - type: Transform @@ -20905,24 +26567,64 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 1719 + - uid: 1654 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,31.5 - parent: 2 - - uid: 1732 - components: - - type: Transform - pos: 26.5,33.5 + pos: 20.5,38.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2690 + - uid: 1658 + components: + - type: Transform + pos: 17.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 1661 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,33.5 + pos: 25.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1702 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 2746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -20958,21 +26660,29 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2870 + - uid: 2891 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,33.5 + rot: -1.5707963267948966 rad + pos: 18.5,12.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3023 + - uid: 2917 components: - type: Transform - pos: 18.5,22.5 + rot: 3.141592653589793 rad + pos: 34.5,21.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 3016 + components: + - type: Transform + pos: 17.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3084 components: - type: Transform @@ -20981,14 +26691,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3113 + - uid: 3112 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-6.5 + rot: 1.5707963267948966 rad + pos: 22.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3114 components: - type: Transform @@ -20997,14 +26705,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3127 components: - type: Transform @@ -21013,11 +26713,10 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3191 + - uid: 3169 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,12.5 + pos: 34.5,35.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -21043,44 +26742,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3260 + - uid: 3207 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-10.5 + pos: 25.5,-9.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3265 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3286 - components: - - type: Transform - pos: 31.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3287 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3288 - components: - - type: Transform - pos: 28.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3310 components: - type: Transform @@ -21089,18 +26755,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3324 - components: - - type: Transform - pos: 18.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3355 + - uid: 3334 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-8.5 + pos: 17.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -21118,13 +26777,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3421 - components: - - type: Transform - pos: 0.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3430 components: - type: Transform @@ -21235,14 +26887,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3570 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3616 components: - type: Transform @@ -21259,22 +26903,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3698 + - uid: 3715 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,22.5 + pos: 38.5,23.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3699 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3720 components: - type: Transform @@ -21283,6 +26919,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3803 components: - type: Transform @@ -21344,22 +26988,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3920 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3923 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3973 components: - type: Transform @@ -21376,14 +27004,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3990 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4011 components: - type: Transform @@ -21392,6 +27012,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4019 components: - type: Transform @@ -21400,6 +27028,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4048 components: - type: Transform @@ -21522,6 +27158,74 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6449 + components: + - type: Transform + pos: 19.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6459 + components: + - type: Transform + pos: 18.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6728 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6749 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7110 components: - type: Transform @@ -21534,8 +27238,723 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,15.5 parent: 2 + - uid: 7416 + components: + - type: Transform + pos: 57.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-61.5 + parent: 3564 + - uid: 9800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9841 + components: + - type: Transform + pos: 34.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9842 + components: + - type: Transform + pos: 34.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9885 + components: + - type: Transform + pos: 36.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10179 + components: + - type: Transform + pos: 37.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10183 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-18.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-18.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-23.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-23.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11498 + components: + - type: Transform + pos: 41.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBendAlt1 + entities: + - uid: 693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 853 + components: + - type: Transform + pos: 56.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1526 + components: + - type: Transform + pos: 21.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2985 + components: + - type: Transform + pos: 17.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6443 + components: + - type: Transform + pos: 22.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7731 + components: + - type: Transform + pos: 61.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11229 + components: + - type: Transform + pos: 23.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11244 + components: + - type: Transform + pos: 27.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11269 + components: + - type: Transform + pos: 37.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11278 + components: + - type: Transform + pos: 42.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11440 + components: + - type: Transform + pos: 3.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11526 + components: + - type: Transform + pos: 38.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeBendAlt2 + entities: + - uid: 1471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8465 + components: + - type: Transform + pos: 61.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8486 + components: + - type: Transform + pos: 34.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8553 + components: + - type: Transform + pos: 57.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11488 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeFourway entities: + - uid: 1599 + components: + - type: Transform + pos: 33.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2726 components: - type: Transform @@ -21543,20 +27962,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3006 - components: - - type: Transform - pos: 18.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3029 - components: - - type: Transform - pos: 37.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3037 components: - type: Transform @@ -21571,20 +27976,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3358 - components: - - type: Transform - pos: 18.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3397 - components: - - type: Transform - pos: 17.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3633 components: - type: Transform @@ -21592,13 +27983,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3709 - components: - - type: Transform - pos: 51.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3869 components: - type: Transform @@ -21606,13 +27990,462 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' -- proto: GasPipeSensorDistribution + - uid: 9917 + components: + - type: Transform + pos: 22.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9919 + components: + - type: Transform + pos: 23.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9961 + components: + - type: Transform + pos: 22.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9962 + components: + - type: Transform + pos: 23.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9963 + components: + - type: Transform + pos: 22.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9964 + components: + - type: Transform + pos: 23.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9965 + components: + - type: Transform + pos: 22.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9966 + components: + - type: Transform + pos: 23.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10032 + components: + - type: Transform + pos: 23.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10050 + components: + - type: Transform + pos: 13.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10055 + components: + - type: Transform + pos: 22.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10081 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10082 + components: + - type: Transform + pos: 22.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10119 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10125 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeFourwayAlt2 entities: - - uid: 138 + - uid: 7564 + components: + - type: Transform + pos: 33.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8515 + components: + - type: Transform + pos: 33.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeManifold + entities: + - uid: 1351 + components: + - type: Transform + pos: 20.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1438 + components: + - type: Transform + pos: 30.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1565 + components: + - type: Transform + pos: 33.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1572 + components: + - type: Transform + pos: 23.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1669 + components: + - type: Transform + pos: 19.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1701 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4013 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,29.5 + pos: 50.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5162 + components: + - type: Transform + pos: 16.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6647 + components: + - type: Transform + pos: 18.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6652 + components: + - type: Transform + pos: 14.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6668 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7413 + components: + - type: Transform + pos: 21.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8300 + components: + - type: Transform + pos: 43.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8522 + components: + - type: Transform + pos: 37.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11257 + components: + - type: Transform + pos: 30.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11279 + components: + - type: Transform + pos: 42.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11430 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11448 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11535 + components: + - type: Transform + pos: 36.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeSensorDistribution + entities: + - uid: 1685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -21628,67 +28461,37 @@ entities: color: '#03FCD3FF' - proto: GasPipeSensorTEGHot entities: - - uid: 1737 + - uid: 1663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,35.5 + rot: 3.141592653589793 rad + pos: 17.5,34.5 parent: 2 - type: AtmosPipeColor color: '#947507FF' - proto: GasPipeSensorWaste entities: - - uid: 890 + - uid: 1683 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,30.5 + rot: 3.141592653589793 rad + pos: 30.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - proto: GasPipeStraight entities: - - uid: 37 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-7.5 - parent: 2 - uid: 38 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-5.5 + rot: 1.5707963267948966 rad + pos: 24.5,-2.5 parent: 2 - uid: 39 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-6.5 - parent: 2 - - uid: 40 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-4.5 - parent: 2 - - uid: 41 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-3.5 - parent: 2 - - uid: 42 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-2.5 - parent: 2 - - uid: 53 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-8.5 + pos: 22.5,-3.5 parent: 2 - uid: 67 components: @@ -21714,44 +28517,41 @@ entities: rot: 3.141592653589793 rad pos: 40.5,2.5 parent: 2 - - uid: 136 - components: - - type: Transform - pos: 27.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 137 - components: - - type: Transform - pos: 27.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 465 + - uid: 182 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,31.5 + pos: 25.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 466 + - uid: 290 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,30.5 + pos: 27.5,-1.5 + parent: 2 + - uid: 307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,2.5 + parent: 2 + - uid: 375 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 2 + - uid: 382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,0.5 + parent: 2 + - uid: 425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 469 components: - type: Transform @@ -21767,14 +28567,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 586 + - uid: 532 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,34.5 + rot: 3.141592653589793 rad + pos: 25.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 655 components: - type: Transform @@ -21783,42 +28581,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 661 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 670 - components: - - type: Transform - pos: 26.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 685 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 701 - components: - - type: Transform - pos: 20.5,31.5 - parent: 2 - - uid: 703 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - uid: 709 components: - type: Transform @@ -21837,7 +28599,8 @@ entities: - uid: 767 components: - type: Transform - pos: 23.5,35.5 + rot: -1.5707963267948966 rad + pos: 24.5,35.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -21868,50 +28631,27 @@ entities: - uid: 821 components: - type: Transform - pos: 28.5,33.5 + rot: -1.5707963267948966 rad + pos: 25.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' + - uid: 822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 833 components: - type: Transform - pos: 28.5,32.5 + rot: -1.5707963267948966 rad + pos: 27.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 844 - components: - - type: Transform - pos: 28.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 845 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,32.5 - parent: 2 - - uid: 851 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 854 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,28.5 - parent: 2 - - uid: 855 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,30.5 - parent: 2 + color: '#990000FF' - uid: 869 components: - type: Transform @@ -21928,32 +28668,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 919 + - uid: 925 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,36.5 - parent: 2 - - uid: 963 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1001 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1020 - components: - - type: Transform - pos: 23.5,36.5 + pos: 18.5,38.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -21993,6 +28712,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 1346 + components: + - type: Transform + pos: 17.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 1402 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 2 - uid: 1421 components: - type: Transform @@ -22021,6 +28752,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 1453 + components: + - type: Transform + pos: 17.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 1454 components: - type: Transform @@ -22029,6 +28767,27 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,29.5 + parent: 2 + - uid: 1468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1470 + components: + - type: Transform + pos: 34.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1485 components: - type: Transform @@ -22037,6 +28796,46 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1591 components: - type: Transform @@ -22044,35 +28843,34 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 1647 + - uid: 1595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1600 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,39.5 + pos: 24.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1630 + components: + - type: Transform + pos: 18.5,32.5 parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 1648 + - uid: 1642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 1649 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 1659 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,39.5 + rot: 3.141592653589793 rad + pos: 18.5,35.5 parent: 2 - type: AtmosPipeColor color: '#947507FF' @@ -22084,109 +28882,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1693 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,27.5 - parent: 2 - - uid: 1694 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,27.5 - parent: 2 - - uid: 1696 + - uid: 1665 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,29.5 - parent: 2 - - uid: 1698 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,31.5 + pos: 28.5,-3.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1699 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,26.5 - parent: 2 - - uid: 1701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,30.5 - parent: 2 - - uid: 1704 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,27.5 - parent: 2 - - uid: 1705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1706 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,29.5 - parent: 2 - - uid: 1710 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,28.5 - parent: 2 - - uid: 1718 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,28.5 - parent: 2 - - uid: 1725 - components: - - type: Transform - pos: 26.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1726 - components: - - type: Transform - pos: 26.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1733 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1734 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1735 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,33.5 + pos: 61.5,42.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -22197,30 +28904,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 1741 + - uid: 1750 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,33.5 + rot: 3.141592653589793 rad + pos: 20.5,37.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 1747 + - uid: 1852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,31.5 - parent: 2 - - uid: 1748 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,31.5 - parent: 2 - - uid: 1799 - components: - - type: Transform - pos: 26.5,28.5 + rot: 3.141592653589793 rad + pos: 30.5,27.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -22276,6 +28972,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2166 + components: + - type: Transform + pos: 30.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2192 components: - type: Transform @@ -22308,6 +29011,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 2275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2276 components: - type: Transform @@ -22324,22 +29035,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2363 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2364 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2365 components: - type: Transform @@ -22347,21 +29042,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2384 - components: - - type: Transform - pos: 28.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2406 + - uid: 2403 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,29.5 + pos: 51.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 2560 components: - type: Transform @@ -22370,6 +29058,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 2684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2685 components: - type: Transform @@ -22402,38 +29098,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2691 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2692 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 2693 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,36.5 + pos: 30.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 2694 + color: '#0055CCFF' + - uid: 2695 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,37.5 + pos: 30.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 2698 components: - type: Transform @@ -22458,74 +29138,38 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2730 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2731 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2732 - components: - - type: Transform - pos: 27.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2733 - components: - - type: Transform - pos: 27.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2734 - components: - - type: Transform - pos: 27.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2737 - components: - - type: Transform - pos: 27.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2739 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2740 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2760 + - uid: 2744 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,38.5 + pos: 18.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#990000FF' + - uid: 2745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2765 components: - type: Transform @@ -22534,14 +29178,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2770 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 2771 components: - type: Transform @@ -22550,14 +29186,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 2797 components: - type: Transform @@ -22590,14 +29218,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2802 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2804 components: - type: Transform @@ -22903,30 +29523,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2879 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2880 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2881 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2882 components: - type: Transform @@ -22935,30 +29531,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2883 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 2888 components: - type: Transform @@ -22967,11 +29539,51 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2889 + - uid: 2894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2913 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,19.5 + pos: 36.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -22979,7 +29591,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,19.5 + pos: 27.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -22987,7 +29599,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,19.5 + pos: 26.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -22995,7 +29607,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,19.5 + pos: 25.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -23003,7 +29615,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,19.5 + pos: 24.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -23011,7 +29623,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,19.5 + pos: 23.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -23019,7 +29631,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,19.5 + pos: 22.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -23027,15 +29639,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2994 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,19.5 + pos: 21.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -23119,14 +29723,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3008 + - uid: 3005 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,18.5 + pos: 31.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 3009 components: - type: Transform @@ -23143,50 +29747,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3011 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3012 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3013 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3014 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3015 - components: - - type: Transform - pos: 18.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3016 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,19.5 + pos: 32.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -23214,84 +29779,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3021 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3022 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3024 - components: - - type: Transform - pos: 18.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3025 - components: - - type: Transform - pos: 18.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3027 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3028 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,22.5 + pos: 14.5,25.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 3030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,22.5 + pos: 37.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 3031 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,21.5 + pos: 37.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3032 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3033 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3035 components: - type: Transform @@ -23313,13 +29822,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3041 - components: - - type: Transform - pos: 38.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3042 components: - type: Transform @@ -23471,13 +29973,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3086 - components: - - type: Transform - pos: 34.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3088 components: - type: Transform @@ -23494,13 +29989,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3091 - components: - - type: Transform - pos: 34.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3093 components: - type: Transform @@ -23539,69 +30027,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3104 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-6.5 + rot: 1.5707963267948966 rad + pos: 26.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3107 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-6.5 + rot: 3.141592653589793 rad + pos: 26.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3110 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3111 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3112 - components: - - type: Transform - pos: 34.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3115 components: - type: Transform @@ -23642,10 +30079,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3129 + - uid: 3124 components: - type: Transform - pos: 34.5,-8.5 + rot: 3.141592653589793 rad + pos: 13.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -23689,6 +30127,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-2.5 + parent: 2 - uid: 3137 components: - type: Transform @@ -23697,6 +30141,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3139 components: - type: Transform @@ -23729,14 +30181,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3147 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3148 components: - type: Transform @@ -23777,14 +30221,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3155 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3156 components: - type: Transform @@ -23856,14 +30292,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3170 components: - type: Transform @@ -23880,14 +30308,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3173 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3174 components: - type: Transform @@ -23907,8 +30327,8 @@ entities: - uid: 3176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,12.5 + rot: -1.5707963267948966 rad + pos: 33.5,30.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -24043,13 +30463,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3207 - components: - - type: Transform - pos: 32.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3208 components: - type: Transform @@ -24174,14 +30587,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3236 components: - type: Transform @@ -24214,20 +30619,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3248 - components: - - type: Transform - pos: 34.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3250 - components: - - type: Transform - pos: 34.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3251 components: - type: Transform @@ -24268,14 +30659,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3256 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3257 components: - type: Transform @@ -24292,170 +30675,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3261 + - uid: 3276 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3262 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3267 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3268 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3269 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3270 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3271 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3278 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3279 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3280 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3289 - components: - - type: Transform pos: 28.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3290 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3293 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3294 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3295 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3296 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3297 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3298 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3299 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-7.5 + pos: 28.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -24595,46 +30827,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3329 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3331 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3332 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3334 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3335 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3336 components: - type: Transform @@ -24691,94 +30883,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3347 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3352 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3353 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3356 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3357 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3359 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3361 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3362 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3363 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3365 components: - type: Transform @@ -24787,14 +30891,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3368 components: - type: Transform @@ -24811,22 +30907,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3371 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3372 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3373 components: - type: Transform @@ -25833,77 +31913,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3566 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3567 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3568 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3569 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3572 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3573 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3574 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3575 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3576 - components: - - type: Transform - pos: 40.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3578 components: - type: Transform @@ -26444,16 +32453,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3667 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 46.5,6.5 - parent: 2 - - type: Physics - canCollide: True - bodyType: Dynamic - uid: 3668 components: - type: Transform @@ -26593,8 +32592,8 @@ entities: - uid: 3694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,22.5 + rot: 3.141592653589793 rad + pos: 38.5,22.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -26602,31 +32601,7 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3696 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3697 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3700 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,21.5 + pos: 40.5,23.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -26638,14 +32613,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3702 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3706 components: - type: Transform @@ -26670,75 +32637,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3710 - components: - - type: Transform - pos: 37.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3711 - components: - - type: Transform - pos: 37.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3712 - components: - - type: Transform - pos: 37.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3713 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3714 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3715 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3717 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3718 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3719 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3723 components: - type: Transform @@ -26827,62 +32725,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3739 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3740 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3741 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3742 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3743 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3744 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3745 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3748 components: - type: Transform @@ -26891,14 +32733,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3753 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3754 components: - type: Transform @@ -26915,38 +32749,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3758 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3759 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3760 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3761 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3762 components: - type: Transform @@ -26955,38 +32757,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3763 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3765 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3766 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3768 components: - type: Transform @@ -27075,14 +32845,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3784 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3785 components: - type: Transform @@ -27094,7 +32856,8 @@ entities: - uid: 3789 components: - type: Transform - pos: 56.5,32.5 + rot: 3.141592653589793 rad + pos: 33.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -27353,14 +33116,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3850 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3851 components: - type: Transform @@ -27605,14 +33360,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3900 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3903 components: - type: Transform @@ -27708,30 +33455,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3919 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3921 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3922 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3925 components: - type: Transform @@ -27746,20 +33469,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3927 - components: - - type: Transform - pos: 49.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3928 - components: - - type: Transform - pos: 49.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3930 components: - type: Transform @@ -27928,22 +33637,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3959 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3960 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3961 components: - type: Transform @@ -28032,14 +33725,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3984 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3985 components: - type: Transform @@ -28072,22 +33757,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3991 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3992 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3993 components: - type: Transform @@ -28112,17 +33781,19 @@ entities: - uid: 3996 components: - type: Transform - pos: 60.5,38.5 + rot: 1.5707963267948966 rad + pos: 40.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3997 components: - type: Transform - pos: 60.5,39.5 + rot: 3.141592653589793 rad + pos: 43.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 3998 components: - type: Transform @@ -28130,20 +33801,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3999 - components: - - type: Transform - pos: 60.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4000 - components: - - type: Transform - pos: 60.5,42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4012 components: - type: Transform @@ -28151,34 +33808,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 4013 - components: - - type: Transform - pos: 60.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4014 - components: - - type: Transform - pos: 61.5,42.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4016 - components: - - type: Transform - pos: 60.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4020 - components: - - type: Transform - pos: 60.5,44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4021 components: - type: Transform @@ -28221,13 +33850,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 4033 - components: - - type: Transform - pos: 61.5,50.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4034 components: - type: Transform @@ -29056,91 +34678,469 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4229 components: - type: Transform - pos: 13.5,24.5 + rot: 1.5707963267948966 rad + pos: 35.5,18.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 4230 components: - type: Transform - pos: 13.5,23.5 + rot: 1.5707963267948966 rad + pos: 20.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,18.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 4234 + - uid: 4233 components: - type: Transform - pos: 13.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4235 - components: - - type: Transform - pos: 13.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4236 - components: - - type: Transform - pos: 13.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4237 - components: - - type: Transform - pos: 14.5,22.5 + pos: 17.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4238 components: - type: Transform - pos: 14.5,24.5 + rot: 1.5707963267948966 rad + pos: 19.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4239 components: - type: Transform - pos: 14.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4240 - components: - - type: Transform - pos: 14.5,26.5 + rot: 1.5707963267948966 rad + pos: 29.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4241 components: - type: Transform - pos: 14.5,25.5 + rot: 3.141592653589793 rad + pos: 17.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4244 + - uid: 4716 components: - type: Transform - pos: 13.5,29.5 + rot: 3.141592653589793 rad + pos: 57.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4246 + color: '#0055CCFF' + - uid: 4717 components: - type: Transform rot: -1.5707963267948966 rad + pos: 44.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-11.5 + parent: 2 + - uid: 5163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5217 + components: + - type: Transform pos: 14.5,22.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 5734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-11.5 + parent: 2 + - uid: 5744 + components: + - type: Transform + pos: 14.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6672 + components: + - type: Transform + pos: 43.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6847 + components: + - type: Transform + pos: 56.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7106 components: - type: Transform @@ -29154,43 +35154,4418 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,15.5 parent: 2 - - uid: 8272 + - uid: 7652 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,2.5 + pos: 30.5,25.5 parent: 2 - - uid: 8273 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7654 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,2.5 + rot: -1.5707963267948966 rad + pos: 25.5,29.5 parent: 2 -- proto: GasPipeTJunction - entities: - - uid: 464 + - uid: 7655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,29.5 + parent: 2 + - uid: 7660 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,33.5 + pos: 30.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,23.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 689 + - uid: 7663 components: - type: Transform - pos: 24.5,23.5 + rot: 3.141592653589793 rad + pos: 29.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,2.5 + parent: 2 + - uid: 8284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 690 + - uid: 8419 + components: + - type: Transform + pos: 14.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8447 + components: + - type: Transform + pos: 54.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8483 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,25.5 + pos: 36.5,31.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-59.5 + parent: 3564 + - uid: 9695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-59.5 + parent: 3564 + - uid: 9703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-61.5 + parent: 3564 + - uid: 9706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-62.5 + parent: 3564 + - uid: 9707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9711 + components: + - type: Transform + pos: 13.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9797 + components: + - type: Transform + pos: 13.5,-64.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9799 + components: + - type: Transform + pos: 13.5,-66.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9819 + components: + - type: Transform + pos: 27.5,-68.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9822 + components: + - type: Transform + pos: 21.5,-68.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9823 + components: + - type: Transform + pos: 25.5,-68.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9831 + components: + - type: Transform + pos: 22.5,-62.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9839 + components: + - type: Transform + pos: 34.5,-68.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9855 + components: + - type: Transform + pos: 23.5,-66.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9856 + components: + - type: Transform + pos: 23.5,-65.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9857 + components: + - type: Transform + pos: 23.5,-64.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9858 + components: + - type: Transform + pos: 23.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9859 + components: + - type: Transform + pos: 23.5,-62.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9862 + components: + - type: Transform + pos: 22.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-66.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-65.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-64.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-62.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9875 + components: + - type: Transform + pos: 23.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9876 + components: + - type: Transform + pos: 23.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9877 + components: + - type: Transform + pos: 23.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-61.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9915 + components: + - type: Transform + pos: 22.5,-56.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9916 + components: + - type: Transform + pos: 22.5,-55.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9918 + components: + - type: Transform + pos: 22.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9920 + components: + - type: Transform + pos: 23.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9921 + components: + - type: Transform + pos: 23.5,-55.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9922 + components: + - type: Transform + pos: 23.5,-56.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10009 + components: + - type: Transform + pos: 22.5,-51.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10010 + components: + - type: Transform + pos: 23.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10011 + components: + - type: Transform + pos: 23.5,-51.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10024 + components: + - type: Transform + pos: 22.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10025 + components: + - type: Transform + pos: 22.5,-47.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10026 + components: + - type: Transform + pos: 22.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10027 + components: + - type: Transform + pos: 23.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10028 + components: + - type: Transform + pos: 23.5,-47.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10048 + components: + - type: Transform + pos: 10.5,-40.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10049 + components: + - type: Transform + pos: 10.5,-39.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10051 + components: + - type: Transform + pos: 13.5,-39.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10052 + components: + - type: Transform + pos: 13.5,-40.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10053 + components: + - type: Transform + pos: 13.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10054 + components: + - type: Transform + pos: 13.5,-43.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10069 + components: + - type: Transform + pos: 23.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10070 + components: + - type: Transform + pos: 23.5,-43.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10071 + components: + - type: Transform + pos: 22.5,-43.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10072 + components: + - type: Transform + pos: 22.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10074 + components: + - type: Transform + pos: 22.5,-39.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10076 + components: + - type: Transform + pos: 23.5,-39.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10077 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10078 + components: + - type: Transform + pos: 22.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10083 + components: + - type: Transform + pos: 22.5,-35.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10084 + components: + - type: Transform + pos: 23.5,-35.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10085 + components: + - type: Transform + pos: 23.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10109 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10110 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10117 + components: + - type: Transform + pos: 22.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10118 + components: + - type: Transform + pos: 22.5,-30.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10120 + components: + - type: Transform + pos: 22.5,-31.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10121 + components: + - type: Transform + pos: 23.5,-31.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10122 + components: + - type: Transform + pos: 23.5,-30.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10123 + components: + - type: Transform + pos: 22.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10126 + components: + - type: Transform + pos: 22.5,-27.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10127 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10205 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10206 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10207 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10208 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10209 + components: + - type: Transform + pos: 22.5,-19.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10210 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10211 + components: + - type: Transform + pos: 25.5,-20.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10212 + components: + - type: Transform + pos: 25.5,-22.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-23.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10216 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10217 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10218 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10219 + components: + - type: Transform + pos: 23.5,-27.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11452 + components: + - type: Transform + pos: 28.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11453 + components: + - type: Transform + pos: 28.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,27.5 + parent: 2 + - uid: 11562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,26.5 + parent: 2 +- proto: GasPipeStraightAlt1 + entities: + - uid: 256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 804 + components: + - type: Transform + pos: 15.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 852 + components: + - type: Transform + pos: 61.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 854 + components: + - type: Transform + pos: 61.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1455 + components: + - type: Transform + pos: 15.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1457 + components: + - type: Transform + pos: 61.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1527 + components: + - type: Transform + pos: 61.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1566 + components: + - type: Transform + pos: 23.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1681 + components: + - type: Transform + pos: 61.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1682 + components: + - type: Transform + pos: 61.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1900 + components: + - type: Transform + pos: 61.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2407 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2671 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2674 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2890 + components: + - type: Transform + pos: 17.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2892 + components: + - type: Transform + pos: 17.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3015 + components: + - type: Transform + pos: 17.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4237 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4242 + components: + - type: Transform + pos: 17.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6444 + components: + - type: Transform + pos: 22.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6461 + components: + - type: Transform + pos: 19.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6462 + components: + - type: Transform + pos: 19.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7355 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7386 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10340 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11270 + components: + - type: Transform + pos: 37.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11271 + components: + - type: Transform + pos: 37.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11272 + components: + - type: Transform + pos: 37.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraightAlt2 + entities: + - uid: 152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8459 + components: + - type: Transform + pos: 61.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8460 + components: + - type: Transform + pos: 61.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8461 + components: + - type: Transform + pos: 61.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8462 + components: + - type: Transform + pos: 61.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8463 + components: + - type: Transform + pos: 61.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8464 + components: + - type: Transform + pos: 61.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8555 + components: + - type: Transform + pos: 57.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8556 + components: + - type: Transform + pos: 57.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8557 + components: + - type: Transform + pos: 57.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,3.5 + parent: 2 + - uid: 719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 803 components: - type: Transform @@ -29199,22 +39574,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 860 + - uid: 932 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,33.5 + rot: 1.5707963267948966 rad + pos: 18.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#947507FF' - uid: 1286 components: - type: Transform @@ -29231,14 +39598,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1378 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1429 components: - type: Transform @@ -29247,20 +39606,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1446 + - uid: 1483 components: - type: Transform - pos: 22.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1528 - components: - - type: Transform - pos: 27.5,30.5 + rot: -1.5707963267948966 rad + pos: 30.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 1597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1619 components: - type: Transform @@ -29269,20 +39630,74 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1658 + - uid: 1639 components: - type: Transform - pos: 18.5,35.5 + rot: -1.5707963267948966 rad + pos: 17.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1646 + components: + - type: Transform + pos: 18.5,36.5 parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 1766 + - uid: 1651 components: - type: Transform - pos: 20.5,33.5 + pos: 14.5,38.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 1652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1670 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1687 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2003 components: - type: Transform @@ -29291,28 +39706,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2135 + - uid: 2270 components: - type: Transform - pos: 16.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 2166 - components: - - type: Transform - pos: 14.5,38.5 + rot: 3.141592653589793 rad + pos: 51.5,25.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2438 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2523 components: - type: Transform @@ -29321,6 +39722,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 2673 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2688 components: - type: Transform @@ -29329,22 +39737,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2696 + - uid: 2747 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,38.5 + rot: 3.141592653589793 rad + pos: 18.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2736 + - uid: 2749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,24.5 + rot: 3.141592653589793 rad + pos: 16.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 2808 components: - type: Transform @@ -29408,57 +39816,27 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2886 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2887 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2890 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2892 - components: - - type: Transform - pos: 32.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2985 - components: - - type: Transform - pos: 23.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2986 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3005 + - uid: 2893 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,19.5 + pos: 37.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -29470,6 +39848,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 3028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 3044 components: - type: Transform @@ -29541,6 +39935,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 3086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3102 components: - type: Transform @@ -29549,14 +39951,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3117 components: - type: Transform @@ -29588,6 +39982,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 3173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3181 components: - type: Transform @@ -29596,6 +39998,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 3191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3199 components: - type: Transform @@ -29641,50 +40051,10 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3259 + - uid: 3230 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3264 - components: - - type: Transform - pos: 29.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3276 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3283 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3284 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3300 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-6.5 + pos: 28.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -29703,14 +40073,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3330 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3333 components: - type: Transform @@ -29719,22 +40081,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3337 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3340 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3345 components: - type: Transform @@ -29743,22 +40089,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3346 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3364 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3367 components: - type: Transform @@ -29806,6 +40136,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3429 components: - type: Transform @@ -29900,29 +40238,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3565 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3571 - components: - - type: Transform - pos: 40.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3577 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3589 components: - type: Transform @@ -29992,14 +40307,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3693 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3703 components: - type: Transform @@ -30015,22 +40322,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3716 + - uid: 3713 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,23.5 + rot: -1.5707963267948966 rad + pos: 43.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3722 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 3747 components: - type: Transform @@ -30039,27 +40338,10 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3750 + - uid: 3764 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3756 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3767 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,29.5 + pos: 54.5,31.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -30216,14 +40498,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3950 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3972 components: - type: Transform @@ -30232,13 +40506,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3982 - components: - - type: Transform - pos: 57.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3983 components: - type: Transform @@ -30247,6 +40514,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 4000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4009 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4017 components: - type: Transform @@ -30279,6 +40561,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4117 components: - type: Transform @@ -30302,30 +40600,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4232 + - uid: 4203 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,21.5 + pos: 26.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4233 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4243 + - uid: 4204 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,28.5 + pos: 27.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4247 components: - type: Transform @@ -30334,19 +40620,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 4248 + - uid: 4667 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,33.5 + rot: -1.5707963267948966 rad + pos: 34.5,29.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 4694 + - uid: 5112 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,34.5 + pos: 33.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6577 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -30356,6 +40665,61 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,14.5 parent: 2 + - uid: 6716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6849 + components: + - type: Transform + pos: 30.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7108 components: - type: Transform @@ -30368,38 +40732,540 @@ entities: rot: 3.141592653589793 rad pos: 9.5,14.5 parent: 2 -- proto: GasPort - entities: - - uid: 58 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-8.5 - parent: 2 - - uid: 60 + - uid: 7649 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-1.5 + pos: 29.5,30.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-62.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9700 + components: + - type: Transform + pos: 12.5,-62.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-62.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-65.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9813 + components: + - type: Transform + pos: 21.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9821 + components: + - type: Transform + pos: 25.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9829 + components: + - type: Transform + pos: 25.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-61.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9833 + components: + - type: Transform + pos: 27.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9840 + components: + - type: Transform + pos: 27.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-57.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-61.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-57.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-52.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-52.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-48.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-44.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-44.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-48.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-36.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-36.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-40.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-40.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-32.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-32.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-28.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-28.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10166 + components: + - type: Transform + pos: 27.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10171 + components: + - type: Transform + pos: 32.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10184 + components: + - type: Transform + pos: 32.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10185 + components: + - type: Transform + pos: 27.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-21.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-21.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunctionAlt1 + entities: + - uid: 1439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3268 + components: + - type: Transform + pos: 19.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeTJunctionAlt2 + entities: + - uid: 423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8436 + components: + - type: Transform + pos: 49.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: - uid: 64 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,3.5 parent: 2 - - uid: 1346 + - uid: 1381 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,36.5 + rot: -1.5707963267948966 rad + pos: 27.5,-4.5 parent: 2 - - uid: 1598 + - uid: 1653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,37.5 + rot: -1.5707963267948966 rad + pos: 19.5,33.5 parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 1662 components: - type: Transform @@ -30408,49 +41274,110 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 1663 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 1757 + - uid: 1704 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,25.5 + pos: 28.5,-3.5 parent: 2 - - uid: 8268 - components: - - type: Transform - pos: 51.5,4.5 - parent: 2 - - uid: 8269 + - uid: 2267 components: - type: Transform pos: 52.5,4.5 parent: 2 -- proto: GasPressurePump - entities: - - uid: 56 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-8.5 - parent: 2 - - uid: 57 + - uid: 2863 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-1.5 + pos: 33.5,8.5 parent: 2 + - uid: 4008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-9.5 + parent: 2 + - uid: 4662 + components: + - type: Transform + pos: 27.5,30.5 + parent: 2 + - uid: 5851 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 2 + - uid: 6341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-4.5 + parent: 2 + - uid: 6710 + components: + - type: Transform + pos: 51.5,4.5 + parent: 2 + - uid: 7650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,29.5 + parent: 2 + - uid: 7821 + components: + - type: Transform + pos: 53.5,4.5 + parent: 2 + - uid: 11502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-10.5 + parent: 2 +- proto: GasPressurePump + entities: - uid: 63 components: - type: Transform pos: 40.5,-0.5 parent: 2 + - uid: 297 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 2 + - uid: 1430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-4.5 + parent: 2 + - uid: 1475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-3.5 + parent: 2 + - uid: 1664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1760 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 2 + - uid: 5850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-10.5 + parent: 2 - uid: 6612 components: - type: Transform @@ -30459,88 +41386,133 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8270 + - uid: 6740 components: - type: Transform - pos: 51.5,3.5 - parent: 2 - - uid: 8271 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,3.5 - parent: 2 -- proto: GasThermoMachineFreezer - entities: - - uid: 682 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,21.5 + pos: 25.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,3.5 + parent: 2 + - uid: 9696 + components: + - type: Transform + pos: 11.5,-60.5 + parent: 3564 + - uid: 9697 + components: + - type: Transform + pos: 13.5,-60.5 + parent: 3564 + - uid: 9704 + components: + - type: Transform + pos: 15.5,-61.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPressureRegulator + entities: + - uid: 11563 + components: + - type: Transform + pos: 24.5,28.5 + parent: 2 + - type: GasPressureRegulator + threshold: 95000 +- proto: GasThermoMachineFreezer + entities: + - uid: 255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4065 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 2 - uid: 7112 components: - type: Transform pos: 9.5,16.5 parent: 2 -- proto: GasThermoMachineHeater - entities: - - uid: 1524 + - uid: 9674 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,21.5 + pos: 12.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasThermoMachineHeater + entities: + - uid: 1707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,3.5 + parent: 2 + - uid: 6764 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 2 + - uid: 9673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasValve entities: - - uid: 54 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-8.5 - parent: 2 - - uid: 55 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-1.5 - parent: 2 - uid: 62 components: - type: Transform pos: 40.5,-1.5 parent: 2 - - uid: 795 + - uid: 1590 components: - type: Transform - pos: 21.5,22.5 + rot: 1.5707963267948966 rad + pos: 26.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1561 + - uid: 2759 components: - type: Transform - pos: 22.5,22.5 + rot: -1.5707963267948966 rad + pos: 19.5,36.5 parent: 2 + - type: GasValve + open: False - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1592 + color: '#990000FF' + - uid: 2768 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1752 - components: - - type: Transform - pos: 18.5,34.5 - parent: 2 + - type: GasValve + open: False - type: AtmosPipeColor color: '#990000FF' - proto: GasVentPump @@ -30553,7 +41525,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6556 + - 8509 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1309 @@ -30567,6 +41539,38 @@ entities: - 6556 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1934 + components: + - type: Transform + pos: 29.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 6559 + - uid: 2694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 1602 - uid: 2725 components: - type: Transform @@ -30578,28 +41582,16 @@ entities: - 6555 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2728 + - uid: 2760 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,22.5 + pos: 30.5,31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 6553 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2729 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,25.5 - parent: 2 - type: DeviceNetwork deviceLists: - - 6553 - - type: AtmosPipeColor - color: '#0055CCFF' + - 1602 - uid: 2826 components: - type: Transform @@ -30607,7 +41599,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6557 + - 5210 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2827 @@ -30617,7 +41609,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6557 + - 5210 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2828 @@ -30627,7 +41619,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6557 + - 5210 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2849 @@ -30682,29 +41674,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6559 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2893 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6552 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2983 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6552 + - 8532 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3065 @@ -30729,16 +41699,6 @@ entities: - 6572 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3072 - components: - - type: Transform - pos: 17.5,22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6551 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3075 components: - type: Transform @@ -30758,7 +41718,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6548 + - 3162 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3119 @@ -30772,16 +41732,6 @@ entities: - 7434 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3128 - components: - - type: Transform - pos: 34.5,-6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6563 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3146 components: - type: Transform @@ -30789,7 +41739,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6548 + - 3162 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3185 @@ -30811,7 +41761,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6561 + - 56 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3244 @@ -30824,38 +41774,6 @@ entities: - 6564 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3281 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6562 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3282 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6562 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3285 - components: - - type: Transform - pos: 22.5,-3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6562 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3323 components: - type: Transform @@ -30864,18 +41782,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6561 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3350 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 8241 + - 56 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3370 @@ -31028,27 +41935,6 @@ entities: - 6542 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3563 - components: - - type: Transform - pos: 38.5,-9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6542 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3564 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6542 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3610 components: - type: Transform @@ -31146,16 +42032,6 @@ entities: - 6529 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3731 - components: - - type: Transform - pos: 41.5,24.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6529 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3746 components: - type: Transform @@ -31301,11 +42177,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3929 + - uid: 3927 components: - type: Transform rot: 3.141592653589793 rad - pos: 49.5,0.5 + pos: 49.5,2.5 parent: 2 - type: DeviceNetwork deviceLists: @@ -31375,15 +42251,23 @@ entities: - 2968 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 6529 - uid: 4010 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,45.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8220 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4043 @@ -31392,9 +42276,6 @@ entities: rot: -1.5707963267948966 rad pos: 61.5,51.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8220 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4051 @@ -31458,42 +42339,604 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6553 + - 8509 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4228 + - uid: 6463 + components: + - type: Transform + pos: 17.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8241 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6643 components: - type: Transform rot: 1.5707963267948966 rad + pos: 16.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8542 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8538 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6654 + components: + - type: Transform + rot: 3.141592653589793 rad pos: 13.5,21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6550 + - 8538 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4242 + - uid: 6659 components: - type: Transform - pos: 14.5,27.5 + pos: 13.5,28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6550 + - 6614 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 8532 + - uid: 8508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 8532 + - uid: 8545 + components: + - type: Transform + pos: 12.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 7434 + - uid: 8559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 6527 + - uid: 9807 + components: + - type: Transform + pos: 13.5,-61.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10238 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-65.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10237 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-69.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-69.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10240 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-69.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10240 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-69.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-61.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-57.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-61.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10241 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-61.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10241 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-52.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-48.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-44.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-36.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10029 + components: + - type: Transform + pos: 13.5,-38.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10232 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-44.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10232 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10031 + components: + - type: Transform + pos: 10.5,-38.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10232 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10056 + components: + - type: Transform + pos: 14.5,-40.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10232 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-40.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10094 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-32.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10132 + components: + - type: Transform + pos: 19.5,-28.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10236 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10133 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10236 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10134 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10236 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-30.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10234 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-30.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10234 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-30.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10234 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-21.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10235 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-18.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10235 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8236 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7434 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11454 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3162 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6563 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6563 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasVentScrubber entities: - - uid: 925 - components: - - type: Transform - pos: 17.5,39.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6555 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1278 components: - type: Transform @@ -31502,7 +42945,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6556 + - 8509 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6524 - type: AtmosPipeColor color: '#990000FF' - uid: 1554 @@ -31516,6 +42970,34 @@ entities: - 6555 - type: AtmosPipeColor color: '#990000FF' + - uid: 1558 + components: + - type: Transform + pos: 30.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8509 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1624 + components: + - type: Transform + pos: 17.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6555 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1629 components: - type: Transform @@ -31527,28 +43009,60 @@ entities: - 6165 - type: AtmosPipeColor color: '#990000FF' - - uid: 2738 + - uid: 1752 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,24.5 + pos: 29.5,31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 6553 - type: AtmosPipeColor color: '#990000FF' - - uid: 2741 + - type: DeviceNetwork + deviceLists: + - 1602 + - uid: 1758 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,22.5 + pos: 29.5,22.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 6553 - type: AtmosPipeColor color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 1602 + - uid: 2073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 6526 + - uid: 2464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 6523 + - uid: 2802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 7434 - uid: 2874 components: - type: Transform @@ -31557,38 +43071,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6559 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2891 - components: - - type: Transform - pos: 35.5,19.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6552 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2984 - components: - - type: Transform - pos: 22.5,19.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6552 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3007 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6551 + - 8532 - type: AtmosPipeColor color: '#990000FF' - uid: 3038 @@ -31635,34 +43118,15 @@ entities: - 8222 - type: AtmosPipeColor color: '#990000FF' - - uid: 3082 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6563 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3092 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6563 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3094 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 6563 - type: AtmosPipeColor color: '#990000FF' - uid: 3097 @@ -31683,7 +43147,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6548 + - 3162 - type: AtmosPipeColor color: '#990000FF' - uid: 3118 @@ -31705,7 +43169,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6548 + - 3162 - type: AtmosPipeColor color: '#990000FF' - uid: 3145 @@ -31715,7 +43179,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6548 + - 3162 - type: AtmosPipeColor color: '#990000FF' - uid: 3184 @@ -31761,36 +43225,6 @@ entities: - 6564 - type: AtmosPipeColor color: '#990000FF' - - uid: 3263 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6562 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3266 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6562 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3277 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3315 components: - type: Transform @@ -31799,7 +43233,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6561 + - 56 - type: AtmosPipeColor color: '#990000FF' - uid: 3316 @@ -31820,7 +43254,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6561 + - 56 - type: AtmosPipeColor color: '#990000FF' - uid: 3348 @@ -31873,9 +43307,6 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 6542 - type: AtmosPipeColor color: '#990000FF' - uid: 3390 @@ -32181,11 +43612,11 @@ entities: - 6537 - type: AtmosPipeColor color: '#990000FF' - - uid: 3924 + - uid: 3922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,1.5 + rot: 1.5707963267948966 rad + pos: 49.5,4.5 parent: 2 - type: DeviceNetwork deviceLists: @@ -32211,7 +43642,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6559 + - 8532 - type: AtmosPipeColor color: '#990000FF' - uid: 3963 @@ -32241,9 +43672,6 @@ entities: rot: 1.5707963267948966 rad pos: 60.5,44.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8220 - type: AtmosPipeColor color: '#990000FF' - uid: 4035 @@ -32251,103 +43679,587 @@ entities: - type: Transform pos: 61.5,52.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8220 - type: AtmosPipeColor color: '#990000FF' - - uid: 4227 + - uid: 6644 components: - type: Transform - pos: 13.5,30.5 + pos: 18.5,23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6550 + - 8542 - type: AtmosPipeColor color: '#990000FF' - - uid: 4231 + - uid: 6651 + components: + - type: Transform + pos: 14.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8538 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8538 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6614 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6713 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6714 + components: + - type: Transform + pos: 44.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6735 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 6559 + - uid: 7733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 6524 + - uid: 8395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6558 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 6558 + - uid: 8507 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,22.5 + pos: 33.5,29.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 6550 - type: AtmosPipeColor color: '#990000FF' - - uid: 4245 + - type: DeviceNetwork + deviceLists: + - 8532 + - uid: 8510 + components: + - type: Transform + pos: 33.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 5210 + - uid: 8511 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,28.5 + pos: 27.5,38.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 6550 - type: AtmosPipeColor color: '#990000FF' - - uid: 4275 + - type: DeviceNetwork + deviceLists: + - 5210 + - uid: 8512 components: - type: Transform - pos: 24.5,34.5 + pos: 37.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 5210 + - uid: 8546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 7434 + - uid: 9809 + components: + - type: Transform + pos: 15.5,-59.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10238 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-64.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-64.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-64.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10240 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-64.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10240 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-61.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-57.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9878 + components: + - type: Transform + pos: 27.5,-57.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10241 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9879 + components: + - type: Transform + pos: 36.5,-57.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10241 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-48.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-44.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-36.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-42.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10232 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-40.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10093 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-28.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-32.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10129 + components: + - type: Transform + pos: 19.5,-24.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10236 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10130 + components: + - type: Transform + pos: 14.5,-24.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10236 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10131 + components: + - type: Transform + pos: 9.5,-24.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10236 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-26.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10234 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-26.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10234 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-26.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10234 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-21.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10235 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-18.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10235 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-2.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6553 + - 6563 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3162 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3162 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 - type: AtmosPipeColor color: '#990000FF' - proto: GasVolumePump entities: - - uid: 804 + - uid: 1648 components: - type: Transform - pos: 21.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 856 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,31.5 - parent: 2 - - uid: 1351 - components: - - type: Transform - pos: 16.5,37.5 + rot: 3.141592653589793 rad + pos: 18.5,34.5 parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 1697 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,27.5 - parent: 2 - - uid: 1708 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1755 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,25.5 - parent: 2 - uid: 2131 components: - type: Transform @@ -32355,28 +44267,25 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 2695 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,36.5 - parent: 2 -- proto: GoldenPlunger +- proto: GrassBattlemap entities: - - uid: 7733 + - uid: 10315 components: - type: Transform - pos: 62.5,6.5 - parent: 2 + pos: 29.5,-50.5 + parent: 3564 - proto: GravityGenerator entities: - - uid: 1723 + - uid: 1605 components: - type: Transform - pos: 46.5,40.5 + pos: 46.5,33.5 parent: 2 - - type: PowerCharge - charge: 100 + - uid: 9660 + components: + - type: Transform + pos: 16.5,-57.5 + parent: 3564 - proto: Grille entities: - uid: 70 @@ -32384,6 +44293,11 @@ entities: - type: Transform pos: 21.5,13.5 parent: 2 + - uid: 134 + components: + - type: Transform + pos: 68.5,-23.5 + parent: 2 - uid: 153 components: - type: Transform @@ -32464,11 +44378,6 @@ entities: - type: Transform pos: 2.5,-4.5 parent: 2 - - uid: 250 - components: - - type: Transform - pos: -7.5,4.5 - parent: 2 - uid: 262 components: - type: Transform @@ -32519,21 +44428,6 @@ entities: - 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: 359 - components: - - type: Transform - pos: -7.5,6.5 - parent: 2 - uid: 363 components: - type: Transform @@ -32564,11 +44458,6 @@ entities: - type: Transform pos: 43.5,-15.5 parent: 2 - - uid: 375 - components: - - type: Transform - pos: -5.5,6.5 - parent: 2 - uid: 384 components: - type: Transform @@ -32644,33 +44533,16 @@ entities: - type: Transform pos: 40.5,-15.5 parent: 2 - - uid: 457 + - uid: 464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,24.5 + pos: 21.5,24.5 parent: 2 - uid: 511 components: - type: Transform pos: 21.5,15.5 parent: 2 - - uid: 545 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,24.5 - parent: 2 - - uid: 553 - components: - - type: Transform - pos: 26.5,8.5 - parent: 2 - - uid: 554 - components: - - type: Transform - pos: 24.5,8.5 - parent: 2 - uid: 593 components: - type: Transform @@ -32696,49 +44568,11 @@ entities: - type: Transform pos: 3.5,36.5 parent: 2 - - uid: 674 - components: - - type: Transform - pos: 9.5,27.5 - parent: 2 - - uid: 676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,37.5 - parent: 2 - uid: 683 components: - type: Transform pos: 16.5,3.5 parent: 2 - - uid: 691 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,36.5 - parent: 2 - - uid: 692 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,35.5 - parent: 2 - - uid: 706 - components: - - type: Transform - pos: 62.5,59.5 - parent: 2 - - uid: 725 - components: - - type: Transform - pos: 10.5,27.5 - parent: 2 - - uid: 726 - components: - - type: Transform - pos: 25.5,8.5 - parent: 2 - uid: 727 components: - type: Transform @@ -32769,6 +44603,11 @@ entities: - type: Transform pos: 8.5,33.5 parent: 2 + - uid: 879 + components: + - type: Transform + pos: 68.5,-22.5 + parent: 2 - uid: 887 components: - type: Transform @@ -32964,80 +44803,50 @@ entities: - type: Transform pos: 41.5,-1.5 parent: 2 - - uid: 1442 + - uid: 1448 components: - type: Transform - pos: -1.5,-11.5 + pos: 68.5,-14.5 parent: 2 - - uid: 1443 + - uid: 1489 components: - type: Transform - pos: -1.5,-9.5 + pos: 37.5,-16.5 parent: 2 - - uid: 1452 + - uid: 1490 components: - type: Transform - pos: 26.5,-10.5 + pos: 36.5,-16.5 parent: 2 - - uid: 1459 + - uid: 1492 components: - type: Transform - pos: 30.5,-10.5 + pos: 35.5,-16.5 parent: 2 - - uid: 1460 + - uid: 1493 components: - type: Transform - pos: 29.5,-10.5 + pos: 34.5,-16.5 parent: 2 - - uid: 1476 + - uid: 1532 components: - type: Transform - pos: 25.5,-10.5 + pos: 65.5,-5.5 parent: 2 - - uid: 1500 + - uid: 1538 components: - type: Transform - pos: 28.5,-10.5 - parent: 2 - - uid: 1514 - components: - - type: Transform - pos: 32.5,-6.5 - parent: 2 - - uid: 1521 - components: - - type: Transform - pos: 32.5,-4.5 - parent: 2 - - uid: 1523 - components: - - type: Transform - pos: 32.5,-7.5 + pos: 51.5,18.5 parent: 2 - uid: 1580 components: - type: Transform pos: 0.5,31.5 parent: 2 - - uid: 1630 + - uid: 1637 components: - type: Transform - pos: 18.5,38.5 - parent: 2 - - uid: 1646 - components: - - type: Transform - pos: 19.5,38.5 - parent: 2 - - uid: 1750 - components: - - type: Transform - pos: 20.5,38.5 - parent: 2 - - uid: 1776 - components: - - type: Transform - pos: 8.5,27.5 + pos: 68.5,-13.5 parent: 2 - uid: 1820 components: @@ -33159,27 +44968,11 @@ entities: - type: Transform pos: 12.5,40.5 parent: 2 - - uid: 1911 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,24.5 - parent: 2 - - uid: 1924 - components: - - type: Transform - pos: 10.5,28.5 - parent: 2 - uid: 1947 components: - type: Transform pos: -0.5,36.5 parent: 2 - - uid: 1949 - components: - - type: Transform - pos: 10.5,20.5 - parent: 2 - uid: 2038 components: - type: Transform @@ -33230,11 +45023,6 @@ entities: - type: Transform pos: 50.5,38.5 parent: 2 - - uid: 2110 - components: - - type: Transform - pos: 8.5,21.5 - parent: 2 - uid: 2111 components: - type: Transform @@ -33255,30 +45043,10 @@ entities: - type: Transform pos: 8.5,17.5 parent: 2 - - uid: 2115 - components: - - type: Transform - pos: 31.5,17.5 - parent: 2 - - uid: 2116 - components: - - type: Transform - pos: 29.5,17.5 - parent: 2 - - uid: 2117 - components: - - type: Transform - pos: 10.5,21.5 - parent: 2 - - uid: 2118 - components: - - type: Transform - pos: 9.5,21.5 - parent: 2 - uid: 2119 components: - type: Transform - pos: 35.5,15.5 + pos: 33.5,-16.5 parent: 2 - uid: 2120 components: @@ -33290,10 +45058,10 @@ entities: - type: Transform pos: 51.5,-17.5 parent: 2 - - uid: 2138 + - uid: 2133 components: - type: Transform - pos: 30.5,17.5 + pos: 32.5,-16.5 parent: 2 - uid: 2145 components: @@ -33386,51 +45154,109 @@ entities: - type: Transform pos: 57.5,63.5 parent: 2 - - uid: 2673 - components: - - type: Transform - pos: 0.5,-9.5 - parent: 2 - - uid: 2674 - components: - - type: Transform - pos: 0.5,-11.5 - parent: 2 - uid: 2681 components: - type: Transform pos: -0.5,-11.5 parent: 2 - - uid: 2746 + - uid: 2782 components: - type: Transform - pos: 59.5,64.5 + pos: 68.5,-16.5 parent: 2 - - uid: 2747 + - uid: 2783 components: - type: Transform - pos: 59.5,65.5 + pos: 68.5,-20.5 parent: 2 - - uid: 2748 + - uid: 2784 components: - type: Transform - pos: 57.5,65.5 + pos: 68.5,-18.5 parent: 2 - - uid: 2749 + - uid: 3260 components: - type: Transform - pos: 57.5,64.5 + pos: 58.5,-18.5 + parent: 2 + - uid: 3261 + components: + - type: Transform + pos: 58.5,-19.5 + parent: 2 + - uid: 3262 + components: + - type: Transform + pos: 58.5,-20.5 + parent: 2 + - uid: 3263 + components: + - type: Transform + pos: 56.5,-18.5 + parent: 2 + - uid: 3264 + components: + - type: Transform + pos: 56.5,-19.5 + parent: 2 + - uid: 3265 + components: + - type: Transform + pos: 56.5,-20.5 + parent: 2 + - uid: 3573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-39.5 + parent: 3564 + - uid: 3574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-40.5 + parent: 3564 + - uid: 3575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-42.5 + parent: 3564 + - uid: 3576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-43.5 + parent: 3564 + - uid: 3588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-44.5 + parent: 3564 + - uid: 3700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-45.5 + parent: 3564 + - uid: 3923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,34.5 + parent: 2 + - uid: 3924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,34.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 @@ -33456,30 +45282,207 @@ entities: - type: Transform pos: 24.5,-16.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 + - uid: 4698 components: - type: Transform - pos: 53.5,59.5 + pos: 20.5,32.5 parent: 2 - - uid: 4498 + - uid: 4699 components: - type: Transform - pos: 54.5,59.5 + pos: 19.5,32.5 + parent: 2 + - uid: 4735 + components: + - type: Transform + pos: 39.5,51.5 + parent: 2 + - uid: 4736 + components: + - type: Transform + pos: 39.5,49.5 + parent: 2 + - uid: 5759 + components: + - type: Transform + pos: 18.5,32.5 + parent: 2 + - uid: 5999 + components: + - type: Transform + pos: 17.5,32.5 + parent: 2 + - uid: 6000 + components: + - type: Transform + pos: 22.5,32.5 + parent: 2 + - uid: 6344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,32.5 + parent: 2 + - uid: 6673 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 2 + - uid: 6814 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 2 + - uid: 6842 + components: + - type: Transform + pos: 23.5,32.5 + parent: 2 + - uid: 7153 + components: + - type: Transform + pos: 24.5,32.5 + parent: 2 + - uid: 7155 + components: + - type: Transform + pos: 25.5,32.5 + parent: 2 + - uid: 7156 + components: + - type: Transform + pos: 25.5,25.5 + parent: 2 + - uid: 7159 + components: + - type: Transform + pos: 25.5,24.5 + parent: 2 + - uid: 7160 + components: + - type: Transform + pos: 25.5,23.5 + parent: 2 + - uid: 7185 + components: + - type: Transform + pos: 25.5,22.5 + parent: 2 + - uid: 7226 + components: + - type: Transform + pos: 68.5,-19.5 + parent: 2 + - uid: 7227 + components: + - type: Transform + pos: 68.5,-15.5 + parent: 2 + - uid: 7234 + components: + - type: Transform + pos: 68.5,-21.5 + parent: 2 + - uid: 7235 + components: + - type: Transform + pos: 68.5,-17.5 + parent: 2 + - uid: 7390 + components: + - type: Transform + pos: 68.5,-24.5 + parent: 2 + - uid: 7391 + components: + - type: Transform + pos: 68.5,-25.5 + parent: 2 + - uid: 7392 + components: + - type: Transform + pos: 68.5,-26.5 + parent: 2 + - uid: 7393 + components: + - type: Transform + pos: 68.5,-27.5 + parent: 2 + - uid: 7394 + components: + - type: Transform + pos: 64.5,-19.5 + parent: 2 + - uid: 7406 + components: + - type: Transform + pos: 68.5,-28.5 + parent: 2 + - uid: 7407 + components: + - type: Transform + pos: 68.5,-29.5 + parent: 2 + - uid: 7408 + components: + - type: Transform + pos: 67.5,-29.5 + parent: 2 + - uid: 7410 + components: + - type: Transform + pos: 66.5,-29.5 + parent: 2 + - uid: 7460 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 2 + - uid: 7573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,26.5 + parent: 2 + - uid: 7656 + components: + - type: Transform + pos: 65.5,-29.5 + parent: 2 + - uid: 7748 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 + - uid: 7750 + components: + - type: Transform + pos: 64.5,-29.5 + parent: 2 + - uid: 7754 + components: + - type: Transform + pos: 21.5,22.5 + parent: 2 + - uid: 7777 + components: + - type: Transform + pos: 63.5,-29.5 + parent: 2 + - uid: 7790 + components: + - type: Transform + pos: 62.5,-29.5 + parent: 2 + - uid: 7824 + components: + - type: Transform + pos: 61.5,-29.5 parent: 2 - uid: 7830 components: @@ -33526,10 +45529,70 @@ entities: - type: Transform pos: 65.5,-6.5 parent: 2 - - uid: 7839 + - uid: 7840 components: - type: Transform - pos: 65.5,-5.5 + pos: 30.5,-16.5 + parent: 2 + - uid: 7841 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 2 + - uid: 7842 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 2 + - uid: 7843 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 2 + - uid: 7844 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 2 + - uid: 7845 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 2 + - uid: 7846 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 2 + - uid: 7847 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 2 + - uid: 7848 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 2 + - uid: 7849 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 2 + - uid: 7850 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 2 + - uid: 7851 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 2 + - uid: 7852 + components: + - type: Transform + pos: -0.5,-18.5 parent: 2 - uid: 7853 components: @@ -33556,6 +45619,31 @@ entities: - type: Transform pos: 19.5,-16.5 parent: 2 + - uid: 7858 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 2 + - uid: 7859 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 2 + - uid: 7860 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 2 + - uid: 7861 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 2 + - uid: 7862 + components: + - type: Transform + pos: -4.5,-19.5 + parent: 2 - uid: 7863 components: - type: Transform @@ -33631,6 +45719,91 @@ entities: - type: Transform pos: -0.5,-16.5 parent: 2 + - uid: 7878 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 2 + - uid: 7879 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 2 + - uid: 7880 + components: + - type: Transform + pos: -6.5,-19.5 + parent: 2 + - uid: 7881 + components: + - type: Transform + pos: 68.5,-12.5 + parent: 2 + - uid: 7882 + components: + - type: Transform + pos: -6.5,-18.5 + parent: 2 + - uid: 7883 + components: + - type: Transform + pos: -6.5,-17.5 + parent: 2 + - uid: 7884 + components: + - type: Transform + pos: -6.5,-16.5 + parent: 2 + - uid: 7885 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 2 + - uid: 7886 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 2 + - uid: 7887 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 2 + - uid: 7888 + components: + - type: Transform + pos: 68.5,-11.5 + parent: 2 + - uid: 7889 + components: + - type: Transform + pos: 68.5,-10.5 + parent: 2 + - uid: 7890 + components: + - type: Transform + pos: 68.5,-9.5 + parent: 2 + - uid: 7891 + components: + - type: Transform + pos: 68.5,-8.5 + parent: 2 + - uid: 7892 + components: + - type: Transform + pos: 68.5,-7.5 + parent: 2 + - uid: 7893 + components: + - type: Transform + pos: 68.5,-6.5 + parent: 2 + - uid: 7894 + components: + - type: Transform + pos: 68.5,-5.5 + parent: 2 - uid: 7895 components: - type: Transform @@ -33756,6 +45929,536 @@ entities: - type: Transform pos: -1.5,-7.5 parent: 2 + - uid: 7920 + components: + - type: Transform + pos: 68.5,-4.5 + parent: 2 + - uid: 7921 + components: + - type: Transform + pos: 68.5,-3.5 + parent: 2 + - uid: 7922 + components: + - type: Transform + pos: 68.5,-2.5 + parent: 2 + - uid: 7923 + components: + - type: Transform + pos: 68.5,-1.5 + parent: 2 + - uid: 7924 + components: + - type: Transform + pos: 68.5,-0.5 + parent: 2 + - uid: 7925 + components: + - type: Transform + pos: 68.5,0.5 + parent: 2 + - uid: 7926 + components: + - type: Transform + pos: 68.5,1.5 + parent: 2 + - uid: 7927 + components: + - type: Transform + pos: 68.5,2.5 + parent: 2 + - uid: 7928 + components: + - type: Transform + pos: 68.5,3.5 + parent: 2 + - uid: 7929 + components: + - type: Transform + pos: 67.5,3.5 + parent: 2 + - uid: 7930 + components: + - type: Transform + pos: 66.5,3.5 + parent: 2 + - uid: 7931 + components: + - type: Transform + pos: 65.5,3.5 + parent: 2 + - uid: 7932 + components: + - type: Transform + pos: 65.5,4.5 + parent: 2 + - uid: 7933 + components: + - type: Transform + pos: 64.5,4.5 + parent: 2 + - uid: 7934 + components: + - type: Transform + pos: 64.5,5.5 + parent: 2 + - uid: 7935 + components: + - type: Transform + pos: 64.5,6.5 + parent: 2 + - uid: 7936 + components: + - type: Transform + pos: 64.5,7.5 + parent: 2 + - uid: 7937 + components: + - type: Transform + pos: 64.5,8.5 + parent: 2 + - uid: 7938 + components: + - type: Transform + pos: 64.5,9.5 + parent: 2 + - uid: 7939 + components: + - type: Transform + pos: 64.5,10.5 + parent: 2 + - uid: 7940 + components: + - type: Transform + pos: 64.5,11.5 + parent: 2 + - uid: 7941 + components: + - type: Transform + pos: 64.5,12.5 + parent: 2 + - uid: 7942 + components: + - type: Transform + pos: 64.5,13.5 + parent: 2 + - uid: 7943 + components: + - type: Transform + pos: 64.5,14.5 + parent: 2 + - uid: 7944 + components: + - type: Transform + pos: 64.5,15.5 + parent: 2 + - uid: 7945 + components: + - type: Transform + pos: 64.5,16.5 + parent: 2 + - uid: 7946 + components: + - type: Transform + pos: 64.5,17.5 + parent: 2 + - uid: 7947 + components: + - type: Transform + pos: 64.5,18.5 + parent: 2 + - uid: 7948 + components: + - type: Transform + pos: 64.5,19.5 + parent: 2 + - uid: 7949 + components: + - type: Transform + pos: 64.5,20.5 + parent: 2 + - uid: 7950 + components: + - type: Transform + pos: 64.5,21.5 + parent: 2 + - uid: 7951 + components: + - type: Transform + pos: 64.5,22.5 + parent: 2 + - uid: 7952 + components: + - type: Transform + pos: 64.5,23.5 + parent: 2 + - uid: 7953 + components: + - type: Transform + pos: 64.5,24.5 + parent: 2 + - uid: 7954 + components: + - type: Transform + pos: 64.5,25.5 + parent: 2 + - uid: 7955 + components: + - type: Transform + pos: 64.5,26.5 + parent: 2 + - uid: 7956 + components: + - type: Transform + pos: 64.5,36.5 + parent: 2 + - uid: 7957 + components: + - type: Transform + pos: 63.5,36.5 + parent: 2 + - uid: 7958 + components: + - type: Transform + pos: 63.5,37.5 + parent: 2 + - uid: 7959 + components: + - type: Transform + pos: 63.5,38.5 + parent: 2 + - uid: 7960 + components: + - type: Transform + pos: 63.5,39.5 + parent: 2 + - uid: 7961 + components: + - type: Transform + pos: 63.5,40.5 + parent: 2 + - uid: 7962 + components: + - type: Transform + pos: 63.5,41.5 + parent: 2 + - uid: 7963 + components: + - type: Transform + pos: 63.5,42.5 + parent: 2 + - uid: 7964 + components: + - type: Transform + pos: 63.5,43.5 + parent: 2 + - uid: 7965 + components: + - type: Transform + pos: 63.5,44.5 + parent: 2 + - uid: 7966 + components: + - type: Transform + pos: 63.5,45.5 + parent: 2 + - uid: 7967 + components: + - type: Transform + pos: 63.5,46.5 + parent: 2 + - uid: 7968 + components: + - type: Transform + pos: 63.5,50.5 + parent: 2 + - uid: 7969 + components: + - type: Transform + pos: 63.5,51.5 + parent: 2 + - uid: 7970 + components: + - type: Transform + pos: 63.5,52.5 + parent: 2 + - uid: 7971 + components: + - type: Transform + pos: 63.5,53.5 + parent: 2 + - uid: 7972 + components: + - type: Transform + pos: 63.5,54.5 + parent: 2 + - uid: 7973 + components: + - type: Transform + pos: 63.5,55.5 + parent: 2 + - uid: 7974 + components: + - type: Transform + pos: 63.5,56.5 + parent: 2 + - uid: 7975 + components: + - type: Transform + pos: 63.5,57.5 + parent: 2 + - uid: 7976 + components: + - type: Transform + pos: 63.5,58.5 + parent: 2 + - uid: 7977 + components: + - type: Transform + pos: 64.5,63.5 + parent: 2 + - uid: 7978 + components: + - type: Transform + pos: 63.5,60.5 + parent: 2 + - uid: 7979 + components: + - type: Transform + pos: 62.5,63.5 + parent: 2 + - uid: 7980 + components: + - type: Transform + pos: 62.5,62.5 + parent: 2 + - uid: 7981 + components: + - type: Transform + pos: 62.5,61.5 + parent: 2 + - uid: 7982 + components: + - type: Transform + pos: 63.5,63.5 + parent: 2 + - uid: 7983 + components: + - type: Transform + pos: 63.5,62.5 + parent: 2 + - uid: 7984 + components: + - type: Transform + pos: 63.5,61.5 + parent: 2 + - uid: 7985 + components: + - type: Transform + pos: 65.5,63.5 + parent: 2 + - uid: 7986 + components: + - type: Transform + pos: 66.5,63.5 + parent: 2 + - uid: 7987 + components: + - type: Transform + pos: 67.5,63.5 + parent: 2 + - uid: 7988 + components: + - type: Transform + pos: 67.5,64.5 + parent: 2 + - uid: 7989 + components: + - type: Transform + pos: 67.5,65.5 + parent: 2 + - uid: 7990 + components: + - type: Transform + pos: 67.5,66.5 + parent: 2 + - uid: 7991 + components: + - type: Transform + pos: 67.5,67.5 + parent: 2 + - uid: 7992 + components: + - type: Transform + pos: 67.5,68.5 + parent: 2 + - uid: 7993 + components: + - type: Transform + pos: 67.5,69.5 + parent: 2 + - uid: 7994 + components: + - type: Transform + pos: 67.5,70.5 + parent: 2 + - uid: 7995 + components: + - type: Transform + pos: 66.5,70.5 + parent: 2 + - uid: 7996 + components: + - type: Transform + pos: 65.5,70.5 + parent: 2 + - uid: 7997 + components: + - type: Transform + pos: 64.5,70.5 + parent: 2 + - uid: 7998 + components: + - type: Transform + pos: 63.5,70.5 + parent: 2 + - uid: 7999 + components: + - type: Transform + pos: 62.5,70.5 + parent: 2 + - uid: 8000 + components: + - type: Transform + pos: 61.5,70.5 + parent: 2 + - uid: 8001 + components: + - type: Transform + pos: 60.5,70.5 + parent: 2 + - uid: 8002 + components: + - type: Transform + pos: 59.5,70.5 + parent: 2 + - uid: 8003 + components: + - type: Transform + pos: 58.5,70.5 + parent: 2 + - uid: 8004 + components: + - type: Transform + pos: 57.5,70.5 + parent: 2 + - uid: 8005 + components: + - type: Transform + pos: 56.5,70.5 + parent: 2 + - uid: 8006 + components: + - type: Transform + pos: 54.5,70.5 + parent: 2 + - uid: 8007 + components: + - type: Transform + pos: 53.5,70.5 + parent: 2 + - uid: 8008 + components: + - type: Transform + pos: 52.5,70.5 + parent: 2 + - uid: 8009 + components: + - type: Transform + pos: 51.5,70.5 + parent: 2 + - uid: 8010 + components: + - type: Transform + pos: 50.5,70.5 + parent: 2 + - uid: 8011 + components: + - type: Transform + pos: 49.5,70.5 + parent: 2 + - uid: 8012 + components: + - type: Transform + pos: 55.5,70.5 + parent: 2 + - uid: 8013 + components: + - type: Transform + pos: 49.5,69.5 + parent: 2 + - uid: 8014 + components: + - type: Transform + pos: 49.5,68.5 + parent: 2 + - uid: 8015 + components: + - type: Transform + pos: 49.5,67.5 + parent: 2 + - uid: 8016 + components: + - type: Transform + pos: 49.5,66.5 + parent: 2 + - uid: 8017 + components: + - type: Transform + pos: 49.5,65.5 + parent: 2 + - uid: 8018 + components: + - type: Transform + pos: 49.5,64.5 + parent: 2 + - uid: 8019 + components: + - type: Transform + pos: 49.5,63.5 + parent: 2 + - uid: 8020 + components: + - type: Transform + pos: 50.5,63.5 + parent: 2 + - uid: 8021 + components: + - type: Transform + pos: 51.5,63.5 + parent: 2 + - uid: 8022 + components: + - type: Transform + pos: 52.5,63.5 + parent: 2 + - uid: 8023 + components: + - type: Transform + pos: 53.5,63.5 + parent: 2 + - uid: 8024 + components: + - type: Transform + pos: 54.5,63.5 + parent: 2 + - uid: 8025 + components: + - type: Transform + pos: 6.5,-33.5 + parent: 3564 - uid: 8036 components: - type: Transform @@ -34672,842 +47375,1472 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,37.5 parent: 2 -- proto: GrilleSpawner - entities: - - uid: 7840 + - uid: 8214 components: - type: Transform - pos: 37.5,-16.5 + pos: 60.5,-29.5 parent: 2 - - uid: 7841 + - uid: 8215 components: - type: Transform - pos: 36.5,-16.5 + pos: 64.5,-20.5 parent: 2 - - uid: 7842 + - uid: 8216 components: - type: Transform - pos: 35.5,-16.5 + pos: 65.5,-20.5 parent: 2 - - uid: 7843 + - uid: 8217 components: - type: Transform - pos: 34.5,-16.5 + pos: 65.5,-21.5 parent: 2 - - uid: 7844 + - uid: 8297 components: - type: Transform - pos: 33.5,-16.5 + pos: 65.5,-22.5 parent: 2 - - uid: 7845 + - uid: 8298 components: - type: Transform - pos: 32.5,-16.5 + pos: 65.5,-23.5 parent: 2 - - uid: 7846 + - uid: 8301 components: - type: Transform - pos: 31.5,-16.5 + pos: 24.5,-1.5 parent: 2 - - uid: 7847 + - uid: 8308 components: - type: Transform - pos: 30.5,-16.5 + pos: 65.5,-24.5 parent: 2 - - uid: 7848 - components: - - type: Transform - pos: 29.5,-16.5 - parent: 2 - - uid: 7849 - components: - - type: Transform - pos: 27.5,-16.5 - parent: 2 - - uid: 7850 - components: - - type: Transform - pos: 26.5,-16.5 - parent: 2 - - uid: 7851 - components: - - type: Transform - pos: 25.5,-16.5 - parent: 2 - - uid: 7852 - components: - - type: Transform - pos: 28.5,-16.5 - parent: 2 - - uid: 7858 - components: - - type: Transform - pos: 18.5,-16.5 - parent: 2 - - uid: 7859 - components: - - type: Transform - pos: 17.5,-16.5 - parent: 2 - - uid: 7860 - components: - - type: Transform - pos: 16.5,-16.5 - parent: 2 - - uid: 7861 - components: - - type: Transform - pos: 15.5,-16.5 - parent: 2 - - uid: 7862 - components: - - type: Transform - pos: 14.5,-16.5 - parent: 2 - - uid: 7878 - components: - - type: Transform - pos: -0.5,-17.5 - parent: 2 - - uid: 7879 - components: - - type: Transform - pos: -0.5,-18.5 - parent: 2 - - uid: 7880 - components: - - type: Transform - pos: -0.5,-19.5 - parent: 2 - - uid: 7881 - components: - - type: Transform - pos: -1.5,-19.5 - parent: 2 - - uid: 7882 - components: - - type: Transform - pos: -2.5,-19.5 - parent: 2 - - uid: 7883 - components: - - type: Transform - pos: -3.5,-19.5 - parent: 2 - - uid: 7884 - components: - - type: Transform - pos: -4.5,-19.5 - parent: 2 - - uid: 7885 - components: - - type: Transform - pos: -3.5,-18.5 - parent: 2 - - uid: 7886 - components: - - type: Transform - pos: -5.5,-19.5 - parent: 2 - - uid: 7887 - components: - - type: Transform - pos: -6.5,-19.5 - parent: 2 - - uid: 7888 - components: - - type: Transform - pos: 68.5,-12.5 - parent: 2 - - uid: 7889 - components: - - type: Transform - pos: -6.5,-18.5 - parent: 2 - - uid: 7890 - components: - - type: Transform - pos: -6.5,-17.5 - parent: 2 - - uid: 7891 - components: - - type: Transform - pos: -6.5,-16.5 - parent: 2 - - uid: 7892 - components: - - type: Transform - pos: -6.5,-15.5 - parent: 2 - - uid: 7893 - components: - - type: Transform - pos: -6.5,-14.5 - parent: 2 - - uid: 7894 - components: - - type: Transform - pos: -6.5,-13.5 - parent: 2 - - uid: 7920 - components: - - type: Transform - pos: 68.5,-11.5 - parent: 2 - - uid: 7921 - components: - - type: Transform - pos: 68.5,-10.5 - parent: 2 - - uid: 7922 - components: - - type: Transform - pos: 68.5,-9.5 - parent: 2 - - uid: 7923 - components: - - type: Transform - pos: 68.5,-8.5 - parent: 2 - - uid: 7924 - components: - - type: Transform - pos: 68.5,-7.5 - parent: 2 - - uid: 7925 - components: - - type: Transform - pos: 68.5,-6.5 - parent: 2 - - uid: 7926 - components: - - type: Transform - pos: 68.5,-5.5 - parent: 2 - - uid: 7927 - components: - - type: Transform - pos: 68.5,-4.5 - parent: 2 - - uid: 7928 - components: - - type: Transform - pos: 68.5,-3.5 - parent: 2 - - uid: 7929 - components: - - type: Transform - pos: 68.5,-2.5 - parent: 2 - - uid: 7930 - components: - - type: Transform - pos: 68.5,-1.5 - parent: 2 - - uid: 7931 - components: - - type: Transform - pos: 68.5,-0.5 - parent: 2 - - uid: 7932 - components: - - type: Transform - pos: 68.5,0.5 - parent: 2 - - uid: 7933 - components: - - type: Transform - pos: 68.5,1.5 - parent: 2 - - uid: 7934 - components: - - type: Transform - pos: 68.5,2.5 - parent: 2 - - uid: 7935 - components: - - type: Transform - pos: 68.5,3.5 - parent: 2 - - uid: 7936 - components: - - type: Transform - pos: 67.5,3.5 - parent: 2 - - uid: 7937 - components: - - type: Transform - pos: 66.5,3.5 - parent: 2 - - uid: 7938 - components: - - type: Transform - pos: 65.5,3.5 - parent: 2 - - uid: 7939 - components: - - type: Transform - pos: 65.5,4.5 - parent: 2 - - uid: 7940 - components: - - type: Transform - pos: 64.5,4.5 - parent: 2 - - uid: 7941 - components: - - type: Transform - pos: 64.5,5.5 - parent: 2 - - uid: 7942 - components: - - type: Transform - pos: 64.5,6.5 - parent: 2 - - uid: 7943 - components: - - type: Transform - pos: 64.5,7.5 - parent: 2 - - uid: 7944 - components: - - type: Transform - pos: 64.5,8.5 - parent: 2 - - uid: 7945 - components: - - type: Transform - pos: 64.5,9.5 - parent: 2 - - uid: 7946 - components: - - type: Transform - pos: 64.5,10.5 - parent: 2 - - uid: 7947 - components: - - type: Transform - pos: 64.5,11.5 - parent: 2 - - uid: 7948 - components: - - type: Transform - pos: 64.5,12.5 - parent: 2 - - uid: 7949 - components: - - type: Transform - pos: 64.5,13.5 - parent: 2 - - uid: 7950 - components: - - type: Transform - pos: 64.5,14.5 - parent: 2 - - uid: 7951 - components: - - type: Transform - pos: 64.5,15.5 - parent: 2 - - uid: 7952 - components: - - type: Transform - pos: 64.5,16.5 - parent: 2 - - uid: 7953 - components: - - type: Transform - pos: 64.5,17.5 - parent: 2 - - uid: 7954 - components: - - type: Transform - pos: 64.5,18.5 - parent: 2 - - uid: 7955 - components: - - type: Transform - pos: 64.5,19.5 - parent: 2 - - uid: 7956 - components: - - type: Transform - pos: 64.5,20.5 - parent: 2 - - uid: 7957 - components: - - type: Transform - pos: 64.5,21.5 - parent: 2 - - uid: 7958 - components: - - type: Transform - pos: 64.5,22.5 - parent: 2 - - uid: 7959 - components: - - type: Transform - pos: 64.5,23.5 - parent: 2 - - uid: 7960 - components: - - type: Transform - pos: 64.5,24.5 - parent: 2 - - uid: 7961 - components: - - type: Transform - pos: 64.5,25.5 - parent: 2 - - uid: 7962 - components: - - type: Transform - pos: 64.5,26.5 - parent: 2 - - uid: 7963 - components: - - type: Transform - pos: 64.5,36.5 - parent: 2 - - uid: 7964 - components: - - type: Transform - pos: 63.5,36.5 - parent: 2 - - uid: 7965 - components: - - type: Transform - pos: 63.5,37.5 - parent: 2 - - uid: 7966 - components: - - type: Transform - pos: 63.5,38.5 - parent: 2 - - uid: 7967 - components: - - type: Transform - pos: 63.5,39.5 - parent: 2 - - uid: 7968 - components: - - type: Transform - pos: 63.5,40.5 - parent: 2 - - uid: 7969 - components: - - type: Transform - pos: 63.5,41.5 - parent: 2 - - uid: 7970 - components: - - type: Transform - pos: 63.5,42.5 - parent: 2 - - uid: 7971 - components: - - type: Transform - pos: 63.5,43.5 - parent: 2 - - uid: 7972 - components: - - type: Transform - pos: 63.5,44.5 - parent: 2 - - uid: 7973 - components: - - type: Transform - pos: 63.5,45.5 - parent: 2 - - uid: 7974 - components: - - type: Transform - pos: 63.5,46.5 - parent: 2 - - uid: 7975 - components: - - type: Transform - pos: 63.5,50.5 - parent: 2 - - uid: 7976 - components: - - type: Transform - pos: 63.5,51.5 - parent: 2 - - uid: 7977 - components: - - type: Transform - pos: 63.5,52.5 - parent: 2 - - uid: 7978 - components: - - type: Transform - pos: 63.5,53.5 - parent: 2 - - uid: 7979 - components: - - type: Transform - pos: 63.5,54.5 - parent: 2 - - uid: 7980 - components: - - type: Transform - pos: 63.5,55.5 - parent: 2 - - uid: 7981 - components: - - type: Transform - pos: 63.5,56.5 - parent: 2 - - uid: 7982 - components: - - type: Transform - pos: 63.5,57.5 - parent: 2 - - uid: 7983 - components: - - type: Transform - pos: 63.5,58.5 - parent: 2 - - uid: 7984 - components: - - type: Transform - pos: 64.5,63.5 - parent: 2 - - uid: 7985 - components: - - type: Transform - pos: 63.5,60.5 - parent: 2 - - uid: 7986 - components: - - type: Transform - pos: 62.5,63.5 - parent: 2 - - uid: 7987 - components: - - type: Transform - pos: 62.5,62.5 - parent: 2 - - uid: 7988 - components: - - type: Transform - pos: 62.5,61.5 - parent: 2 - - uid: 7989 - components: - - type: Transform - pos: 63.5,63.5 - parent: 2 - - uid: 7990 - components: - - type: Transform - pos: 63.5,62.5 - parent: 2 - - uid: 7991 - components: - - type: Transform - pos: 63.5,61.5 - parent: 2 - - uid: 7992 - components: - - type: Transform - pos: 65.5,63.5 - parent: 2 - - uid: 7993 - components: - - type: Transform - pos: 66.5,63.5 - parent: 2 - - uid: 7994 - components: - - type: Transform - pos: 67.5,63.5 - parent: 2 - - uid: 7995 - components: - - type: Transform - pos: 67.5,64.5 - parent: 2 - - uid: 7996 - components: - - type: Transform - pos: 67.5,65.5 - parent: 2 - - uid: 7997 - components: - - type: Transform - pos: 67.5,66.5 - parent: 2 - - uid: 7998 - components: - - type: Transform - pos: 67.5,67.5 - parent: 2 - - uid: 7999 - components: - - type: Transform - pos: 67.5,68.5 - parent: 2 - - uid: 8000 - components: - - type: Transform - pos: 67.5,69.5 - parent: 2 - - uid: 8001 - components: - - type: Transform - pos: 67.5,70.5 - parent: 2 - - uid: 8002 - components: - - type: Transform - pos: 66.5,70.5 - parent: 2 - - uid: 8003 - components: - - type: Transform - pos: 65.5,70.5 - parent: 2 - - uid: 8004 - components: - - type: Transform - pos: 64.5,70.5 - parent: 2 - - uid: 8005 - components: - - type: Transform - pos: 63.5,70.5 - parent: 2 - - uid: 8006 - components: - - type: Transform - pos: 62.5,70.5 - parent: 2 - - uid: 8007 - components: - - type: Transform - pos: 61.5,70.5 - parent: 2 - - uid: 8008 - components: - - type: Transform - pos: 60.5,70.5 - parent: 2 - - uid: 8009 - components: - - type: Transform - pos: 59.5,70.5 - parent: 2 - - uid: 8010 - components: - - type: Transform - pos: 58.5,70.5 - parent: 2 - - uid: 8011 - components: - - type: Transform - pos: 57.5,70.5 - parent: 2 - - uid: 8012 - components: - - type: Transform - pos: 56.5,70.5 - parent: 2 - - uid: 8013 - components: - - type: Transform - pos: 54.5,70.5 - parent: 2 - - uid: 8014 - components: - - type: Transform - pos: 53.5,70.5 - parent: 2 - - uid: 8015 - components: - - type: Transform - pos: 52.5,70.5 - parent: 2 - - uid: 8016 - components: - - type: Transform - pos: 51.5,70.5 - parent: 2 - - uid: 8017 - components: - - type: Transform - pos: 50.5,70.5 - parent: 2 - - uid: 8018 - components: - - type: Transform - pos: 49.5,70.5 - parent: 2 - - uid: 8019 - components: - - type: Transform - pos: 55.5,70.5 - parent: 2 - - uid: 8020 - components: - - type: Transform - pos: 49.5,69.5 - parent: 2 - - uid: 8021 - components: - - type: Transform - pos: 49.5,68.5 - parent: 2 - - uid: 8022 - components: - - type: Transform - pos: 49.5,67.5 - parent: 2 - - uid: 8023 - components: - - type: Transform - pos: 49.5,66.5 - parent: 2 - - uid: 8024 - components: - - type: Transform - pos: 49.5,65.5 - parent: 2 - - uid: 8025 - components: - - type: Transform - pos: 49.5,64.5 - parent: 2 - - uid: 8026 - components: - - type: Transform - pos: 49.5,63.5 - parent: 2 - - uid: 8027 - components: - - type: Transform - pos: 50.5,63.5 - parent: 2 - - uid: 8028 - components: - - type: Transform - pos: 51.5,63.5 - parent: 2 - - uid: 8029 - components: - - type: Transform - pos: 52.5,63.5 - parent: 2 - - uid: 8030 - components: - - type: Transform - pos: 53.5,63.5 - parent: 2 - - uid: 8031 - components: - - type: Transform - pos: 54.5,63.5 - parent: 2 -- proto: GunpetInstrument - entities: - uid: 8310 components: - type: Transform - pos: 52.5,21.5 + rot: 3.141592653589793 rad + pos: 46.5,26.5 + parent: 2 + - uid: 8311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,26.5 + parent: 2 + - uid: 8314 + components: + - type: Transform + pos: 65.5,-25.5 + parent: 2 + - uid: 8315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,26.5 + parent: 2 + - uid: 8495 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 2 + - uid: 8497 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 + - uid: 8499 + components: + - type: Transform + pos: 26.5,0.5 + parent: 2 + - uid: 8500 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 2 + - uid: 8501 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - uid: 8502 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 2 + - uid: 8842 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 3564 + - uid: 8843 + components: + - type: Transform + pos: 6.5,-31.5 + parent: 3564 + - uid: 8844 + components: + - type: Transform + pos: 6.5,-30.5 + parent: 3564 + - uid: 8845 + components: + - type: Transform + pos: 6.5,-29.5 + parent: 3564 + - uid: 8846 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 3564 + - uid: 8847 + components: + - type: Transform + pos: 6.5,-27.5 + parent: 3564 + - uid: 8848 + components: + - type: Transform + pos: 6.5,-26.5 + parent: 3564 + - uid: 8849 + components: + - type: Transform + pos: 6.5,-25.5 + parent: 3564 + - uid: 8850 + components: + - type: Transform + pos: 6.5,-24.5 + parent: 3564 + - uid: 8851 + components: + - type: Transform + pos: 6.5,-23.5 + parent: 3564 + - uid: 8852 + components: + - type: Transform + pos: 6.5,-22.5 + parent: 3564 + - uid: 8853 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 3564 + - uid: 8854 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 3564 + - uid: 8855 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 3564 + - uid: 8856 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 3564 + - uid: 8857 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 3564 + - uid: 8858 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 3564 + - uid: 8859 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 3564 + - uid: 8860 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 3564 + - uid: 8861 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 3564 + - uid: 8862 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 3564 + - uid: 8863 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 3564 + - uid: 8864 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 3564 + - uid: 8865 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 3564 + - uid: 8866 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 3564 + - uid: 8867 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 3564 + - uid: 8868 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 3564 + - uid: 8869 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 3564 + - uid: 8870 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 3564 + - uid: 8871 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 3564 + - uid: 8872 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 3564 + - uid: 8873 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 3564 + - uid: 8874 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 3564 + - uid: 8875 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 3564 + - uid: 8876 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 3564 + - uid: 8877 + components: + - type: Transform + pos: 6.5,0.5 + parent: 3564 + - uid: 8878 + components: + - type: Transform + pos: 5.5,0.5 + parent: 3564 + - uid: 8879 + components: + - type: Transform + pos: 4.5,0.5 + parent: 3564 + - uid: 8880 + components: + - type: Transform + pos: 3.5,0.5 + parent: 3564 + - uid: 8881 + components: + - type: Transform + pos: 2.5,0.5 + parent: 3564 + - uid: 8882 + components: + - type: Transform + pos: 1.5,0.5 + parent: 3564 + - uid: 8883 + components: + - type: Transform + pos: 0.5,0.5 + parent: 3564 + - uid: 8884 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 3564 + - uid: 8885 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 3564 + - uid: 8886 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 3564 + - uid: 8887 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 3564 + - uid: 8888 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 3564 + - uid: 8889 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 3564 + - uid: 8890 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 3564 + - uid: 8891 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 3564 + - uid: 8892 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 3564 + - uid: 8893 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 3564 + - uid: 8894 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 3564 + - uid: 8895 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 3564 + - uid: 8896 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 3564 + - uid: 8897 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 3564 + - uid: 8898 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 3564 + - uid: 8899 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 3564 + - uid: 8900 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 3564 + - uid: 8901 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 3564 + - uid: 8902 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 3564 + - uid: 8903 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 3564 + - uid: 8904 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 3564 + - uid: 8905 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 3564 + - uid: 8906 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 3564 + - uid: 8907 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 3564 + - uid: 8908 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 3564 + - uid: 8909 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 3564 + - uid: 8910 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 3564 + - uid: 8911 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 3564 + - uid: 8912 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 3564 + - uid: 8913 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 3564 + - uid: 8914 + components: + - type: Transform + pos: 0.5,-30.5 + parent: 3564 + - uid: 8915 + components: + - type: Transform + pos: 0.5,-31.5 + parent: 3564 + - uid: 8916 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 3564 + - uid: 8917 + components: + - type: Transform + pos: 0.5,-33.5 + parent: 3564 + - uid: 8918 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 3564 + - uid: 8919 + components: + - type: Transform + pos: 0.5,-35.5 + parent: 3564 + - uid: 8920 + components: + - type: Transform + pos: 0.5,-36.5 + parent: 3564 + - uid: 8921 + components: + - type: Transform + pos: 0.5,-37.5 + parent: 3564 + - uid: 8922 + components: + - type: Transform + pos: 0.5,-38.5 + parent: 3564 + - uid: 8923 + components: + - type: Transform + pos: 0.5,-39.5 + parent: 3564 + - uid: 8924 + components: + - type: Transform + pos: 0.5,-40.5 + parent: 3564 + - uid: 8925 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 3564 + - uid: 8926 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 3564 + - uid: 8927 + components: + - type: Transform + pos: 1.5,-42.5 + parent: 3564 + - uid: 8928 + components: + - type: Transform + pos: 0.5,-43.5 + parent: 3564 + - uid: 8929 + components: + - type: Transform + pos: 0.5,-44.5 + parent: 3564 + - uid: 8930 + components: + - type: Transform + pos: 0.5,-45.5 + parent: 3564 + - uid: 8931 + components: + - type: Transform + pos: 0.5,-46.5 + parent: 3564 + - uid: 8932 + components: + - type: Transform + pos: 0.5,-47.5 + parent: 3564 + - uid: 8933 + components: + - type: Transform + pos: 0.5,-48.5 + parent: 3564 + - uid: 8934 + components: + - type: Transform + pos: 0.5,-49.5 + parent: 3564 + - uid: 8935 + components: + - type: Transform + pos: 0.5,-50.5 + parent: 3564 + - uid: 8936 + components: + - type: Transform + pos: 0.5,-51.5 + parent: 3564 + - uid: 8937 + components: + - type: Transform + pos: 0.5,-52.5 + parent: 3564 + - uid: 8938 + components: + - type: Transform + pos: 0.5,-53.5 + parent: 3564 + - uid: 8939 + components: + - type: Transform + pos: 0.5,-54.5 + parent: 3564 + - uid: 8940 + components: + - type: Transform + pos: 0.5,-55.5 + parent: 3564 + - uid: 8941 + components: + - type: Transform + pos: 0.5,-56.5 + parent: 3564 + - uid: 8942 + components: + - type: Transform + pos: 0.5,-57.5 + parent: 3564 + - uid: 8943 + components: + - type: Transform + pos: 0.5,-58.5 + parent: 3564 + - uid: 8944 + components: + - type: Transform + pos: 0.5,-59.5 + parent: 3564 + - uid: 8945 + components: + - type: Transform + pos: 0.5,-60.5 + parent: 3564 + - uid: 8946 + components: + - type: Transform + pos: 0.5,-61.5 + parent: 3564 + - uid: 8947 + components: + - type: Transform + pos: 0.5,-62.5 + parent: 3564 + - uid: 8948 + components: + - type: Transform + pos: 0.5,-63.5 + parent: 3564 + - uid: 8949 + components: + - type: Transform + pos: 0.5,-64.5 + parent: 3564 + - uid: 8950 + components: + - type: Transform + pos: 0.5,-65.5 + parent: 3564 + - uid: 8951 + components: + - type: Transform + pos: 0.5,-66.5 + parent: 3564 + - uid: 8952 + components: + - type: Transform + pos: 0.5,-67.5 + parent: 3564 + - uid: 8953 + components: + - type: Transform + pos: 0.5,-68.5 + parent: 3564 + - uid: 8954 + components: + - type: Transform + pos: 0.5,-69.5 + parent: 3564 + - uid: 8955 + components: + - type: Transform + pos: 0.5,-70.5 + parent: 3564 + - uid: 8956 + components: + - type: Transform + pos: 0.5,-71.5 + parent: 3564 + - uid: 8957 + components: + - type: Transform + pos: 0.5,-72.5 + parent: 3564 + - uid: 8958 + components: + - type: Transform + pos: 0.5,-73.5 + parent: 3564 + - uid: 8959 + components: + - type: Transform + pos: 0.5,-74.5 + parent: 3564 + - uid: 8960 + components: + - type: Transform + pos: 0.5,-75.5 + parent: 3564 + - uid: 8961 + components: + - type: Transform + pos: 0.5,-76.5 + parent: 3564 + - uid: 8962 + components: + - type: Transform + pos: 0.5,-77.5 + parent: 3564 + - uid: 8963 + components: + - type: Transform + pos: 0.5,-78.5 + parent: 3564 + - uid: 8964 + components: + - type: Transform + pos: 0.5,-79.5 + parent: 3564 + - uid: 8965 + components: + - type: Transform + pos: 0.5,-80.5 + parent: 3564 + - uid: 8966 + components: + - type: Transform + pos: 0.5,-81.5 + parent: 3564 + - uid: 8967 + components: + - type: Transform + pos: 0.5,-82.5 + parent: 3564 + - uid: 8968 + components: + - type: Transform + pos: 0.5,-83.5 + parent: 3564 + - uid: 8969 + components: + - type: Transform + pos: 0.5,-84.5 + parent: 3564 + - uid: 8970 + components: + - type: Transform + pos: 0.5,-85.5 + parent: 3564 + - uid: 8971 + components: + - type: Transform + pos: 0.5,-86.5 + parent: 3564 + - uid: 8972 + components: + - type: Transform + pos: 0.5,-88.5 + parent: 3564 + - uid: 8973 + components: + - type: Transform + pos: 0.5,-89.5 + parent: 3564 + - uid: 8974 + components: + - type: Transform + pos: 0.5,-90.5 + parent: 3564 + - uid: 8975 + components: + - type: Transform + pos: 0.5,-91.5 + parent: 3564 + - uid: 8976 + components: + - type: Transform + pos: 0.5,-92.5 + parent: 3564 + - uid: 8977 + components: + - type: Transform + pos: 0.5,-87.5 + parent: 3564 + - uid: 8978 + components: + - type: Transform + pos: 1.5,-92.5 + parent: 3564 + - uid: 8979 + components: + - type: Transform + pos: 2.5,-92.5 + parent: 3564 + - uid: 8980 + components: + - type: Transform + pos: 3.5,-92.5 + parent: 3564 + - uid: 8981 + components: + - type: Transform + pos: 4.5,-92.5 + parent: 3564 + - uid: 8982 + components: + - type: Transform + pos: 5.5,-92.5 + parent: 3564 + - uid: 8983 + components: + - type: Transform + pos: 6.5,-92.5 + parent: 3564 + - uid: 8984 + components: + - type: Transform + pos: 6.5,-91.5 + parent: 3564 + - uid: 8985 + components: + - type: Transform + pos: 6.5,-90.5 + parent: 3564 + - uid: 8986 + components: + - type: Transform + pos: 6.5,-89.5 + parent: 3564 + - uid: 8987 + components: + - type: Transform + pos: 6.5,-88.5 + parent: 3564 + - uid: 8988 + components: + - type: Transform + pos: 6.5,-87.5 + parent: 3564 + - uid: 8989 + components: + - type: Transform + pos: 6.5,-86.5 + parent: 3564 + - uid: 8990 + components: + - type: Transform + pos: 6.5,-85.5 + parent: 3564 + - uid: 8991 + components: + - type: Transform + pos: 6.5,-84.5 + parent: 3564 + - uid: 8992 + components: + - type: Transform + pos: 6.5,-83.5 + parent: 3564 + - uid: 8993 + components: + - type: Transform + pos: 6.5,-82.5 + parent: 3564 + - uid: 8994 + components: + - type: Transform + pos: 6.5,-81.5 + parent: 3564 + - uid: 8995 + components: + - type: Transform + pos: 6.5,-80.5 + parent: 3564 + - uid: 8996 + components: + - type: Transform + pos: 5.5,-80.5 + parent: 3564 + - uid: 8997 + components: + - type: Transform + pos: 6.5,-79.5 + parent: 3564 + - uid: 8998 + components: + - type: Transform + pos: 6.5,-78.5 + parent: 3564 + - uid: 8999 + components: + - type: Transform + pos: 6.5,-77.5 + parent: 3564 + - uid: 9000 + components: + - type: Transform + pos: 6.5,-76.5 + parent: 3564 + - uid: 9001 + components: + - type: Transform + pos: 6.5,-75.5 + parent: 3564 + - uid: 9002 + components: + - type: Transform + pos: 6.5,-74.5 + parent: 3564 + - uid: 9003 + components: + - type: Transform + pos: 6.5,-73.5 + parent: 3564 + - uid: 9004 + components: + - type: Transform + pos: 6.5,-72.5 + parent: 3564 + - uid: 9005 + components: + - type: Transform + pos: 5.5,-72.5 + parent: 3564 + - uid: 9006 + components: + - type: Transform + pos: 6.5,-71.5 + parent: 3564 + - uid: 9007 + components: + - type: Transform + pos: 6.5,-70.5 + parent: 3564 + - uid: 9008 + components: + - type: Transform + pos: 6.5,-69.5 + parent: 3564 + - uid: 9009 + components: + - type: Transform + pos: 6.5,-68.5 + parent: 3564 + - uid: 9010 + components: + - type: Transform + pos: 6.5,-67.5 + parent: 3564 + - uid: 9011 + components: + - type: Transform + pos: 6.5,-66.5 + parent: 3564 + - uid: 9012 + components: + - type: Transform + pos: 6.5,-65.5 + parent: 3564 + - uid: 9013 + components: + - type: Transform + pos: 6.5,-64.5 + parent: 3564 + - uid: 9014 + components: + - type: Transform + pos: 6.5,-63.5 + parent: 3564 + - uid: 9015 + components: + - type: Transform + pos: 6.5,-62.5 + parent: 3564 + - uid: 9016 + components: + - type: Transform + pos: 6.5,-61.5 + parent: 3564 + - uid: 9017 + components: + - type: Transform + pos: 6.5,-60.5 + parent: 3564 + - uid: 9018 + components: + - type: Transform + pos: 6.5,-59.5 + parent: 3564 + - uid: 9019 + components: + - type: Transform + pos: 6.5,-58.5 + parent: 3564 + - uid: 9020 + components: + - type: Transform + pos: 6.5,-57.5 + parent: 3564 + - uid: 9021 + components: + - type: Transform + pos: 6.5,-56.5 + parent: 3564 + - uid: 9022 + components: + - type: Transform + pos: 6.5,-55.5 + parent: 3564 + - uid: 9023 + components: + - type: Transform + pos: 6.5,-53.5 + parent: 3564 + - uid: 9024 + components: + - type: Transform + pos: 6.5,-52.5 + parent: 3564 + - uid: 9025 + components: + - type: Transform + pos: 6.5,-51.5 + parent: 3564 + - uid: 9026 + components: + - type: Transform + pos: 6.5,-50.5 + parent: 3564 + - uid: 9027 + components: + - type: Transform + pos: 6.5,-49.5 + parent: 3564 + - uid: 9028 + components: + - type: Transform + pos: 6.5,-48.5 + parent: 3564 + - uid: 9029 + components: + - type: Transform + pos: 6.5,-47.5 + parent: 3564 + - uid: 9030 + components: + - type: Transform + pos: 6.5,-54.5 + parent: 3564 + - uid: 9031 + components: + - type: Transform + pos: 5.5,-55.5 + parent: 3564 + - uid: 9032 + components: + - type: Transform + pos: 26.5,-30.5 + parent: 3564 + - uid: 9033 + components: + - type: Transform + pos: 19.5,-44.5 + parent: 3564 + - uid: 9034 + components: + - type: Transform + pos: 19.5,-45.5 + parent: 3564 + - uid: 9035 + components: + - type: Transform + pos: 26.5,-44.5 + parent: 3564 + - uid: 9036 + components: + - type: Transform + pos: 26.5,-45.5 + parent: 3564 + - uid: 9037 + components: + - type: Transform + pos: 26.5,-48.5 + parent: 3564 + - uid: 9038 + components: + - type: Transform + pos: 26.5,-49.5 + parent: 3564 + - uid: 9039 + components: + - type: Transform + pos: 19.5,-48.5 + parent: 3564 + - uid: 9040 + components: + - type: Transform + pos: 19.5,-49.5 + parent: 3564 + - uid: 9041 + components: + - type: Transform + pos: 19.5,-52.5 + parent: 3564 + - uid: 9042 + components: + - type: Transform + pos: 19.5,-53.5 + parent: 3564 + - uid: 9043 + components: + - type: Transform + pos: 26.5,-52.5 + parent: 3564 + - uid: 9044 + components: + - type: Transform + pos: 26.5,-53.5 + parent: 3564 + - uid: 9045 + components: + - type: Transform + pos: 19.5,-34.5 + parent: 3564 + - uid: 9046 + components: + - type: Transform + pos: 19.5,-33.5 + parent: 3564 + - uid: 9047 + components: + - type: Transform + pos: 26.5,-32.5 + parent: 3564 + - uid: 9048 + components: + - type: Transform + pos: 26.5,-33.5 + parent: 3564 + - uid: 9049 + components: + - type: Transform + pos: 26.5,-36.5 + parent: 3564 + - uid: 9050 + components: + - type: Transform + pos: 26.5,-37.5 + parent: 3564 + - uid: 9051 + components: + - type: Transform + pos: 19.5,-36.5 + parent: 3564 + - uid: 9052 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 3564 + - uid: 9053 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 3564 + - uid: 9054 + components: + - type: Transform + pos: 26.5,-25.5 + parent: 3564 + - uid: 9055 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 3564 + - uid: 9056 + components: + - type: Transform + pos: 26.5,-27.5 + parent: 3564 + - uid: 9057 + components: + - type: Transform + pos: 25.5,-24.5 + parent: 3564 + - uid: 9058 + components: + - type: Transform + pos: 20.5,-24.5 + parent: 3564 + - uid: 9059 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 3564 + - uid: 9060 + components: + - type: Transform + pos: 20.5,-28.5 + parent: 3564 + - uid: 9061 + components: + - type: Transform + pos: 20.5,-29.5 + parent: 3564 + - uid: 9062 + components: + - type: Transform + pos: 20.5,-30.5 + parent: 3564 + - uid: 9063 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 3564 + - uid: 9065 + components: + - type: Transform + pos: 20.5,-56.5 + parent: 3564 + - uid: 9066 + components: + - type: Transform + pos: 21.5,-56.5 + parent: 3564 + - uid: 9067 + components: + - type: Transform + pos: 25.5,-56.5 + parent: 3564 + - uid: 9068 + components: + - type: Transform + pos: 24.5,-56.5 + parent: 3564 + - uid: 9069 + components: + - type: Transform + pos: 20.5,-62.5 + parent: 3564 + - uid: 9070 + components: + - type: Transform + pos: 21.5,-62.5 + parent: 3564 + - uid: 9071 + components: + - type: Transform + pos: 24.5,-62.5 + parent: 3564 + - uid: 9072 + components: + - type: Transform + pos: 25.5,-62.5 + parent: 3564 + - uid: 9073 + components: + - type: Transform + pos: 26.5,-63.5 + parent: 3564 + - uid: 9074 + components: + - type: Transform + pos: 26.5,-64.5 + parent: 3564 + - uid: 9075 + components: + - type: Transform + pos: 26.5,-65.5 + parent: 3564 + - uid: 9076 + components: + - type: Transform + pos: 26.5,-67.5 + parent: 3564 + - uid: 9077 + components: + - type: Transform + pos: 26.5,-68.5 + parent: 3564 + - uid: 9078 + components: + - type: Transform + pos: 26.5,-69.5 + parent: 3564 + - uid: 9133 + components: + - type: Transform + pos: 10.5,-46.5 + parent: 3564 + - uid: 9136 + components: + - type: Transform + pos: 7.5,-46.5 + parent: 3564 + - uid: 9727 + components: + - type: Transform + pos: 31.5,-18.5 + parent: 3564 + - uid: 9730 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 3564 + - uid: 9756 + components: + - type: Transform + pos: 26.5,-40.5 + parent: 3564 + - uid: 9757 + components: + - type: Transform + pos: 26.5,-41.5 + parent: 3564 + - uid: 9925 + components: + - type: Transform + pos: 65.5,-26.5 + parent: 2 + - uid: 10614 + components: + - type: Transform + pos: 65.5,-27.5 + parent: 2 + - uid: 11213 + components: + - type: Transform + pos: 50.5,-1.5 + parent: 2 + - uid: 11219 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 2 + - uid: 11220 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 2 + - uid: 11369 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 2 + - uid: 11540 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 2 + - uid: 11541 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 2 + - uid: 11542 + components: + - type: Transform + pos: 24.5,-5.5 + parent: 2 + - uid: 11543 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 2 + - uid: 11544 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 2 + - uid: 11545 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 2 + - uid: 11546 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 2 + - uid: 11547 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 2 + - uid: 11548 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 2 + - uid: 11557 + components: + - type: Transform + pos: 21.5,25.5 + parent: 2 + - uid: 11558 + components: + - type: Transform + pos: 23.5,26.5 + parent: 2 +- proto: GunpetInstrument + entities: + - uid: 11127 + components: + - type: Transform + pos: 54.5,20.5 parent: 2 - proto: GunSafeDisabler entities: - - uid: 1002 + - uid: 9698 components: - type: Transform - pos: 41.5,-4.5 - parent: 2 + pos: 32.5,-57.5 + parent: 3564 - proto: GunSafeLaserCarbine entities: - - uid: 1363 + - uid: 10445 components: - type: Transform - pos: 43.5,-7.5 - parent: 2 -- proto: GunSafePistolMk58 - entities: - - uid: 1365 - components: - - type: Transform - pos: 41.5,-7.5 - parent: 2 + pos: 33.5,-57.5 + parent: 3564 - proto: GunSafeRifleLecter entities: - - uid: 960 + - uid: 10448 components: - type: Transform - pos: 42.5,-7.5 - parent: 2 -- proto: GunSafeShotgunEnforcer - entities: - - uid: 1260 - components: - - type: Transform - pos: 43.5,-4.5 - parent: 2 + pos: 36.5,-57.5 + parent: 3564 - proto: GunSafeShotgunKammerer entities: - - uid: 1298 + - uid: 10447 components: - type: Transform - pos: 44.5,-7.5 - parent: 2 + pos: 35.5,-57.5 + parent: 3564 - proto: GunSafeSubMachineGunDrozd entities: - - uid: 1345 + - uid: 10446 components: - type: Transform - pos: 42.5,-4.5 - parent: 2 -- proto: GunSafeSubMachineGunWt550 - entities: - - uid: 7652 - components: - - type: Transform - pos: 44.5,-4.5 - parent: 2 + pos: 34.5,-57.5 + parent: 3564 - proto: Handcuffs entities: + - uid: 1104 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 - uid: 1509 components: - type: Transform pos: 10.5,-8.5 parent: 2 - - uid: 2224 + - uid: 1593 components: - type: Transform - pos: 33.5,-6.5 + pos: 35.5,-2.5 parent: 2 - - uid: 2281 + - uid: 1762 components: - type: Transform - pos: 33.5,-6.5 + pos: 34.5,-2.5 parent: 2 - - uid: 7120 + - uid: 1767 components: - type: Transform - pos: 33.5,-5.5 + pos: 35.5,-2.5 parent: 2 - - uid: 7203 + - uid: 1811 components: - type: Transform - pos: 33.5,-5.5 + pos: 34.5,-2.5 parent: 2 - - uid: 7258 + - uid: 1813 components: - type: Transform - pos: 33.5,-4.5 - parent: 2 - - uid: 7259 - components: - - type: Transform - pos: 33.5,-4.5 + pos: 33.5,-2.5 parent: 2 - uid: 7511 components: @@ -35524,6 +48857,203 @@ entities: - type: Transform pos: 48.5,19.5 parent: 2 + - uid: 10435 + components: + - type: Transform + pos: 30.5,-60.5 + parent: 3564 + - uid: 10436 + components: + - type: Transform + pos: 30.5,-60.5 + parent: 3564 + - uid: 10437 + components: + - type: Transform + pos: 30.5,-60.5 + parent: 3564 + - uid: 10438 + components: + - type: Transform + pos: 30.5,-61.5 + parent: 3564 + - uid: 10439 + components: + - type: Transform + pos: 30.5,-61.5 + parent: 3564 + - uid: 10440 + components: + - type: Transform + pos: 30.5,-61.5 + parent: 3564 + - uid: 10625 + components: + - type: Transform + pos: 36.5,-27.5 + parent: 3564 + - uid: 10626 + components: + - type: Transform + pos: 36.5,-27.5 + parent: 3564 + - uid: 10627 + components: + - type: Transform + pos: 36.5,-27.5 + parent: 3564 + - uid: 10628 + components: + - type: Transform + pos: 36.5,-27.5 + parent: 3564 + - uid: 10629 + components: + - type: Transform + pos: 36.5,-28.5 + parent: 3564 + - uid: 10630 + components: + - type: Transform + pos: 36.5,-28.5 + parent: 3564 + - uid: 10631 + components: + - type: Transform + pos: 36.5,-28.5 + parent: 3564 + - uid: 10632 + components: + - type: Transform + pos: 36.5,-28.5 + parent: 3564 + - uid: 10633 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10634 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10635 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10636 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10637 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10638 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10639 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10640 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10641 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10642 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10643 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10644 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10645 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10646 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10647 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10648 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10649 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10650 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10651 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10652 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10653 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10654 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10655 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10656 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 +- proto: HandheldHealthAnalyzer + entities: + - uid: 10341 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 3564 - proto: HandheldHealthAnalyzerUnpowered entities: - uid: 7446 @@ -35533,10 +49063,17 @@ entities: parent: 2 - proto: HandLabeler entities: - - uid: 7421 + - uid: 60 components: - type: Transform - pos: 31.5,10.5 + pos: 29.5,8.5 + parent: 2 +- proto: HandTeleporter + entities: + - uid: 11347 + components: + - type: Transform + pos: -5.5,5.5 parent: 2 - proto: HeatExchanger entities: @@ -35638,11 +49175,189 @@ entities: rot: 3.141592653589793 rad pos: 13.5,47.5 parent: 2 - - uid: 1644 + - uid: 7568 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,38.5 + pos: 17.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 7572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,30.5 + parent: 2 + - uid: 7591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,29.5 + parent: 2 + - uid: 7592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,28.5 + parent: 2 + - uid: 7593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,29.5 + parent: 2 + - uid: 7598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,30.5 + parent: 2 + - uid: 7602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 7603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,29.5 + parent: 2 + - uid: 7606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,30.5 + parent: 2 + - uid: 7608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,29.5 + parent: 2 + - uid: 7610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,28.5 + parent: 2 + - uid: 7611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,28.5 + parent: 2 + - uid: 7613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,28.5 + parent: 2 + - uid: 7614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,28.5 + parent: 2 + - uid: 7632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,30.5 + parent: 2 + - uid: 7633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,30.5 + parent: 2 + - uid: 7634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,30.5 + parent: 2 + - uid: 7635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,30.5 + parent: 2 + - uid: 7636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,31.5 + parent: 2 + - uid: 7637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,31.5 + parent: 2 + - uid: 7638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,31.5 + parent: 2 + - uid: 7639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,31.5 + parent: 2 + - uid: 7640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,31.5 + parent: 2 + - uid: 7642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,27.5 + parent: 2 + - uid: 7643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,27.5 + parent: 2 + - uid: 7644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,27.5 + parent: 2 + - uid: 7645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,27.5 + parent: 2 + - uid: 7646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,27.5 + parent: 2 + - uid: 7647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,27.5 + parent: 2 + - uid: 7648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,27.5 parent: 2 - proto: HeatExchangerBend entities: @@ -35659,14 +49374,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - uid: 800 components: - type: Transform @@ -35747,408 +49454,370 @@ entities: - type: Transform pos: 12.5,47.5 parent: 2 - - uid: 1642 + - uid: 7487 components: - type: Transform - pos: 21.5,39.5 + pos: 25.5,31.5 parent: 2 - - type: AtmosPipeColor - color: '#947507FF' + - uid: 7489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,30.5 + parent: 2 + - uid: 7500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,27.5 + parent: 2 + - uid: 7535 + components: + - type: Transform + pos: 25.5,28.5 + parent: 2 + - uid: 7536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,31.5 + parent: 2 + - uid: 7553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,28.5 + parent: 2 + - uid: 7563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,28.5 + parent: 2 + - uid: 7565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,30.5 + parent: 2 + - uid: 7566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,28.5 + parent: 2 + - uid: 7641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,27.5 + parent: 2 +- proto: HighSecArmoryLocked + entities: + - uid: 10396 + components: + - type: Transform + pos: 31.5,-58.5 + parent: 3564 + - uid: 10397 + components: + - type: Transform + pos: 31.5,-59.5 + parent: 3564 - proto: HighSecCommandLocked entities: - - uid: 2171 + - uid: 1896 components: - type: Transform - pos: 59.5,6.5 + pos: 36.5,54.5 parent: 2 - - uid: 2787 - components: - - type: Transform - pos: 11.5,-11.5 - parent: 2 -- proto: HolopadAiCore - entities: - - uid: 7782 - components: - - type: Transform - pos: 45.5,49.5 - parent: 2 -- proto: HolopadAiUpload - entities: - - uid: 7783 - components: - - type: Transform - pos: 32.5,53.5 - parent: 2 -- proto: HolopadCargoBay - entities: - - uid: 7796 - components: - - type: Transform - pos: 12.5,24.5 - parent: 2 -- proto: HolopadCargoFront - entities: - - uid: 7797 - components: - - type: Transform - pos: 17.5,24.5 - parent: 2 -- proto: HolopadCommandBridge - entities: - - uid: 7793 - components: - - type: Transform - pos: 57.5,31.5 - parent: 2 -- proto: HolopadCommandBridgeHallway +- proto: HolopadAiMain entities: - uid: 7792 components: - type: Transform - pos: 49.5,33.5 + pos: 45.5,50.5 parent: 2 +- proto: HolopadAiUpload + entities: + - uid: 7793 + components: + - type: Transform + pos: 31.5,54.5 + parent: 2 +- proto: HolopadCommandBridge + entities: + - uid: 7546 + components: + - type: Transform + pos: 57.5,31.5 + parent: 2 + - type: Label + currentLabel: Command - Control Room - proto: HolopadCommandCaptain entities: - - uid: 7795 + - uid: 7545 components: - type: Transform - pos: 59.5,21.5 - parent: 2 -- proto: HolopadCommandCe - entities: - - uid: 7798 - components: - - type: Transform - pos: 44.5,32.5 - parent: 2 -- proto: HolopadCommandCmo - entities: - - uid: 7801 - components: - - type: Transform - pos: 23.5,15.5 + pos: 57.5,22.5 parent: 2 + - type: Label + currentLabel: Command - Secure Storage - proto: HolopadCommandHop entities: - - uid: 7810 + - uid: 2392 components: - type: Transform - pos: 43.5,28.5 + pos: 45.5,27.5 parent: 2 -- proto: HolopadCommandQm +- proto: HolopadEngineeringAME entities: - - uid: 7817 + - uid: 7786 components: - type: Transform - pos: 15.5,31.5 - parent: 2 -- proto: HolopadCommandRd - entities: - - uid: 7818 - components: - - type: Transform - pos: 52.5,13.5 - parent: 2 -- proto: HolopadCommandVault - entities: - - uid: 7826 - components: - - type: Transform - pos: 60.5,7.5 - parent: 2 -- proto: HolopadEngineeringAtmosFront - entities: - - uid: 7788 - components: - - type: Transform - pos: 29.5,26.5 + pos: 45.5,36.5 parent: 2 - proto: HolopadEngineeringAtmosMain entities: - - uid: 7789 + - uid: 7782 components: - type: Transform - pos: 21.5,34.5 + pos: 28.5,-8.5 parent: 2 - proto: HolopadEngineeringAtmosTeg entities: - - uid: 7823 + - uid: 1562 components: - type: Transform - pos: 15.5,37.5 - parent: 2 -- proto: HolopadEngineeringFront - entities: - - uid: 7805 - components: - - type: Transform - pos: 30.5,23.5 + pos: 20.5,33.5 parent: 2 - proto: HolopadEngineeringMain entities: - - uid: 7806 + - uid: 5342 components: - type: Transform - pos: 35.5,32.5 + pos: 33.5,31.5 parent: 2 - proto: HolopadEngineeringStorage entities: - - uid: 7807 + - uid: 4742 components: - type: Transform - pos: 34.5,38.5 + pos: 20.5,41.5 parent: 2 -- proto: HolopadEngineeringTechVault +- proto: HolopadEngineeringTelecoms entities: - - uid: 7824 + - uid: 1505 components: - type: Transform - pos: 7.5,-11.5 + pos: -4.5,6.5 parent: 2 - proto: HolopadGeneralArrivals entities: - - uid: 7786 + - uid: 7783 components: - type: Transform pos: 60.5,48.5 parent: 2 - proto: HolopadGeneralCryosleep entities: - - uid: 7803 + - uid: 5211 components: - type: Transform - pos: 1.5,-0.5 - parent: 2 -- proto: HolopadGeneralDisposals - entities: - - uid: 7804 - components: - - type: Transform - pos: -6.5,5.5 + pos: 2.5,-1.5 parent: 2 - proto: HolopadGeneralEvac entities: - - uid: 7809 + - uid: 3048 components: - type: Transform pos: 59.5,-0.5 parent: 2 + - uid: 7751 + components: + - type: Transform + pos: 47.5,-14.5 + parent: 2 + - type: Label + currentLabel: General - Observation - proto: HolopadGeneralEVAStorage entities: - - uid: 7808 + - uid: 3753 components: - type: Transform pos: 51.5,40.5 parent: 2 -- proto: HolopadGeneralLounge - entities: - - uid: 7813 - components: - - type: Transform - pos: 16.5,1.5 - parent: 2 -- proto: HolopadGeneralTools - entities: - - uid: 7825 - components: - - type: Transform - pos: 44.5,20.5 - parent: 2 -- proto: HolopadMedicalBreakroom - entities: - - uid: 7815 - components: - - type: Transform - pos: 27.5,15.5 - parent: 2 - proto: HolopadMedicalChemistry entities: - - uid: 7800 + - uid: 5862 components: - type: Transform - pos: 31.5,9.5 + pos: 32.5,10.5 parent: 2 -- proto: HolopadMedicalFront +- proto: HolopadMedicalMedbay entities: - - uid: 7814 + - uid: 2191 components: - type: Transform - pos: 14.5,12.5 + pos: 17.5,11.5 parent: 2 - proto: HolopadMedicalMorgue entities: - - uid: 7816 + - uid: 2047 components: - type: Transform pos: 3.5,14.5 parent: 2 -- proto: HolopadScienceAnomaly - entities: - - uid: 7784 - components: - - type: Transform - pos: 47.5,12.5 - parent: 2 -- proto: HolopadScienceArtifact - entities: - - uid: 7787 - components: - - type: Transform - pos: 50.5,3.5 - parent: 2 - proto: HolopadScienceFront entities: - - uid: 7820 + - uid: 1539 components: - type: Transform - pos: 46.5,7.5 - parent: 2 -- proto: HolopadScienceRobotics - entities: - - uid: 7819 - components: - - type: Transform - pos: 54.5,8.5 - parent: 2 -- proto: HolopadSecurityArmory - entities: - - uid: 7785 - components: - - type: Transform - pos: 41.5,-5.5 - parent: 2 -- proto: HolopadSecurityBreakroom - entities: - - uid: 7822 - components: - - type: Transform - pos: 34.5,-5.5 - parent: 2 -- proto: HolopadSecurityBrig - entities: - - uid: 7794 - components: - - type: Transform - pos: 43.5,-0.5 + pos: 51.5,5.5 parent: 2 - proto: HolopadSecurityCourtroom entities: - - uid: 7802 + - uid: 5345 components: - type: Transform pos: 58.5,15.5 parent: 2 + - type: Label + currentLabel: Security - Assembly Room - proto: HolopadSecurityFront entities: - - uid: 7821 + - uid: 1535 components: - type: Transform - pos: 37.5,1.5 - parent: 2 -- proto: HolopadServiceBar - entities: - - uid: 7791 - components: - - type: Transform - pos: 25.5,-4.5 - parent: 2 -- proto: HolopadServiceBotany - entities: - - uid: 7790 - components: - - type: Transform - pos: 14.5,-7.5 + pos: 38.5,0.5 parent: 2 - proto: HolopadServiceChapel entities: - - uid: 7799 + - uid: 6177 components: - type: Transform pos: -1.5,12.5 parent: 2 -- proto: HolopadServiceJanitor +- proto: HydroponicsToolMiniHoe entities: - - uid: 7811 + - uid: 10556 components: - type: Transform - pos: 0.5,7.5 - parent: 2 -- proto: HolopadServiceKitchen + pos: 11.5,-20.5 + parent: 3564 +- proto: HydroponicsTrayEmpty entities: - - uid: 7812 + - uid: 10548 components: - type: Transform - pos: 23.5,-9.5 - parent: 2 -- proto: hydroponicsTray - entities: - - uid: 140 + pos: 10.5,-22.5 + parent: 3564 + - uid: 10549 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-7.5 - parent: 2 - - uid: 1293 + pos: 11.5,-22.5 + parent: 3564 + - uid: 10550 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-7.5 - parent: 2 - - uid: 1384 + pos: 12.5,-22.5 + parent: 3564 + - uid: 10551 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-6.5 - parent: 2 - - uid: 1440 + pos: 10.5,-23.5 + parent: 3564 + - uid: 10552 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-6.5 - parent: 2 - - uid: 7656 + pos: 11.5,-23.5 + parent: 3564 + - uid: 10553 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-7.5 - parent: 2 - - uid: 8314 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-6.5 - parent: 2 -- proto: IDComputerCircuitboard - entities: - - uid: 2187 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 2 + pos: 12.5,-23.5 + parent: 3564 - proto: Igniter entities: + - uid: 1487 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 7170 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 7411 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 7567 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 - uid: 7722 components: - type: Transform pos: 44.5,19.5 parent: 2 - - uid: 7723 + - uid: 8275 components: - type: Transform - pos: 47.5,20.5 + pos: 52.5,9.5 parent: 2 - - uid: 7724 + - uid: 8277 components: - type: Transform - pos: 48.5,20.5 + pos: 52.5,9.5 parent: 2 -- proto: IngotGold1 - entities: - - uid: 2162 + - uid: 8316 components: - type: Transform - pos: 62.642864,9.959549 + pos: 52.5,9.5 + parent: 2 + - uid: 8399 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 8406 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 8412 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 11132 + components: + - type: Transform + pos: 49.5,20.5 + parent: 2 + - uid: 11135 + components: + - type: Transform + pos: 51.5,20.5 + parent: 2 + - uid: 11215 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 11216 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 11217 + components: + - type: Transform + pos: 52.5,9.5 parent: 2 - proto: IntercomCommand entities: @@ -36170,11 +49839,22 @@ entities: parent: 2 - proto: IntercomCommon entities: + - uid: 36 + components: + - type: Transform + pos: 26.5,8.5 + parent: 2 - uid: 4185 components: - type: Transform pos: 46.5,52.5 parent: 2 + - uid: 4930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,22.5 + parent: 2 - uid: 7492 components: - type: Transform @@ -36192,24 +49872,12 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,-0.5 parent: 2 - - uid: 7553 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,9.5 - parent: 2 - uid: 7554 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-11.5 parent: 2 - - uid: 7571 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-6.5 - parent: 2 - uid: 7577 components: - type: Transform @@ -36221,30 +49889,73 @@ entities: rot: -1.5707963267948966 rad pos: 63.5,15.5 parent: 2 - - uid: 7596 + - uid: 8537 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,27.5 + pos: 11.5,28.5 parent: 2 - - uid: 7597 +- proto: IntercomEngineering + entities: + - uid: 846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,28.5 + pos: 29.5,32.5 parent: 2 - - uid: 7606 + - uid: 3008 components: - type: Transform + pos: 15.5,40.5 + parent: 2 + - uid: 3072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,20.5 + parent: 2 + - uid: 5122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-7.5 + parent: 2 + - uid: 6553 + components: + - type: Transform + rot: 3.141592653589793 rad pos: 34.5,36.5 parent: 2 - - uid: 7607 + - uid: 6557 components: - type: Transform - pos: 21.5,35.5 + rot: 1.5707963267948966 rad + pos: 31.5,25.5 + parent: 2 + - uid: 6598 + components: + - type: Transform + pos: 31.5,36.5 + parent: 2 + - uid: 7482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,33.5 + parent: 2 + - uid: 8563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,1.5 parent: 2 - proto: IntercomMedical entities: + - uid: 1913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,12.5 + parent: 2 - uid: 7443 components: - type: Transform @@ -36258,130 +49969,139 @@ entities: - type: Transform pos: 45.5,52.5 parent: 2 -- proto: JanitorialTrolley +- proto: JetpackBlueFilled entities: - - uid: 1881 + - uid: 8636 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,6.5 + pos: 51.5,41.5 parent: 2 -- proto: Jukebox - entities: - - uid: 4065 + - uid: 8637 components: - type: Transform - pos: 31.5,-4.5 + pos: 52.5,41.5 parent: 2 + - uid: 8638 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 8639 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 10483 + components: + - type: Transform + pos: 25.5,-69.5 + parent: 3564 + - uid: 10484 + components: + - type: Transform + pos: 24.5,-69.5 + parent: 3564 + - uid: 10485 + components: + - type: Transform + pos: 21.5,-69.5 + parent: 3564 + - uid: 10486 + components: + - type: Transform + pos: 20.5,-69.5 + parent: 3564 + - uid: 10487 + components: + - type: Transform + pos: 19.5,-69.5 + parent: 3564 - proto: KitchenElectricGrill entities: - - uid: 2856 + - uid: 10568 components: - type: Transform - pos: 24.5,-10.5 - parent: 2 -- proto: KitchenKnife - entities: - - uid: 7118 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.422783,13.597005 - parent: 2 + pos: 12.5,-29.5 + parent: 3564 - proto: KitchenMicrowave entities: - - uid: 2854 + - uid: 10573 components: - type: Transform - pos: 22.5,-10.5 - parent: 2 + pos: 9.5,-28.5 + parent: 3564 - proto: KitchenReagentGrinder entities: - - uid: 135 + - uid: 41 components: - type: Transform - pos: 14.5,-8.5 + pos: 34.5,10.5 parent: 2 - - uid: 764 - components: - - type: Transform - pos: 30.5,8.5 - parent: 2 - - uid: 2855 - components: - - type: Transform - pos: 23.5,-10.5 - parent: 2 -- proto: KitchenSpike +- proto: LampInterrogator entities: - - uid: 2378 + - uid: 10326 components: - type: Transform - pos: 29.5,-12.5 + pos: 15.5,-32.5 + parent: 3564 +- proto: LightReplacer + entities: + - uid: 11556 + components: + - type: Transform + pos: 42.5,21.5 parent: 2 - proto: LockerAtmosphericsFilled entities: - - uid: 1688 + - uid: 3815 components: - type: Transform - pos: 30.5,35.5 + pos: 39.5,-9.5 parent: 2 - - uid: 1689 + - uid: 3817 components: - type: Transform - pos: 29.5,35.5 + pos: 40.5,-9.5 parent: 2 - - uid: 1722 + - uid: 3819 components: - type: Transform - pos: 31.5,35.5 + pos: 41.5,-9.5 parent: 2 -- proto: LockerBoozeFilled +- proto: LockerBrigmedicFilled entities: - - uid: 1498 + - uid: 10332 components: - type: Transform - pos: 23.5,0.5 - parent: 2 -- proto: LockerBotanistFilled - entities: - - uid: 1018 - components: - - type: Transform - pos: 15.5,-5.5 - parent: 2 - - uid: 1631 - components: - - type: Transform - pos: 14.5,-5.5 - parent: 2 + pos: 23.5,-16.5 + parent: 3564 - proto: LockerCaptainFilledNoLaser entities: - - uid: 2385 + - uid: 6176 components: - type: Transform - pos: 60.5,25.5 + pos: 59.5,24.5 parent: 2 - proto: LockerChemistryFilled entities: - - uid: 699 + - uid: 1105 components: - type: Transform - pos: 34.5,8.5 + pos: 30.5,12.5 parent: 2 -- proto: LockerChiefEngineerFilled +- proto: LockerChiefEngineerFilledHardsuit entities: - - uid: 1609 + - uid: 8325 components: - type: Transform - pos: 47.5,34.5 + pos: 18.5,42.5 parent: 2 - proto: LockerChiefMedicalOfficerFilledHardsuit entities: - - uid: 68 + - uid: 2855 components: - type: Transform - pos: 22.5,13.5 + pos: 22.5,16.5 parent: 2 - proto: LockerDetectiveFilled entities: @@ -36390,95 +50110,148 @@ entities: - type: Transform pos: 36.5,2.5 parent: 2 -- proto: LockerElectricalSupplies - entities: - - uid: 7648 + - uid: 10502 components: - type: Transform - pos: 34.5,39.5 - parent: 2 + pos: 33.5,-25.5 + parent: 3564 - proto: LockerElectricalSuppliesFilled entities: - - uid: 1599 + - uid: 1726 components: - type: Transform - pos: 39.5,38.5 + pos: 22.5,42.5 parent: 2 - proto: LockerEngineerFilled entities: - - uid: 1566 + - uid: 1715 components: - type: Transform - pos: 39.5,41.5 + pos: 21.5,42.5 parent: 2 - - uid: 1567 + - uid: 4674 components: - type: Transform - pos: 39.5,40.5 + pos: 19.5,42.5 parent: 2 - - uid: 1783 + - uid: 4694 components: - type: Transform - pos: 39.5,39.5 + pos: 20.5,42.5 parent: 2 +- proto: LockerEvidence + entities: + - uid: 10503 + components: + - type: Transform + pos: 27.5,-25.5 + parent: 3564 + - uid: 10504 + components: + - type: Transform + pos: 28.5,-25.5 + parent: 3564 + - uid: 10505 + components: + - type: Transform + pos: 29.5,-25.5 + parent: 3564 + - uid: 10506 + components: + - type: Transform + pos: 30.5,-25.5 + parent: 3564 + - uid: 10507 + components: + - type: Transform + pos: 32.5,-25.5 + parent: 3564 + - uid: 10508 + components: + - type: Transform + pos: 27.5,-30.5 + parent: 3564 + - uid: 10509 + components: + - type: Transform + pos: 28.5,-30.5 + parent: 3564 + - uid: 10510 + components: + - type: Transform + pos: 29.5,-30.5 + parent: 3564 - proto: LockerFreezerVaultFilled entities: - - uid: 2165 + - uid: 7723 components: - type: Transform - pos: 61.5,10.5 + pos: 56.5,23.5 parent: 2 - proto: LockerHeadOfPersonnelFilled entities: - - uid: 2277 + - uid: 8317 components: - type: Transform pos: 41.5,29.5 parent: 2 -- proto: LockerHeadOfSecurityFilled +- proto: LockerHeadOfSecurityFilledHardsuit entities: - - uid: 6814 + - uid: 54 components: - type: Transform pos: 33.5,-0.5 parent: 2 +- proto: LockerMedicalFilled + entities: + - uid: 1533 + components: + - type: Transform + pos: 29.5,13.5 + parent: 2 + - uid: 2156 + components: + - type: Transform + pos: 29.5,16.5 + parent: 2 + - uid: 10335 + components: + - type: Transform + pos: 26.5,-23.5 + parent: 3564 + - uid: 10336 + components: + - type: Transform + pos: 27.5,-23.5 + parent: 3564 - proto: LockerMedicineFilled entities: - - uid: 626 + - uid: 2856 components: - type: Transform - pos: 26.5,16.5 - parent: 2 - - uid: 766 - components: - - type: Transform - pos: 27.5,16.5 + pos: 29.5,12.5 parent: 2 - uid: 7444 components: - type: Transform pos: 12.5,16.5 parent: 2 -- proto: LockerParamedicFilled - entities: - - uid: 3161 + - uid: 10333 components: - type: Transform - pos: 28.5,16.5 - parent: 2 -- proto: LockerQuarterMasterFilled - entities: - - uid: 7635 + pos: 22.5,-16.5 + parent: 3564 + - uid: 10334 components: - type: Transform - pos: 11.5,32.5 - parent: 2 -- proto: LockerResearchDirectorFilled + pos: 21.5,-16.5 + parent: 3564 +- proto: LockerResearchDirectorFilledHardsuit entities: - - uid: 1542 + - uid: 1563 components: - type: Transform - pos: 50.5,14.5 + pos: 49.5,9.5 parent: 2 - proto: LockerScienceFilled entities: @@ -36509,6 +50282,113 @@ entities: - type: Transform pos: 8.5,-5.5 parent: 2 +- proto: LockerSteel + entities: + - uid: 935 + components: + - type: Transform + pos: 58.5,48.5 + parent: 2 + - uid: 1018 + components: + - type: Transform + pos: 58.5,47.5 + parent: 2 + - uid: 2618 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 7372 + components: + - type: Transform + pos: 58.5,51.5 + parent: 2 + - uid: 7373 + components: + - type: Transform + pos: 58.5,50.5 + parent: 2 + - uid: 7376 + components: + - type: Transform + pos: 58.5,46.5 + parent: 2 + - uid: 7384 + components: + - type: Transform + pos: 58.5,49.5 + parent: 2 + - uid: 8575 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 + - uid: 8576 + components: + - type: Transform + pos: 12.5,2.5 + parent: 2 + - uid: 8577 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 8578 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 8579 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 8580 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 8581 + components: + - type: Transform + pos: 8.5,7.5 + parent: 2 + - uid: 8582 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 8583 + components: + - type: Transform + pos: 6.5,7.5 + parent: 2 + - uid: 8584 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 10498 + components: + - type: Transform + pos: 30.5,-30.5 + parent: 3564 + - uid: 10499 + components: + - type: Transform + pos: 31.5,-30.5 + parent: 3564 + - uid: 10500 + components: + - type: Transform + pos: 32.5,-30.5 + parent: 3564 + - uid: 10501 + components: + - type: Transform + pos: 33.5,-30.5 + parent: 3564 - proto: LockerWardenFilled entities: - uid: 1353 @@ -36516,18 +50396,34 @@ entities: - type: Transform pos: 33.5,0.5 parent: 2 +- proto: LockerWardenFilledHardsuit + entities: + - uid: 10431 + components: + - type: Transform + pos: 31.5,-69.5 + parent: 3564 - proto: LockerWeldingSuppliesFilled entities: - - uid: 1600 + - uid: 1728 components: - type: Transform - pos: 39.5,37.5 + pos: 23.5,42.5 parent: 2 - - uid: 7647 +- proto: LogicGateOr + entities: + - uid: 6692 components: - type: Transform - pos: 33.5,39.5 + pos: 12.5,30.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2984: + - - Output + - DoorBolt - proto: LogicGateXor entities: - uid: 1839 @@ -36562,52 +50458,57 @@ entities: 1848: - - Output - DoorBolt - - uid: 6658 + - uid: 3235 components: - type: Transform - anchored: True - pos: 63.5,48.5 + pos: 57.5,-19.5 parent: 2 - - type: Physics - canCollide: False - bodyType: Static - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 2502: + 3232: - - Output - DoorBolt -- proto: MachineAnomalyGenerator +- proto: LootSpawnerArmory entities: - - uid: 1326 + - uid: 10455 components: - type: Transform - pos: 47.5,13.5 - parent: 2 + pos: 35.5,-59.5 + parent: 3564 +- proto: LootSpawnerArmoryArmorOnly + entities: + - uid: 10456 + components: + - type: Transform + pos: 34.5,-59.5 + parent: 3564 +- proto: LootSpawnerArmoryGunsOnly + entities: + - uid: 10457 + components: + - type: Transform + pos: 36.5,-59.5 + parent: 3564 - proto: MachineAnomalyVessel entities: - - uid: 1515 + - uid: 2379 components: - type: Transform - pos: 47.5,11.5 - parent: 2 - - uid: 2341 - components: - - type: Transform - pos: 46.5,11.5 + pos: 48.5,2.5 parent: 2 - proto: MachineAPE entities: - - uid: 1544 + - uid: 6762 components: - type: Transform - pos: 48.5,9.5 + pos: 48.5,4.5 parent: 2 - - uid: 1556 + - uid: 11210 components: - type: Transform - pos: 49.5,9.5 + pos: 48.5,3.5 parent: 2 - proto: MachineArtifactAnalyzer entities: @@ -36616,22 +50517,36 @@ entities: - type: Transform pos: 53.5,0.5 parent: 2 -- proto: MagazinePistolSubMachineGunUranium +- proto: MachineCentrifuge entities: - - uid: 718 + - uid: 2809 components: - type: Transform - pos: 62.593937,23.56012 + pos: 34.5,9.5 parent: 2 - - uid: 741 +- proto: MachineElectrolysisUnit + entities: + - uid: 1657 components: - type: Transform - pos: 62.500187,24.52887 + pos: 31.5,8.5 parent: 2 - - uid: 790 +- proto: MagazinePistolSubMachineGun + entities: + - uid: 1914 components: - type: Transform - pos: 62.578312,25.481995 + pos: 62.5,23.5 + parent: 2 + - uid: 1927 + components: + - type: Transform + pos: 62.5,24.5 + parent: 2 + - uid: 1931 + components: + - type: Transform + pos: 62.5,25.5 parent: 2 - proto: MaintenanceFluffSpawner entities: @@ -36642,10 +50557,20 @@ entities: parent: 2 - proto: MaintenanceInsulsSpawner entities: - - uid: 8311 + - uid: 4689 components: - type: Transform - pos: 51.5,19.5 + pos: 11.5,-10.5 + parent: 2 + - uid: 5934 + components: + - type: Transform + pos: 14.5,31.5 + parent: 2 + - uid: 11129 + components: + - type: Transform + pos: 54.5,20.5 parent: 2 - proto: MaintenancePlantSpawner entities: @@ -36654,44 +50579,36 @@ entities: - type: Transform pos: 61.5,23.5 parent: 2 - - uid: 7677 - components: - - type: Transform - pos: 33.5,-9.5 - parent: 2 -- proto: MaintenanceToolSpawner +- proto: MaintenanceWeaponSpawner entities: - - uid: 7676 + - uid: 5977 components: - type: Transform - pos: 37.5,-12.5 + pos: 17.5,24.5 + parent: 2 +- proto: MaterialBiomass1 + entities: + - uid: 6691 + components: + - type: Transform + pos: 11.5,26.5 parent: 2 - proto: MaterialCloth10 entities: - - uid: 7715 + - uid: 2948 components: - type: Transform - pos: 47.5,20.5 - parent: 2 - - uid: 7716 - components: - - type: Transform - pos: 44.5,19.5 + pos: 45.5,21.5 parent: 2 - proto: MaterialWoodPlank10 entities: - - uid: 7695 + - uid: 11142 components: - type: Transform - pos: 46.5,19.5 + pos: 50.5,19.5 parent: 2 - proto: MedicalBed entities: - - uid: 608 - components: - - type: Transform - pos: 15.5,9.5 - parent: 2 - uid: 637 components: - type: Transform @@ -36707,53 +50624,89 @@ entities: - type: Transform pos: 13.5,9.5 parent: 2 + - uid: 9064 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 3564 + - uid: 9731 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 3564 - proto: MedicalTechFab entities: - - uid: 7268 + - uid: 2331 components: - type: Transform - pos: 29.5,16.5 + pos: 22.5,14.5 parent: 2 -- proto: MedkitBrute + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices +- proto: MedkitBruteFilled entities: - - uid: 7367 + - uid: 6464 components: - type: Transform pos: 33.5,16.5 parent: 2 - - uid: 7374 + - uid: 6465 components: - type: Transform pos: 33.5,16.5 parent: 2 -- proto: MedkitBurn +- proto: MedkitBurnFilled entities: - - uid: 7361 + - uid: 6466 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 2 + - uid: 6467 components: - type: Transform pos: 19.5,16.5 parent: 2 - - uid: 7362 + - uid: 6468 components: - type: Transform pos: 19.5,16.5 parent: 2 - - uid: 7515 + - uid: 7187 components: - type: Transform pos: 10.5,-6.5 parent: 2 + - uid: 7342 + components: + - type: Transform + pos: 34.5,24.5 + parent: 2 + - uid: 7344 + components: + - type: Transform + pos: 34.5,24.5 + parent: 2 - proto: MedkitFilled entities: - - uid: 7184 + - uid: 1765 components: - type: Transform - pos: 7.5,-10.5 + pos: 35.5,-2.5 parent: 2 - - uid: 7197 + - uid: 6349 components: - type: Transform - pos: 33.5,-6.5 + pos: 47.5,35.5 + parent: 2 + - uid: 6704 + components: + - type: Transform + pos: 32.5,-10.5 parent: 2 - uid: 7223 components: @@ -36770,6 +50723,11 @@ entities: - type: Transform pos: 20.5,16.5 parent: 2 + - uid: 7365 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 - uid: 7540 components: - type: Transform @@ -36780,48 +50738,123 @@ entities: - type: Transform pos: 56.5,17.5 parent: 2 -- proto: MedkitO2 + - uid: 8286 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 8403 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 10337 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 3564 + - uid: 10338 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 3564 + - uid: 10574 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 3564 + - uid: 10703 + components: + - type: Transform + pos: 37.5,-25.5 + parent: 3564 + - uid: 11153 + components: + - type: Transform + pos: 44.5,20.5 + parent: 2 + - uid: 11186 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 +- proto: MedkitOxygenFilled entities: - - uid: 7375 + - uid: 7354 components: - type: Transform pos: 33.5,16.5 parent: 2 + - uid: 7361 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 +- proto: MedkitRadiationFilled + entities: + - uid: 7362 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 7367 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 +- proto: MedkitToxinFilled + entities: + - uid: 3287 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 7374 + components: + - type: Transform + pos: 18.5,16.5 + parent: 2 + - uid: 7375 + components: + - type: Transform + pos: 18.5,16.5 + parent: 2 - uid: 7377 components: - type: Transform - pos: 33.5,16.5 + pos: 13.5,-10.5 parent: 2 -- proto: MedkitRadiation - entities: - uid: 7378 components: - type: Transform - pos: 34.5,16.5 + pos: 34.5,23.5 parent: 2 - uid: 7379 + components: + - type: Transform + pos: 34.5,23.5 + parent: 2 + - uid: 7515 components: - type: Transform pos: 34.5,16.5 parent: 2 -- proto: MedkitToxin - entities: - - uid: 7356 + - uid: 11538 components: - type: Transform - pos: 19.5,16.5 - parent: 2 - - uid: 7358 + pos: 27.5,-16.5 + parent: 3564 + - uid: 11539 components: - type: Transform - pos: 19.5,16.5 - parent: 2 + pos: 26.5,-16.5 + parent: 3564 - proto: MopItem entities: - - uid: 7658 + - uid: 2794 components: - type: Transform - pos: -4.5,6.5 + pos: 42.5,21.5 parent: 2 - proto: Morgue entities: @@ -36907,31 +50940,73 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,16.5 parent: 2 - - uid: 1508 + - uid: 9786 components: - type: Transform - pos: 55.5,9.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + rot: 1.5707963267948966 rad + pos: 32.5,-19.5 + parent: 3564 + - uid: 9787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-20.5 + parent: 3564 + - uid: 9788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-22.5 + parent: 3564 + - uid: 9789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-21.5 + parent: 3564 + - uid: 9790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-23.5 + parent: 3564 - proto: Multitool entities: + - uid: 1549 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 + - uid: 3128 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - uid: 3354 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 2 + - uid: 4003 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 2 + - uid: 4005 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 2 + - uid: 4007 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 2 + - uid: 4366 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 2 - uid: 7512 components: - type: Transform @@ -36946,26 +51021,71 @@ entities: parent: 2 - proto: NitrogenCanister entities: - - uid: 6602 + - uid: 37 components: - type: Transform - pos: 23.5,37.5 + pos: 40.5,-6.5 parent: 2 - - uid: 6603 + - uid: 1341 components: - type: Transform - pos: 23.5,38.5 + pos: 19.5,10.5 parent: 2 - - uid: 6604 + - uid: 2122 components: - type: Transform - pos: 23.5,39.5 + pos: 53.5,11.5 + parent: 2 + - uid: 2224 + components: + - type: Transform + pos: 42.5,-6.5 + parent: 2 + - uid: 2451 + components: + - type: Transform + pos: 39.5,-6.5 + parent: 2 + - uid: 2625 + components: + - type: Transform + pos: 41.5,-6.5 + parent: 2 + - uid: 3275 + components: + - type: Transform + pos: 48.5,12.5 + parent: 2 + - uid: 3346 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 2 + - uid: 3709 + components: + - type: Transform + pos: 53.5,12.5 + parent: 2 + - uid: 3714 + components: + - type: Transform + pos: 53.5,13.5 + parent: 2 + - uid: 5338 + components: + - type: Transform + pos: 49.5,12.5 parent: 2 - uid: 7497 components: - type: Transform pos: 20.5,6.5 parent: 2 + - uid: 7697 + components: + - type: Transform + pos: 47.5,12.5 + parent: 2 - proto: NitrousOxideCanister entities: - uid: 61 @@ -36976,6 +51096,21 @@ entities: parent: 2 - type: Physics bodyType: Static + - uid: 1520 + components: + - type: Transform + pos: 25.5,16.5 + parent: 2 + - uid: 1893 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 2 + - uid: 2189 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 2 - proto: NTDefaultCircuitBoard entities: - uid: 3806 @@ -36985,10 +51120,10 @@ entities: parent: 2 - proto: NuclearBomb entities: - - uid: 1930 + - uid: 3745 components: - type: Transform - pos: 60.5,10.5 + pos: 56.5,21.5 parent: 2 - proto: NutimovCircuitBoard entities: @@ -36997,50 +51132,182 @@ entities: - type: Transform pos: 30.5,51.5 parent: 2 -- proto: OperatingTable +- proto: Ointment1 entities: - - uid: 1560 + - uid: 1684 components: - type: Transform - pos: 52.5,7.5 + pos: 20.5,15.5 + parent: 2 + - uid: 3226 + components: + - type: Transform + pos: 20.5,15.5 parent: 2 - proto: OxygenCanister entities: - - uid: 1792 + - uid: 55 components: - type: Transform - pos: 25.5,37.5 + pos: 41.5,-7.5 parent: 2 - - uid: 2761 + - uid: 844 components: - type: Transform - pos: 25.5,38.5 + pos: 28.5,37.5 parent: 2 - - uid: 3171 + - uid: 1273 components: - type: Transform - pos: 25.5,40.5 + pos: 20.5,10.5 parent: 2 - - uid: 3183 + - uid: 1335 components: - type: Transform - pos: 25.5,41.5 + pos: 32.5,39.5 parent: 2 - - uid: 4940 + - uid: 1548 components: - type: Transform - pos: 25.5,42.5 + pos: 54.5,14.5 parent: 2 - - uid: 6601 + - uid: 1691 components: - type: Transform - pos: 25.5,39.5 + pos: 40.5,-7.5 + parent: 2 + - uid: 1729 + components: + - type: Transform + pos: 29.5,39.5 + parent: 2 + - uid: 1730 + components: + - type: Transform + pos: 30.5,39.5 + parent: 2 + - uid: 1732 + components: + - type: Transform + pos: 31.5,39.5 + parent: 2 + - uid: 1733 + components: + - type: Transform + pos: 28.5,39.5 + parent: 2 + - uid: 1881 + components: + - type: Transform + pos: 39.5,-7.5 + parent: 2 + - uid: 1967 + components: + - type: Transform + pos: 52.5,12.5 + parent: 2 + - uid: 2165 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 2475 + components: + - type: Transform + pos: 42.5,-7.5 + parent: 2 + - uid: 2860 + components: + - type: Transform + pos: 24.5,16.5 + parent: 2 + - uid: 3356 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 2 + - uid: 3626 + components: + - type: Transform + pos: 54.5,11.5 + parent: 2 + - uid: 3739 + components: + - type: Transform + pos: 54.5,13.5 + parent: 2 + - uid: 3740 + components: + - type: Transform + pos: 54.5,12.5 + parent: 2 + - uid: 3750 + components: + - type: Transform + pos: 48.5,11.5 + parent: 2 + - uid: 4672 + components: + - type: Transform + pos: 29.5,37.5 + parent: 2 + - uid: 4673 + components: + - type: Transform + pos: 30.5,37.5 + parent: 2 + - uid: 5155 + components: + - type: Transform + pos: 16.5,24.5 + parent: 2 + - uid: 5164 + components: + - type: Transform + pos: 12.5,31.5 parent: 2 - uid: 7496 components: - type: Transform pos: 20.5,5.5 parent: 2 + - uid: 7574 + components: + - type: Transform + pos: 52.5,11.5 + parent: 2 + - uid: 7716 + components: + - type: Transform + pos: 47.5,11.5 + parent: 2 + - uid: 7717 + components: + - type: Transform + pos: 52.5,13.5 + parent: 2 + - uid: 8302 + components: + - type: Transform + pos: 29.5,22.5 + parent: 2 + - uid: 8303 + components: + - type: Transform + pos: 28.5,22.5 + parent: 2 + - uid: 8458 + components: + - type: Transform + pos: 60.5,39.5 + parent: 2 +- proto: OxygenTankFilled + entities: + - uid: 11508 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 - proto: PaladinCircuitBoard entities: - uid: 4743 @@ -37048,27 +51315,57 @@ entities: - type: Transform pos: 34.5,52.5 parent: 2 +- proto: Paper + entities: + - uid: 10429 + components: + - type: Transform + pos: 32.5,-65.5 + parent: 3564 - proto: PaperBin10 entities: - - uid: 7640 + - uid: 1442 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,31.5 + pos: 20.5,-6.5 parent: 2 + - uid: 1626 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 2 + - uid: 2179 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 10426 + components: + - type: Transform + pos: 33.5,-64.5 + parent: 3564 + - uid: 10441 + components: + - type: Transform + pos: 27.5,-57.5 + parent: 3564 + - uid: 10537 + components: + - type: Transform + pos: 34.5,-30.5 + parent: 3564 + - uid: 10580 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 3564 + - uid: 10606 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 3564 - proto: PaperBin20 entities: - - 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: 7121 components: - type: Transform @@ -37088,8 +51385,11 @@ entities: entities: - uid: 149 components: + - type: MetaData + desc: An official-looking sheet of paper. + name: Corpse Yeeter 2003 Safety Warning - type: Transform - pos: -5.5404506,14.442275 + pos: -4.5,10.5 parent: 2 - type: Paper stampState: paper_stamp-centcom @@ -37097,6 +51397,338 @@ entities: - stampedColor: '#006600FF' stampedName: stamp-component-stamped-name-centcom content: Please do not use the corpse yeeter 2003 to yeet corpses. + - uid: 1598 + components: + - type: MetaData + name: paper- 'A Crash Course in Legal SOP on SS13' + - type: Transform + pos: 57.5,17.5 + parent: 2 + - type: Paper + content: >- + [bold]Roles:[/bold] + + The Forensic Technician is basically the investigator and prosecutor. + + The Staff Assistant can perform these functions with written authority from the Forensic Technician. + + The Captain/HoP/Warden is ct as the judicial authority. + + The Security Officers are responsible for executing warrants, security during trial, and prisoner transport. + + + [bold]Investigative Phase:[/bold] + + After the crime has been committed the Forensic Technician's job is to gather evidence and try to ascertain not only who did it but what happened. He must take special care to catalogue everything and don't leave anything out. Write out all the evidence on paper. Make sure you take an appropriate number of fingerprints. IF he must ask someone questions he has permission to confront them. If the person refuses he can ask a judicial authority to write a subpoena for questioning. If again he fails to respond then that person is to be jailed as insubordinate and obstructing justice. Said person will be released after he cooperates. + + + ONCE the FT has a clear idea as to who the criminal is he is to write an arrest warrant on the piece of paper. IT MUST LIST THE CHARGES. The FT is to then go to the judicial authority and explain a small version of his case. If the case is moderately acceptable the authority should sign it. Security must then execute said warrant. + + + [bold]Pre-Pre-Trial Phase:[/bold] + + Now a legal representative must be presented to the defendant if said defendant requests one. That person and the defendant are then to be given time to meet (in the jail IS ACCEPTABLE). The defendant and his lawyer are then to be given a copy of all the evidence that will be presented at trial (rewriting it all on paper is fine). THIS IS CALLED THE DISCOVERY PACK. With a few exceptions, THIS IS THE ONLY EVIDENCE BOTH SIDES MAY USE AT TRIAL. IF the prosecution will be seeking the death penalty it MUST be stated at this time. ALSO if the defense will be seeking not guilty by mental defect it must state this at this time to allow ample time for examination. + + Now at this time each side is to compile a list of witnesses. By default, the defendant is on both lists regardless of anything else. Also the defense and prosecution can compile more evidence beforehand BUT in order for it to be used the evidence MUST also be given to the other side. + + The defense has time to compile motions against some evidence here. + + [bold]Possible Motions:[/bold] + + 1. [italic]Invalidate Evidence-[/italic] Something with the evidence is wrong and the evidence is to be thrown out. This includes irrelevance or corrupt security. + + 2. [italic]Free Movement-[/italic] Basically the defendant is to be kept uncuffed before and during the trial. + + 3. [italic]Subpoena Witness-[/italic] If the defense presents god reasons for needing a witness but said person fails to cooperate then a subpoena is issued. + + 4. [italic]Drop the Charges-[/italic] Not enough evidence is there for a trial so the charges are to be dropped. The FT CAN RETRY but the judicial authority must carefully reexamine the new evidence. + + 5. [italic]Declare Incompetent-[/italic] Basically the defendant is insane. Once this is granted a medical official is to examine the patient. If he is indeed insane he is to be placed under care of the medical staff until he is deemed competent to stand trial. + + + ALL SIDES MOVE TO A COURTROOM + + [bold]Pre-Trial Hearings:[/bold] + + A judicial authority and the 2 sides are to meet in the trial room. NO ONE ELSE BESIDES A SECURITY DETAIL IS TO BE PRESENT. The defense submits a plea. If the plea is guilty then proceed directly to sentencing phase. Now the sides each present their motions to the judicial authority. He rules on them. Each side can debate each motion. Then the judicial authority gets a list of crew members. He first gets a chance to look at them all and pick out acceptable and available jurors. Those jurors are then called over. Each side can ask a few questions and dismiss jurors they find too biased. HOWEVER before dismissal the judicial authority MUST agree to the reasoning. + + + [bold]The Trial:[/bold] + + The trial has three phases. + + 1. [bold]Opening Arguments[/bold]- Each side can give a short speech. They may not present ANY evidence. + + 2. [bold]Witness Calling/Evidence Presentation[/bold]- The prosecution goes first and is able to call the witnesses on his approved list in any order. He can recall them if necessary. During the questioning the lawyer may use the evidence in the questions to help prove a point. After every witness the other side has a chance to cross-examine. After both sides are done questioning a witness the prosecution can present another or recall one (even the EXACT same one again!). After prosecution is done the defense can call witnesses. After the initial cases are presented both sides are free to call witnesses on either list. + + FINALLY once both sides are done calling witnesses we move onto the next phase. + + 3. [bold]Closing Arguments[/bold]- Same as opening. + + The jury then deliberates IN PRIVATE. THEY MUST ALL AGREE on a verdict. REMEMBER: They mix between some charges being guilty and others not guilty (IE if you supposedly killed someone with a gun and you unfortunately picked up a gun without authorization then you CAN be found not guilty of murder BUT guilty of possession of illegal weaponry.). Once they have agreed they present their verdict. If unable to reach a verdict and feel they will never they call a deadlocked jury and we restart at Pre-Trial phase with an entirely new set of jurors. + + + [bold]Sentencing Phase:[/bold] + + If the death penalty was sought (you MUST have gone through a trial for death penalty) then skip to the second part. + + I. Each side can present more evidence/witnesses in any order. There is NO ban on emotional aspects or anything. The prosecution is to submit a suggested penalty. After all the sides are done then the judicial authority is to give a sentence. + + II. The jury stays and does the same thing as I. Their sole job is to determine if the death penalty is applicable. If NOT then the judge selects a sentence. + + + TADA you're done. Security then executes the sentence and adds the applicable convictions to the person's record. + - uid: 7802 + components: + - type: Transform + pos: 7.3686285,34.76087 + parent: 2 + - uid: 11517 + components: + - type: MetaData + name: paper- 'Generator Startup Procedure' + - type: Transform + pos: 12.5,34.5 + parent: 2 + - type: Paper + content: >- + [head=1][bold]Thermo-Electric Generator Startup Procedure for Mark I Plasma-Fired Engines[/bold][/head] + + + [italic]Warning![/italic] Improper engine and generator operation may cause exposure to hazardous gasses, extremes of heat and cold, and dangerous electrical voltages. + + Only trained personnel should operate station systems. Follow all procedures carefully. Wear correct personal protective equipment at all times. + + Refer to your supervisor or Head of Personnel for procedure updates and additional information. + + + Standard checklist for engine and generator cold-start. + + [bullet] Perform visual inspection of external (cooling) and internal (heating) heat-exchange pipe loops. + + Refer any breaks or cracks in the pipe to Station Maintenance for repair before continuing. + + + [bullet] Connect a CO2 canister to the external (cooling) loop connector, and release the contents. Check loop pressurization is stable + + [italic]Note:[/italic] Observe standard canister safety procedures. + + [italic]Note:[/italic] Other gasses may be substituted as a medium in the external (cooling) loop in the event that CO2 is not available. + + + [bullet] Connect a CO2 canister to the internal (heating) loop connector, and release the contents. Check loop pressurization is stable. + + [italic]Note:[/italic] Observe standard canister safety procedures. + + [italic]Note:[/italic] Nitrogen may be substituted as a medium in the internal (heating) loop in the event that CO2 is not available. + + [italic]Do not use plasma in the internal (heating) pipe loop as an unsafe condition may result.[/italic] + + + [bullet] Using the thermo-electric generator (TEG) master control panel, engage the internal and external loop circulator pumps at 1% maximum rate. + + + [bullet] Ignite the engine. Refer to document NTRSN-113-H9-12939 for proper engine preparation, ignition, and plasma-oxygen loading procedures. + + [italic]Note:[/italic] Exceeding recommended plasma-oxygen concentrations can cause engine damage and potential hazards. + + + [bullet] Monitor engine temperatures until stable operation is achieved. + + + [bullet] Increase internal and external circulator pumps to 10% of maximum rate. Monitor the generated power output on the TEG control panel. + + [italic]Note:[/italic] Consult appendix A for expected electrical generation rates. + + + [bullet] Adjust circulator rates until required electrical demand is met. + + [italic]Note:[/italic] Generation rate varies with internal and external loop temperatures, exchange media pressure, and engine geometry. Refer to Appendix B or your supervisor for locally determined optimal settings. + + [italic]Note:[/italic] Do not exceed safety ratings for station power cabling and electrical equipment. + + + [bullet] With the power generation rate stable, engage charging of the superconducting magnetic energy storage (SMES) devices. + + Total SMES charging rate should not exceed total power generation rate, or an overload condition may occur. + - uid: 11520 + components: + - type: MetaData + name: paper- 'Standard Operating Procedure' + - type: Transform + pos: 63.5,34.5 + parent: 2 + - type: Paper + content: >- + Alert Levels: + + Blue- Emergency + + [bullet]1. Caused by fire + + [bullet]2. Caused by manual interaction + + [bullet]Action: + + [bullet][bullet]Close all fire doors. These can only be opened by reseting the alarm + + Red- Ejection/Self Destruct + + [bullet]1. Caused by module operating computer. + + [bullet]Action: + + [bullet][bullet]After the specified time the module will eject completely. + + + Engine Maintenance Instructions: + + [bullet]Shut off ignition systems: + + [bullet]Activate internal power + + [bullet]Activate orbital balance matrix + + [bullet]Remove volatile liquids from area + + [bullet]Wear a fire suit + + + [bullet]After + + [bullet][bullet]Decontaminate + + [bullet][bullet]Visit medical examiner + + + Toxin Laboratory Procedure: + + [bullet]Wear a gas mask regardless + + [bullet]Get an oxygen tank. + + [bullet]Activate internal atmosphere + + + [bullet]After + + [bullet][bullet]Decontaminate + + [bullet][bullet]Visit medical examiner + + + Disaster Procedure: + + [bullet]Fire: + + [bullet]Activate sector fire alarm. + + [bullet]Move to a safe area. + + [bullet]Get a fire suit + + [bullet][bullet]After: + + [bullet][bullet][bullet]Assess Damage + + [bullet][bullet][bullet]Repair damages + + [bullet][bullet][bullet]If needed, Evacuate + + [bullet]Meteor Shower: + + [bullet][bullet]Activate fire alarm + + [bullet][bullet]Move to the back of ship + + [bullet][bullet]After + + [bullet][bullet][bullet]Repair damage + + [bullet][bullet][bullet]If needed, Evacuate + + [bullet]Accidental Reentry: + + [bullet][bullet]Activate fire alrms in front of ship. + + [bullet][bullet]Move volatile matter to a fire proof area! + + [bullet][bullet]Get a fire suit. + + [bullet][bullet]Stay secure until an emergency ship arrives. + + + [bullet][bullet]If ship does not arrive- + + [bullet][bullet][bullet]Evacuate to a nearby safe area! + - uid: 11521 + components: + - type: MetaData + name: paper- 'Chemical Information' + - type: Transform + pos: 30.5,16.5 + parent: 2 + - type: Paper + content: >- + Known Onboard Toxins: + + Grade A Semi-Liquid Plasma: + + [bullet][bullet]Highly poisonous. You cannot sustain concentrations above 15 units. + + [bullet][bullet]A gas mask fails to filter plasma after 50 units. + + [bullet][bullet]Will attempt to diffuse like a gas. + + [bullet][bullet]Filtered by scrubbers. + + [bullet][bullet]There is a bottled version which is very different + + [bullet][bullet][bullet]from the version found in canisters! + + + [bullet][bullet]WARNING: Highly Flammable. Keep away from heat sources + + [bullet][bullet]except in a enclosed fire area! + + [bullet][bullet]WARNING: It is a crime to use this without authorization. + + Known Onboard Anti-Toxin: + + [bullet]Anti-Toxin Type 01P: Works against Grade A Plasma. + + [bullet][bullet]Best if injected directly into bloodstream. + + [bullet][bullet]A full injection is in every regular Med-Kit. + + [bullet][bullet]Special toxin Kits hold around 7. + + + Known Onboard Chemicals (other): + + [bullet]Rejuvenation T#001: + + [bullet][bullet]Even 1 unit injected directly into the bloodstream + + [bullet][bullet][bullet]will cure paralysis and sleep toxins. + + [bullet][bullet]If administered to a dying patient it will prevent + + [bullet][bullet][bullet]further damage for about units*3 seconds. + + [bullet][bullet][bullet]it will not cure them or allow them to be cured. + + [bullet][bullet]It can be administeredd to a non-dying patient + + [bullet][bullet][bullet]but the chemicals disappear just as fast. + + [bullet]Sleep Toxin T#054: + + [bullet][bullet]5 units wilkl induce precisely 1 minute of sleep. + + [bullet][bullet][bullet]The effects are cumulative. + + [bullet][bullet]WARNING: It is a crime to use this without authorization - proto: ParchisBoard entities: - uid: 7543 @@ -37104,6 +51736,26 @@ entities: - type: Transform pos: 18.5,-1.5 parent: 2 + - uid: 10308 + components: + - type: Transform + pos: 16.5,-46.5 + parent: 3564 + - uid: 10312 + components: + - type: Transform + pos: 29.5,-42.5 + parent: 3564 + - uid: 10314 + components: + - type: Transform + pos: 29.5,-54.5 + parent: 3564 + - uid: 11367 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 3564 - proto: PartRodMetal1 entities: - uid: 7269 @@ -37118,10 +51770,25 @@ entities: parent: 2 - proto: PartRodMetal10 entities: - - uid: 1638 + - uid: 1510 components: - type: Transform - pos: 27.5,38.5 + pos: 51.5,21.5 + parent: 2 + - uid: 1635 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 1712 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 2870 + components: + - type: Transform + pos: 38.5,31.5 parent: 2 - uid: 7713 components: @@ -37135,6 +51802,16 @@ entities: parent: 2 - proto: Pen entities: + - uid: 1557 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 2123 + components: + - type: Transform + pos: 8.0769615,34.17754 + parent: 2 - uid: 7212 components: - type: Transform @@ -37155,6 +51832,26 @@ entities: - type: Transform pos: 18.5,0.5 parent: 2 + - uid: 10581 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 3564 + - uid: 10608 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 3564 + - uid: 10707 + components: + - type: Transform + pos: 34.5,-30.5 + parent: 3564 + - uid: 11368 + components: + - type: Transform + pos: 32.5,-65.5 + parent: 3564 - proto: PillCanisterBicaridine entities: - uid: 7453 @@ -37169,11 +51866,33 @@ entities: - type: Transform pos: 62.5,33.5 parent: 2 + - uid: 5454 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 - uid: 7331 components: - type: Transform pos: 32.5,16.5 parent: 2 + - uid: 10619 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 + - uid: 10620 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 +- proto: PillCanisterCopper + entities: + - uid: 10623 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 - proto: PillCanisterDermaline entities: - uid: 7329 @@ -37181,6 +51900,11 @@ entities: - type: Transform pos: 32.5,16.5 parent: 2 + - uid: 10624 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 - proto: PillCanisterDexalin entities: - uid: 7454 @@ -37188,39 +51912,246 @@ entities: - type: Transform pos: 12.5,13.5 parent: 2 +- proto: PillCanisterIron + entities: + - uid: 10622 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 - proto: PlasmaCanister entities: + - uid: 890 + components: + - type: Transform + pos: 34.5,41.5 + parent: 2 + - uid: 1494 + components: + - type: Transform + pos: 39.5,-4.5 + parent: 2 + - uid: 1496 + components: + - type: Transform + pos: 41.5,-4.5 + parent: 2 - uid: 1576 components: - type: Transform pos: 62.5,26.5 parent: 2 - - uid: 6605 + - uid: 1638 components: - type: Transform - pos: 17.5,42.5 + pos: 38.5,37.5 parent: 2 - - uid: 6606 + - uid: 1686 components: - type: Transform - pos: 17.5,41.5 + pos: 37.5,37.5 parent: 2 - - uid: 6607 + - uid: 1705 components: - type: Transform - pos: 18.5,42.5 + pos: 36.5,37.5 + parent: 2 + - uid: 1734 + components: + - type: Transform + pos: 34.5,39.5 + parent: 2 + - uid: 1960 + components: + - type: Transform + pos: 37.5,41.5 + parent: 2 + - uid: 1964 + components: + - type: Transform + pos: 28.5,41.5 + parent: 2 + - uid: 2067 + components: + - type: Transform + pos: 39.5,39.5 + parent: 2 + - uid: 2235 + components: + - type: Transform + pos: 40.5,-4.5 + parent: 2 + - uid: 2250 + components: + - type: Transform + pos: 42.5,-4.5 + parent: 2 + - uid: 2259 + components: + - type: Transform + pos: 46.5,14.5 + parent: 2 + - uid: 2265 + components: + - type: Transform + pos: 46.5,12.5 + parent: 2 + - uid: 2266 + components: + - type: Transform + pos: 46.5,13.5 + parent: 2 + - uid: 2363 + components: + - type: Transform + pos: 27.5,39.5 + parent: 2 + - uid: 2364 + components: + - type: Transform + pos: 36.5,39.5 + parent: 2 + - uid: 2384 + components: + - type: Transform + pos: 39.5,38.5 + parent: 2 + - uid: 2761 + components: + - type: Transform + pos: 35.5,37.5 + parent: 2 + - uid: 2810 + components: + - type: Transform + pos: 34.5,37.5 + parent: 2 + - uid: 2900 + components: + - type: Transform + pos: 27.5,41.5 + parent: 2 + - uid: 2906 + components: + - type: Transform + pos: 35.5,39.5 + parent: 2 + - uid: 2907 + components: + - type: Transform + pos: 37.5,39.5 + parent: 2 + - uid: 2908 + components: + - type: Transform + pos: 38.5,39.5 + parent: 2 + - uid: 3091 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 2 + - uid: 3092 + components: + - type: Transform + pos: 38.5,-4.5 + parent: 2 + - uid: 3153 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 2 + - uid: 4691 + components: + - type: Transform + pos: 27.5,40.5 + parent: 2 + - uid: 4692 + components: + - type: Transform + pos: 27.5,38.5 + parent: 2 + - uid: 4693 + components: + - type: Transform + pos: 27.5,37.5 + parent: 2 + - uid: 4940 + components: + - type: Transform + pos: 32.5,41.5 + parent: 2 + - uid: 5054 + components: + - type: Transform + pos: 38.5,41.5 + parent: 2 + - uid: 5736 + components: + - type: Transform + pos: 39.5,41.5 + parent: 2 + - uid: 5756 + components: + - type: Transform + pos: 30.5,41.5 + parent: 2 + - uid: 5757 + components: + - type: Transform + pos: 36.5,41.5 + parent: 2 + - uid: 5758 + components: + - type: Transform + pos: 35.5,41.5 + parent: 2 + - uid: 5760 + components: + - type: Transform + pos: 33.5,41.5 + parent: 2 + - uid: 5761 + components: + - type: Transform + pos: 29.5,41.5 + parent: 2 + - uid: 5762 + components: + - type: Transform + pos: 31.5,41.5 + parent: 2 + - uid: 5849 + components: + - type: Transform + pos: 39.5,37.5 + parent: 2 + - uid: 5856 + components: + - type: Transform + pos: 39.5,40.5 + parent: 2 + - uid: 7338 + components: + - type: Transform + pos: 51.5,4.5 + parent: 2 + - uid: 8283 + components: + - type: Transform + pos: 27.5,30.5 + parent: 2 + - uid: 8289 + components: + - type: Transform + pos: 30.5,28.5 parent: 2 - proto: PlasmaChemistryVial entities: - - uid: 7422 + - uid: 1519 components: - type: Transform - pos: 31.5,10.5 - parent: 2 - - uid: 7423 - components: - - type: Transform - pos: 32.5,10.5 + pos: 30.5,8.5 parent: 2 - uid: 7440 components: @@ -37232,6 +52163,38 @@ entities: - type: Transform pos: 8.5,16.5 parent: 2 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 4684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,28.5 + parent: 2 + - uid: 6839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,27.5 + parent: 2 + - uid: 7168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,29.5 + parent: 2 + - uid: 7182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,30.5 + parent: 2 + - uid: 7195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,30.5 + parent: 2 - proto: PlayerStationAi entities: - uid: 4561 @@ -37239,46 +52202,29 @@ entities: - type: Transform pos: 45.5,51.5 parent: 2 -- proto: PlushieLizard - entities: - - uid: 7573 - components: - - type: Transform - pos: 48.5,0.5 - parent: 2 - proto: PortableGeneratorPacman entities: - - uid: 914 + - uid: 1725 components: - type: Transform - pos: 27.5,41.5 + pos: 36.5,27.5 parent: 2 - - uid: 1574 + - uid: 4275 components: - type: Transform - pos: 27.5,40.5 - parent: 2 - - uid: 1575 - components: - - type: Transform - pos: 28.5,41.5 + pos: 36.5,26.5 parent: 2 - proto: PortableGeneratorSuperPacman entities: - - uid: 1773 + - uid: 2438 components: - type: Transform - pos: 31.5,40.5 + pos: 38.5,26.5 parent: 2 - - uid: 1774 + - uid: 5764 components: - type: Transform - pos: 31.5,41.5 - parent: 2 - - uid: 1775 - components: - - type: Transform - pos: 30.5,41.5 + pos: 38.5,27.5 parent: 2 - proto: PortableScrubber entities: @@ -37292,11 +52238,136 @@ entities: - type: Transform pos: 31.5,-1.5 parent: 2 + - uid: 303 + components: + - type: Transform + pos: 28.5,5.5 + parent: 2 + - uid: 304 + components: + - type: Transform + pos: 29.5,5.5 + parent: 2 + - uid: 1413 + components: + - type: Transform + pos: 31.5,2.5 + parent: 2 + - uid: 1621 + components: + - type: Transform + pos: 39.5,-11.5 + parent: 2 + - uid: 1693 + components: + - type: Transform + pos: 39.5,-12.5 + parent: 2 + - uid: 1694 + components: + - type: Transform + pos: 40.5,-11.5 + parent: 2 + - uid: 2064 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 2612 + components: + - type: Transform + pos: 61.5,2.5 + parent: 2 + - uid: 2614 + components: + - type: Transform + pos: 60.5,2.5 + parent: 2 + - uid: 2793 + components: + - type: Transform + pos: 60.5,1.5 + parent: 2 + - uid: 3041 + components: + - type: Transform + pos: 61.5,4.5 + parent: 2 + - uid: 6469 + components: + - type: Transform + pos: 40.5,-12.5 + parent: 2 + - uid: 6470 + components: + - type: Transform + pos: 41.5,-11.5 + parent: 2 + - uid: 6471 + components: + - type: Transform + pos: 41.5,-12.5 + parent: 2 + - uid: 6472 + components: + - type: Transform + pos: 42.5,-11.5 + parent: 2 + - uid: 6473 + components: + - type: Transform + pos: 42.5,-12.5 + parent: 2 + - uid: 6474 + components: + - type: Transform + pos: 43.5,-11.5 + parent: 2 + - uid: 6475 + components: + - type: Transform + pos: 43.5,-12.5 + parent: 2 + - uid: 6476 + components: + - type: Transform + pos: 44.5,-11.5 + parent: 2 + - uid: 6477 + components: + - type: Transform + pos: 44.5,-12.5 + parent: 2 - uid: 6703 components: - type: Transform pos: 22.5,10.5 parent: 2 + - uid: 6926 + components: + - type: Transform + pos: 48.5,0.5 + parent: 2 + - uid: 7337 + components: + - type: Transform + pos: 61.5,1.5 + parent: 2 + - uid: 7417 + components: + - type: Transform + pos: 61.5,5.5 + parent: 2 + - uid: 7724 + components: + - type: Transform + pos: 62.5,4.5 + parent: 2 + - uid: 7747 + components: + - type: Transform + pos: 62.5,5.5 + parent: 2 - uid: 8033 components: - type: Transform @@ -37312,155 +52383,76 @@ entities: - type: Transform pos: 50.5,58.5 parent: 2 -- proto: PosterContrabandMissingGloves + - uid: 8291 + components: + - type: Transform + pos: 30.5,27.5 + parent: 2 + - uid: 8295 + components: + - type: Transform + pos: 30.5,26.5 + parent: 2 +- proto: PowerCellHigh entities: - - uid: 7535 + - uid: 11518 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,20.5 + pos: 12.5,34.5 parent: 2 -- proto: PosterContrabandRise +- proto: PowerCellMedium entities: - - uid: 7482 + - uid: 3358 components: - type: Transform - pos: 10.5,2.5 + pos: 37.5,-12.5 parent: 2 -- proto: PosterLegitNanotrasenLogo + - uid: 3359 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 +- proto: PowerCellMediumPrinted entities: - - uid: 7536 + - uid: 2971 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,17.5 + pos: 48.5,20.5 parent: 2 -- proto: PosterLegitObey + - uid: 11173 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 11174 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 11180 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 11181 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 +- proto: PowerCellRecharger entities: - - uid: 6942 + - uid: 7347 components: - type: Transform - pos: 8.5,4.5 + pos: 12.5,-10.5 parent: 2 -- proto: PosterLegitSafetyMothPiping - entities: - - uid: 7207 + - uid: 11364 components: - type: Transform - pos: 22.5,35.5 - parent: 2 -- proto: PosterLegitSecWatch - entities: - - uid: 3227 - components: - - type: Transform - pos: 25.5,1.5 - parent: 2 - - uid: 6943 - components: - - type: Transform - pos: 12.5,4.5 - parent: 2 -- proto: PosterLegitStateLaws - entities: - - uid: 7532 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-13.5 - parent: 2 -- proto: PottedPlant28 - entities: - - uid: 1413 - components: - - type: Transform - pos: 44.5,-2.5 - parent: 2 -- proto: PottedPlantRandom - entities: - - uid: 1558 - components: - - type: Transform - pos: 48.5,-1.5 - parent: 2 - - uid: 7639 - components: - - type: Transform - pos: 15.5,32.5 - parent: 2 -- proto: PottedPlantRandomPlastic - entities: - - uid: 2156 - components: - - type: Transform - pos: 11.5,9.5 - parent: 2 - - uid: 5083 - components: - - type: Transform - pos: 41.5,27.5 - parent: 2 -- proto: PottedPlantRD - entities: - - uid: 7631 - components: - - type: Transform - pos: 53.5,11.5 + pos: 39.5,35.5 parent: 2 - proto: PoweredDimSmallLight entities: - - uid: 1448 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-1.5 - parent: 2 - - uid: 1913 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,2.5 - parent: 2 - - uid: 1914 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,2.5 - parent: 2 - - uid: 3182 - components: - - type: Transform - pos: 4.5,16.5 - parent: 2 - - uid: 3231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,0.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 @@ -37485,39 +52477,22 @@ entities: 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 + pos: 53.5,47.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: 5447 components: - type: Transform @@ -37536,12 +52511,6 @@ entities: 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 - uid: 8032 components: - type: Transform @@ -37550,126 +52519,12 @@ entities: parent: 2 - proto: PoweredLEDSmallLight entities: - - uid: 2361 - components: - - type: Transform - pos: 11.5,7.5 - parent: 2 - - type: PointLight - energy: 0.2 - - uid: 2473 - components: - - type: Transform - pos: 24.5,19.5 - parent: 2 - - type: PointLight - energy: 0.1 - - uid: 2480 - components: - - type: Transform - pos: 40.5,-9.5 - parent: 2 - - uid: 2481 - components: - - type: Transform - pos: 42.5,-9.5 - parent: 2 - - uid: 2484 - components: - - type: Transform - pos: 44.5,-9.5 - parent: 2 - - uid: 2494 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-3.5 - parent: 2 - - type: PointLight - energy: 0.15 - - uid: 2528 - components: - - type: Transform - pos: 57.5,40.5 - parent: 2 - - type: PointLight - energy: 0.4 - - uid: 2616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,19.5 - parent: 2 - - type: PointLight - energy: 0.7 - - uid: 2618 + - uid: 10787 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,26.5 - parent: 2 - - type: PointLight - energy: 0.3 - - uid: 2619 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,17.5 - parent: 2 - - type: PointLight - energy: 0.4 - - uid: 2621 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,15.5 - parent: 2 - - type: PointLight - energy: 0.2 - - uid: 2623 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,13.5 - parent: 2 - - type: PointLight - energy: 0.4 - - uid: 2624 - components: - - type: Transform - pos: 41.5,13.5 - parent: 2 - - type: PointLight - energy: 0.05 - - uid: 2632 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,22.5 - parent: 2 - - type: PointLight - energy: 0.2 - - uid: 2633 - components: - - type: Transform - pos: 39.5,11.5 - parent: 2 - - type: PointLight - energy: 0.2 -- proto: PoweredlightExterior - entities: - - uid: 1896 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,63.5 - parent: 2 - - uid: 1912 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,63.5 - parent: 2 + pos: 22.5,-71.5 + parent: 3564 - proto: PoweredlightLED entities: - uid: 146 @@ -37684,39 +52539,48 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,11.5 parent: 2 - - uid: 152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,38.5 - parent: 2 - - uid: 217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,0.5 - parent: 2 - uid: 218 components: - type: Transform - pos: 17.5,-5.5 + pos: 16.5,-5.5 parent: 2 - - uid: 633 + - uid: 608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,5.5 + parent: 2 + - uid: 644 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-7.5 + pos: 27.5,50.5 + parent: 2 + - uid: 790 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 1464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-2.5 + parent: 2 + - uid: 1559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,5.5 parent: 2 - - type: PointLight - energy: 25 - - type: RgbLightController - cycleRate: 0.2 - uid: 1790 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,8.5 + pos: 20.5,10.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 1859 components: - type: Transform @@ -37735,35 +52599,59 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,9.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 1890 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,16.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 1891 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,9.5 parent: 2 - - uid: 1897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,17.5 - parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 1910 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,16.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 1916 components: - type: Transform pos: 23.5,16.5 parent: 2 + - uid: 2049 + components: + - type: Transform + pos: 51.5,14.5 + parent: 2 + - uid: 2065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,4.5 + parent: 2 + - uid: 2066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,8.5 + parent: 2 + - uid: 2070 + components: + - type: Transform + pos: 4.5,16.5 + parent: 2 - uid: 2154 components: - type: Transform @@ -37775,6 +52663,69 @@ entities: rot: 3.141592653589793 rad pos: 61.5,4.5 parent: 2 + - uid: 2171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,12.5 + parent: 2 + - uid: 2193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,11.5 + parent: 2 + - uid: 2194 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 2195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-16.5 + parent: 2 + - uid: 2196 + components: + - type: Transform + pos: 57.5,40.5 + parent: 2 + - uid: 2197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,21.5 + parent: 2 + - uid: 2198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,26.5 + parent: 2 + - uid: 2199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,17.5 + parent: 2 + - uid: 2200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,15.5 + parent: 2 + - uid: 2201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,15.5 + parent: 2 + - uid: 2232 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 - uid: 2233 components: - type: Transform @@ -37851,7 +52802,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-11.5 + pos: 5.5,-12.5 parent: 2 - uid: 2324 components: @@ -37868,25 +52819,29 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-7.5 + pos: 4.5,-6.5 parent: 2 - uid: 2339 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,0.5 + rot: 3.141592653589793 rad + pos: 41.5,23.5 parent: 2 - uid: 2340 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,7.5 + pos: 1.5,5.5 parent: 2 - uid: 2360 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,7.5 + pos: -3.5,7.5 + parent: 2 + - uid: 2361 + components: + - type: Transform + pos: 39.5,11.5 parent: 2 - uid: 2372 components: @@ -37911,16 +52866,11 @@ entities: rot: -1.5707963267948966 rad pos: 55.5,7.5 parent: 2 - - uid: 2387 - components: - - type: Transform - pos: 18.5,25.5 - parent: 2 - uid: 2388 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,9.5 + rot: 3.141592653589793 rad + pos: 13.5,-3.5 parent: 2 - uid: 2389 components: @@ -37931,8 +52881,8 @@ entities: - uid: 2390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,1.5 + rot: 4.71238898038469 rad + pos: 49.5,2.5 parent: 2 - uid: 2437 components: @@ -37940,11 +52890,6 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,12.5 parent: 2 - - uid: 2451 - components: - - type: Transform - pos: 30.5,23.5 - parent: 2 - uid: 2453 components: - type: Transform @@ -37962,40 +52907,11 @@ entities: - type: Transform pos: 59.5,54.5 parent: 2 - - uid: 2469 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,24.5 - parent: 2 - - uid: 2470 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,28.5 - parent: 2 - - uid: 2471 - components: - - type: Transform - pos: 13.5,32.5 - parent: 2 - - uid: 2472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,20.5 - parent: 2 - uid: 2474 components: - type: Transform pos: 37.5,2.5 parent: 2 - - uid: 2475 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-5.5 - parent: 2 - uid: 2476 components: - type: Transform @@ -38052,6 +52968,12 @@ entities: - type: Transform pos: 62.5,2.5 parent: 2 + - uid: 2494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,9.5 + parent: 2 - uid: 2497 components: - type: Transform @@ -38126,18 +53048,14 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,31.5 parent: 2 - - uid: 2531 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,25.5 - parent: 2 - uid: 2534 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,39.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 2535 components: - type: Transform @@ -38149,24 +53067,14 @@ entities: rot: 3.141592653589793 rad pos: 31.5,33.5 parent: 2 - - uid: 2543 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,21.5 - parent: 2 - - uid: 2556 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,23.5 - parent: 2 - uid: 2563 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,33.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 2571 components: - type: Transform @@ -38179,46 +53087,33 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,33.5 parent: 2 - - uid: 2579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,39.5 - parent: 2 - - uid: 2588 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,36.5 - parent: 2 - - uid: 2602 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,40.5 - parent: 2 - uid: 2604 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,21.5 parent: 2 - - uid: 2605 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,25.5 - parent: 2 - uid: 2606 components: - type: Transform - pos: 42.5,20.5 + pos: 42.5,21.5 parent: 2 - uid: 2615 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,27.5 + rot: 4.71238898038469 rad + pos: 47.5,29.5 + parent: 2 + - uid: 2616 + components: + - type: Transform + pos: 41.5,17.5 + parent: 2 + - uid: 2623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,15.5 parent: 2 - uid: 2634 components: @@ -38266,12 +53161,13 @@ entities: - uid: 2642 components: - type: Transform - pos: 44.5,51.5 + rot: 1.5707963267948966 rad + pos: 42.5,51.5 parent: 2 - uid: 2643 components: - type: Transform - pos: 46.5,51.5 + pos: 49.5,51.5 parent: 2 - uid: 2644 components: @@ -38283,70 +53179,885 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 46.5,47.5 + pos: 48.5,47.5 parent: 2 - - uid: 3247 + - uid: 2728 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,-10.5 + pos: 41.5,-7.5 parent: 2 - - type: PointLight - energy: 25 - - type: RgbLightController - cycleRate: 0.19 - - uid: 4001 + - uid: 2729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-4.5 + rot: 3.141592653589793 rad + pos: 34.5,-10.5 parent: 2 - - type: PointLight - energy: 25 - - type: RgbLightController - cycleRate: 0.17 - - uid: 4002 + - uid: 2730 + components: + - type: Transform + pos: 34.5,-4.5 + parent: 2 + - uid: 2731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-10.5 + parent: 2 + - uid: 2732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-12.5 + parent: 2 + - uid: 2733 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,-5.5 + pos: 44.5,-10.5 parent: 2 - - type: PointLight - energy: 25 - - type: RgbLightController - cycleRate: 0.21 - - uid: 4003 + - uid: 2734 components: - type: Transform - pos: 29.5,-4.5 + rot: 1.5707963267948966 rad + pos: 37.5,-12.5 + parent: 2 + - uid: 2736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-8.5 + parent: 2 + - uid: 2738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-8.5 + parent: 2 + - uid: 2739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-2.5 + parent: 2 + - uid: 2740 + components: + - type: Transform + pos: 25.5,0.5 + parent: 2 + - uid: 3182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,9.5 + parent: 2 + - uid: 5127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-1.5 + parent: 2 + - uid: 6456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,0.5 parent: 2 - - type: PointLight - energy: 25 - - type: RgbLightController - cycleRate: 0.23 - uid: 6708 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,41.5 parent: 2 - - uid: 7028 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,39.5 - parent: 2 - uid: 7113 components: - type: Transform pos: 24.5,42.5 parent: 2 + - uid: 7194 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 7350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 2 + - uid: 7395 + components: + - type: Transform + pos: 6.5,0.5 + parent: 2 + - uid: 7398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 2 + - uid: 7400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 + - uid: 7466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 2 + - uid: 7479 + components: + - type: Transform + pos: 5.5,9.5 + parent: 2 + - uid: 7493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-3.5 + parent: 2 + - uid: 7597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,22.5 + parent: 2 + - uid: 7599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,38.5 + parent: 2 + - uid: 7727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,9.5 + parent: 2 + - uid: 7728 + components: + - type: Transform + pos: 51.5,21.5 + parent: 2 + - uid: 7839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,2.5 + parent: 2 + - uid: 8239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-10.5 + parent: 2 - uid: 8264 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,26.5 parent: 2 + - uid: 8313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,22.5 + parent: 2 + - uid: 8322 + components: + - type: Transform + pos: 27.5,31.5 + parent: 2 + - uid: 8323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,26.5 + parent: 2 + - uid: 8326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,31.5 + parent: 2 + - uid: 8327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,29.5 + parent: 2 + - uid: 8328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,36.5 + parent: 2 + - uid: 8329 + components: + - type: Transform + pos: 43.5,41.5 + parent: 2 + - uid: 8330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,37.5 + parent: 2 + - uid: 8331 + components: + - type: Transform + pos: 33.5,41.5 + parent: 2 + - uid: 8332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,39.5 + parent: 2 + - uid: 8333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,39.5 + parent: 2 + - uid: 8334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,37.5 + parent: 2 + - uid: 8335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,37.5 + parent: 2 + - uid: 8336 + components: + - type: Transform + pos: 31.5,35.5 + parent: 2 + - uid: 8337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,33.5 + parent: 2 + - uid: 8338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,33.5 + parent: 2 + - uid: 8340 + components: + - type: Transform + pos: 20.5,39.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 8341 + components: + - type: Transform + pos: 15.5,39.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 8342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,35.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 8344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,38.5 + parent: 2 + - uid: 8345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,31.5 + parent: 2 + - uid: 8346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,24.5 + parent: 2 + - uid: 8347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,27.5 + parent: 2 + - uid: 8348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,20.5 + parent: 2 + - uid: 8586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,5.5 + parent: 2 + - uid: 8587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 2 + - uid: 8588 + components: + - type: Transform + pos: 14.5,16.5 + parent: 2 + - uid: 8589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,4.5 + parent: 2 + - uid: 8590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,5.5 + parent: 2 + - uid: 8591 + components: + - type: Transform + pos: 30.5,5.5 + parent: 2 + - uid: 8592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,2.5 + parent: 2 + - uid: 8594 + components: + - type: Transform + pos: 38.5,23.5 + parent: 2 + - uid: 8595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,17.5 + parent: 2 + - uid: 8596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,23.5 + parent: 2 + - uid: 8597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,25.5 + parent: 2 + - uid: 8599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,36.5 + parent: 2 + - uid: 8600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,31.5 + parent: 2 + - uid: 8601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,28.5 + parent: 2 + - uid: 8602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,36.5 + parent: 2 + - uid: 8603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,41.5 + parent: 2 + - uid: 8604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,39.5 + parent: 2 + - uid: 8605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,43.5 + parent: 2 + - uid: 8606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,50.5 + parent: 2 + - uid: 8607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,46.5 + parent: 2 + - uid: 8640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,49.5 + parent: 2 + - uid: 8641 + components: + - type: Transform + pos: 25.5,57.5 + parent: 2 + - uid: 8642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,49.5 + parent: 2 + - uid: 8643 + components: + - type: Transform + pos: 19.5,57.5 + parent: 2 + - uid: 8644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,52.5 + parent: 2 + - uid: 8645 + components: + - type: Transform + pos: 37.5,54.5 + parent: 2 + - uid: 8646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,50.5 + parent: 2 + - uid: 8647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,18.5 + parent: 2 + - uid: 8648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,18.5 + parent: 2 + - uid: 10709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-68.5 + parent: 3564 + - uid: 10710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-63.5 + parent: 3564 + - uid: 10711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-63.5 + parent: 3564 + - uid: 10712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-68.5 + parent: 3564 + - uid: 10713 + components: + - type: Transform + pos: 27.5,-63.5 + parent: 3564 + - uid: 10714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-69.5 + parent: 3564 + - uid: 10715 + components: + - type: Transform + pos: 15.5,-65.5 + parent: 3564 + - uid: 10716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-61.5 + parent: 3564 + - uid: 10717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-58.5 + parent: 3564 + - uid: 10718 + components: + - type: Transform + pos: 27.5,-57.5 + parent: 3564 + - uid: 10719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-61.5 + parent: 3564 + - uid: 10720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-60.5 + parent: 3564 + - uid: 10721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-58.5 + parent: 3564 + - uid: 10722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-57.5 + parent: 3564 + - uid: 10723 + components: + - type: Transform + pos: 28.5,-52.5 + parent: 3564 + - uid: 10724 + components: + - type: Transform + pos: 17.5,-52.5 + parent: 3564 + - uid: 10725 + components: + - type: Transform + pos: 17.5,-48.5 + parent: 3564 + - uid: 10726 + components: + - type: Transform + pos: 28.5,-48.5 + parent: 3564 + - uid: 10727 + components: + - type: Transform + pos: 28.5,-44.5 + parent: 3564 + - uid: 10728 + components: + - type: Transform + pos: 17.5,-44.5 + parent: 3564 + - uid: 10729 + components: + - type: Transform + pos: 28.5,-40.5 + parent: 3564 + - uid: 10730 + components: + - type: Transform + pos: 28.5,-36.5 + parent: 3564 + - uid: 10731 + components: + - type: Transform + pos: 17.5,-36.5 + parent: 3564 + - uid: 10732 + components: + - type: Transform + pos: 28.5,-32.5 + parent: 3564 + - uid: 10733 + components: + - type: Transform + pos: 15.5,-31.5 + parent: 3564 + - uid: 10734 + components: + - type: Transform + pos: 14.5,-40.5 + parent: 3564 + - uid: 10735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-45.5 + parent: 3564 + - uid: 10736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-37.5 + parent: 3564 + - uid: 10737 + components: + - type: Transform + pos: 8.5,-39.5 + parent: 3564 + - uid: 10738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-37.5 + parent: 3564 + - uid: 10739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-51.5 + parent: 3564 + - uid: 10740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-51.5 + parent: 3564 + - uid: 10741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-47.5 + parent: 3564 + - uid: 10742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-43.5 + parent: 3564 + - uid: 10743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-39.5 + parent: 3564 + - uid: 10744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-35.5 + parent: 3564 + - uid: 10745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-35.5 + parent: 3564 + - uid: 10746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-39.5 + parent: 3564 + - uid: 10748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-47.5 + parent: 3564 + - uid: 10749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-42.5 + parent: 3564 + - uid: 10750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-21.5 + parent: 3564 + - uid: 10751 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 3564 + - uid: 10752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-29.5 + parent: 3564 + - uid: 10753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-29.5 + parent: 3564 + - uid: 10754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-23.5 + parent: 3564 + - uid: 10755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-26.5 + parent: 3564 + - uid: 10756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-17.5 + parent: 3564 + - uid: 10757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-22.5 + parent: 3564 + - uid: 10758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-18.5 + parent: 3564 + - uid: 10759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-22.5 + parent: 3564 + - uid: 10760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-23.5 + parent: 3564 + - uid: 10761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-25.5 + parent: 3564 + - uid: 10762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-30.5 + parent: 3564 + - uid: 10763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-32.5 + parent: 3564 + - uid: 10764 + components: + - type: Transform + pos: 29.5,-25.5 + parent: 3564 + - uid: 11221 + components: + - type: Transform + pos: 51.5,9.5 + parent: 2 + - uid: 11222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,4.5 + parent: 2 +- proto: PoweredSmallLight + entities: + - uid: 4244 + components: + - type: Transform + pos: 21.5,20.5 + parent: 2 + - uid: 4509 + components: + - type: Transform + pos: 31.5,20.5 + parent: 2 + - uid: 5979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,20.5 + parent: 2 + - uid: 5980 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - uid: 6043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,26.5 + parent: 2 + - uid: 6173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,30.5 + parent: 2 + - uid: 6550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,24.5 + parent: 2 + - uid: 6551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,28.5 + parent: 2 + - uid: 6552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,22.5 + parent: 2 + - uid: 6581 + components: + - type: Transform + pos: 23.5,18.5 + parent: 2 + - uid: 6613 + components: + - type: Transform + pos: 34.5,18.5 + parent: 2 - proto: PoweredWarmSmallLight entities: - uid: 1962 @@ -38355,17 +54066,6 @@ entities: rot: 3.141592653589793 rad pos: 54.5,19.5 parent: 2 - - uid: 2234 - components: - - type: Transform - pos: 9.5,38.5 - parent: 2 - - uid: 2235 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-12.5 - parent: 2 - uid: 2242 components: - type: Transform @@ -38384,27 +54084,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-14.5 parent: 2 - - uid: 2487 - components: - - type: Transform - pos: 35.5,-9.5 - parent: 2 - - uid: 2488 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-10.5 - parent: 2 - - uid: 2489 - components: - - type: Transform - pos: 41.5,-11.5 - parent: 2 - - uid: 2620 - components: - - type: Transform - pos: 52.5,21.5 - parent: 2 - uid: 2742 components: - type: Transform @@ -38450,6 +54129,11 @@ entities: - type: Transform pos: 13.5,13.5 parent: 2 + - uid: 10621 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 - proto: PresentTrash entities: - uid: 7521 @@ -38464,107 +54148,225 @@ entities: parent: 2 - proto: Protolathe entities: - - uid: 2379 + - uid: 1508 components: - type: Transform - pos: 48.5,7.5 + pos: 54.5,7.5 parent: 2 - - uid: 7564 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices + - uid: 8479 components: - type: Transform - pos: 39.5,35.5 - parent: 2 -- proto: ProtolatheMachineCircuitboard - entities: - - uid: 2184 - components: - - type: Transform - pos: 13.5,-12.5 + pos: 36.5,33.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: ProximitySensor entities: + - uid: 828 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 2378 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 2412 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - uid: 2448 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 + - uid: 2627 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - uid: 2861 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 - uid: 7180 components: - type: Transform pos: 59.5,34.5 parent: 2 - - uid: 7196 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 2 - - uid: 7198 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 2 - - uid: 7200 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 2 - - uid: 7225 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 2 - uid: 7254 components: - type: Transform pos: 55.5,29.5 parent: 2 - - uid: 7262 +- proto: PuddleBloodSmall + entities: + - uid: 6348 components: - type: Transform - pos: 33.5,-4.5 - parent: 2 - - uid: 7263 - components: - - type: Transform - pos: 33.5,-4.5 + pos: 7.5,34.5 parent: 2 - proto: Rack entities: - - uid: 1313 - components: - - type: Transform - pos: 12.5,-7.5 - parent: 2 - - uid: 2064 - components: - - type: Transform - pos: 49.5,39.5 - parent: 2 - - uid: 2496 - components: - - type: Transform - pos: 9.5,-10.5 - parent: 2 - - uid: 2791 - components: - - type: Transform - pos: 13.5,-10.5 - parent: 2 - - uid: 2792 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 2 - - uid: 2793 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 2 - - uid: 2795 + - uid: 765 components: - type: Transform pos: 9.5,-12.5 parent: 2 - - uid: 2796 + - uid: 2619 components: - type: Transform - pos: 10.5,-12.5 + pos: 13.5,2.5 parent: 2 + - uid: 2632 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - uid: 3371 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 3667 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 4248 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 + - uid: 4724 + components: + - type: Transform + pos: 30.5,52.5 + parent: 2 + - uid: 4725 + components: + - type: Transform + pos: 30.5,51.5 + parent: 2 + - uid: 4726 + 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: 32.5,51.5 + parent: 2 + - uid: 4732 + components: + - type: Transform + pos: 32.5,52.5 + parent: 2 + - uid: 4733 + components: + - type: Transform + pos: 30.5,48.5 + parent: 2 + - uid: 5029 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - uid: 5135 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 6233 + components: + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 7348 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 7353 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 7359 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 7366 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 7768 + components: + - type: Transform + pos: 28.5,33.5 + parent: 2 + - uid: 7804 + components: + - type: Transform + pos: 27.5,33.5 + parent: 2 + - uid: 10410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-69.5 + parent: 3564 + - uid: 10418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-69.5 + parent: 3564 + - uid: 10419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-69.5 + parent: 3564 + - uid: 10420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-69.5 + parent: 3564 + - uid: 10421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-69.5 + parent: 3564 + - uid: 10422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-69.5 + parent: 3564 - proto: RadioHandheld entities: - uid: 2370 @@ -38572,6 +54374,16 @@ entities: - type: Transform pos: 60.62494,34.605804 parent: 2 + - uid: 6690 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 + - uid: 6693 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 - uid: 7587 components: - type: Transform @@ -38579,40 +54391,28 @@ entities: parent: 2 - proto: Railing entities: - - uid: 4057 + - uid: 235 components: - type: Transform - pos: 30.5,3.5 + pos: 26.5,-6.5 parent: 2 - - uid: 4058 + - uid: 241 components: - type: Transform - pos: 29.5,3.5 + pos: 27.5,-6.5 parent: 2 - - uid: 4059 + - uid: 254 components: - type: Transform - pos: 28.5,3.5 + rot: 1.5707963267948966 rad + pos: 28.5,-5.5 parent: 2 - - uid: 4060 +- proto: RailingCorner + entities: + - uid: 250 components: - type: Transform - pos: 27.5,3.5 - parent: 2 - - uid: 4061 - components: - - type: Transform - pos: 26.5,3.5 - parent: 2 - - uid: 4062 - components: - - type: Transform - pos: 25.5,3.5 - parent: 2 - - uid: 4063 - components: - - type: Transform - pos: 24.5,3.5 + pos: 28.5,-6.5 parent: 2 - proto: RandomEngineerCorpseSpawner entities: @@ -38621,710 +54421,329 @@ entities: - type: Transform pos: 35.5,45.5 parent: 2 -- proto: RandomMeat - entities: - - uid: 229 - components: - - type: Transform - pos: 25.5,-12.5 - parent: 2 -- proto: RandomSpawner - entities: - - uid: 291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,57.5 - parent: 2 - - uid: 2157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,0.5 - parent: 2 - - uid: 2282 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,23.5 - parent: 2 - - uid: 2768 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,49.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: 6157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,45.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: 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: 7357 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,2.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: 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: 7376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,14.5 - parent: 2 - - uid: 7381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,32.5 - parent: 2 - - uid: 7384 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,12.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: 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: 6236 + components: + - type: Transform + pos: 9.5,0.5 + parent: 2 - uid: 7287 components: - type: Transform pos: 58.5,44.5 parent: 2 + - uid: 7360 + components: + - type: Transform + pos: 58.5,53.5 + parent: 2 - proto: RandomVendingDrinks entities: - - uid: 1376 - components: - - type: Transform - pos: 15.5,7.5 - parent: 2 - - uid: 1550 - components: - - type: Transform - pos: 52.5,14.5 - parent: 2 - uid: 1817 components: - type: Transform pos: 23.5,7.5 parent: 2 - - uid: 4848 - components: - - type: Transform - pos: 56.5,40.5 - parent: 2 - - uid: 5174 - components: - - type: Transform - pos: 11.5,0.5 - parent: 2 - uid: 7003 components: - type: Transform - pos: 47.5,-12.5 - parent: 2 -- proto: RandomVendingSnacks - entities: - - uid: 697 - components: - - type: Transform - pos: 12.5,0.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 + pos: 13.5,0.5 parent: 2 - uid: 7004 components: - type: Transform - pos: 48.5,-12.5 + pos: 58.5,40.5 parent: 2 - uid: 7495 + components: + - type: Transform + pos: 42.5,13.5 + parent: 2 + - uid: 7532 + components: + - type: Transform + pos: 48.5,-12.5 + parent: 2 + - uid: 7744 components: - type: Transform pos: 16.5,7.5 parent: 2 -- proto: RCD - entities: - - uid: 7172 + - uid: 7780 components: - type: Transform - pos: 45.5,33.5 + pos: 53.5,26.5 parent: 2 -- proto: Recycler - entities: - - uid: 290 + - uid: 10567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,5.5 + pos: 14.5,-20.5 + parent: 3564 + - uid: 11224 + components: + - type: Transform + pos: 63.5,2.5 + parent: 2 +- proto: RandomVendingSnacks + entities: + - uid: 1815 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 + - uid: 2281 + components: + - type: Transform + pos: 22.5,7.5 + parent: 2 + - uid: 5213 + components: + - type: Transform + pos: 15.5,7.5 + parent: 2 + - uid: 5439 + components: + - type: Transform + pos: 56.5,40.5 + parent: 2 + - uid: 5444 + components: + - type: Transform + pos: 12.5,0.5 + parent: 2 + - uid: 5900 + components: + - type: Transform + pos: 47.5,-12.5 + parent: 2 + - uid: 6574 + components: + - type: Transform + pos: 52.5,26.5 + parent: 2 + - uid: 10570 + components: + - type: Transform + pos: 15.5,-20.5 + parent: 3564 + - uid: 11223 + components: + - type: Transform + pos: 62.5,2.5 parent: 2 - proto: ReinforcedPlasmaWindow entities: - - uid: 1354 + - uid: 143 components: - type: Transform - pos: 22.5,28.5 + pos: 23.5,-6.5 parent: 2 - - uid: 1379 + - uid: 150 components: - type: Transform - pos: 18.5,32.5 + pos: 24.5,-5.5 parent: 2 - - uid: 1380 + - uid: 165 components: - type: Transform - pos: 19.5,32.5 + pos: 24.5,-6.5 parent: 2 - - uid: 1383 + - uid: 176 components: - type: Transform - pos: 24.5,32.5 + pos: 22.5,-3.5 parent: 2 - - uid: 1390 + - uid: 186 components: - type: Transform - pos: 23.5,32.5 + pos: 23.5,-3.5 parent: 2 - - uid: 1393 + - uid: 551 components: - type: Transform - pos: 25.5,29.5 + pos: 24.5,-0.5 parent: 2 - - uid: 1394 + - uid: 553 components: - type: Transform - pos: 25.5,30.5 + pos: 26.5,-0.5 parent: 2 - - uid: 1405 + - uid: 554 components: - type: Transform - pos: 25.5,28.5 + pos: 28.5,-1.5 parent: 2 - - uid: 1439 + - uid: 626 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 2 + - uid: 629 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 2 + - uid: 675 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 + - uid: 699 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 2 + - uid: 710 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 2 + - uid: 726 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - uid: 761 + components: + - type: Transform + pos: 26.5,0.5 + parent: 2 + - uid: 766 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 2 + - uid: 903 components: - type: Transform pos: 22.5,32.5 parent: 2 - - uid: 1445 + - uid: 913 components: - type: Transform - pos: 17.5,32.5 + pos: 19.5,32.5 parent: 2 - - uid: 1462 + - uid: 914 components: - type: Transform pos: 25.5,32.5 parent: 2 - - uid: 1463 + - uid: 963 components: - type: Transform - pos: 25.5,31.5 + pos: 24.5,32.5 parent: 2 - - uid: 1477 + - uid: 1465 components: - type: Transform - pos: 25.5,27.5 + pos: 20.5,32.5 parent: 2 - - uid: 1525 + - uid: 1731 components: - type: Transform - pos: 25.5,26.5 + pos: 22.5,-6.5 parent: 2 - - uid: 1526 + - uid: 2899 components: - type: Transform - pos: 24.5,26.5 + pos: 24.5,-4.5 parent: 2 - - uid: 1527 + - uid: 4014 components: - type: Transform - pos: 23.5,26.5 + pos: 27.5,-11.5 parent: 2 - - uid: 1664 + - uid: 4057 components: - type: Transform - pos: 19.5,31.5 + pos: 29.5,-11.5 parent: 2 - - uid: 1665 + - uid: 4058 components: - type: Transform - pos: 19.5,30.5 + pos: 28.5,-11.5 parent: 2 - - uid: 1666 + - uid: 4664 components: - type: Transform - pos: 19.5,29.5 + pos: 18.5,32.5 parent: 2 - - uid: 1667 + - uid: 4665 components: - type: Transform - pos: 18.5,29.5 + pos: 23.5,32.5 parent: 2 - - uid: 1668 + - uid: 4682 components: - type: Transform - pos: 17.5,29.5 + pos: 17.5,32.5 parent: 2 - - uid: 1669 + - uid: 9661 components: - type: Transform - pos: 19.5,28.5 - parent: 2 - - uid: 1670 + pos: 14.5,-57.5 + parent: 3564 + - uid: 9662 components: - type: Transform - pos: 19.5,27.5 - parent: 2 - - uid: 1671 + pos: 14.5,-58.5 + parent: 3564 + - uid: 9663 components: - type: Transform - pos: 22.5,31.5 - parent: 2 - - uid: 1672 + pos: 14.5,-59.5 + parent: 3564 + - uid: 9664 components: - type: Transform - pos: 22.5,30.5 - parent: 2 - - uid: 1673 + pos: 13.5,-59.5 + parent: 3564 + - uid: 9665 components: - type: Transform - pos: 22.5,29.5 - parent: 2 - - uid: 1674 + pos: 12.5,-59.5 + parent: 3564 + - uid: 9666 components: - type: Transform - pos: 23.5,29.5 - parent: 2 - - uid: 1675 + pos: 12.5,-58.5 + parent: 3564 + - uid: 9667 components: - type: Transform - pos: 24.5,29.5 - parent: 2 - - uid: 1685 + pos: 12.5,-57.5 + parent: 3564 + - uid: 9668 components: - type: Transform - pos: 22.5,26.5 - parent: 2 - - uid: 1687 + pos: 11.5,-59.5 + parent: 3564 + - uid: 9676 components: - type: Transform - pos: 22.5,27.5 - parent: 2 + pos: 15.5,-62.5 + parent: 3564 + - uid: 9677 + components: + - type: Transform + pos: 16.5,-62.5 + parent: 3564 + - uid: 9678 + components: + - type: Transform + pos: 17.5,-62.5 + parent: 3564 + - uid: 9679 + components: + - type: Transform + pos: 14.5,-63.5 + parent: 3564 + - uid: 9680 + components: + - type: Transform + pos: 14.5,-62.5 + parent: 3564 - proto: ReinforcedWindow entities: - uid: 9 @@ -39367,16 +54786,6 @@ entities: - type: Transform pos: 2.5,-4.5 parent: 2 - - uid: 89 - components: - - type: Transform - pos: 30.5,17.5 - parent: 2 - - uid: 122 - components: - - type: Transform - pos: -5.5,6.5 - parent: 2 - uid: 126 components: - type: Transform @@ -39402,11 +54811,6 @@ entities: - type: Transform pos: 15.5,3.5 parent: 2 - - uid: 143 - components: - - type: Transform - pos: -7.5,6.5 - parent: 2 - uid: 144 components: - type: Transform @@ -39507,36 +54911,11 @@ entities: - 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: 312 components: - type: Transform pos: 13.5,-15.5 parent: 2 - - uid: 358 - components: - - type: Transform - pos: -7.5,4.5 - parent: 2 - uid: 360 components: - type: Transform @@ -39617,6 +54996,11 @@ entities: - type: Transform pos: 2.5,36.5 parent: 2 + - uid: 562 + components: + - type: Transform + pos: 51.5,18.5 + parent: 2 - uid: 568 components: - type: Transform @@ -39627,16 +55011,6 @@ entities: - type: Transform pos: 21.5,13.5 parent: 2 - - uid: 660 - components: - - type: Transform - pos: 20.5,36.5 - parent: 2 - - uid: 707 - components: - - type: Transform - pos: 20.5,37.5 - parent: 2 - uid: 713 components: - type: Transform @@ -39647,11 +55021,6 @@ entities: - type: Transform pos: 12.5,40.5 parent: 2 - - uid: 719 - components: - - type: Transform - pos: 20.5,35.5 - parent: 2 - uid: 736 components: - type: Transform @@ -39672,11 +55041,6 @@ entities: - type: Transform pos: 45.5,42.5 parent: 2 - - uid: 935 - components: - - type: Transform - pos: 0.5,-9.5 - parent: 2 - uid: 967 components: - type: Transform @@ -39872,81 +55236,6 @@ entities: - type: Transform pos: 41.5,0.5 parent: 2 - - uid: 1453 - components: - - type: Transform - pos: 18.5,38.5 - parent: 2 - - uid: 1499 - components: - - type: Transform - pos: 30.5,-10.5 - parent: 2 - - uid: 1501 - components: - - type: Transform - pos: 29.5,-10.5 - parent: 2 - - uid: 1502 - components: - - type: Transform - pos: 28.5,-10.5 - parent: 2 - - uid: 1503 - components: - - type: Transform - pos: 26.5,-10.5 - parent: 2 - - uid: 1511 - components: - - type: Transform - pos: 20.5,38.5 - parent: 2 - - uid: 1516 - components: - - type: Transform - pos: 25.5,-10.5 - parent: 2 - - uid: 1622 - components: - - type: Transform - pos: 19.5,38.5 - parent: 2 - - uid: 1657 - components: - - type: Transform - pos: 32.5,-4.5 - parent: 2 - - uid: 1684 - components: - - type: Transform - pos: 32.5,-6.5 - parent: 2 - - uid: 1691 - components: - - type: Transform - pos: 32.5,-7.5 - parent: 2 - - uid: 1692 - components: - - type: Transform - pos: 9.5,27.5 - parent: 2 - - uid: 1811 - components: - - type: Transform - pos: 24.5,8.5 - parent: 2 - - uid: 1812 - components: - - type: Transform - pos: 25.5,8.5 - parent: 2 - - uid: 1813 - components: - - type: Transform - pos: 26.5,8.5 - parent: 2 - uid: 1814 components: - type: Transform @@ -40067,66 +55356,11 @@ entities: - type: Transform pos: 13.5,40.5 parent: 2 - - uid: 1922 - components: - - type: Transform - pos: 10.5,20.5 - parent: 2 - uid: 1933 components: - type: Transform pos: 51.5,38.5 parent: 2 - - uid: 1938 - components: - - type: Transform - pos: 29.5,17.5 - parent: 2 - - uid: 1940 - components: - - type: Transform - pos: 9.5,21.5 - parent: 2 - - uid: 1941 - components: - - type: Transform - pos: 35.5,15.5 - parent: 2 - - uid: 1948 - components: - - type: Transform - pos: 10.5,28.5 - parent: 2 - - uid: 1950 - components: - - type: Transform - pos: 8.5,27.5 - parent: 2 - - uid: 1952 - components: - - type: Transform - pos: 10.5,27.5 - parent: 2 - - uid: 1955 - components: - - type: Transform - pos: 8.5,24.5 - parent: 2 - - uid: 1956 - components: - - type: Transform - pos: 9.5,24.5 - parent: 2 - - uid: 1961 - components: - - type: Transform - pos: 10.5,24.5 - parent: 2 - - uid: 1966 - components: - - type: Transform - pos: 31.5,17.5 - parent: 2 - uid: 1970 components: - type: Transform @@ -40157,20 +55391,15 @@ entities: - type: Transform pos: 51.5,-17.5 parent: 2 - - uid: 2109 - components: - - type: Transform - pos: 10.5,21.5 - parent: 2 - uid: 2127 components: - type: Transform pos: 53.5,-15.5 parent: 2 - - uid: 2129 + - uid: 2130 components: - type: Transform - pos: 8.5,21.5 + pos: 44.5,26.5 parent: 2 - uid: 2139 components: @@ -40282,11 +55511,6 @@ entities: - type: Transform pos: 64.5,35.5 parent: 2 - - uid: 2464 - components: - - type: Transform - pos: 64.5,27.5 - parent: 2 - uid: 2590 components: - type: Transform @@ -40312,70 +55536,96 @@ entities: - type: Transform pos: 56.5,63.5 parent: 2 - - uid: 2684 - components: - - type: Transform - pos: 0.5,-11.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: 2756 components: - type: Transform pos: -0.5,36.5 parent: 2 - - uid: 2758 + - uid: 3245 components: - type: Transform - pos: -1.5,-9.5 + pos: 58.5,-18.5 parent: 2 - - uid: 2759 + - uid: 3247 components: - type: Transform - pos: -1.5,-11.5 + pos: 58.5,-19.5 parent: 2 - - uid: 4489 + - uid: 3248 components: - type: Transform - pos: 54.5,59.5 + pos: 58.5,-20.5 parent: 2 - - uid: 4490 + - uid: 3249 components: - type: Transform - pos: 53.5,59.5 + pos: 56.5,-18.5 parent: 2 + - uid: 3250 + components: + - type: Transform + pos: 56.5,-19.5 + parent: 2 + - uid: 3259 + components: + - type: Transform + pos: 56.5,-20.5 + parent: 2 + - uid: 3567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-39.5 + parent: 3564 + - uid: 3568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-40.5 + parent: 3564 + - uid: 3569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-42.5 + parent: 3564 + - uid: 3570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-43.5 + parent: 3564 + - uid: 3571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-44.5 + parent: 3564 + - uid: 3572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-45.5 + parent: 3564 - uid: 4494 components: - type: Transform pos: 55.5,61.5 parent: 2 - - uid: 4495 + - uid: 4685 components: - type: Transform - pos: 54.5,61.5 + pos: 25.5,25.5 parent: 2 - - uid: 4496 + - uid: 4686 components: - type: Transform - pos: 53.5,61.5 + pos: 25.5,24.5 + parent: 2 + - uid: 4697 + components: + - type: Transform + pos: 25.5,23.5 parent: 2 - uid: 6011 components: @@ -40392,11 +55642,6 @@ entities: - 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 @@ -40407,10 +55652,363 @@ entities: - type: Transform pos: 53.5,-17.5 parent: 2 - - uid: 6305 + - uid: 6345 components: - type: Transform - pos: 62.5,59.5 + pos: 46.5,34.5 + parent: 2 + - uid: 7192 + components: + - type: Transform + pos: 25.5,22.5 + parent: 2 + - uid: 7702 + components: + - type: Transform + pos: 47.5,26.5 + parent: 2 + - uid: 8318 + components: + - type: Transform + pos: 46.5,26.5 + parent: 2 + - uid: 8320 + components: + - type: Transform + pos: 45.5,26.5 + parent: 2 + - uid: 8393 + components: + - type: Transform + pos: 47.5,34.5 + parent: 2 + - uid: 8394 + components: + - type: Transform + pos: 44.5,32.5 + parent: 2 + - uid: 9452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-46.5 + parent: 3564 + - uid: 9453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-46.5 + parent: 3564 + - uid: 9712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-60.5 + parent: 3564 + - uid: 9734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-18.5 + parent: 3564 + - uid: 9735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-24.5 + parent: 3564 + - uid: 9736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-24.5 + parent: 3564 + - uid: 9737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-25.5 + parent: 3564 + - uid: 9738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-24.5 + parent: 3564 + - uid: 9739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-24.5 + parent: 3564 + - uid: 9740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-29.5 + parent: 3564 + - uid: 9741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-32.5 + parent: 3564 + - uid: 9742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-33.5 + parent: 3564 + - uid: 9743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-27.5 + parent: 3564 + - uid: 9744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-30.5 + parent: 3564 + - uid: 9745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-26.5 + parent: 3564 + - uid: 9746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-25.5 + parent: 3564 + - uid: 9747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-30.5 + parent: 3564 + - uid: 9748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-29.5 + parent: 3564 + - uid: 9749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-28.5 + parent: 3564 + - uid: 9750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-33.5 + parent: 3564 + - uid: 9751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-34.5 + parent: 3564 + - uid: 9752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-36.5 + parent: 3564 + - uid: 9753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-37.5 + parent: 3564 + - uid: 9754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-36.5 + parent: 3564 + - uid: 9755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-37.5 + parent: 3564 + - uid: 9758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-40.5 + parent: 3564 + - uid: 9759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-41.5 + parent: 3564 + - uid: 9760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-44.5 + parent: 3564 + - uid: 9761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-45.5 + parent: 3564 + - uid: 9762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-44.5 + parent: 3564 + - uid: 9763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-45.5 + parent: 3564 + - uid: 9764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-48.5 + parent: 3564 + - uid: 9765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-49.5 + parent: 3564 + - uid: 9766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-48.5 + parent: 3564 + - uid: 9767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-49.5 + parent: 3564 + - uid: 9768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-52.5 + parent: 3564 + - uid: 9769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-53.5 + parent: 3564 + - uid: 9770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-52.5 + parent: 3564 + - uid: 9771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-53.5 + parent: 3564 + - uid: 9772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-56.5 + parent: 3564 + - uid: 9773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-56.5 + parent: 3564 + - uid: 9774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-56.5 + parent: 3564 + - uid: 9775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-56.5 + parent: 3564 + - uid: 9776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-62.5 + parent: 3564 + - uid: 9777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-62.5 + parent: 3564 + - uid: 9778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-62.5 + parent: 3564 + - uid: 9779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-62.5 + parent: 3564 + - uid: 9780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-63.5 + parent: 3564 + - uid: 9781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-64.5 + parent: 3564 + - uid: 9782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-65.5 + parent: 3564 + - uid: 9783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-67.5 + parent: 3564 + - uid: 9784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-68.5 + parent: 3564 + - uid: 9785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-69.5 + parent: 3564 + - uid: 11559 + components: + - type: Transform + pos: 23.5,26.5 parent: 2 - proto: RemoteSignaller entities: @@ -40424,31 +56022,66 @@ entities: - type: Transform pos: 56.5,29.5 parent: 2 + - uid: 808 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 1352 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 - uid: 1614 components: - type: Transform pos: 63.5,32.5 parent: 2 + - uid: 2134 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 2228 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 2284 + components: + - type: Transform + pos: 48.5,20.5 + parent: 2 + - uid: 2285 + components: + - type: Transform + pos: 46.5,20.5 + parent: 2 + - uid: 2367 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 2391 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 2559 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 - uid: 6684 components: - type: Transform pos: 60.635353,34.56153 parent: 2 - - uid: 7195 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 2 - uid: 7208 components: - type: Transform pos: 63.5,30.5 parent: 2 - - uid: 7216 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 2 - uid: 7222 components: - type: Transform @@ -40459,10 +56092,10 @@ entities: - type: Transform pos: 18.5,-0.5 parent: 2 - - uid: 7697 + - uid: 7695 components: - type: Transform - pos: 46.5,19.5 + pos: 52.5,9.5 parent: 2 - uid: 7698 components: @@ -40479,27 +56112,74 @@ entities: - type: Transform pos: 45.5,19.5 parent: 2 -- proto: ResearchAndDevelopmentServer - entities: - - uid: 1537 + - uid: 7734 components: - type: Transform - pos: 52.5,11.5 + pos: 48.5,19.5 + parent: 2 + - uid: 8400 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 8407 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 8410 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 11126 + components: + - type: Transform + pos: 49.5,20.5 + parent: 2 + - uid: 11131 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 + - uid: 11133 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 + - uid: 11146 + components: + - type: Transform + pos: 49.5,19.5 + parent: 2 + - uid: 11147 + components: + - type: Transform + pos: 49.5,19.5 + parent: 2 + - uid: 11348 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 2487 + components: + - type: Transform + pos: -3.5,7.5 parent: 2 - proto: SalvageHumanCorpseSpawner entities: - - uid: 7267 + - uid: 5863 components: - type: Transform - rot: 1.5707963267948966 rad pos: 27.5,9.5 parent: 2 -- proto: SalvageMaterialCrateSpawner - entities: - - uid: 8291 + - uid: 7799 components: - type: Transform - pos: 14.5,22.5 + pos: 9.5,34.5 parent: 2 - proto: Screen entities: @@ -40518,37 +56198,70 @@ entities: - type: Transform pos: 49.5,-12.5 parent: 2 -- proto: SecurityTechFab +- proto: Screwdriver entities: - - uid: 1341 + - uid: 6566 components: - type: Transform - pos: 39.5,-4.5 + pos: 31.5,-10.5 parent: 2 - - type: TechnologyDatabase - supportedDisciplines: - - Industrial - - Arsenal - - Experimental - - CivilianServices + - uid: 6575 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - uid: 6589 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 + - uid: 6689 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 8265 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 +- proto: SecurityTechFab + entities: + - uid: 10398 + components: + - type: Transform + pos: 29.5,-69.5 + parent: 3564 - proto: SeedExtractor entities: - - uid: 1981 + - uid: 10547 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 3564 +- proto: SheetGlass + entities: + - uid: 7184 components: - type: Transform pos: 20.5,-5.5 parent: 2 - proto: SheetGlass10 entities: - - uid: 2132 + - uid: 1766 components: - type: Transform - pos: 29.5,37.5 + pos: 38.5,31.5 parent: 2 - - uid: 4742 + - uid: 1792 components: - type: Transform - pos: 48.5,3.5 + pos: 38.5,31.5 + parent: 2 + - uid: 1884 + components: + - type: Transform + pos: 38.5,31.5 parent: 2 - uid: 7693 components: @@ -40560,19 +56273,84 @@ entities: - type: Transform pos: 45.5,19.5 parent: 2 -- proto: SheetPlasma10 - entities: - - uid: 1539 + - uid: 7816 components: - type: Transform - pos: 48.5,2.5 + pos: 53.5,9.5 + parent: 2 + - uid: 10527 + components: + - type: Transform + pos: 36.5,-26.5 + parent: 3564 + - uid: 10528 + components: + - type: Transform + pos: 35.5,-26.5 + parent: 3564 + - uid: 10529 + components: + - type: Transform + pos: 36.5,-26.5 + parent: 3564 + - uid: 10530 + components: + - type: Transform + pos: 35.5,-26.5 + parent: 3564 + - uid: 10531 + components: + - type: Transform + pos: 36.5,-26.5 + parent: 3564 + - uid: 10532 + components: + - type: Transform + pos: 35.5,-26.5 + parent: 3564 +- proto: SheetPlasma10 + entities: + - uid: 1363 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - uid: 1542 + components: + - type: Transform + pos: 51.5,19.5 + parent: 2 + - uid: 3743 + components: + - type: Transform + pos: 52.5,19.5 + parent: 2 + - uid: 7819 + components: + - type: Transform + pos: 53.5,9.5 + parent: 2 + - uid: 8470 + components: + - type: Transform + pos: 38.5,29.5 parent: 2 - proto: SheetPlasteel10 entities: - - uid: 2164 + - uid: 1774 components: - type: Transform - pos: 28.5,37.5 + pos: 38.5,30.5 + parent: 2 + - uid: 1783 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 1788 + components: + - type: Transform + pos: 38.5,30.5 parent: 2 - uid: 7691 components: @@ -40584,18 +56362,43 @@ entities: - type: Transform pos: 48.5,19.5 parent: 2 -- proto: SheetPlastic10 - entities: - - uid: 4738 + - uid: 10524 components: - type: Transform - pos: 48.5,4 + pos: 34.5,-25.5 + parent: 3564 + - uid: 10525 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 3564 + - uid: 10526 + components: + - type: Transform + pos: 36.5,-25.5 + parent: 3564 +- proto: SheetPlastic10 + entities: + - uid: 5346 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 + - uid: 6163 + components: + - type: Transform + pos: 50.5,20.5 parent: 2 - uid: 7696 components: - type: Transform pos: 47.5,19.5 parent: 2 + - uid: 7820 + components: + - type: Transform + pos: 53.5,9.5 + parent: 2 - proto: SheetSteel1 entities: - uid: 8 @@ -40615,15 +56418,40 @@ entities: parent: 2 - proto: SheetSteel10 entities: - - uid: 1917 + - uid: 860 components: - type: Transform - pos: 27.5,37.5 + pos: 38.5,29.5 parent: 2 - - uid: 3048 + - uid: 1552 components: - type: Transform - pos: 48.5,4.5 + pos: 47.5,19.5 + parent: 2 + - uid: 1553 + components: + - type: Transform + pos: 48.5,19.5 + parent: 2 + - uid: 1775 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 3239 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 3744 + components: + - type: Transform + pos: 49.5,19.5 + parent: 2 + - uid: 5344 + components: + - type: Transform + pos: 46.5,19.5 parent: 2 - uid: 7689 components: @@ -40635,18 +56463,90 @@ entities: - type: Transform pos: 49.5,21.5 parent: 2 + - uid: 10518 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 3564 + - uid: 10519 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 3564 + - uid: 10520 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 3564 + - uid: 10521 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 3564 + - uid: 10522 + components: + - type: Transform + pos: 36.5,-25.5 + parent: 3564 + - uid: 10523 + components: + - type: Transform + pos: 36.5,-25.5 + parent: 3564 + - uid: 11136 + components: + - type: Transform + pos: 50.5,21.5 + parent: 2 + - uid: 11137 + components: + - type: Transform + pos: 51.5,21.5 + parent: 2 + - uid: 11138 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 + - uid: 11143 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 + - uid: 11144 + components: + - type: Transform + pos: 51.5,19.5 + parent: 2 + - uid: 11145 + components: + - type: Transform + pos: 52.5,19.5 + parent: 2 + - uid: 11214 + components: + - type: Transform + pos: 53.5,9.5 + parent: 2 +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 5972 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 - proto: SignAi entities: + - uid: 1912 + components: + - type: Transform + pos: 40.5,49.5 + parent: 2 - uid: 2424 components: - type: Transform pos: 61.5,35.5 parent: 2 - - uid: 6120 - components: - - type: Transform - pos: 39.5,49.5 - parent: 2 - uid: 7236 components: - type: Transform @@ -40654,10 +56554,10 @@ entities: parent: 2 - proto: SignAiUpload entities: - - uid: 4557 + - uid: 4663 components: - type: Transform - pos: 29.5,49.5 + pos: 28.5,51.5 parent: 2 - proto: SignalButton entities: @@ -40681,43 +56581,6 @@ entities: 1254: - - Pressed - Toggle -- proto: SignalButtonDirectional - entities: - - uid: 7637 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,24.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1581: - - - Pressed - - Toggle - 504: - - - Pressed - - Toggle - - uid: 7644 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,21.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1909: - - - Pressed - - Toggle - - uid: 7646 - components: - - type: Transform - pos: 9.5,27.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 454: - - - Pressed - - Toggle - proto: SignalSwitchDirectional entities: - uid: 694 @@ -40755,13 +56618,389 @@ entities: - On - - Off - Off - 1897: + 8588: - - On - On - - Off - Off lastSignals: Status: True + - uid: 1473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8334: + - - On + - Toggle + - - Off + - Toggle + 8333: + - - On + - Toggle + - - Off + - Toggle + 8331: + - - On + - Toggle + - - Off + - Toggle + 8332: + - - On + - Toggle + - - Off + - Toggle + 8335: + - - On + - Toggle + - - Off + - Toggle + - uid: 2505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2049: + - - On + - Toggle + - - Off + - Toggle + 2171: + - - On + - Toggle + - - Off + - Toggle + 2437: + - - On + - Toggle + - - Off + - Toggle + - uid: 2602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2734: + - - On + - Toggle + - - Off + - Toggle + 2732: + - - On + - Toggle + - - Off + - Toggle + 2733: + - - On + - Toggle + - - Off + - Toggle + - uid: 2621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2197: + - - On + - Toggle + - - Off + - Toggle + 8594: + - - On + - Toggle + - - Off + - Toggle + 2623: + - - On + - Toggle + - - Off + - Toggle + 2201: + - - On + - Toggle + - - Off + - Toggle + - uid: 2633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7466: + - - On + - Toggle + - - Off + - Toggle + 7400: + - - On + - Toggle + - - Off + - Toggle + - uid: 2983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4244: + - - On + - Off + - - Off + - On + - uid: 3006 + components: + - type: Transform + pos: 34.5,36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8336: + - - On + - Toggle + - - Off + - Toggle + 2536: + - - On + - Toggle + - - Off + - Toggle + 8337: + - - On + - Toggle + - - Off + - Toggle + - uid: 3033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5980: + - - On + - Off + - - Off + - On + - uid: 3710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4509: + - - On + - Off + - - Off + - On + - uid: 4510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6581: + - - On + - Off + - - Off + - On + - uid: 4652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,29.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2529: + - - On + - Toggle + - - Off + - Toggle + 8322: + - - On + - Toggle + - - Off + - Toggle + 8323: + - - On + - Toggle + - - Off + - Toggle + 7597: + - - On + - Toggle + - - Off + - Toggle + 8313: + - - On + - Toggle + - - Off + - Toggle + - uid: 4683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 465: + - - On + - Toggle + - - Off + - Toggle + - uid: 5852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4060: + - - On + - Toggle + - - Off + - Toggle + - uid: 5861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3324: + - - On + - Toggle + - - Off + - Toggle + - uid: 5943 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6173: + - - On + - Off + - - Off + - On + 6551: + - - On + - Off + - - Off + - On + - uid: 6579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6613: + - - On + - Off + - - Off + - On + - uid: 6694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6043: + - - On + - Off + - - Off + - On + 6550: + - - On + - Off + - - Off + - On + 6552: + - - On + - Off + - - Off + - On + 5979: + - - On + - Off + - - Off + - On + - uid: 6731 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2730: + - - On + - Toggle + - - Off + - Toggle + 2740: + - - On + - Toggle + - - Off + - Toggle + 2739: + - - On + - Toggle + - - Off + - Toggle + 2738: + - - On + - Toggle + - - Off + - Toggle + 2731: + - - On + - Toggle + - - Off + - Toggle + 2729: + - - On + - Toggle + - - Off + - Toggle + 1859: + - - On + - Toggle + - - Off + - Toggle + 2736: + - - On + - Toggle + - - Off + - Toggle - uid: 7005 components: - type: Transform @@ -40791,12 +57030,46 @@ entities: - On - - Off - Off + 7479: + - - On + - On + - - Off + - Off lastSignals: Status: True + - uid: 7330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7395: + - - On + - Toggle + - - Off + - Toggle + 2263: + - - On + - Toggle + - - Off + - Toggle + 2388: + - - On + - Toggle + - - Off + - Toggle + 7350: + - - On + - Toggle + - - Off + - Toggle - uid: 7430 components: - type: Transform - pos: 24.5,12.5 + rot: 3.141592653589793 rad + pos: 22.5,12.5 parent: 2 - type: SignalSwitch state: True @@ -40839,12 +57112,12 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 7330: + 2070: - - On - On - - Off - Off - 3182: + 2193: - - On - On - - Off @@ -40912,8 +57185,8 @@ entities: - uid: 7462 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,40.5 + rot: -3.141592653589793 rad + pos: 54.5,38.5 parent: 2 - type: SignalSwitch state: True @@ -40924,6 +57197,11 @@ entities: - On - - Off - Off + 790: + - - On + - On + - - Off + - Off lastSignals: Status: True - uid: 7467 @@ -40936,12 +57214,7 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 152: - - - On - - On - - - Off - - Off - 2528: + 2196: - - On - On - - Off @@ -40951,6 +57224,36 @@ entities: - On - - Off - Off + 8602: + - - On + - On + - - Off + - Off + 8604: + - - On + - On + - - Off + - Off + 8603: + - - On + - On + - - Off + - Off + 8605: + - - On + - On + - - Off + - Off + 8607: + - - On + - On + - - Off + - Off + 8606: + - - On + - On + - - Off + - Off lastSignals: Status: True - uid: 7471 @@ -40979,18 +57282,28 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,23.5 + pos: 48.5,24.5 parent: 2 - type: SignalSwitch state: True - type: DeviceLinkSource linkedPorts: - 2618: + 2339: - - On - On - - Off - Off - 2632: + 8596: + - - On + - On + - - Off + - Off + 2198: + - - On + - On + - - Off + - Off + 8597: - - On - On - - Off @@ -41000,8 +57313,8 @@ entities: - uid: 7475 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,27.5 + rot: 3.141592653589793 rad + pos: 43.5,26.5 parent: 2 - type: SignalSwitch state: True @@ -41014,28 +57327,18 @@ entities: - Off lastSignals: Status: True - - uid: 7479 + - uid: 7477 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,21.5 + pos: 27.5,32.5 parent: 2 - - type: SignalSwitch - state: True - type: DeviceLinkSource linkedPorts: - 2616: + 1601: - - On - - On + - Toggle - - Off - - Off - 2623: - - - On - - On - - - Off - - Off - lastSignals: - Status: True + - Toggle - uid: 7480 components: - type: Transform @@ -41046,16 +57349,46 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 2621: + 2616: - - On - On - - Off - Off - 2619: + 2200: - - On - On - - Off - Off + 2199: + - - On + - On + - - Off + - Off + 8595: + - - On + - On + - - Off + - Off + 2232: + - - On + - On + - - Off + - Off + 3182: + - - On + - On + - - Off + - Off + 2494: + - - On + - On + - - Off + - Off + 608: + - - Off + - Off + - - On + - On lastSignals: Status: True - uid: 7481 @@ -41068,17 +57401,17 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 2494: + 7493: - - On - On - - Off - Off - 2388: + 7839: - - On - On - - Off - Off - 2624: + 8239: - - On - On - - Off @@ -41095,7 +57428,12 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 2633: + 2361: + - - On + - On + - - Off + - Off + 2066: - - On - On - - Off @@ -41122,19 +57460,7 @@ entities: - On - - Off - Off - lastSignals: - Status: True - - uid: 7489 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-7.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 2475: + 2728: - - On - On - - Off @@ -41160,6 +57486,11 @@ entities: - On - - Off - Off + 1464: + - - On + - On + - - Off + - Off lastSignals: Status: True - uid: 7491 @@ -41179,28 +57510,6 @@ entities: - Off lastSignals: Status: True - - uid: 7493 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,3.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 1914: - - - On - - On - - - Off - - Off - 1913: - - - On - - On - - - Off - - Off - lastSignals: - Status: True - uid: 7499 components: - type: Transform @@ -41225,7 +57534,8 @@ entities: - uid: 7502 components: - type: Transform - pos: 1.5,8.5 + rot: 3.141592653589793 rad + pos: 1.5,4.5 parent: 2 - type: SignalSwitch state: True @@ -41253,22 +57563,22 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 2339: - - - On - - On - - - Off - - Off 2255: - - On - On - - Off - Off - 2263: + 7398: - - On - On - - Off - Off - 2361: + 7194: + - - On + - On + - - Off + - Off + 2194: - - On - On - - Off @@ -41278,7 +57588,7 @@ entities: - uid: 7507 components: - type: Transform - pos: 9.5,4.5 + pos: 8.5,4.5 parent: 2 - type: SignalSwitch state: True @@ -41294,7 +57604,7 @@ entities: - uid: 7508 components: - type: Transform - pos: 13.5,4.5 + pos: 12.5,4.5 parent: 2 - type: SignalSwitch state: True @@ -41310,7 +57620,8 @@ entities: - uid: 7509 components: - type: Transform - pos: 6.5,-4.5 + rot: 1.5707963267948966 rad + pos: 3.5,-7.5 parent: 2 - type: SignalSwitch state: True @@ -41416,51 +57727,7 @@ entities: - On - - Off - Off - lastSignals: - Status: True - - uid: 7563 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-13.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 2235: - - - On - - On - - - Off - - Off - 2489: - - - On - - On - - - Off - - Off - 2487: - - - On - - On - - - Off - - Off - 2488: - - - On - - On - - - Off - - Off - lastSignals: - Status: True - - uid: 7565 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-1.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 217: + 2195: - - On - On - - Off @@ -41470,8 +57737,7 @@ entities: - uid: 7569 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-9.5 + pos: 17.5,-4.5 parent: 2 - type: SignalSwitch state: True @@ -41509,13 +57775,18 @@ entities: - On - - Off - Off + 8587: + - - On + - On + - - Off + - Off lastSignals: Status: True - uid: 7575 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,9.5 + rot: 1.5707963267948966 rad + pos: 47.5,5.5 parent: 2 - type: SignalSwitch state: True @@ -41541,6 +57812,16 @@ entities: - On - - Off - Off + 11222: + - - On + - On + - - Off + - Off + 11221: + - - On + - On + - - Off + - Off lastSignals: Status: True - uid: 7576 @@ -41572,8 +57853,7 @@ entities: - uid: 7580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,5.5 + pos: 59.5,10.5 parent: 2 - type: SignalSwitch state: True @@ -41584,6 +57864,16 @@ entities: - On - - Off - Off + 7727: + - - On + - On + - - Off + - Off + 1559: + - - On + - On + - - Off + - Off lastSignals: Status: True - uid: 7590 @@ -41606,71 +57896,12 @@ entities: - On - - Off - Off - lastSignals: - Status: True - - uid: 7591 - components: - - type: Transform - pos: 25.5,20.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 2473: + 8647: - - On - On - - Off - Off - 2451: - - - On - - On - - - Off - - Off - 2387: - - - On - - On - - - Off - - Off - lastSignals: - Status: True - - uid: 7592 - components: - - type: Transform - pos: 14.5,29.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 2470: - - - On - - On - - - Off - - Off - 2469: - - - On - - On - - - Off - - Off - 2472: - - - On - - On - - - Off - - Off - lastSignals: - Status: True - - uid: 7593 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,29.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 2471: + 8648: - - On - On - - Off @@ -41697,84 +57928,35 @@ entities: - On - - Off - Off + 7728: + - - On + - On + - - Off + - Off lastSignals: Status: True - - uid: 7595 + - uid: 7596 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,21.5 + pos: 22.5,35.5 parent: 2 - - type: SignalSwitch - state: True - type: DeviceLinkSource linkedPorts: - 2620: + 8328: - - On - - On + - Toggle - - Off - - Off - lastSignals: - Status: True - - uid: 7598 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,24.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 2531: + - Toggle + 8338: - - On - - On + - Toggle - - Off - - Off - 2556: - - - On - - On - - - Off - - Off - 2543: - - - On - - On - - - Off - - Off - 2536: - - - On - - On - - - Off - - Off - lastSignals: - Status: True - - uid: 7599 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,36.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 7113: - - - On - - On - - - Off - - Off - 6708: - - - On - - On - - - Off - - Off - lastSignals: - Status: True + - Toggle - uid: 7600 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,33.5 + rot: -1.5707963267948966 rad + pos: 21.5,35.5 parent: 2 - type: SignalSwitch state: True @@ -41790,89 +57972,40 @@ entities: - On - - Off - Off + 8342: + - - On + - On + - - Off + - Off + 8341: + - - On + - On + - - Off + - Off + 8340: + - - On + - On + - - Off + - Off lastSignals: Status: True - uid: 7601 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,30.5 + pos: 17.5,43.5 parent: 2 - - type: SignalSwitch - state: True - type: DeviceLinkSource linkedPorts: - 2605: + 6708: - - On - - On + - Toggle - - Off - - Off - lastSignals: - Status: True - - uid: 7602 - components: - - type: Transform - pos: 32.5,39.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 7028: + - Toggle + 7113: - - On - - On + - Toggle - - Off - - Off - 2602: - - - On - - On - - - Off - - Off - 2579: - - - On - - On - - - Off - - Off - lastSignals: - Status: True - - uid: 7604 - components: - - type: Transform - pos: 45.5,35.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 2571: - - - On - - On - - - Off - - Off - lastSignals: - Status: True - - uid: 7605 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,35.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 2588: - - - On - - On - - - Off - - Off - 2577: - - - On - - On - - - Off - - Off - lastSignals: - Status: True + - Toggle - uid: 7623 components: - type: Transform @@ -41966,13 +58099,66 @@ entities: - On - - Off - Off + 8643: + - - On + - On + - - Off + - Off + 8642: + - - On + - On + - - Off + - Off + 8640: + - - On + - On + - - Off + - Off + 8641: + - - On + - On + - - Off + - Off + 644: + - - On + - On + - - Off + - Off + 8644: + - - On + - On + - - Off + - Off lastSignals: Status: True + - uid: 7762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8348: + - - On + - Toggle + - - Off + - Toggle + 8346: + - - On + - Toggle + - - Off + - Toggle + 8347: + - - On + - Toggle + - - Off + - Toggle - uid: 7828 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-10.5 + pos: 4.5,-11.5 parent: 2 - type: SignalSwitch state: True @@ -41995,64 +58181,586 @@ entities: - Off lastSignals: Status: True - - uid: 8262 + - uid: 8324 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,1.5 + pos: 36.5,32.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 28: + 8326: + - - On + - Toggle - - Off - - DoorBolt - - uid: 8263 + - Toggle + 8327: + - - On + - Toggle + - - Off + - Toggle + 8264: + - - On + - Toggle + - - Off + - Toggle + - uid: 8339 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,1.5 + rot: 1.5707963267948966 rad + pos: 41.5,32.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 29: + 2571: + - - On + - Toggle - - Off - - DoorBolt -- proto: SignArmory - entities: - - uid: 1430 + - Toggle + 2577: + - - On + - Toggle + - - Off + - Toggle + 8330: + - - On + - Toggle + - - Off + - Toggle + 8329: + - - On + - Toggle + - - Off + - Toggle + - uid: 8343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,35.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7599: + - - On + - Toggle + - - Off + - Toggle + 8344: + - - On + - Toggle + - - Off + - Toggle + 2535: + - - On + - Toggle + - - Off + - Toggle + 2527: + - - On + - Toggle + - - Off + - Toggle + 8345: + - - On + - Toggle + - - Off + - Toggle + - uid: 8593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,1.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8591: + - - On + - Toggle + - - Off + - Toggle + 2065: + - - On + - Toggle + - - Off + - Toggle + 8592: + - - On + - Toggle + - - Off + - Toggle + 8590: + - - On + - Toggle + - - Off + - Toggle + - uid: 8598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8601: + - - On + - Toggle + - - Off + - Toggle + 8600: + - - On + - Toggle + - - Off + - Toggle + 8599: + - - On + - Toggle + - - Off + - Toggle + - uid: 10708 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,-5.5 - parent: 2 -- proto: SignAtmos - entities: - - uid: 1724 + pos: 23.5,-71.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10787: + - - On + - Toggle + - - Off + - Toggle + - uid: 10747 components: - type: Transform - pos: 31.5,32.5 - parent: 2 -- proto: SignBridge - entities: - - uid: 970 + rot: 1.5707963267948966 rad + pos: 19.5,-43.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10745: + - - On + - Toggle + - - Off + - Toggle + 10744: + - - On + - Toggle + - - Off + - Toggle + 10746: + - - On + - Toggle + - - Off + - Toggle + 10743: + - - On + - Toggle + - - Off + - Toggle + 10742: + - - On + - Toggle + - - Off + - Toggle + 10741: + - - On + - Toggle + - - Off + - Toggle + 10748: + - - On + - Toggle + - - Off + - Toggle + 10740: + - - On + - Toggle + - - Off + - Toggle + 10739: + - - On + - Toggle + - - Off + - Toggle + - uid: 10765 components: - type: Transform - pos: 18.5,58.5 - parent: 2 -- proto: SignCans - entities: - - uid: 1686 + rot: -1.5707963267948966 rad + pos: 37.5,-31.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10762: + - - On + - Toggle + - - Off + - Toggle + 10761: + - - On + - Toggle + - - Off + - Toggle + 10764: + - - On + - Toggle + - - Off + - Toggle + 10763: + - - On + - Toggle + - - Off + - Toggle + - uid: 10766 + components: + - type: Transform + pos: 17.5,-30.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10733: + - - On + - Toggle + - - Off + - Toggle + - uid: 10767 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,36.5 - parent: 2 -- proto: SignCargo - entities: - - uid: 1478 + pos: 26.5,-35.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10732: + - - On + - Toggle + - - Off + - Toggle + - uid: 10768 components: - type: Transform - pos: 16.5,23.5 + rot: 3.141592653589793 rad + pos: 26.5,-39.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10730: + - - On + - Toggle + - - Off + - Toggle + - uid: 10769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-43.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10729: + - - On + - Toggle + - - Off + - Toggle + - uid: 10770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-47.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10727: + - - On + - Toggle + - - Off + - Toggle + - uid: 10771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-51.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10726: + - - On + - Toggle + - - Off + - Toggle + - uid: 10772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-55.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10723: + - - On + - Toggle + - - Off + - Toggle + - uid: 10773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-55.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10724: + - - On + - Toggle + - - Off + - Toggle + - uid: 10774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-51.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10725: + - - On + - Toggle + - - Off + - Toggle + - uid: 10775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-47.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10728: + - - On + - Toggle + - - Off + - Toggle + - uid: 10776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-39.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10731: + - - On + - Toggle + - - Off + - Toggle + - uid: 10777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-38.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10736: + - - On + - Toggle + - - Off + - Toggle + - uid: 10778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-38.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10738: + - - On + - Toggle + - - Off + - Toggle + - uid: 10779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-44.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10735: + - - On + - Toggle + - - Off + - Toggle + - uid: 10780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-43.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10734: + - - On + - Toggle + - - Off + - Toggle + 10749: + - - On + - Toggle + - - Off + - Toggle + - uid: 10781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-62.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10719: + - - On + - Toggle + - - Off + - Toggle + 10718: + - - On + - Toggle + - - Off + - Toggle + - uid: 10782 + components: + - type: Transform + pos: 29.5,-62.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10713: + - - On + - Toggle + - - Off + - Toggle + 10711: + - - On + - Toggle + - - Off + - Toggle + 10712: + - - On + - Toggle + - - Off + - Toggle + 10714: + - - On + - Toggle + - - Off + - Toggle + - uid: 10783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-65.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10710: + - - On + - Toggle + - - Off + - Toggle + 10709: + - - On + - Toggle + - - Off + - Toggle + - uid: 10784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-61.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10722: + - - On + - Toggle + - - Off + - Toggle + - uid: 10785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-59.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10717: + - - On + - Toggle + - - Off + - Toggle + 10716: + - - On + - Toggle + - - Off + - Toggle + - uid: 10786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-68.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10715: + - - On + - Toggle + - - Off + - Toggle + - uid: 10788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-40.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10737: + - - On + - Toggle + - - Off + - Toggle +- proto: SignAtmos + entities: + - uid: 3301 + components: + - type: Transform + pos: 31.5,1.5 + parent: 2 +- proto: SignBridge + entities: + - uid: 11400 + components: + - type: Transform + pos: 17.5,59.5 + parent: 2 +- proto: SignCans + entities: + - uid: 2013 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 2 + - uid: 2530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,36.5 + parent: 2 +- proto: SignCansScience + entities: + - uid: 4939 + components: + - type: Transform + pos: 49.5,10.5 parent: 2 - proto: SignChapel entities: @@ -42069,226 +58777,153 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,7.5 parent: 2 -- proto: SignCryo - entities: - - uid: 8239 - components: - - type: MetaData - desc: I poooooooop - - type: Transform - pos: 3.5,-3.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: 2448 - components: - - type: Transform - pos: 29.5,1.5 - parent: 2 - - uid: 3815 - components: - - type: Transform - pos: 31.5,1.5 - parent: 2 - - 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 + - uid: 4848 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,8.9 + pos: 35.5,8.75 parent: 2 - - uid: 8317 + - uid: 8278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,17.75 + parent: 2 + - uid: 8281 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,6.7 - parent: 2 -- proto: SignDirectionalChapel - entities: - - uid: 8316 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,6.5 + pos: 27.5,6.75 parent: 2 - proto: SignDirectionalDorms entities: - - uid: 8286 + - uid: 1075 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,6.3 + pos: 27.5,6.25 + parent: 2 + - uid: 11404 + components: + - type: Transform + pos: 36.5,17.25 parent: 2 - proto: SignDirectionalEng entities: - - uid: 6175 + - uid: 5174 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,8.7 + pos: 35.5,8.5 parent: 2 - - uid: 7411 + - uid: 8285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,6.5 + parent: 2 +- proto: SignDirectionalEvac + entities: + - uid: 970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,6.75 + parent: 2 + - uid: 4849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,17.75 + parent: 2 + - uid: 8280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,7.75 + parent: 2 +- proto: SignDirectionalMed + entities: + - uid: 11401 + components: + - type: Transform + pos: 36.5,17.5 + parent: 2 + - uid: 11405 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,17.7 + pos: 35.5,8.25 parent: 2 - - uid: 8318 +- proto: SignDirectionalSci + entities: + - uid: 381 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,6.5 parent: 2 -- proto: SignDirectionalEvac - entities: - - uid: 2054 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,17.5 - parent: 2 - - uid: 2057 - components: - - type: Transform - pos: 45.5,-3.5 - parent: 2 - - uid: 2948 - components: - - type: Transform - pos: 56.5,11.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 - - uid: 8321 + - uid: 1801 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,7.5 parent: 2 -- proto: SignDirectionalMed - entities: - - uid: 6176 + - uid: 11403 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 - - uid: 8315 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,6.7 - parent: 2 -- proto: SignDirectionalSci - entities: - - uid: 7414 - components: - - type: Transform - pos: 40.5,21.7 - parent: 2 - - uid: 8319 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,6.3 - parent: 2 - - uid: 8320 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,7.7 + pos: 40.5,17.5 parent: 2 - proto: SignDirectionalSec entities: - - uid: 7415 + - uid: 1376 components: - type: Transform - pos: 40.5,21.5 + rot: 1.5707963267948966 rad + pos: 28.5,6.25 parent: 2 -- proto: SignDirectionalSupply - entities: - - uid: 7413 + - uid: 11402 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,17.3 + pos: 40.5,17.25 parent: 2 - proto: SignEngineering entities: - - uid: 1759 + - uid: 8279 components: - type: Transform - pos: 35.5,20.5 + rot: -1.5707963267948966 rad + pos: 36.5,22.5 parent: 2 - proto: SignEVA entities: - - uid: 1396 + - uid: 8468 components: - type: Transform - pos: 54.5,38.5 + pos: 54.5,37.5 parent: 2 -- proto: SignGravity +- proto: SignInterrogation entities: - - uid: 6598 + - uid: 10323 components: - type: Transform - pos: 40.5,35.5 + pos: 19.5,-31.5 + parent: 3564 +- proto: SignMaterials + entities: + - uid: 1773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,30.5 parent: 2 -- proto: SignHydro1 - entities: - - uid: 2755 + - uid: 5763 components: - type: Transform - pos: 17.5,-4.5 - parent: 2 -- proto: SignJanitor - entities: - - uid: 297 - components: - - type: MetaData - desc: Because you're the janitor. And it's snot. - name: _j_a_n_i_t_o_r_s_i_g_n_ - - type: Transform - pos: 3.5,5.5 + rot: 1.5707963267948966 rad + pos: 38.5,32.5 parent: 2 - proto: SignMedical entities: @@ -42310,20 +58945,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,15.5 parent: 2 -- proto: SignPrison - entities: - - uid: 1075 - components: - - type: Transform - pos: 41.5,-0.5 - parent: 2 -- proto: SignRobo - entities: - - uid: 1559 - components: - - type: Transform - pos: 51.5,8.5 - parent: 2 - proto: SignScience entities: - uid: 4066 @@ -42362,6 +58983,21 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,51.5 parent: 2 +- proto: SignSecurity + entities: + - uid: 11406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,4.5 + parent: 2 +- proto: SignServer + entities: + - uid: 3129 + components: + - type: Transform + pos: 3.5,5.5 + parent: 2 - proto: SignShipDock entities: - uid: 2058 @@ -42376,111 +59012,78 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,-17.5 parent: 2 -- proto: SignSpace +- proto: SignTelecomms entities: - - uid: 265 + - uid: 2480 components: - - type: MetaData - desc: A sign warning that the area ahead is nothing but cold, empty space. Well, empty space. Space isn't cold. I mean, space here is, but actual space isn't- you know what? Nevermind. Cold, empty space. Whatever. - name: _s_p_a_c_e_s_i_g_n_ - type: Transform pos: 3.5,7.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 - - uid: 2530 - components: - - type: Transform - pos: 32.5,36.5 - parent: 2 - - uid: 2782 + - uid: 4852 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-9.5 + pos: 42.5,22.5 parent: 2 -- proto: SignVault +- proto: Sink entities: - - uid: 2042 + - uid: 10557 components: - type: Transform - pos: 59.5,7.5 - parent: 2 -- proto: SinkWide - entities: - - uid: 1534 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-0.5 - parent: 2 - - uid: 2809 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-9.5 - parent: 2 -- proto: SmallLight - entities: - - uid: 1801 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,54.5 - parent: 2 + pos: 12.5,-20.5 + parent: 3564 - proto: SmartFridge entities: - - uid: 3162 + - uid: 2854 components: - type: Transform - pos: 30.5,12.5 + pos: 31.5,12.5 parent: 2 - proto: SMESAdvanced entities: - - uid: 1852 + - uid: 684 components: - type: Transform - pos: 34.5,27.5 + pos: 19.5,37.5 parent: 2 - - uid: 1853 + - uid: 687 components: - type: Transform - pos: 34.5,26.5 + pos: 19.5,38.5 parent: 2 - - uid: 5999 + - uid: 691 components: - type: Transform - pos: 34.5,28.5 + pos: 19.5,39.5 parent: 2 - - uid: 6000 + - uid: 1338 components: - type: Transform - pos: 34.5,29.5 + pos: 47.5,39.5 parent: 2 - - uid: 7649 + - uid: 1607 components: - type: Transform - pos: 34.5,30.5 + pos: 47.5,40.5 parent: 2 + - uid: 9435 + components: + - type: Transform + pos: 7.5,-44.5 + parent: 3564 + - uid: 9436 + components: + - type: Transform + pos: 7.5,-43.5 + parent: 3564 - proto: SMESBasic entities: - uid: 1337 @@ -42501,7 +59104,7 @@ entities: desc: A relaxing grenade that releases a large, long-lasting cloud of fun when used. name: party grenade - type: Transform - pos: 23.5,-1.5 + pos: 34.523518,48.651146 parent: 2 - type: SmokeOnTrigger solution: @@ -42522,7 +59125,7 @@ entities: desc: A relaxing grenade that releases a large, long-lasting cloud of fun when used. name: party grenade - type: Transform - pos: 23.5,-1.5 + pos: 34.36329,48.41327 parent: 2 - type: SmokeOnTrigger solution: @@ -42543,7 +59146,7 @@ entities: desc: A relaxing grenade that releases a large, long-lasting cloud of fun when used. name: party grenade - type: Transform - pos: 29.5,-11.5 + pos: 34.316414,48.522644 parent: 2 - type: SmokeOnTrigger solution: @@ -42564,7 +59167,7 @@ entities: desc: A relaxing grenade that releases a large, long-lasting cloud of fun when used. name: party grenade - type: Transform - pos: 29.5,-11.5 + pos: 34.523518,48.32302 parent: 2 - type: SmokeOnTrigger solution: @@ -42585,7 +59188,7 @@ entities: desc: A relaxing grenade that releases a large, long-lasting cloud of fun when used. name: party grenade - type: Transform - pos: 23.5,-1.5 + pos: 34.733295,48.78693 parent: 2 - type: SmokeOnTrigger solution: @@ -42600,20 +59203,14 @@ entities: smokePrototype: Foam missingComponents: - Contraband -- proto: SoapNT - entities: - - uid: 7661 - components: - - type: Transform - pos: -0.5,7.5 - parent: 2 - proto: SodaDispenser entities: - - uid: 2862 + - uid: 10569 components: - type: Transform - pos: 25.5,0.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 13.5,-29.5 + parent: 3564 - proto: SolarPanel entities: - uid: 2646 @@ -42895,6 +59492,666 @@ entities: - type: Transform pos: 57.5,68.5 parent: 2 + - uid: 6855 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 3564 + - uid: 6956 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 3564 + - uid: 6957 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 3564 + - uid: 6958 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 3564 + - uid: 6959 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 3564 + - uid: 6960 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 3564 + - uid: 6961 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 3564 + - uid: 6962 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 3564 + - uid: 6963 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 3564 + - uid: 6964 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 3564 + - uid: 6965 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 3564 + - uid: 6966 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 3564 + - uid: 6967 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 3564 + - uid: 6968 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 3564 + - uid: 6969 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 3564 + - uid: 6970 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 3564 + - uid: 6971 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 3564 + - uid: 6972 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 3564 + - uid: 6973 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 3564 + - uid: 6974 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 3564 + - uid: 6976 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 3564 + - uid: 6977 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 3564 + - uid: 6978 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 3564 + - uid: 6979 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 3564 + - uid: 6980 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 3564 + - uid: 6981 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 3564 + - uid: 6982 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 3564 + - uid: 6983 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 3564 + - uid: 6984 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 3564 + - uid: 6985 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 3564 + - uid: 6986 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 3564 + - uid: 6988 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 3564 + - uid: 6989 + components: + - type: Transform + pos: 4.5,-24.5 + parent: 3564 + - uid: 6990 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 3564 + - uid: 6991 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 3564 + - uid: 6992 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 3564 + - uid: 6993 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 3564 + - uid: 6994 + components: + - type: Transform + pos: 2.5,-27.5 + parent: 3564 + - uid: 6996 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 3564 + - uid: 6998 + components: + - type: Transform + pos: 4.5,-26.5 + parent: 3564 + - uid: 7013 + components: + - type: Transform + pos: 4.5,-27.5 + parent: 3564 + - uid: 7015 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 3564 + - uid: 7016 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 3564 + - uid: 7017 + components: + - type: Transform + pos: 4.5,-31.5 + parent: 3564 + - uid: 7020 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 3564 + - uid: 7021 + components: + - type: Transform + pos: 4.5,-34.5 + parent: 3564 + - uid: 7022 + components: + - type: Transform + pos: 4.5,-35.5 + parent: 3564 + - uid: 7024 + components: + - type: Transform + pos: 4.5,-36.5 + parent: 3564 + - uid: 7026 + components: + - type: Transform + pos: 4.5,-40.5 + parent: 3564 + - uid: 7027 + components: + - type: Transform + pos: 4.5,-39.5 + parent: 3564 + - uid: 7028 + components: + - type: Transform + pos: 4.5,-38.5 + parent: 3564 + - uid: 7029 + components: + - type: Transform + pos: 2.5,-40.5 + parent: 3564 + - uid: 7030 + components: + - type: Transform + pos: 2.5,-39.5 + parent: 3564 + - uid: 7031 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 3564 + - uid: 7032 + components: + - type: Transform + pos: 2.5,-36.5 + parent: 3564 + - uid: 7033 + components: + - type: Transform + pos: 2.5,-35.5 + parent: 3564 + - uid: 7034 + components: + - type: Transform + pos: 2.5,-34.5 + parent: 3564 + - uid: 7035 + components: + - type: Transform + pos: 2.5,-32.5 + parent: 3564 + - uid: 7036 + components: + - type: Transform + pos: 2.5,-31.5 + parent: 3564 + - uid: 7037 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 3564 + - uid: 7038 + components: + - type: Transform + pos: 2.5,-42.5 + parent: 3564 + - uid: 7039 + components: + - type: Transform + pos: 2.5,-43.5 + parent: 3564 + - uid: 7040 + components: + - type: Transform + pos: 2.5,-44.5 + parent: 3564 + - uid: 7041 + components: + - type: Transform + pos: 2.5,-47.5 + parent: 3564 + - uid: 7042 + components: + - type: Transform + pos: 2.5,-46.5 + parent: 3564 + - uid: 7043 + components: + - type: Transform + pos: 2.5,-48.5 + parent: 3564 + - uid: 7044 + components: + - type: Transform + pos: 2.5,-51.5 + parent: 3564 + - uid: 7045 + components: + - type: Transform + pos: 2.5,-52.5 + parent: 3564 + - uid: 7046 + components: + - type: Transform + pos: 2.5,-53.5 + parent: 3564 + - uid: 7047 + components: + - type: Transform + pos: 2.5,-55.5 + parent: 3564 + - uid: 7048 + components: + - type: Transform + pos: 2.5,-56.5 + parent: 3564 + - uid: 7049 + components: + - type: Transform + pos: 2.5,-57.5 + parent: 3564 + - uid: 7050 + components: + - type: Transform + pos: 4.5,-57.5 + parent: 3564 + - uid: 7051 + components: + - type: Transform + pos: 4.5,-56.5 + parent: 3564 + - uid: 7052 + components: + - type: Transform + pos: 4.5,-55.5 + parent: 3564 + - uid: 7053 + components: + - type: Transform + pos: 4.5,-53.5 + parent: 3564 + - uid: 7054 + components: + - type: Transform + pos: 4.5,-52.5 + parent: 3564 + - uid: 7055 + components: + - type: Transform + pos: 4.5,-51.5 + parent: 3564 + - uid: 7056 + components: + - type: Transform + pos: 4.5,-48.5 + parent: 3564 + - uid: 7057 + components: + - type: Transform + pos: 4.5,-47.5 + parent: 3564 + - uid: 7058 + components: + - type: Transform + pos: 4.5,-46.5 + parent: 3564 + - uid: 7059 + components: + - type: Transform + pos: 4.5,-44.5 + parent: 3564 + - uid: 7060 + components: + - type: Transform + pos: 4.5,-43.5 + parent: 3564 + - uid: 7061 + components: + - type: Transform + pos: 4.5,-42.5 + parent: 3564 + - uid: 7062 + components: + - type: Transform + pos: 2.5,-59.5 + parent: 3564 + - uid: 7063 + components: + - type: Transform + pos: 2.5,-60.5 + parent: 3564 + - uid: 7064 + components: + - type: Transform + pos: 2.5,-61.5 + parent: 3564 + - uid: 7065 + components: + - type: Transform + pos: 2.5,-63.5 + parent: 3564 + - uid: 7066 + components: + - type: Transform + pos: 2.5,-64.5 + parent: 3564 + - uid: 7067 + components: + - type: Transform + pos: 2.5,-65.5 + parent: 3564 + - uid: 7068 + components: + - type: Transform + pos: 2.5,-68.5 + parent: 3564 + - uid: 7069 + components: + - type: Transform + pos: 2.5,-69.5 + parent: 3564 + - uid: 7070 + components: + - type: Transform + pos: 2.5,-70.5 + parent: 3564 + - uid: 7071 + components: + - type: Transform + pos: 2.5,-72.5 + parent: 3564 + - uid: 7072 + components: + - type: Transform + pos: 2.5,-73.5 + parent: 3564 + - uid: 7073 + components: + - type: Transform + pos: 2.5,-74.5 + parent: 3564 + - uid: 7074 + components: + - type: Transform + pos: 2.5,-76.5 + parent: 3564 + - uid: 7075 + components: + - type: Transform + pos: 2.5,-77.5 + parent: 3564 + - uid: 7076 + components: + - type: Transform + pos: 2.5,-78.5 + parent: 3564 + - uid: 7077 + components: + - type: Transform + pos: 4.5,-78.5 + parent: 3564 + - uid: 7078 + components: + - type: Transform + pos: 4.5,-77.5 + parent: 3564 + - uid: 7079 + components: + - type: Transform + pos: 4.5,-76.5 + parent: 3564 + - uid: 7080 + components: + - type: Transform + pos: 4.5,-74.5 + parent: 3564 + - uid: 7081 + components: + - type: Transform + pos: 4.5,-73.5 + parent: 3564 + - uid: 7082 + components: + - type: Transform + pos: 4.5,-72.5 + parent: 3564 + - uid: 7083 + components: + - type: Transform + pos: 4.5,-70.5 + parent: 3564 + - uid: 7084 + components: + - type: Transform + pos: 4.5,-69.5 + parent: 3564 + - uid: 7085 + components: + - type: Transform + pos: 4.5,-68.5 + parent: 3564 + - uid: 7086 + components: + - type: Transform + pos: 4.5,-65.5 + parent: 3564 + - uid: 7087 + components: + - type: Transform + pos: 4.5,-64.5 + parent: 3564 + - uid: 7088 + components: + - type: Transform + pos: 4.5,-63.5 + parent: 3564 + - uid: 7089 + components: + - type: Transform + pos: 4.5,-61.5 + parent: 3564 + - uid: 7090 + components: + - type: Transform + pos: 4.5,-60.5 + parent: 3564 + - uid: 7091 + components: + - type: Transform + pos: 4.5,-59.5 + parent: 3564 + - uid: 7092 + components: + - type: Transform + pos: 2.5,-80.5 + parent: 3564 + - uid: 7093 + components: + - type: Transform + pos: 2.5,-81.5 + parent: 3564 + - uid: 7094 + components: + - type: Transform + pos: 2.5,-82.5 + parent: 3564 + - uid: 7095 + components: + - type: Transform + pos: 2.5,-84.5 + parent: 3564 + - uid: 7096 + components: + - type: Transform + pos: 2.5,-85.5 + parent: 3564 + - uid: 7097 + components: + - type: Transform + pos: 2.5,-86.5 + parent: 3564 + - uid: 7098 + components: + - type: Transform + pos: 2.5,-88.5 + parent: 3564 + - uid: 7099 + components: + - type: Transform + pos: 2.5,-89.5 + parent: 3564 + - uid: 7100 + components: + - type: Transform + pos: 2.5,-90.5 + parent: 3564 + - uid: 7101 + components: + - type: Transform + pos: 4.5,-90.5 + parent: 3564 + - uid: 7102 + components: + - type: Transform + pos: 4.5,-89.5 + parent: 3564 + - uid: 7103 + components: + - type: Transform + pos: 4.5,-88.5 + parent: 3564 + - uid: 7104 + components: + - type: Transform + pos: 4.5,-86.5 + parent: 3564 + - uid: 7120 + components: + - type: Transform + pos: 4.5,-85.5 + parent: 3564 + - uid: 7122 + components: + - type: Transform + pos: 4.5,-84.5 + parent: 3564 + - uid: 7123 + components: + - type: Transform + pos: 4.5,-82.5 + parent: 3564 + - uid: 7128 + components: + - type: Transform + pos: 4.5,-81.5 + parent: 3564 + - uid: 7149 + components: + - type: Transform + pos: 4.5,-80.5 + parent: 3564 - proto: SolarTracker entities: - uid: 2697 @@ -42907,6 +60164,11 @@ entities: - type: Transform pos: 58.5,69.5 parent: 2 + - uid: 7152 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 3564 - proto: SolidSecretDoor entities: - uid: 240 @@ -42915,42 +60177,14 @@ entities: rot: 3.141592653589793 rad pos: 61.5,19.5 parent: 2 -- proto: SpaceCash10 +- proto: SpaceVillainArcadeFilled entities: - - uid: 7117 + - uid: 10571 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.563408,13.315755 - parent: 2 -- proto: SpaceCash10000 - entities: - - uid: 1925 - components: - - type: Transform - pos: 62.610744,10.56906 - parent: 2 -- proto: SpawnMobCat - entities: - - uid: 644 - components: - - type: Transform - pos: 23.5,14.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 + rot: -1.5707963267948966 rad + pos: 19.5,-21.5 + parent: 3564 - proto: SpawnMobMonkey entities: - uid: 627 @@ -42968,6 +60202,11 @@ entities: - type: Transform pos: 24.5,9.5 parent: 2 + - uid: 6999 + components: + - type: Transform + pos: 29.5,-52.5 + parent: 3564 - proto: SpawnMobMonkeyPunpun entities: - uid: 711 @@ -42976,62 +60215,17 @@ entities: rot: 3.141592653589793 rad pos: 27.5,10.5 parent: 2 -- proto: SpawnMobMouse - entities: - - uid: 1927 - components: - - type: Transform - pos: 52.5,19.5 - parent: 2 - - uid: 7023 - components: - - type: Transform - pos: 14.5,18.5 - parent: 2 -- proto: SpawnMobSmile - entities: - - uid: 141 - components: - - type: Transform - pos: 52.5,0.5 - parent: 2 - proto: SpawnPointAtmos entities: - - uid: 3238 + - uid: 1719 components: - type: Transform - pos: 30.5,34.5 + pos: 26.5,-8.5 parent: 2 - - uid: 4744 + - uid: 1722 components: - type: Transform - pos: 29.5,34.5 - parent: 2 -- proto: SpawnPointBartender - entities: - - uid: 7266 - components: - - type: Transform - pos: 27.5,-0.5 - parent: 2 -- proto: SpawnPointBorg - entities: - - uid: 1563 - components: - - type: Transform - pos: 53.5,8.5 - parent: 2 - - uid: 2559 - components: - - type: Transform - pos: 52.5,8.5 - parent: 2 -- proto: SpawnPointBotanist - entities: - - uid: 847 - components: - - type: Transform - pos: 15.5,-7.5 + pos: 25.5,-8.5 parent: 2 - proto: SpawnPointCaptain entities: @@ -43040,18 +60234,6 @@ entities: - type: Transform pos: 62.5,31.5 parent: 2 -- proto: SpawnPointCargoTechnician - entities: - - uid: 491 - components: - - type: Transform - pos: 18.5,24.5 - parent: 2 - - uid: 535 - components: - - type: Transform - pos: 19.5,24.5 - parent: 2 - proto: SpawnPointChaplain entities: - uid: 7000 @@ -43059,19 +60241,12 @@ entities: - type: Transform pos: -2.5,18.5 parent: 2 -- proto: SpawnPointChef - entities: - - uid: 7265 - components: - - type: Transform - pos: 29.5,-12.5 - parent: 2 - proto: SpawnPointChemist entities: - - uid: 7383 + - uid: 10331 components: - type: Transform - pos: 30.5,10.5 + pos: 26.5,11.5 parent: 2 - proto: SpawnPointChiefEngineer entities: @@ -43113,13 +60288,6 @@ entities: - type: Transform pos: 34.5,-0.5 parent: 2 -- proto: SpawnPointJanitor - entities: - - uid: 326 - components: - - type: Transform - pos: -1.5,6.5 - parent: 2 - proto: SpawnPointLatejoin entities: - uid: 2512 @@ -43154,24 +60322,17 @@ entities: - type: Transform pos: 57.5,18.5 parent: 2 -- proto: SpawnPointLibrarian - entities: - - uid: 5172 - components: - - type: Transform - pos: 6.5,-2.5 - parent: 2 - proto: SpawnPointMedicalDoctor entities: - - uid: 567 - components: - - type: Transform - pos: 10.5,11.5 - parent: 2 - uid: 7105 components: - type: Transform - pos: 10.5,12.5 + pos: 15.5,11.5 + parent: 2 + - uid: 7383 + components: + - type: Transform + pos: 16.5,13.5 parent: 2 - proto: SpawnPointMedicalIntern entities: @@ -43194,11 +60355,11 @@ entities: parent: 2 - proto: SpawnPointParamedic entities: - - uid: 1939 + - uid: 11117 components: - type: Transform - pos: 14.5,14.5 - parent: 2 + pos: 25.5,-20.5 + parent: 3564 - proto: SpawnPointPassenger entities: - uid: 33 @@ -43226,13 +60387,6 @@ entities: - type: Transform pos: 10.5,-1.5 parent: 2 -- proto: SpawnPointQuartermaster - entities: - - uid: 6710 - components: - - type: Transform - pos: 62.5,32.5 - parent: 2 - proto: SpawnPointResearchAssistant entities: - uid: 4922 @@ -43247,27 +60401,22 @@ entities: parent: 2 - proto: SpawnPointResearchDirector entities: - - uid: 6045 + - uid: 1547 components: - type: Transform - pos: 54.5,11.5 + pos: 62.5,32.5 parent: 2 - proto: SpawnPointScientist entities: - - uid: 1538 + - uid: 6045 components: - type: Transform - pos: 51.5,4.5 + pos: 52.5,6.5 parent: 2 - - uid: 1543 + - uid: 6174 components: - type: Transform - pos: 52.5,4.5 - parent: 2 - - uid: 2505 - components: - - type: Transform - pos: 53.5,4.5 + pos: 51.5,6.5 parent: 2 - proto: SpawnPointSecurityCadet entities: @@ -43295,15 +60444,15 @@ entities: parent: 2 - proto: SpawnPointStationEngineer entities: - - uid: 1565 + - uid: 1724 components: - type: Transform - pos: 38.5,40.5 + pos: 29.5,30.5 parent: 2 - - uid: 2533 + - uid: 7659 components: - type: Transform - pos: 38.5,41.5 + pos: 29.5,29.5 parent: 2 - proto: SpawnPointTechnicalAssistant entities: @@ -43319,23 +60468,11 @@ entities: parent: 2 - proto: SpawnPointWarden entities: - - uid: 7264 + - uid: 9791 components: - type: Transform - pos: 39.5,-5.5 - parent: 2 -- proto: SprayBottleSpaceCleaner - entities: - - uid: 7662 - components: - - type: Transform - pos: -1.5,7.5 - parent: 2 - - uid: 7663 - components: - - type: Transform - pos: -1.5,7.5 - parent: 2 + pos: 28.5,-66.5 + parent: 3564 - proto: StasisBed entities: - uid: 470 @@ -43353,13 +60490,16 @@ entities: - type: Transform pos: 7.5,11.5 parent: 2 -- proto: StationAiUploadCircuitboard - entities: - - uid: 8214 + - uid: 9728 components: - type: Transform - pos: 13.5,-10.5 - parent: 2 + pos: 21.5,-19.5 + parent: 3564 + - uid: 9729 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 3564 - proto: StationAiUploadComputer entities: - uid: 4556 @@ -43374,6 +60514,11 @@ entities: - type: Transform pos: 3.5,33.5 parent: 2 + - uid: 9659 + components: + - type: Transform + pos: 15.5,-66.5 + parent: 3564 - proto: StationEfficiencyCircuitBoard entities: - uid: 1377 @@ -43383,145 +60528,77 @@ entities: parent: 2 - proto: StationMap entities: - - uid: 5736 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-2.5 - parent: 2 - - uid: 6166 - components: - - type: Transform - pos: 10.5,8.5 - parent: 2 - - uid: 6169 - components: - - type: Transform - pos: 62.5,3.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 - - uid: 6571 - components: - - type: Transform - pos: 55.5,38.5 - parent: 2 - - uid: 8313 + - uid: 11522 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-12.5 + pos: 14.5,2.5 parent: 2 - - uid: 8322 + - uid: 11523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,52.5 + pos: 50.5,27.5 parent: 2 - - uid: 8323 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,42.5 - parent: 2 - - uid: 8324 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,28.5 - parent: 2 - - uid: 8325 - components: - - type: Transform - pos: 32.5,20.5 - parent: 2 - - uid: 8326 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,20.5 - parent: 2 - - uid: 8327 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,6.5 - parent: 2 - - uid: 8328 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,1.5 - parent: 2 - - uid: 8329 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-9.5 - parent: 2 - - uid: 8330 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,3.5 - parent: 2 - - uid: 8331 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,5.5 - parent: 2 -- proto: StationRecordsComputerCircuitboard +- proto: Stool entities: - - uid: 8216 + - uid: 1925 components: - type: Transform - pos: 13.5,-11.5 + anchored: True + rot: 3.141592653589793 rad + pos: 44.5,28.5 parent: 2 -- proto: StoolBar + - type: Physics + bodyType: Static + - uid: 7476 + components: + - type: Transform + anchored: True + rot: 3.141592653589793 rad + pos: 45.5,28.5 + parent: 2 + - type: Physics + bodyType: Static + - uid: 7707 + components: + - type: Transform + anchored: True + rot: 3.141592653589793 rad + pos: 46.5,28.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: StorageCanister entities: - - uid: 2860 + - uid: 1709 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-3.5 + pos: 44.5,-4.5 parent: 2 - - uid: 2861 + - uid: 4064 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-3.5 + pos: 37.5,-4.5 parent: 2 + - uid: 6765 + components: + - type: Transform + pos: 44.5,-7.5 + parent: 2 +- proto: Stunbaton + entities: + - uid: 10416 + components: + - type: Transform + pos: 34.5,-69.5 + parent: 3564 - proto: SubstationBasic entities: - - uid: 846 - components: - - type: Transform - pos: 35.5,35.5 - parent: 2 - uid: 1472 components: - type: Transform pos: 13.5,18.5 parent: 2 - - uid: 2780 - components: - - type: Transform - pos: 23.5,-12.5 - parent: 2 - uid: 2789 components: - type: Transform @@ -43537,94 +60614,44 @@ entities: - type: Transform pos: 54.5,19.5 parent: 2 -- proto: SubstationMachineCircuitboard - entities: - - uid: 2189 + - uid: 6665 components: - type: Transform - pos: 13.5,-12.5 + pos: 22.5,-12.5 parent: 2 - - uid: 8217 + - uid: 8415 components: - type: Transform - pos: 13.5,-12.5 + pos: 47.5,36.5 parent: 2 + - uid: 9460 + components: + - type: Transform + pos: 10.5,-45.5 + parent: 3564 - proto: SuitStorageAtmos entities: - - uid: 1721 + - uid: 4002 components: - type: Transform - pos: 31.5,33.5 + pos: 44.5,-9.5 parent: 2 - - uid: 1789 + - uid: 4004 components: - type: Transform - pos: 30.5,33.5 - parent: 2 -- proto: SuitStorageCE - entities: - - uid: 6660 - components: - - type: Transform - pos: 47.5,31.5 + pos: 43.5,-9.5 parent: 2 - proto: SuitStorageEngi entities: - - uid: 913 + - uid: 1636 components: - type: Transform - pos: 33.5,41.5 + pos: 25.5,42.5 parent: 2 - - uid: 6599 + - uid: 1708 components: - type: Transform - pos: 34.5,41.5 - parent: 2 - - uid: 6600 - components: - - type: Transform - pos: 35.5,41.5 - parent: 2 -- proto: SuitStorageEVA - entities: - - uid: 1464 - components: - - type: Transform - pos: 51.5,41.5 - parent: 2 - - uid: 1931 - components: - - type: Transform - pos: 54.5,41.5 - parent: 2 - - uid: 2065 - components: - - type: Transform - pos: 52.5,41.5 - parent: 2 - - uid: 2066 - components: - - type: Transform - pos: 53.5,41.5 - parent: 2 -- proto: SuitStorageHOS - entities: - - uid: 1012 - components: - - type: Transform - pos: 39.5,-7.5 - parent: 2 -- proto: SuitStorageSec - entities: - - uid: 986 - components: - - type: Transform - pos: 38.5,-7.5 - parent: 2 - - uid: 1328 - components: - - type: Transform - pos: 37.5,-7.5 + pos: 24.5,42.5 parent: 2 - proto: SurveillanceCameraCommand entities: @@ -43635,7 +60662,7 @@ entities: pos: 59.5,34.5 parent: 2 - type: SurveillanceCamera - id: Bridge + id: Control Room - uid: 7458 components: - type: Transform @@ -43643,7 +60670,7 @@ entities: pos: 56.5,24.5 parent: 2 - type: SurveillanceCamera - id: Captain's Quarters + id: Secure Storage - uid: 7472 components: - type: Transform @@ -43652,14 +60679,6 @@ entities: parent: 2 - type: SurveillanceCamera id: HoP Office - - uid: 7579 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,6.5 - parent: 2 - - type: SurveillanceCamera - id: Vault - uid: 7620 components: - type: Transform @@ -43675,33 +60694,121 @@ entities: pos: 34.5,51.5 parent: 2 - type: SurveillanceCamera - id: AI Upload + id: AI Upload Station - proto: SurveillanceCameraEngineering entities: - - uid: 6583 + - uid: 1080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 2 + - type: SurveillanceCamera + id: Telecomms + - uid: 2129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,33.5 + parent: 2 + - type: SurveillanceCamera + id: Anchor + - uid: 2387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,27.5 + parent: 2 + - type: SurveillanceCamera + id: Main Engine + - uid: 2609 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-10.5 + pos: 44.5,-4.5 parent: 2 - type: SurveillanceCamera - id: Tech Vault + id: Atmo. Gas Storage + - uid: 3231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-4.5 + parent: 2 + - type: SurveillanceCamera + id: ' Atmospherics Entrance' + - uid: 4219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,26.5 + parent: 2 + - type: SurveillanceCamera + id: Engine Control + - uid: 4666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,35.5 + parent: 2 + - type: SurveillanceCamera + id: Engine Hallway (E) + - uid: 4700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,21.5 + parent: 2 + - type: SurveillanceCamera + id: Engine Hall (South) + - uid: 4946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-7.5 + parent: 2 + - type: SurveillanceCamera + id: Atmospheric Control Room + - uid: 5207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,35.5 + parent: 2 + - type: SurveillanceCamera + id: Engine Hall (Center) + - uid: 5208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,42.5 + parent: 2 + - type: SurveillanceCamera + id: Engine Hallway (W) + - uid: 5209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,37.5 + parent: 2 + - type: SurveillanceCamera + id: Generator Room (West) + - uid: 5884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,35.5 + parent: 2 + - type: SurveillanceCamera + id: AME - uid: 7470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,61.5 + rot: -1.5707963267948966 rad + pos: 56.5,62.5 parent: 2 - type: SurveillanceCamera - id: Solars North - - uid: 7608 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,28.5 - parent: 2 - - type: SurveillanceCamera - id: Gas Storage + id: Northern Airlock - uid: 7609 components: - type: Transform @@ -43709,40 +60816,64 @@ entities: parent: 2 - type: SurveillanceCamera id: TEG - - uid: 7610 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,39.5 - parent: 2 - - type: SurveillanceCamera - id: Engineering Tools - - uid: 7611 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,32.5 - parent: 2 - - type: SurveillanceCamera - id: Main Engineering - - uid: 7612 + - uid: 8564 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,41.5 + pos: 37.5,-10.5 parent: 2 - type: SurveillanceCamera - id: Gravity Generator -- proto: SurveillanceCameraGeneral - entities: - - uid: 4740 + id: Atmospherics Locker Storage + - uid: 11397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,36.5 + parent: 2 + - type: SurveillanceCamera + id: Anchor + - uid: 11398 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,13.5 + pos: 39.5,38.5 parent: 2 - type: SurveillanceCamera - id: Chapel + id: Plasma Storage + - uid: 11399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,39.5 + parent: 2 + - type: SurveillanceCamera + id: Generator Room (East) +- proto: SurveillanceCameraGeneral + entities: + - uid: 2469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,20.5 + parent: 2 + - type: SurveillanceCamera + id: Supply Room + - uid: 4931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,23.5 + parent: 2 + - type: SurveillanceCamera + id: Escape Pod Bay + - uid: 4938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,30.5 + parent: 2 + - type: SurveillanceCamera + id: Repair Bay - uid: 7282 components: - type: MetaData @@ -43752,7 +60883,7 @@ entities: pos: 66.5,-7.5 parent: 2 - type: SurveillanceCamera - id: Evac Dock + id: External - shuttle dock - uid: 7283 components: - type: Transform @@ -43760,7 +60891,7 @@ entities: pos: 56.5,-0.5 parent: 2 - type: SurveillanceCamera - id: Evac North + id: Evac Shuttle Bay - uid: 7284 components: - type: Transform @@ -43768,7 +60899,7 @@ entities: pos: 49.5,-14.5 parent: 2 - type: SurveillanceCamera - id: Evac South + id: Observation - uid: 7464 components: - type: Transform @@ -43776,7 +60907,7 @@ entities: pos: 54.5,41.5 parent: 2 - type: SurveillanceCamera - id: EVA + id: EVA Storage - uid: 7465 components: - type: Transform @@ -43784,7 +60915,7 @@ entities: pos: 49.5,37.5 parent: 2 - type: SurveillanceCamera - id: Bridge Hallway + id: Control Access - uid: 7468 components: - type: Transform @@ -43792,7 +60923,7 @@ entities: pos: 58.5,44.5 parent: 2 - type: SurveillanceCamera - id: Arrivals South + id: Crew Shuttle Disembarkment Hall North - uid: 7469 components: - type: Transform @@ -43800,15 +60931,15 @@ entities: pos: 58.5,53.5 parent: 2 - type: SurveillanceCamera - id: Arrivals North + id: Crew Shuttle Disembarkment Hall North - uid: 7478 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,16.5 + pos: 36.5,15.5 parent: 2 - type: SurveillanceCamera - id: Middle Hallways + id: Central Hallway - uid: 7483 components: - type: Transform @@ -43816,7 +60947,7 @@ entities: pos: 46.5,0.5 parent: 2 - type: SurveillanceCamera - id: Evac Hallway West + id: Transit tunnel (East) - uid: 7505 components: - type: Transform @@ -43824,7 +60955,7 @@ entities: pos: 4.5,-0.5 parent: 2 - type: SurveillanceCamera - id: Dorms + id: Crew Sleeping Area - uid: 7506 components: - type: Transform @@ -43832,7 +60963,7 @@ entities: pos: 0.5,-1.5 parent: 2 - type: SurveillanceCamera - id: Cryosleep + id: Sleeping Area Annex - uid: 7517 components: - type: Transform @@ -43840,7 +60971,7 @@ entities: pos: 15.5,0.5 parent: 2 - type: SurveillanceCamera - id: Meeting Room + id: Lounge/Meeting Area - uid: 7542 components: - type: Transform @@ -43848,7 +60979,7 @@ entities: pos: 9.5,7.5 parent: 2 - type: SurveillanceCamera - id: Western Hallway + id: Personell Lockers - uid: 7560 components: - type: Transform @@ -43856,23 +60987,15 @@ entities: pos: 2.5,-11.5 parent: 2 - type: SurveillanceCamera - id: Southwest Maintenance - - uid: 7572 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-11.5 - parent: 2 - - type: SurveillanceCamera - id: Southeast Maintenance + id: Main Solar Control - uid: 7578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,10.5 + rot: 3.141592653589793 rad + pos: 59.5,9.5 parent: 2 - type: SurveillanceCamera - id: Evac Hallway East + id: East of Research Lab - uid: 7582 components: - type: Transform @@ -43880,15 +61003,7 @@ entities: pos: 62.5,15.5 parent: 2 - type: SurveillanceCamera - id: Courtroom - - uid: 7613 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,19.5 - parent: 2 - - type: SurveillanceCamera - id: Supply Hallway + id: Assembly Room - uid: 7616 components: - type: Transform @@ -43904,7 +61019,7 @@ entities: pos: 17.5,55.5 parent: 2 - type: SurveillanceCamera - id: Outside Foyer + id: AI Upload Airlock Entrance - uid: 7618 components: - type: Transform @@ -43921,7 +61036,7 @@ entities: pos: 27.5,16.5 parent: 2 - type: SurveillanceCamera - id: Medical Logistics + id: Medical Lab - uid: 7432 components: - type: Transform @@ -43929,7 +61044,7 @@ entities: pos: 16.5,16.5 parent: 2 - type: SurveillanceCamera - id: Medbay + id: Medical Bay - uid: 7433 components: - type: Transform @@ -43940,59 +61055,64 @@ entities: id: Morgue - proto: SurveillanceCameraRouterCommand entities: - - uid: 6350 + - uid: 2622 components: - type: Transform - pos: 45.5,47.5 + pos: 0.5,5.5 parent: 2 - proto: SurveillanceCameraRouterEngineering entities: - - uid: 6344 + - uid: 2780 components: - type: Transform - pos: 43.5,47.5 + pos: -0.5,7.5 parent: 2 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 6346 + - uid: 7118 components: - type: Transform - pos: 45.5,48.5 + pos: 1.5,7.5 parent: 2 - proto: SurveillanceCameraRouterMedical entities: - - uid: 6345 + - uid: 2203 components: - type: Transform - pos: 47.5,48.5 + pos: -1.5,7.5 parent: 2 - proto: SurveillanceCameraRouterScience entities: - - uid: 6348 + - uid: 2680 components: - type: Transform - pos: 47.5,47.5 + pos: -3.5,5.5 parent: 2 - proto: SurveillanceCameraRouterSecurity entities: - - uid: 6343 + - uid: 2481 components: - type: Transform - pos: 50.5,50.5 + pos: -0.5,5.5 parent: 2 + - uid: 11336 + components: + - type: Transform + pos: 27.5,-69.5 + parent: 3564 - proto: SurveillanceCameraRouterService entities: - - uid: 6349 + - uid: 2489 components: - type: Transform - pos: 49.5,47.5 + pos: -2.5,5.5 parent: 2 - proto: SurveillanceCameraRouterSupply entities: - - uid: 6347 + - uid: 2488 components: - type: Transform - pos: 49.5,48.5 + pos: -1.5,5.5 parent: 2 - proto: SurveillanceCameraScience entities: @@ -44003,15 +61123,15 @@ entities: pos: 55.5,5.5 parent: 2 - type: SurveillanceCamera - id: Science - - uid: 7574 + id: Research Lab + - uid: 7001 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 3.141592653589793 rad pos: 50.5,14.5 parent: 2 - type: SurveillanceCamera - id: Accurate Depiction of an Academic's Living Conditions + id: Research Gas Storage - proto: SurveillanceCameraSecurity entities: - uid: 7485 @@ -44021,7 +61141,7 @@ entities: pos: 42.5,-0.5 parent: 2 - type: SurveillanceCamera - id: Brig + id: Prison - uid: 7486 components: - type: Transform @@ -44029,15 +61149,7 @@ entities: pos: 34.5,2.5 parent: 2 - type: SurveillanceCamera - id: Security - - uid: 7487 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-6.5 - parent: 2 - - type: SurveillanceCamera - id: Armory + id: Security (Main) - uid: 7516 components: - type: Transform @@ -44045,56 +61157,89 @@ entities: pos: 10.5,-6.5 parent: 2 - type: SurveillanceCamera - id: Security Outpost + id: Security (West) + - uid: 10538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-25.5 + parent: 3564 + - type: SurveillanceCamera + id: Security Office + - uid: 10539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-24.5 + parent: 3564 + - type: SurveillanceCamera + id: Recreation Area (East) + - uid: 10540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-24.5 + parent: 3564 + - type: SurveillanceCamera + id: Recreation Area (West) + - uid: 10541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-20.5 + parent: 3564 + - type: SurveillanceCamera + id: Infirmary + - uid: 10542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-40.5 + parent: 3564 + - type: SurveillanceCamera + id: Solitary Cells + - uid: 10543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-66.5 + parent: 3564 + - type: SurveillanceCamera + id: Warden's Office + - uid: 10544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-66.5 + parent: 3564 + - type: SurveillanceCamera + id: Brig Anchor + - uid: 10545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-61.5 + parent: 3564 + - type: SurveillanceCamera + id: Brig Atmos - proto: SurveillanceCameraService entities: - uid: 4737 components: - type: Transform + rot: 1.5707963267948966 rad pos: 20.5,-8.5 parent: 2 - type: SurveillanceCamera - id: Botany - - uid: 7500 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,7.5 - parent: 2 - - type: SurveillanceCamera - id: Janisposals - - uid: 7568 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-3.5 - parent: 2 - - type: SurveillanceCamera - id: Nightclub -- proto: SurveillanceCameraSupply - entities: - - uid: 7614 + id: Aux Storage + - uid: 7002 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,26.5 + pos: 0.5,13.5 parent: 2 - type: SurveillanceCamera - id: Cargo -- 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 + id: Chapel - proto: Table entities: - uid: 31 @@ -44102,16 +61247,6 @@ entities: - type: Transform pos: 7.5,2.5 parent: 2 - - uid: 134 - components: - - type: Transform - pos: 15.5,-8.5 - parent: 2 - - uid: 252 - components: - - type: Transform - pos: 27.5,38.5 - parent: 2 - uid: 253 components: - type: Transform @@ -44122,6 +61257,11 @@ entities: - type: Transform pos: 10.5,-7.5 parent: 2 + - uid: 305 + components: + - type: Transform + pos: -6.5,15.5 + parent: 2 - uid: 453 components: - type: Transform @@ -44157,10 +61297,10 @@ entities: - type: Transform pos: 29.5,8.5 parent: 2 - - uid: 657 + - uid: 729 components: - type: Transform - pos: 14.5,-8.5 + pos: 18.5,16.5 parent: 2 - uid: 732 components: @@ -44182,11 +61322,6 @@ entities: - type: Transform pos: 58.5,31.5 parent: 2 - - uid: 807 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 2 - uid: 1011 components: - type: Transform @@ -44202,6 +61337,11 @@ entities: - type: Transform pos: 60.5,14.5 parent: 2 + - uid: 1246 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 - uid: 1261 components: - type: Transform @@ -44217,70 +61357,45 @@ entities: - type: Transform pos: 63.5,31.5 parent: 2 - - uid: 1375 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 2 - - uid: 1381 - components: - - type: Transform - pos: 33.5,-7.5 - parent: 2 - - uid: 1407 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 2 - uid: 1444 components: - type: Transform pos: 42.5,1.5 parent: 2 - - uid: 1491 + - uid: 1499 components: - type: Transform - pos: 30.5,-7.5 + pos: 34.5,-2.5 parent: 2 - - uid: 1535 + - uid: 1500 components: - type: Transform - pos: 48.5,0.5 + pos: 35.5,-2.5 parent: 2 - - uid: 1562 + - uid: 1501 components: - type: Transform - pos: 48.5,-0.5 + pos: 33.5,-2.5 parent: 2 - - uid: 1633 + - uid: 1529 components: - type: Transform - pos: 27.5,37.5 + pos: 34.5,10.5 parent: 2 - - uid: 1634 + - uid: 1791 components: - type: Transform - pos: 28.5,37.5 + pos: 38.5,31.5 parent: 2 - - uid: 1635 + - uid: 1799 components: - type: Transform - pos: 29.5,37.5 + pos: 38.5,29.5 parent: 2 - - uid: 1727 + - uid: 1917 components: - type: Transform - pos: 28.5,35.5 - parent: 2 - - uid: 1893 - components: - - type: Transform - pos: -0.5,7.5 - parent: 2 - - uid: 1919 - components: - - type: Transform - pos: -1.5,7.5 + pos: 38.5,30.5 parent: 2 - uid: 2006 components: @@ -44322,25 +61437,25 @@ entities: - type: Transform pos: 58.5,17.5 parent: 2 - - uid: 2047 + - uid: 2048 components: - type: Transform - pos: 48.5,4.5 + pos: 54.5,9.5 + parent: 2 + - uid: 2052 + components: + - type: Transform + pos: 46.5,29.5 parent: 2 - uid: 2136 components: - type: Transform pos: 55.5,28.5 parent: 2 - - uid: 2180 + - uid: 2184 components: - type: Transform - pos: 7.5,-12.5 - parent: 2 - - uid: 2204 - components: - - type: Transform - pos: 40.5,0.5 + pos: 13.5,-11.5 parent: 2 - uid: 2246 components: @@ -44357,41 +61472,11 @@ entities: - 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: 2342 components: - type: Transform pos: 59.5,26.5 parent: 2 - - uid: 2422 - components: - - type: Transform - pos: 31.5,10.5 - parent: 2 - - uid: 2430 - components: - - type: Transform - pos: 59.5,28.5 - parent: 2 - - uid: 2627 - components: - - type: Transform - pos: 31.5,-7.5 - parent: 2 - uid: 2675 components: - type: Transform @@ -44417,66 +61502,111 @@ entities: - type: Transform pos: 2.5,-7.5 parent: 2 - - uid: 2794 + - uid: 2777 components: - type: Transform - pos: 7.5,-10.5 + pos: -5.5,5.5 parent: 2 - - uid: 2858 + - uid: 2788 components: - type: Transform - pos: 31.5,-6.5 + pos: 31.5,8.5 parent: 2 - - uid: 3313 + - uid: 2862 components: - type: Transform - pos: 58.5,38.5 + pos: 34.5,9.5 parent: 2 - - uid: 3817 + - uid: 3007 components: - type: Transform - pos: 30.5,-6.5 + pos: 34.5,24.5 parent: 2 - - uid: 4601 + - uid: 3340 components: - type: Transform - pos: 34.5,51.5 + pos: 38.5,-9.5 parent: 2 - - uid: 4729 + - uid: 3352 components: - type: Transform - pos: 34.5,52.5 + pos: 37.5,-12.5 parent: 2 - - uid: 4731 + - uid: 3353 components: - type: Transform - pos: 30.5,52.5 + pos: 38.5,-12.5 parent: 2 - - uid: 4732 + - uid: 3357 components: - type: Transform - pos: 30.5,51.5 + pos: 13.5,-12.5 parent: 2 - - uid: 4733 + - uid: 3362 components: - type: Transform - pos: 32.5,52.5 + pos: 20.5,-5.5 parent: 2 - - uid: 4735 + - uid: 3363 components: - type: Transform - pos: 32.5,51.5 + pos: 20.5,-6.5 parent: 2 - - uid: 4736 + - uid: 3816 components: - type: Transform - pos: 30.5,48.5 + pos: 32.5,-10.5 + parent: 2 + - uid: 3818 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 + - uid: 3900 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 3964 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 2 + - uid: 4001 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 4220 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - uid: 4265 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 2 + - uid: 5172 + components: + - type: Transform + pos: 39.5,35.5 parent: 2 - uid: 5544 components: - type: Transform pos: 56.5,17.5 parent: 2 + - uid: 5970 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 + - uid: 5976 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 - uid: 6123 components: - type: Transform @@ -44487,6 +61617,11 @@ entities: - type: Transform pos: 63.5,34.5 parent: 2 + - uid: 6478 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 - uid: 6662 components: - type: Transform @@ -44542,16 +61677,10 @@ entities: - type: Transform pos: 57.5,34.5 parent: 2 - - uid: 6999 + - uid: 7117 components: - type: Transform - pos: 46.5,-17.5 - parent: 2 - - uid: 7115 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,13.5 + pos: 45.5,35.5 parent: 2 - uid: 7332 components: @@ -44563,10 +61692,25 @@ entities: - type: Transform pos: 19.5,16.5 parent: 2 - - uid: 7380 + - uid: 7345 components: - type: Transform - pos: 32.5,10.5 + pos: 12.5,-10.5 + parent: 2 + - uid: 7346 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 + - uid: 7363 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 2 + - uid: 7364 + components: + - type: Transform + pos: 20.5,-7.5 parent: 2 - uid: 7382 components: @@ -44583,21 +61727,6 @@ entities: - type: Transform pos: 8.5,16.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: 7566 - components: - - type: Transform - pos: 27.5,35.5 - parent: 2 - uid: 7666 components: - type: Transform @@ -44608,10 +61737,398 @@ entities: - type: Transform pos: 19.5,-12.5 parent: 2 - - uid: 7675 + - uid: 7711 components: - type: Transform - pos: 37.5,-12.5 + pos: 59.5,28.5 + parent: 2 + - uid: 7715 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 7818 + components: + - type: Transform + pos: 44.5,29.5 + parent: 2 + - uid: 8229 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - uid: 8357 + components: + - type: Transform + pos: 34.5,23.5 + parent: 2 + - uid: 8368 + components: + - type: Transform + pos: 30.5,33.5 + parent: 2 + - uid: 8369 + components: + - type: Transform + pos: 29.5,33.5 + parent: 2 + - uid: 9701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-65.5 + parent: 3564 + - uid: 9715 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 3564 + - uid: 9716 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 3564 + - uid: 9717 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 3564 + - uid: 9718 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 3564 + - uid: 9719 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 3564 + - uid: 9720 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 + - uid: 9721 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 3564 + - uid: 9722 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 3564 + - uid: 9723 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 3564 + - uid: 9724 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 3564 + - uid: 9725 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 3564 + - uid: 9726 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 3564 + - uid: 9909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-54.5 + parent: 3564 + - uid: 10261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-50.5 + parent: 3564 + - uid: 10262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-46.5 + parent: 3564 + - uid: 10263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-38.5 + parent: 3564 + - uid: 10264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-34.5 + parent: 3564 + - uid: 10265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-38.5 + parent: 3564 + - uid: 10266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-42.5 + parent: 3564 + - uid: 10267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-46.5 + parent: 3564 + - uid: 10268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-50.5 + parent: 3564 + - uid: 10269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-54.5 + parent: 3564 + - uid: 10324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-32.5 + parent: 3564 + - uid: 10325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-33.5 + parent: 3564 + - uid: 10400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-66.5 + parent: 3564 + - uid: 10403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-64.5 + parent: 3564 + - uid: 10405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-64.5 + parent: 3564 + - uid: 10406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-66.5 + parent: 3564 + - uid: 10409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-69.5 + parent: 3564 + - uid: 10433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-60.5 + parent: 3564 + - uid: 10434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-61.5 + parent: 3564 + - uid: 10452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-59.5 + parent: 3564 + - uid: 10453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-59.5 + parent: 3564 + - uid: 10454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-59.5 + parent: 3564 + - uid: 10512 + components: + - type: Transform + pos: 37.5,-25.5 + parent: 3564 + - uid: 10513 + components: + - type: Transform + pos: 37.5,-26.5 + parent: 3564 + - uid: 10514 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10515 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10516 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10517 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10555 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 3564 + - uid: 10558 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 3564 + - uid: 10559 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 3564 + - uid: 10560 + components: + - type: Transform + pos: 9.5,-27.5 + parent: 3564 + - uid: 10561 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 3564 + - uid: 10562 + components: + - type: Transform + pos: 9.5,-29.5 + parent: 3564 + - uid: 10563 + components: + - type: Transform + pos: 13.5,-29.5 + parent: 3564 + - uid: 10564 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 3564 + - uid: 10565 + components: + - type: Transform + pos: 11.5,-29.5 + parent: 3564 + - uid: 10566 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 3564 + - uid: 10582 + components: + - type: Transform + pos: 17.5,-22.5 + parent: 3564 + - uid: 10583 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 3564 + - uid: 10584 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 3564 + - uid: 10585 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 3564 + - uid: 10586 + components: + - type: Transform + pos: 16.5,-28.5 + parent: 3564 + - uid: 10587 + components: + - type: Transform + pos: 16.5,-27.5 + parent: 3564 + - uid: 10588 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 3564 + - uid: 10589 + components: + - type: Transform + pos: 17.5,-27.5 + parent: 3564 + - uid: 11212 + components: + - type: Transform + pos: 53.5,9.5 + parent: 2 + - uid: 11352 + components: + - type: Transform + pos: -6.5,14.5 + parent: 2 + - uid: 11353 + components: + - type: Transform + pos: -6.5,13.5 + parent: 2 + - uid: 11354 + components: + - type: Transform + pos: -6.5,11.5 + parent: 2 + - uid: 11355 + components: + - type: Transform + pos: -6.5,10.5 + parent: 2 + - uid: 11356 + components: + - type: Transform + pos: -6.5,9.5 + parent: 2 + - uid: 11509 + components: + - type: Transform + pos: 11.5,34.5 + parent: 2 + - uid: 11510 + components: + - type: Transform + pos: 12.5,34.5 parent: 2 - proto: TableBrass entities: @@ -44627,21 +62144,6 @@ entities: parent: 2 - proto: TableCounterMetal entities: - - uid: 96 - components: - - type: Transform - pos: 18.5,-4.5 - parent: 2 - - uid: 492 - components: - - type: Transform - pos: 18.5,23.5 - parent: 2 - - uid: 515 - components: - - type: Transform - pos: 17.5,23.5 - parent: 2 - uid: 540 components: - type: Transform @@ -44667,11 +62169,6 @@ entities: - type: Transform pos: 14.5,13.5 parent: 2 - - uid: 710 - components: - - type: Transform - pos: 31.5,12.5 - parent: 2 - uid: 1098 components: - type: Transform @@ -44682,259 +62179,46 @@ entities: - type: Transform pos: 32.5,7.5 parent: 2 - - uid: 1294 - components: - - type: Transform - pos: 19.5,23.5 - parent: 2 - - uid: 1475 - components: - - type: Transform - pos: 23.5,-7.5 - parent: 2 - - uid: 1486 - components: - - type: Transform - pos: 25.5,-7.5 - parent: 2 - - uid: 1489 - components: - - type: Transform - pos: 24.5,-7.5 - parent: 2 - - uid: 1492 - components: - - type: Transform - pos: 27.5,-2.5 - parent: 2 - - uid: 1493 - components: - - type: Transform - pos: 28.5,-2.5 - parent: 2 - - uid: 1494 - components: - - type: Transform - pos: 26.5,-2.5 - parent: 2 - - uid: 1495 - components: - - type: Transform - pos: 25.5,0.5 - parent: 2 - - uid: 1496 - components: - - type: Transform - pos: 26.5,0.5 - parent: 2 - - uid: 1749 - components: - - type: Transform - pos: 29.5,22.5 - parent: 2 - - uid: 1765 - components: - - type: Transform - pos: 31.5,22.5 - parent: 2 - - uid: 1767 - components: - - type: Transform - pos: 30.5,22.5 - parent: 2 - - uid: 2193 - components: - - type: Transform - pos: 45.5,8.5 - parent: 2 - - uid: 2194 - components: - - type: Transform - pos: 45.5,7.5 - parent: 2 - - uid: 2195 - components: - - type: Transform - pos: 45.5,6.5 - parent: 2 - - uid: 2196 - components: - - type: Transform - pos: 46.5,6.5 - parent: 2 - - uid: 2628 - components: - - type: Transform - pos: 24.5,-10.5 - parent: 2 - - uid: 2629 - components: - - type: Transform - pos: 23.5,-10.5 - parent: 2 - - uid: 2671 - components: - - type: Transform - pos: 19.5,-4.5 - parent: 2 - - uid: 2803 - components: - - type: Transform - pos: 22.5,-10.5 - parent: 2 - - uid: 2857 - components: - - type: Transform - pos: 25.5,-2.5 - parent: 2 - uid: 3163 components: - type: Transform pos: 32.5,12.5 parent: 2 - - uid: 7653 + - uid: 9713 components: - type: Transform - pos: 24.5,-9.5 - parent: 2 -- proto: TableFancyBlue + pos: 26.5,-58.5 + parent: 3564 + - uid: 9714 + components: + - type: Transform + pos: 26.5,-59.5 + parent: 3564 +- proto: TableFancyBlack entities: - - uid: 2278 + - uid: 11351 components: - type: Transform - pos: 42.5,29.5 + rot: 1.5707963267948966 rad + pos: -4.5,10.5 parent: 2 - proto: TableGlass entities: - - uid: 546 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,16.5 - parent: 2 - uid: 793 components: - type: Transform pos: 63.5,30.5 parent: 2 - - uid: 1273 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,15.5 - parent: 2 - uid: 1480 components: - type: Transform pos: 59.5,31.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: 1967 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,10.5 - parent: 2 - - uid: 2039 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,9.5 - parent: 2 - - uid: 2073 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,8.5 - parent: 2 - - uid: 2130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,7.5 - parent: 2 - uid: 2429 components: - type: Transform pos: 63.5,32.5 parent: 2 - - uid: 7636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,31.5 - parent: 2 - - uid: 7643 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,31.5 - parent: 2 - - uid: 7645 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,32.5 - parent: 2 - - uid: 7727 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,6.5 - parent: 2 - - uid: 7728 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,5.5 - parent: 2 - - uid: 7729 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,4.5 - parent: 2 - - uid: 7730 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,4.5 - parent: 2 - - uid: 7731 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,4.5 - parent: 2 - proto: TegCenter entities: - uid: 1302 @@ -44970,71 +62254,49 @@ entities: - type: DeviceLinkSink ports: - Trigger -- proto: TelecomServerCircuitboard +- proto: TelecomServerFilled entities: - - uid: 2173 + - uid: 2859 components: - type: Transform - pos: 13.5,-12.5 + pos: -5.5,7.5 parent: 2 -- proto: TelecomServerFilledCargo +- proto: ThrusterFlatpack entities: - - uid: 1589 + - uid: 5962 components: - type: Transform - pos: 38.5,26.5 + pos: 14.5,28.5 parent: 2 -- proto: TelecomServerFilledCommand - entities: - - uid: 1582 + - uid: 5973 components: - type: Transform - pos: 38.5,27.5 + pos: 14.5,28.5 parent: 2 -- proto: TelecomServerFilledCommon - entities: - - uid: 1590 + - uid: 5974 components: - type: Transform - pos: 38.5,28.5 + pos: 14.5,28.5 parent: 2 -- proto: TelecomServerFilledEngineering +- proto: ThrusterUnanchored entities: - - uid: 1585 + - uid: 5968 components: - type: Transform - pos: 38.5,29.5 + pos: 10.5,31.5 parent: 2 -- proto: TelecomServerFilledMedical - entities: - - uid: 1584 + - uid: 5969 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 + pos: 12.5,29.5 parent: 2 - proto: TimerTrigger entities: + - uid: 1388 + components: + - type: Transform + pos: 45.5,20.5 + parent: 2 - uid: 7220 components: - type: Transform @@ -45050,22 +62312,40 @@ entities: - type: Transform pos: 45.5,19.5 parent: 2 - - uid: 7702 + - uid: 7810 components: - type: Transform - pos: 48.5,19.5 + pos: 52.5,9.5 parent: 2 -- proto: ToiletDirtyWater - entities: - - uid: 4008 + - uid: 7814 components: - type: Transform - pos: 42.5,-9.5 + pos: 52.5,9.5 parent: 2 - - uid: 4009 + - uid: 8401 components: - type: Transform - pos: 44.5,-9.5 + pos: 38.5,30.5 + parent: 2 + - uid: 8405 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 8411 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 11148 + components: + - type: Transform + pos: 49.5,19.5 + parent: 2 + - uid: 11154 + components: + - type: Transform + pos: 43.5,20.5 parent: 2 - proto: ToolboxArtisticFilled entities: @@ -45076,66 +62356,206 @@ entities: parent: 2 - proto: ToolboxElectricalFilled entities: - - uid: 2259 + - uid: 889 components: - type: Transform - pos: 49.5,19.5 + pos: 38.5,30.5 parent: 2 - - uid: 2287 + - uid: 1313 components: - type: Transform - pos: 49.5,19.5 + pos: 13.5,-7.5 + parent: 2 + - uid: 3355 + components: + - type: Transform + pos: 38.5,-12.5 + parent: 2 + - uid: 4489 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 2 + - uid: 5933 + components: + - type: Transform + pos: 14.5,31.5 + parent: 2 + - uid: 10534 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 3564 + - uid: 11152 + components: + - type: Transform + pos: 51.5,19.5 + parent: 2 + - uid: 11171 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 11512 + components: + - type: Transform + pos: 11.5,34.5 parent: 2 - proto: ToolboxEmergencyFilled entities: - - uid: 573 + - uid: 1298 components: - type: Transform - pos: 47.5,19.5 + pos: 20.5,11.5 parent: 2 - - uid: 862 + - uid: 1577 components: - type: Transform - pos: 47.5,19.5 + pos: 45.5,29.5 + parent: 2 + - uid: 1697 + components: + - type: Transform + pos: 35.5,-9.5 parent: 2 - uid: 1764 components: - type: Transform pos: 59.5,31.5 parent: 2 + - uid: 4368 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 2 + - uid: 4384 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 + - uid: 5935 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 + - uid: 6305 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 2 + - uid: 6352 + components: + - type: Transform + pos: 45.5,35.5 + parent: 2 + - uid: 6460 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 2 - uid: 7190 components: - type: Transform pos: 38.5,-1.5 parent: 2 -- proto: ToolboxGoldFilled - entities: - - uid: 2163 + - uid: 7709 components: - type: Transform - pos: 62.57238,9.313311 + pos: 44.5,29.5 + parent: 2 + - uid: 7807 + components: + - type: Transform + pos: 30.5,33.5 + parent: 2 + - uid: 8370 + components: + - type: Transform + pos: 29.5,33.5 + parent: 2 + - uid: 8391 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 8404 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 8409 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 10401 + components: + - type: Transform + pos: 34.5,-63.5 + parent: 3564 + - uid: 10533 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 3564 + - uid: 10615 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 3564 + - uid: 11158 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 11159 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 11209 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 +- proto: ToolboxGoldFilled + entities: + - uid: 8269 + components: + - type: Transform + pos: 59.5,23.5 parent: 2 - proto: ToolboxMechanicalFilled entities: - - uid: 2286 + - uid: 867 components: - type: Transform - pos: 48.5,19.5 + pos: 38.5,29.5 parent: 2 - - uid: 2866 - components: - - type: Transform - pos: 48.5,19.5 - parent: 2 -- proto: ToyFigurineHeadOfPersonnel +- proto: TrackingImplanter entities: - - uid: 7218 + - uid: 10612 components: - type: Transform - pos: 42.5,29.9 - parent: 2 + pos: 28.5,-23.5 + parent: 3564 + - uid: 10613 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 3564 - proto: trayScanner entities: + - uid: 4386 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 + - uid: 6712 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 - uid: 7219 components: - type: Transform @@ -45146,105 +62566,19 @@ entities: - type: Transform pos: 47.5,21.5 parent: 2 -- proto: TritiumCanister +- proto: TreasureFlopDiskDrive entities: - - uid: 6609 + - uid: 6685 components: - type: Transform - pos: 20.5,42.5 + pos: 11.5,22.5 parent: 2 -- proto: TwoWayLever - entities: - - uid: 828 - components: - - type: Transform - pos: -5.5,7.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 254: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 150: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 258: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 256: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 290: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 259: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 165: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 294: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 118: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 382: - - - Left - - Open - - - Right - - Close - - - Middle - - Close - 357: - - - Left - - Close - - - Right - - Open - - - Middle - - Close - proto: UniformPrinter entities: - - uid: 2275 + - uid: 7784 components: - type: Transform - pos: 45.5,29.5 + pos: 42.5,29.5 parent: 2 - type: TechnologyDatabase supportedDisciplines: @@ -45252,26 +62586,12 @@ entities: - Arsenal - Experimental - CivilianServices -- proto: VendingMachineBooze - entities: - - uid: 1374 - components: - - type: Transform - pos: 28.5,0.5 - parent: 2 - proto: VendingMachineCart entities: - - uid: 2280 + - uid: 7787 components: - type: Transform - pos: 46.5,29.5 - parent: 2 -- proto: VendingMachineChefvend - entities: - - uid: 1402 - components: - - type: Transform - pos: 26.5,-7.5 + pos: 43.5,29.5 parent: 2 - proto: VendingMachineChemDrobe entities: @@ -45287,88 +62607,63 @@ entities: - type: Transform pos: 28.5,9.5 parent: 2 -- proto: VendingMachineClothing - entities: - - uid: 7008 - components: - - type: Transform - pos: 58.5,53.5 - parent: 2 -- proto: VendingMachineDinnerware - entities: - - uid: 2609 - components: - - type: Transform - pos: 27.5,-7.5 - parent: 2 -- proto: VendingMachineDiscount - entities: - - uid: 1497 - components: - - type: Transform - pos: 30.5,31.5 - parent: 2 - proto: VendingMachineEngivend entities: - - uid: 1569 + - uid: 7766 components: - type: Transform - pos: 37.5,41.5 + pos: 23.5,38.5 parent: 2 - proto: VendingMachineMedical entities: - - uid: 532 + - uid: 6314 components: - type: Transform - pos: 25.5,16.5 - parent: 2 -- proto: VendingMachineNutri - entities: - - uid: 879 - components: - - type: Transform - pos: 12.5,-5.5 - parent: 2 -- proto: VendingMachineRobotics - entities: - - uid: 1557 - components: - - type: Transform - pos: 53.5,9.5 + pos: 34.5,13.5 parent: 2 - proto: VendingMachineSec entities: - - uid: 7213 + - uid: 1328 components: - type: Transform - pos: 35.5,-4.5 + pos: 37.5,2.5 parent: 2 -- proto: VendingMachineSeeds +- proto: VendingMachineSeedsUnlocked entities: - - uid: 1711 + - uid: 10546 components: - type: Transform - pos: 13.5,-5.5 - parent: 2 + pos: 9.5,-20.5 + parent: 3564 - proto: VendingMachineTankDispenserEngineering entities: - - uid: 1623 + - uid: 1012 components: - type: Transform - pos: 35.5,37.5 + pos: 49.5,14.5 parent: 2 - - uid: 1624 + - uid: 2909 components: - type: Transform - pos: 36.5,37.5 - parent: 2 - - uid: 1625 - components: - - type: Transform - pos: 37.5,37.5 + pos: 36.5,29.5 parent: 2 - proto: VendingMachineTankDispenserEVA entities: + - uid: 1326 + components: + - type: Transform + pos: 50.5,14.5 + parent: 2 + - uid: 1382 + components: + - type: Transform + pos: 35.5,-7.5 + parent: 2 + - uid: 1383 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 2 - uid: 1929 components: - type: Transform @@ -45379,16 +62674,31 @@ entities: - type: Transform pos: 49.5,41.5 parent: 2 - - uid: 2626 + - uid: 3366 components: - type: Transform - pos: 6.5,-12.5 + pos: 10.5,-12.5 + parent: 2 + - uid: 4719 + components: + - type: Transform + pos: 48.5,14.5 + parent: 2 + - uid: 5165 + components: + - type: Transform + pos: 13.5,31.5 parent: 2 - uid: 7665 components: - type: Transform pos: 17.5,-12.5 parent: 2 + - uid: 8304 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 - proto: VendingMachineVendomat entities: - uid: 2245 @@ -45396,30 +62706,18 @@ entities: - type: Transform pos: 41.5,19.5 parent: 2 - - uid: 2612 - components: - - type: Transform - pos: 5.5,-12.5 - parent: 2 -- proto: VendingMachineWinter - entities: - - uid: 6544 - components: - - type: Transform - pos: 8.5,0.5 - parent: 2 - proto: VendingMachineYouTool entities: - - uid: 889 - components: - - type: Transform - pos: 37.5,40.5 - parent: 2 - uid: 2244 components: - type: Transform pos: 41.5,20.5 parent: 2 + - uid: 7760 + components: + - type: Transform + pos: 23.5,37.5 + parent: 2 - proto: WallReinforced entities: - uid: 43 @@ -45427,6 +62725,16 @@ entities: - type: Transform pos: 6.5,30.5 parent: 2 + - uid: 161 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 162 + components: + - type: Transform + pos: 35.5,19.5 + parent: 2 - uid: 174 components: - type: Transform @@ -45507,6 +62815,11 @@ entities: - type: Transform pos: 2.5,5.5 parent: 2 + - uid: 284 + components: + - type: Transform + pos: 34.5,19.5 + parent: 2 - uid: 299 components: - type: Transform @@ -45562,6 +62875,11 @@ entities: - type: Transform pos: 7.5,31.5 parent: 2 + - uid: 639 + components: + - type: Transform + pos: 33.5,19.5 + parent: 2 - uid: 643 components: - type: Transform @@ -45587,6 +62905,46 @@ entities: - type: Transform pos: -0.5,32.5 parent: 2 + - uid: 662 + components: + - type: Transform + pos: 32.5,19.5 + parent: 2 + - uid: 664 + components: + - type: Transform + pos: 31.5,19.5 + parent: 2 + - uid: 665 + components: + - type: Transform + pos: 30.5,19.5 + parent: 2 + - uid: 666 + components: + - type: Transform + pos: 29.5,19.5 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: 28.5,19.5 + parent: 2 + - uid: 671 + components: + - type: Transform + pos: 27.5,19.5 + parent: 2 + - uid: 672 + components: + - type: Transform + pos: 26.5,19.5 + parent: 2 + - uid: 682 + components: + - type: Transform + pos: 25.5,19.5 + parent: 2 - uid: 700 components: - type: Transform @@ -45677,6 +63035,11 @@ entities: - type: Transform pos: 10.5,38.5 parent: 2 + - uid: 795 + components: + - type: Transform + pos: 24.5,19.5 + parent: 2 - uid: 858 components: - type: Transform @@ -45782,11 +63145,6 @@ entities: - type: Transform pos: 17.5,43.5 parent: 2 - - uid: 895 - components: - - type: Transform - pos: 59.5,9.5 - parent: 2 - uid: 896 components: - type: Transform @@ -46122,11 +63480,6 @@ entities: - type: Transform pos: 47.5,5.5 parent: 2 - - uid: 1197 - components: - - type: Transform - pos: 59.5,5.5 - parent: 2 - uid: 1198 components: - type: Transform @@ -46352,6 +63705,26 @@ entities: - type: Transform pos: 37.5,3.5 parent: 2 + - uid: 1476 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 1495 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 2 + - uid: 1524 + components: + - type: Transform + pos: 23.5,19.5 + parent: 2 + - uid: 1561 + components: + - type: Transform + pos: 22.5,19.5 + parent: 2 - uid: 1573 components: - type: Transform @@ -46412,15 +63785,10 @@ entities: - type: Transform pos: 28.5,56.5 parent: 2 - - uid: 1946 + - uid: 1954 components: - type: Transform - pos: 59.5,7.5 - parent: 2 - - uid: 2043 - components: - - type: Transform - pos: 59.5,8.5 + pos: 20.5,19.5 parent: 2 - uid: 2090 components: @@ -46597,11 +63965,48 @@ entities: - type: Transform pos: 16.5,62.5 parent: 2 + - uid: 2787 + components: + - type: Transform + pos: 67.5,-13.5 + parent: 2 + - uid: 2792 + components: + - type: Transform + pos: 67.5,-23.5 + parent: 2 + - uid: 2896 + components: + - type: Transform + pos: 35.5,20.5 + parent: 2 + - uid: 3082 + components: + - type: Transform + pos: 35.5,22.5 + parent: 2 - uid: 3395 components: - type: Transform pos: 16.5,26.5 parent: 2 + - uid: 3565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-46.5 + parent: 3564 + - uid: 3566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-38.5 + parent: 3564 + - uid: 3929 + components: + - type: Transform + pos: 45.5,34.5 + parent: 2 - uid: 4266 components: - type: Transform @@ -47022,16 +64427,6 @@ entities: - 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 @@ -47297,6 +64692,11 @@ entities: - type: Transform pos: 41.5,47.5 parent: 2 + - uid: 7233 + components: + - type: Transform + pos: 67.5,-24.5 + parent: 2 - uid: 7239 components: - type: Transform @@ -47307,8 +64707,2153 @@ entities: - type: Transform pos: 14.5,47.5 parent: 2 + - uid: 7396 + components: + - type: Transform + pos: 67.5,-28.5 + parent: 2 + - uid: 8397 + components: + - type: Transform + pos: 44.5,34.5 + parent: 2 + - uid: 8398 + components: + - type: Transform + pos: 44.5,33.5 + parent: 2 + - uid: 9079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-38.5 + parent: 3564 + - uid: 9080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-38.5 + parent: 3564 + - uid: 9081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-38.5 + parent: 3564 + - uid: 9082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-39.5 + parent: 3564 + - uid: 9083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-40.5 + parent: 3564 + - uid: 9084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-37.5 + parent: 3564 + - uid: 9085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-36.5 + parent: 3564 + - uid: 9086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-36.5 + parent: 3564 + - uid: 9087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-36.5 + parent: 3564 + - uid: 9088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-39.5 + parent: 3564 + - uid: 9089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-35.5 + parent: 3564 + - uid: 9090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-36.5 + parent: 3564 + - uid: 9091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-35.5 + parent: 3564 + - uid: 9092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-36.5 + parent: 3564 + - uid: 9093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-35.5 + parent: 3564 + - uid: 9094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-36.5 + parent: 3564 + - uid: 9095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-35.5 + parent: 3564 + - uid: 9096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-36.5 + parent: 3564 + - uid: 9097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-37.5 + parent: 3564 + - uid: 9098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-38.5 + parent: 3564 + - uid: 9099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-39.5 + parent: 3564 + - uid: 9100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-39.5 + parent: 3564 + - uid: 9101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-38.5 + parent: 3564 + - uid: 9102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-37.5 + parent: 3564 + - uid: 9103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-39.5 + parent: 3564 + - uid: 9104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-39.5 + parent: 3564 + - uid: 9105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-39.5 + parent: 3564 + - uid: 9106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-39.5 + parent: 3564 + - uid: 9107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-39.5 + parent: 3564 + - uid: 9108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-35.5 + parent: 3564 + - uid: 9109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-35.5 + parent: 3564 + - uid: 9110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-35.5 + parent: 3564 + - uid: 9111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-35.5 + parent: 3564 + - uid: 9112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-43.5 + parent: 3564 + - uid: 9113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-43.5 + parent: 3564 + - uid: 9114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-43.5 + parent: 3564 + - uid: 9115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-43.5 + parent: 3564 + - uid: 9116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-43.5 + parent: 3564 + - uid: 9117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-43.5 + parent: 3564 + - uid: 9118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-43.5 + parent: 3564 + - uid: 9119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-43.5 + parent: 3564 + - uid: 9120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-42.5 + parent: 3564 + - uid: 9121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-43.5 + parent: 3564 + - uid: 9122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-44.5 + parent: 3564 + - uid: 9123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-45.5 + parent: 3564 + - uid: 9124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-44.5 + parent: 3564 + - uid: 9125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-45.5 + parent: 3564 + - uid: 9126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-44.5 + parent: 3564 + - uid: 9127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-45.5 + parent: 3564 + - uid: 9128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-46.5 + parent: 3564 + - uid: 9129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-46.5 + parent: 3564 + - uid: 9130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-46.5 + parent: 3564 + - uid: 9131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-46.5 + parent: 3564 + - uid: 9132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-46.5 + parent: 3564 + - uid: 9134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-46.5 + parent: 3564 + - uid: 9135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-46.5 + parent: 3564 + - uid: 9137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-47.5 + parent: 3564 + - uid: 9138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-47.5 + parent: 3564 + - uid: 9139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-47.5 + parent: 3564 + - uid: 9140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-47.5 + parent: 3564 + - uid: 9141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-47.5 + parent: 3564 + - uid: 9142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-48.5 + parent: 3564 + - uid: 9143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-49.5 + parent: 3564 + - uid: 9144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-50.5 + parent: 3564 + - uid: 9145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-51.5 + parent: 3564 + - uid: 9146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-52.5 + parent: 3564 + - uid: 9147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-53.5 + parent: 3564 + - uid: 9148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-54.5 + parent: 3564 + - uid: 9149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-55.5 + parent: 3564 + - uid: 9150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-56.5 + parent: 3564 + - uid: 9151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-55.5 + parent: 3564 + - uid: 9152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-56.5 + parent: 3564 + - uid: 9153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-55.5 + parent: 3564 + - uid: 9154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-56.5 + parent: 3564 + - uid: 9155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-55.5 + parent: 3564 + - uid: 9156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-56.5 + parent: 3564 + - uid: 9157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-55.5 + parent: 3564 + - uid: 9158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-56.5 + parent: 3564 + - uid: 9159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-57.5 + parent: 3564 + - uid: 9160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-58.5 + parent: 3564 + - uid: 9161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-59.5 + parent: 3564 + - uid: 9162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-57.5 + parent: 3564 + - uid: 9163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-58.5 + parent: 3564 + - uid: 9164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-59.5 + parent: 3564 + - uid: 9165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-57.5 + parent: 3564 + - uid: 9166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-57.5 + parent: 3564 + - uid: 9167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-61.5 + parent: 3564 + - uid: 9168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-60.5 + parent: 3564 + - uid: 9169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-62.5 + parent: 3564 + - uid: 9170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-62.5 + parent: 3564 + - uid: 9171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-61.5 + parent: 3564 + - uid: 9172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-62.5 + parent: 3564 + - uid: 9173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-61.5 + parent: 3564 + - uid: 9174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-62.5 + parent: 3564 + - uid: 9175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-51.5 + parent: 3564 + - uid: 9176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-51.5 + parent: 3564 + - uid: 9177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-51.5 + parent: 3564 + - uid: 9178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-51.5 + parent: 3564 + - uid: 9179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-51.5 + parent: 3564 + - uid: 9180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-51.5 + parent: 3564 + - uid: 9181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-51.5 + parent: 3564 + - uid: 9182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-51.5 + parent: 3564 + - uid: 9183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-55.5 + parent: 3564 + - uid: 9184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-56.5 + parent: 3564 + - uid: 9185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-55.5 + parent: 3564 + - uid: 9186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-56.5 + parent: 3564 + - uid: 9187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-55.5 + parent: 3564 + - uid: 9188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-56.5 + parent: 3564 + - uid: 9189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-55.5 + parent: 3564 + - uid: 9190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-56.5 + parent: 3564 + - uid: 9191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-55.5 + parent: 3564 + - uid: 9192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-56.5 + parent: 3564 + - uid: 9193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-56.5 + parent: 3564 + - uid: 9194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-56.5 + parent: 3564 + - uid: 9195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-56.5 + parent: 3564 + - uid: 9196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-56.5 + parent: 3564 + - uid: 9197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-56.5 + parent: 3564 + - uid: 9198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-56.5 + parent: 3564 + - uid: 9199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-56.5 + parent: 3564 + - uid: 9200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-57.5 + parent: 3564 + - uid: 9201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-58.5 + parent: 3564 + - uid: 9202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-59.5 + parent: 3564 + - uid: 9203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-60.5 + parent: 3564 + - uid: 9204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-61.5 + parent: 3564 + - uid: 9205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-62.5 + parent: 3564 + - uid: 9206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-62.5 + parent: 3564 + - uid: 9207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-62.5 + parent: 3564 + - uid: 9208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-62.5 + parent: 3564 + - uid: 9209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-62.5 + parent: 3564 + - uid: 9210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-62.5 + parent: 3564 + - uid: 9211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-62.5 + parent: 3564 + - uid: 9212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-62.5 + parent: 3564 + - uid: 9213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-62.5 + parent: 3564 + - uid: 9214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-63.5 + parent: 3564 + - uid: 9215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-64.5 + parent: 3564 + - uid: 9216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-65.5 + parent: 3564 + - uid: 9217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-66.5 + parent: 3564 + - uid: 9218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-67.5 + parent: 3564 + - uid: 9219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-68.5 + parent: 3564 + - uid: 9220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-69.5 + parent: 3564 + - uid: 9221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-70.5 + parent: 3564 + - uid: 9222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-70.5 + parent: 3564 + - uid: 9223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-70.5 + parent: 3564 + - uid: 9224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-70.5 + parent: 3564 + - uid: 9225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-70.5 + parent: 3564 + - uid: 9226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-70.5 + parent: 3564 + - uid: 9227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-70.5 + parent: 3564 + - uid: 9228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-70.5 + parent: 3564 + - uid: 9229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-70.5 + parent: 3564 + - uid: 9230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-70.5 + parent: 3564 + - uid: 9231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-70.5 + parent: 3564 + - uid: 9232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-70.5 + parent: 3564 + - uid: 9233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-70.5 + parent: 3564 + - uid: 9234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-71.5 + parent: 3564 + - uid: 9235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-72.5 + parent: 3564 + - uid: 9236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-70.5 + parent: 3564 + - uid: 9237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-71.5 + parent: 3564 + - uid: 9238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-72.5 + parent: 3564 + - uid: 9239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-70.5 + parent: 3564 + - uid: 9240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-70.5 + parent: 3564 + - uid: 9241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-70.5 + parent: 3564 + - uid: 9242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-64.5 + parent: 3564 + - uid: 9243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-64.5 + parent: 3564 + - uid: 9244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-64.5 + parent: 3564 + - uid: 9245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-64.5 + parent: 3564 + - uid: 9246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-64.5 + parent: 3564 + - uid: 9247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-65.5 + parent: 3564 + - uid: 9248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-66.5 + parent: 3564 + - uid: 9249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-63.5 + parent: 3564 + - uid: 9250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-69.5 + parent: 3564 + - uid: 9251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-68.5 + parent: 3564 + - uid: 9252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-68.5 + parent: 3564 + - uid: 9253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-68.5 + parent: 3564 + - uid: 9254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-68.5 + parent: 3564 + - uid: 9255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-68.5 + parent: 3564 + - uid: 9256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-68.5 + parent: 3564 + - uid: 9257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-68.5 + parent: 3564 + - uid: 9258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-67.5 + parent: 3564 + - uid: 9259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-66.5 + parent: 3564 + - uid: 9260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-65.5 + parent: 3564 + - uid: 9261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-64.5 + parent: 3564 + - uid: 9262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-64.5 + parent: 3564 + - uid: 9263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-64.5 + parent: 3564 + - uid: 9264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-63.5 + parent: 3564 + - uid: 9265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-62.5 + parent: 3564 + - uid: 9266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-61.5 + parent: 3564 + - uid: 9267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-60.5 + parent: 3564 + - uid: 9268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-59.5 + parent: 3564 + - uid: 9269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-58.5 + parent: 3564 + - uid: 9270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-57.5 + parent: 3564 + - uid: 9271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-56.5 + parent: 3564 + - uid: 9272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-56.5 + parent: 3564 + - uid: 9273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-56.5 + parent: 3564 + - uid: 9274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-56.5 + parent: 3564 + - uid: 9275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-56.5 + parent: 3564 + - uid: 9276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-54.5 + parent: 3564 + - uid: 9277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-53.5 + parent: 3564 + - uid: 9278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-52.5 + parent: 3564 + - uid: 9279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-51.5 + parent: 3564 + - uid: 9280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-50.5 + parent: 3564 + - uid: 9281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-49.5 + parent: 3564 + - uid: 9282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-48.5 + parent: 3564 + - uid: 9283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-47.5 + parent: 3564 + - uid: 9284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-46.5 + parent: 3564 + - uid: 9285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-45.5 + parent: 3564 + - uid: 9286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-44.5 + parent: 3564 + - uid: 9287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-43.5 + parent: 3564 + - uid: 9288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-42.5 + parent: 3564 + - uid: 9289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-41.5 + parent: 3564 + - uid: 9290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-40.5 + parent: 3564 + - uid: 9291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-39.5 + parent: 3564 + - uid: 9292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-38.5 + parent: 3564 + - uid: 9293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-37.5 + parent: 3564 + - uid: 9294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-36.5 + parent: 3564 + - uid: 9295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-35.5 + parent: 3564 + - uid: 9296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-34.5 + parent: 3564 + - uid: 9297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-33.5 + parent: 3564 + - uid: 9298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-32.5 + parent: 3564 + - uid: 9299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-31.5 + parent: 3564 + - uid: 9300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-31.5 + parent: 3564 + - uid: 9301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-31.5 + parent: 3564 + - uid: 9302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-31.5 + parent: 3564 + - uid: 9303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-31.5 + parent: 3564 + - uid: 9304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-34.5 + parent: 3564 + - uid: 9305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-34.5 + parent: 3564 + - uid: 9306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-34.5 + parent: 3564 + - uid: 9307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-34.5 + parent: 3564 + - uid: 9308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-34.5 + parent: 3564 + - uid: 9309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-34.5 + parent: 3564 + - uid: 9310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-34.5 + parent: 3564 + - uid: 9311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-31.5 + parent: 3564 + - uid: 9312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-31.5 + parent: 3564 + - uid: 9313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-31.5 + parent: 3564 + - uid: 9314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-31.5 + parent: 3564 + - uid: 9315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-35.5 + parent: 3564 + - uid: 9316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-35.5 + parent: 3564 + - uid: 9317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-35.5 + parent: 3564 + - uid: 9318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-35.5 + parent: 3564 + - uid: 9319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-39.5 + parent: 3564 + - uid: 9320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-39.5 + parent: 3564 + - uid: 9321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-39.5 + parent: 3564 + - uid: 9322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-39.5 + parent: 3564 + - uid: 9323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-43.5 + parent: 3564 + - uid: 9324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-43.5 + parent: 3564 + - uid: 9325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-43.5 + parent: 3564 + - uid: 9326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-43.5 + parent: 3564 + - uid: 9327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-47.5 + parent: 3564 + - uid: 9328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-47.5 + parent: 3564 + - uid: 9329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-47.5 + parent: 3564 + - uid: 9330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-47.5 + parent: 3564 + - uid: 9331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-32.5 + parent: 3564 + - uid: 9332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-33.5 + parent: 3564 + - uid: 9333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-34.5 + parent: 3564 + - uid: 9334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-30.5 + parent: 3564 + - uid: 9335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-31.5 + parent: 3564 + - uid: 9336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-30.5 + parent: 3564 + - uid: 9337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-31.5 + parent: 3564 + - uid: 9338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-31.5 + parent: 3564 + - uid: 9339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-30.5 + parent: 3564 + - uid: 9340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-31.5 + parent: 3564 + - uid: 9341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-30.5 + parent: 3564 + - uid: 9342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-31.5 + parent: 3564 + - uid: 9343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-30.5 + parent: 3564 + - uid: 9344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-29.5 + parent: 3564 + - uid: 9345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-28.5 + parent: 3564 + - uid: 9346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-27.5 + parent: 3564 + - uid: 9347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-26.5 + parent: 3564 + - uid: 9348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-25.5 + parent: 3564 + - uid: 9349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-24.5 + parent: 3564 + - uid: 9350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-23.5 + parent: 3564 + - uid: 9351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-22.5 + parent: 3564 + - uid: 9352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-21.5 + parent: 3564 + - uid: 9353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-20.5 + parent: 3564 + - uid: 9354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-19.5 + parent: 3564 + - uid: 9355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-19.5 + parent: 3564 + - uid: 9356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-19.5 + parent: 3564 + - uid: 9357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-19.5 + parent: 3564 + - uid: 9358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-19.5 + parent: 3564 + - uid: 9359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-19.5 + parent: 3564 + - uid: 9360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-19.5 + parent: 3564 + - uid: 9361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-19.5 + parent: 3564 + - uid: 9362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-19.5 + parent: 3564 + - uid: 9363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-19.5 + parent: 3564 + - uid: 9364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-19.5 + parent: 3564 + - uid: 9365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-19.5 + parent: 3564 + - uid: 9366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-19.5 + parent: 3564 + - uid: 9367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-20.5 + parent: 3564 + - uid: 9368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-22.5 + parent: 3564 + - uid: 9369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-21.5 + parent: 3564 + - uid: 9370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-23.5 + parent: 3564 + - uid: 9371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-30.5 + parent: 3564 + - uid: 9372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-30.5 + parent: 3564 + - uid: 9373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-30.5 + parent: 3564 + - uid: 9374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-30.5 + parent: 3564 + - uid: 9375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-30.5 + parent: 3564 + - uid: 9376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-30.5 + parent: 3564 + - uid: 9377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-30.5 + parent: 3564 + - uid: 9378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-31.5 + parent: 3564 + - uid: 9379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-31.5 + parent: 3564 + - uid: 9380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-19.5 + parent: 3564 + - uid: 9381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-20.5 + parent: 3564 + - uid: 9382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-21.5 + parent: 3564 + - uid: 9383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-22.5 + parent: 3564 + - uid: 9384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-23.5 + parent: 3564 + - uid: 9385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-24.5 + parent: 3564 + - uid: 9386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-24.5 + parent: 3564 + - uid: 9387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-24.5 + parent: 3564 + - uid: 9388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-24.5 + parent: 3564 + - uid: 9389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-24.5 + parent: 3564 + - uid: 9390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-24.5 + parent: 3564 + - uid: 9391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-24.5 + parent: 3564 + - uid: 9392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-24.5 + parent: 3564 + - uid: 9393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-24.5 + parent: 3564 + - uid: 9394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-24.5 + parent: 3564 + - uid: 9395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-24.5 + parent: 3564 + - uid: 9396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-24.5 + parent: 3564 + - uid: 9397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-24.5 + parent: 3564 + - uid: 9398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-34.5 + parent: 3564 + - uid: 9399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-33.5 + parent: 3564 + - uid: 9400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-32.5 + parent: 3564 + - uid: 9401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-31.5 + parent: 3564 + - uid: 9402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-30.5 + parent: 3564 + - uid: 9403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-29.5 + parent: 3564 + - uid: 9404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-28.5 + parent: 3564 + - uid: 9405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-27.5 + parent: 3564 + - uid: 9406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-26.5 + parent: 3564 + - uid: 9407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-25.5 + parent: 3564 + - uid: 9408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-16.5 + parent: 3564 + - uid: 9409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-16.5 + parent: 3564 + - uid: 9410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-16.5 + parent: 3564 + - uid: 9411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-16.5 + parent: 3564 + - uid: 9412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-17.5 + parent: 3564 + - uid: 9413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-18.5 + parent: 3564 + - uid: 9414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-19.5 + parent: 3564 + - uid: 9415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-20.5 + parent: 3564 + - uid: 9416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-21.5 + parent: 3564 + - uid: 9417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-22.5 + parent: 3564 + - uid: 9418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-23.5 + parent: 3564 + - uid: 9419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-15.5 + parent: 3564 + - uid: 9420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-15.5 + parent: 3564 + - uid: 9421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-15.5 + parent: 3564 + - uid: 9422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-15.5 + parent: 3564 + - uid: 9423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-15.5 + parent: 3564 + - uid: 9424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-15.5 + parent: 3564 + - uid: 9425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-15.5 + parent: 3564 + - uid: 9426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-15.5 + parent: 3564 + - uid: 9427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-15.5 + parent: 3564 + - uid: 9428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-15.5 + parent: 3564 + - uid: 9429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-15.5 + parent: 3564 + - uid: 9430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-15.5 + parent: 3564 + - uid: 9431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-16.5 + parent: 3564 + - uid: 9432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-17.5 + parent: 3564 + - uid: 9433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-18.5 + parent: 3564 - proto: WallReinforcedRust entities: + - uid: 135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-27.5 + parent: 2 + - uid: 139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-26.5 + parent: 2 - uid: 496 components: - type: Transform @@ -48244,6 +67789,18 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,57.5 parent: 2 + - uid: 2423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-17.5 + parent: 2 + - uid: 2496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-15.5 + parent: 2 - uid: 2566 components: - type: Transform @@ -48298,12 +67855,36 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,57.5 parent: 2 + - uid: 2626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-14.5 + parent: 2 + - uid: 2630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-16.5 + parent: 2 - uid: 2781 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,57.5 parent: 2 + - uid: 2786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-19.5 + parent: 2 + - uid: 2791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-21.5 + parent: 2 - uid: 3089 components: - type: Transform @@ -48505,6 +68086,18 @@ entities: - type: Transform pos: 16.5,31.5 parent: 2 + - uid: 7228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-20.5 + parent: 2 + - uid: 7230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-22.5 + parent: 2 - uid: 7237 components: - type: Transform @@ -48595,6 +68188,60 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,-12.5 parent: 2 + - uid: 7339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-18.5 + parent: 2 + - uid: 7388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-25.5 + parent: 2 + - uid: 7397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-28.5 + parent: 2 + - uid: 7399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-28.5 + parent: 2 + - uid: 7401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-28.5 + parent: 2 + - uid: 7402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-28.5 + parent: 2 + - uid: 7403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-28.5 + parent: 2 + - uid: 7404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-28.5 + parent: 2 + - uid: 7405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-28.5 + parent: 2 - proto: WallSolid entities: - uid: 3 @@ -48615,7 +68262,7 @@ entities: - uid: 22 components: - type: Transform - pos: 16.5,24.5 + pos: 15.5,32.5 parent: 2 - uid: 23 components: @@ -48707,6 +68354,11 @@ entities: - type: Transform pos: 21.5,-6.5 parent: 2 + - uid: 88 + components: + - type: Transform + pos: 15.5,30.5 + parent: 2 - uid: 90 components: - type: Transform @@ -48757,11 +68409,6 @@ entities: - 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 @@ -48782,11 +68429,6 @@ entities: - 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 @@ -48852,6 +68494,11 @@ entities: - type: Transform pos: 15.5,-13.5 parent: 2 + - uid: 137 + components: + - type: Transform + pos: 35.5,29.5 + parent: 2 - uid: 142 components: - type: Transform @@ -48862,11 +68509,26 @@ entities: - type: Transform pos: 18.5,-13.5 parent: 2 + - uid: 156 + components: + - type: Transform + pos: 36.5,19.5 + parent: 2 + - uid: 157 + components: + - type: Transform + pos: 31.5,21.5 + parent: 2 - uid: 158 components: - type: Transform pos: 17.5,-4.5 parent: 2 + - uid: 159 + components: + - type: Transform + pos: 30.5,21.5 + parent: 2 - uid: 163 components: - type: Transform @@ -48927,6 +68589,11 @@ entities: - type: Transform pos: 14.5,-12.5 parent: 2 + - uid: 205 + components: + - type: Transform + pos: 11.5,23.5 + parent: 2 - uid: 206 components: - type: Transform @@ -48987,6 +68654,11 @@ entities: - type: Transform pos: 8.5,-4.5 parent: 2 + - uid: 252 + components: + - type: Transform + pos: 21.5,32.5 + parent: 2 - uid: 264 components: - type: Transform @@ -49252,6 +68924,11 @@ entities: - type: Transform pos: 6.5,17.5 parent: 2 + - uid: 457 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 - uid: 458 components: - type: Transform @@ -49317,6 +68994,21 @@ entities: - type: Transform pos: 5.5,-9.5 parent: 2 + - uid: 490 + components: + - type: Transform + pos: 11.5,25.5 + parent: 2 + - uid: 491 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - uid: 492 + components: + - type: Transform + pos: 12.5,25.5 + parent: 2 - uid: 494 components: - type: Transform @@ -49352,16 +69044,36 @@ entities: - type: Transform pos: 7.5,8.5 parent: 2 + - uid: 515 + components: + - type: Transform + pos: 15.5,31.5 + parent: 2 - uid: 520 components: - type: Transform pos: 8.5,-9.5 parent: 2 + - uid: 535 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 + - uid: 539 + components: + - type: Transform + pos: 10.5,23.5 + parent: 2 - uid: 542 components: - type: Transform pos: 6.5,16.5 parent: 2 + - uid: 545 + components: + - type: Transform + pos: 11.5,27.5 + parent: 2 - uid: 549 components: - type: Transform @@ -49422,6 +69134,11 @@ entities: - type: Transform pos: 16.5,17.5 parent: 2 + - uid: 579 + components: + - type: Transform + pos: 12.5,27.5 + parent: 2 - uid: 580 components: - type: Transform @@ -49432,6 +69149,11 @@ entities: - type: Transform pos: 20.5,17.5 parent: 2 + - uid: 586 + components: + - type: Transform + pos: 31.5,29.5 + parent: 2 - uid: 587 components: - type: Transform @@ -49447,11 +69169,6 @@ entities: - type: Transform pos: 27.5,17.5 parent: 2 - - uid: 591 - components: - - type: Transform - pos: 50.5,19.5 - parent: 2 - uid: 594 components: - type: Transform @@ -49542,26 +69259,21 @@ entities: - type: Transform pos: 16.5,19.5 parent: 2 - - uid: 629 - components: - - type: Transform - pos: 24.5,14.5 - parent: 2 - uid: 630 components: - type: Transform pos: 13.5,-9.5 parent: 2 + - uid: 631 + components: + - type: Transform + pos: 17.5,25.5 + parent: 2 - uid: 632 components: - type: Transform pos: 15.5,-9.5 parent: 2 - - uid: 634 - components: - - type: Transform - pos: 24.5,16.5 - parent: 2 - uid: 645 components: - type: Transform @@ -49572,46 +69284,6 @@ entities: - type: Transform pos: 30.5,7.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: 667 - components: - - type: Transform - pos: 32.5,22.5 - parent: 2 - - uid: 668 - components: - - type: Transform - pos: 32.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: 675 - components: - - type: Transform - pos: 33.5,-8.5 - parent: 2 - uid: 677 components: - type: Transform @@ -49635,7 +69307,7 @@ entities: - uid: 681 components: - type: Transform - pos: 16.5,23.5 + pos: 16.5,25.5 parent: 2 - uid: 702 components: @@ -49695,28 +69367,18 @@ entities: - uid: 757 components: - type: Transform - pos: 16.5,20.5 + pos: 18.5,19.5 parent: 2 - - uid: 761 + - uid: 759 components: - type: Transform - pos: 24.5,15.5 + pos: 15.5,29.5 parent: 2 - uid: 769 components: - type: Transform pos: -0.5,16.5 parent: 2 - - uid: 808 - components: - - type: Transform - pos: 32.5,-8.5 - parent: 2 - - uid: 822 - components: - - type: Transform - pos: 49.5,14.5 - parent: 2 - uid: 824 components: - type: Transform @@ -49772,20 +69434,15 @@ entities: - 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 + pos: 29.5,21.5 parent: 2 - uid: 974 components: - type: Transform - pos: 36.5,21.5 + pos: 25.5,21.5 parent: 2 - uid: 975 components: @@ -49822,11 +69479,6 @@ entities: - type: Transform pos: 40.5,29.5 parent: 2 - - uid: 992 - components: - - type: Transform - pos: 35.5,-8.5 - parent: 2 - uid: 1015 components: - type: Transform @@ -49922,11 +69574,6 @@ entities: - 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 @@ -50052,6 +69699,11 @@ entities: - type: Transform pos: 14.5,7.5 parent: 2 + - uid: 1170 + components: + - type: Transform + pos: 15.5,27.5 + parent: 2 - uid: 1171 components: - type: Transform @@ -50137,11 +69789,6 @@ entities: - 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 @@ -50232,11 +69879,6 @@ entities: - type: Transform pos: 36.5,-12.5 parent: 2 - - uid: 1400 - components: - - type: Transform - pos: 30.5,-12.5 - parent: 2 - uid: 1401 components: - type: Transform @@ -50322,105 +69964,75 @@ entities: - type: Transform pos: 25.5,-13.5 parent: 2 + - uid: 1452 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 2 - uid: 1458 components: - type: Transform pos: 44.5,-13.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 + pos: 28.5,32.5 parent: 2 - - uid: 1468 + - uid: 1478 components: - type: Transform - pos: 31.5,39.5 + pos: 12.5,23.5 parent: 2 - - uid: 1469 + - uid: 1484 components: - type: Transform - pos: 32.5,39.5 + pos: 24.5,8.5 parent: 2 - - uid: 1470 + - uid: 1486 components: - type: Transform - pos: 32.5,40.5 + pos: 26.5,8.5 parent: 2 - - uid: 1471 + - uid: 1498 components: - type: Transform - pos: 32.5,41.5 + pos: 35.5,15.5 parent: 2 - - uid: 1473 + - uid: 1515 components: - type: Transform - pos: 28.5,39.5 - parent: 2 - - uid: 1474 - components: - - type: Transform - pos: 27.5,20.5 - parent: 2 - - uid: 1490 - components: - - type: Transform - pos: 32.5,-9.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 + pos: 51.5,22.5 parent: 2 - uid: 1522 components: - type: Transform pos: 22.5,37.5 parent: 2 - - uid: 1551 + - uid: 1555 components: - type: Transform - pos: 51.5,9.5 - parent: 2 - - uid: 1553 - components: - - type: Transform - pos: 51.5,8.5 + pos: 49.5,-0.5 parent: 2 - uid: 1568 components: - type: Transform pos: 12.5,17.5 parent: 2 - - uid: 1571 + - uid: 1574 components: - type: Transform - pos: 36.5,41.5 + pos: 26.5,32.5 parent: 2 - - uid: 1572 + - uid: 1575 components: - type: Transform - pos: 36.5,40.5 + pos: 27.5,32.5 parent: 2 - - uid: 1577 + - uid: 1581 components: - type: Transform - pos: 50.5,21.5 + pos: 15.5,21.5 parent: 2 - uid: 1586 components: @@ -50430,52 +70042,17 @@ entities: - uid: 1594 components: - type: Transform - pos: 36.5,30.5 - parent: 2 - - uid: 1595 - components: - - type: Transform - pos: 35.5,29.5 + pos: 21.5,33.5 parent: 2 - uid: 1596 components: - type: Transform pos: 35.5,30.5 parent: 2 - - uid: 1602 + - uid: 1618 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: 1606 - components: - - type: Transform - pos: 32.5,-5.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 + pos: 22.5,21.5 parent: 2 - uid: 1627 components: @@ -50487,10 +70064,10 @@ entities: - type: Transform pos: 35.5,28.5 parent: 2 - - uid: 1713 + - uid: 1633 components: - type: Transform - pos: 30.5,24.5 + pos: 35.5,32.5 parent: 2 - uid: 1714 components: @@ -50502,41 +70079,31 @@ entities: - type: Transform pos: 28.5,21.5 parent: 2 - - uid: 1720 + - uid: 1744 components: - type: Transform - pos: 28.5,24.5 - parent: 2 - - uid: 1729 - components: - - type: Transform - pos: 30.5,32.5 - parent: 2 - - uid: 1742 - components: - - type: Transform - pos: 28.5,22.5 + pos: 21.5,21.5 parent: 2 - uid: 1745 components: - type: Transform - pos: 32.5,24.5 + pos: 40.5,-13.5 parent: 2 - uid: 1754 components: - type: Transform - pos: 32.5,21.5 + pos: 39.5,-13.5 + parent: 2 + - uid: 1759 + components: + - type: Transform + pos: 24.5,21.5 parent: 2 - uid: 1761 components: - type: Transform pos: 31.5,24.5 parent: 2 - - uid: 1762 - components: - - type: Transform - pos: 29.5,24.5 - parent: 2 - uid: 1763 components: - type: Transform @@ -50547,6 +70114,41 @@ entities: - type: Transform pos: 31.5,25.5 parent: 2 + - uid: 1770 + components: + - type: Transform + pos: 23.5,21.5 + parent: 2 + - uid: 1776 + components: + - type: Transform + pos: 12.5,32.5 + parent: 2 + - uid: 1793 + components: + - type: Transform + pos: 15.5,20.5 + parent: 2 + - uid: 1794 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 1795 + components: + - type: Transform + pos: 18.5,25.5 + parent: 2 + - uid: 1797 + components: + - type: Transform + pos: 19.5,21.5 + parent: 2 + - uid: 1798 + components: + - type: Transform + pos: 19.5,22.5 + parent: 2 - uid: 1800 components: - type: Transform @@ -50560,37 +70162,32 @@ entities: - uid: 1803 components: - type: Transform - pos: 10.5,31.5 + pos: 19.5,25.5 parent: 2 - uid: 1804 components: - type: Transform - pos: 10.5,30.5 + pos: 15.5,22.5 parent: 2 - uid: 1806 components: - type: Transform - pos: 10.5,29.5 - parent: 2 - - uid: 1807 - components: - - type: Transform - pos: 11.5,29.5 + pos: 11.5,32.5 parent: 2 - uid: 1808 components: - type: Transform - pos: 12.5,29.5 + pos: 12.5,21.5 parent: 2 - uid: 1809 components: - type: Transform - pos: 14.5,29.5 + pos: 15.5,28.5 parent: 2 - uid: 1810 components: - type: Transform - pos: 15.5,29.5 + pos: 15.5,26.5 parent: 2 - uid: 1833 components: @@ -50622,16 +70219,61 @@ entities: - type: Transform pos: 49.5,-4.5 parent: 2 + - uid: 1897 + components: + - type: Transform + pos: 13.5,32.5 + parent: 2 + - uid: 1909 + components: + - type: Transform + pos: 15.5,24.5 + parent: 2 + - uid: 1911 + components: + - type: Transform + pos: 10.5,25.5 + parent: 2 + - uid: 1921 + components: + - type: Transform + pos: 15.5,25.5 + parent: 2 + - uid: 1924 + components: + - type: Transform + pos: 19.5,23.5 + parent: 2 - uid: 1926 components: - type: Transform pos: 53.5,19.5 parent: 2 + - uid: 1940 + components: + - type: Transform + pos: 19.5,24.5 + parent: 2 - uid: 1944 components: - type: Transform pos: 49.5,18.5 parent: 2 + - uid: 1948 + components: + - type: Transform + pos: 10.5,27.5 + parent: 2 + - uid: 1949 + components: + - type: Transform + pos: 11.5,28.5 + parent: 2 + - uid: 1950 + components: + - type: Transform + pos: 11.5,31.5 + parent: 2 - uid: 1969 components: - type: Transform @@ -50652,6 +70294,11 @@ entities: - type: Transform pos: 57.5,3.5 parent: 2 + - uid: 1981 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 2 - uid: 1982 components: - type: Transform @@ -50722,6 +70369,11 @@ entities: - type: Transform pos: 62.5,19.5 parent: 2 + - uid: 2042 + components: + - type: Transform + pos: 65.5,25.5 + parent: 2 - uid: 2060 components: - type: Transform @@ -50767,11 +70419,6 @@ entities: - type: Transform pos: 55.5,39.5 parent: 2 - - uid: 2085 - components: - - type: Transform - pos: 55.5,38.5 - parent: 2 - uid: 2086 components: - type: Transform @@ -50817,16 +70464,6 @@ entities: - type: Transform pos: 49.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 @@ -50907,26 +70544,16 @@ entities: - type: Transform pos: 44.5,21.5 parent: 2 - - uid: 2266 + - uid: 2258 components: - type: Transform - pos: 44.5,26.5 + pos: 25.5,8.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 @@ -51177,6 +70804,11 @@ entities: - type: Transform pos: 59.5,41.5 parent: 2 + - uid: 2543 + components: + - type: Transform + pos: 26.5,21.5 + parent: 2 - uid: 2544 components: - type: Transform @@ -51232,6 +70864,11 @@ entities: - type: Transform pos: 58.5,43.5 parent: 2 + - uid: 2556 + components: + - type: Transform + pos: 27.5,21.5 + parent: 2 - uid: 2558 components: - type: Transform @@ -51322,55 +70959,40 @@ entities: - type: Transform pos: 61.5,63.5 parent: 2 - - uid: 2622 - components: - - type: Transform - pos: 43.5,-9.5 - parent: 2 - - uid: 2625 - components: - - type: Transform - pos: 43.5,-10.5 - parent: 2 - uid: 2743 components: - type: Transform pos: 9.5,-9.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: 2783 + - uid: 2864 components: - type: Transform - pos: 11.5,-10.5 + pos: 36.5,-10.5 parent: 2 - - uid: 2784 + - uid: 2902 components: - type: Transform - pos: 11.5,-12.5 + pos: 36.5,20.5 parent: 2 - - uid: 2785 + - uid: 2905 components: - type: Transform - pos: 8.5,-10.5 + pos: 36.5,32.5 parent: 2 - - uid: 2786 + - uid: 2910 components: - type: Transform - pos: 8.5,-12.5 + pos: 36.5,28.5 parent: 2 - - uid: 2859 + - uid: 2911 components: - type: Transform - pos: 24.5,-2.5 + pos: 38.5,28.5 parent: 2 - uid: 3018 components: @@ -51397,50 +71019,75 @@ entities: - type: Transform pos: -3.5,16.5 parent: 2 + - uid: 3103 + components: + - type: Transform + pos: 31.5,23.5 + parent: 2 + - uid: 3104 + components: + - type: Transform + pos: 31.5,22.5 + parent: 2 - uid: 3106 components: - type: Transform pos: 15.5,40.5 parent: 2 - - uid: 3232 + - uid: 3183 components: - type: Transform - pos: 24.5,0.5 - parent: 2 - - uid: 3245 - components: - - type: Transform - pos: 24.5,-1.5 - parent: 2 - - uid: 3249 - components: - - type: Transform - pos: 23.5,-2.5 - parent: 2 - - uid: 3394 - components: - - type: Transform - pos: 39.5,-10.5 + pos: 38.5,32.5 parent: 2 - uid: 3452 components: - type: Transform pos: 10.5,3.5 parent: 2 - - uid: 3818 + - uid: 3577 components: - type: Transform - pos: 41.5,-10.5 + pos: 55.5,38.5 parent: 2 - - uid: 3819 + - uid: 3693 components: - type: Transform - pos: 41.5,-9.5 + pos: 60.5,38.5 parent: 2 - - uid: 4006 + - uid: 3697 components: - type: Transform - pos: 39.5,-9.5 + pos: 42.5,22.5 + parent: 2 + - uid: 3698 + components: + - type: Transform + pos: 41.5,22.5 + parent: 2 + - uid: 3699 + components: + - type: Transform + pos: 40.5,22.5 + parent: 2 + - uid: 3761 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 + - uid: 3763 + components: + - type: Transform + pos: 50.5,28.5 + parent: 2 + - uid: 4243 + components: + - type: Transform + pos: 31.5,17.5 + parent: 2 + - uid: 4245 + components: + - type: Transform + pos: 29.5,17.5 parent: 2 - uid: 4249 components: @@ -51532,15 +71179,15 @@ entities: - type: Transform pos: 16.5,55.5 parent: 2 - - uid: 4510 + - uid: 4508 components: - type: Transform - pos: 20.5,20.5 + pos: 19.5,19.5 parent: 2 - - uid: 4512 + - uid: 4511 components: - type: Transform - pos: 24.5,20.5 + pos: 30.5,17.5 parent: 2 - uid: 4514 components: @@ -51677,6 +71324,11 @@ entities: - type: Transform pos: 57.5,45.5 parent: 2 + - uid: 4718 + components: + - type: Transform + pos: 60.5,40.5 + parent: 2 - uid: 4782 components: - type: Transform @@ -51692,6 +71344,11 @@ entities: - type: Transform pos: 45.5,-9.5 parent: 2 + - uid: 4811 + components: + - type: Transform + pos: 14.5,27.5 + parent: 2 - uid: 4929 components: - type: Transform @@ -51707,11 +71364,6 @@ entities: - type: Transform pos: 56.5,42.5 parent: 2 - - uid: 5232 - components: - - type: Transform - pos: 45.5,35.5 - parent: 2 - uid: 5355 components: - type: Transform @@ -51742,31 +71394,176 @@ entities: - type: Transform pos: 57.5,7.5 parent: 2 - - uid: 5633 - components: - - type: Transform - pos: 51.5,7.5 - parent: 2 - uid: 5725 components: - type: Transform pos: 31.5,32.5 parent: 2 + - uid: 5847 + components: + - type: Transform + pos: 30.5,32.5 + parent: 2 - uid: 6052 components: - type: Transform pos: 61.5,61.5 parent: 2 - - uid: 6149 + - uid: 6346 components: - type: Transform - pos: 38.5,30.5 + pos: 48.5,1.5 + parent: 2 + - uid: 6544 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - uid: 6646 + components: + - type: Transform + pos: 13.5,1.5 parent: 2 - uid: 6852 components: - type: Transform pos: -5.5,16.5 parent: 2 + - uid: 7124 + components: + - type: Transform + pos: 48.5,-0.5 + parent: 2 + - uid: 7161 + components: + - type: Transform + pos: 26.5,26.5 + parent: 2 + - uid: 7162 + components: + - type: Transform + pos: 25.5,26.5 + parent: 2 + - uid: 7164 + components: + - type: Transform + pos: 21.5,26.5 + parent: 2 + - uid: 7165 + components: + - type: Transform + pos: 22.5,26.5 + parent: 2 + - uid: 7357 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 2 + - uid: 7735 + components: + - type: Transform + pos: 65.5,24.5 + parent: 2 + - uid: 7736 + components: + - type: Transform + pos: 65.5,23.5 + parent: 2 + - uid: 7737 + components: + - type: Transform + pos: 65.5,26.5 + parent: 2 + - uid: 7773 + components: + - type: Transform + pos: 65.5,27.5 + parent: 2 + - uid: 7813 + components: + - type: Transform + pos: 48.5,-1.5 + parent: 2 + - uid: 8434 + components: + - type: Transform + pos: 48.5,24.5 + parent: 2 + - uid: 8466 + components: + - type: Transform + pos: 55.5,37.5 + parent: 2 + - uid: 8467 + components: + - type: Transform + pos: 54.5,37.5 + parent: 2 + - uid: 11188 + components: + - type: Transform + pos: 65.5,22.5 + parent: 2 + - uid: 11189 + components: + - type: Transform + pos: 65.5,21.5 + parent: 2 + - uid: 11190 + components: + - type: Transform + pos: 65.5,20.5 + parent: 2 + - uid: 11191 + components: + - type: Transform + pos: 65.5,19.5 + parent: 2 + - uid: 11192 + components: + - type: Transform + pos: 65.5,18.5 + parent: 2 + - uid: 11193 + components: + - type: Transform + pos: 65.5,17.5 + parent: 2 + - uid: 11194 + components: + - type: Transform + pos: 65.5,16.5 + parent: 2 + - uid: 11195 + components: + - type: Transform + pos: 65.5,15.5 + parent: 2 + - uid: 11196 + components: + - type: Transform + pos: 65.5,14.5 + parent: 2 + - uid: 11197 + components: + - type: Transform + pos: 65.5,13.5 + parent: 2 + - uid: 11198 + components: + - type: Transform + pos: 65.5,12.5 + parent: 2 + - uid: 11199 + components: + - type: Transform + pos: 65.5,11.5 + parent: 2 + - uid: 11200 + components: + - type: Transform + pos: 65.5,10.5 + parent: 2 - proto: WallSolidRust entities: - uid: 209 @@ -52052,24 +71849,6 @@ entities: 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: 4515 components: - type: Transform @@ -52356,13 +72135,6 @@ entities: 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: 2158 @@ -52370,11 +72142,16 @@ entities: - type: Transform pos: 66.5,1.5 parent: 2 - - uid: 7010 + - uid: 7023 components: - type: Transform - pos: 58.5,50.5 + pos: 6.5,0.5 parent: 2 + - uid: 10443 + components: + - type: Transform + pos: 29.5,-57.5 + parent: 3564 - proto: WardrobeChapelFilled entities: - uid: 7271 @@ -52411,23 +72188,16 @@ entities: - type: Transform pos: 66.5,-1.5 parent: 2 - - uid: 7012 + - uid: 8585 components: - type: Transform - pos: 58.5,46.5 + pos: 8.5,0.5 parent: 2 - - uid: 7400 + - uid: 10444 components: - type: Transform - pos: 6.5,0.5 - parent: 2 -- proto: WardrobePinkFilled - entities: - - uid: 7011 - components: - - type: Transform - pos: 58.5,47.5 - parent: 2 + pos: 30.5,-57.5 + parent: 3564 - proto: WardrobePrisonFilled entities: - uid: 1359 @@ -52440,6 +72210,46 @@ entities: - type: Transform pos: 39.5,-2.5 parent: 2 + - uid: 10316 + components: + - type: Transform + pos: 31.5,-33.5 + parent: 3564 + - uid: 10317 + components: + - type: Transform + pos: 32.5,-33.5 + parent: 3564 + - uid: 10318 + components: + - type: Transform + pos: 33.5,-33.5 + parent: 3564 + - uid: 10319 + components: + - type: Transform + pos: 34.5,-33.5 + parent: 3564 + - uid: 10320 + components: + - type: Transform + pos: 35.5,-33.5 + parent: 3564 + - uid: 10321 + components: + - type: Transform + pos: 36.5,-33.5 + parent: 3564 + - uid: 10322 + components: + - type: Transform + pos: 37.5,-33.5 + parent: 3564 + - uid: 10442 + components: + - type: Transform + pos: 28.5,-57.5 + parent: 3564 - proto: WardrobeSecurityFilled entities: - uid: 7210 @@ -52447,51 +72257,81 @@ entities: - type: Transform pos: 38.5,-2.5 parent: 2 +- proto: WardrobeYellowFilled + entities: + - uid: 8296 + components: + - type: Transform + pos: 30.5,25.5 + parent: 2 - proto: WarningN2 entities: - - uid: 1746 + - uid: 358 components: - type: Transform - pos: 19.5,28.5 + pos: 26.5,-1.5 parent: 2 + - uid: 9672 + components: + - type: Transform + pos: 13.5,-59.5 + parent: 3564 - proto: WarningO2 entities: - - uid: 1682 + - uid: 326 components: - type: Transform - pos: 19.5,30.5 + pos: 24.5,-1.5 parent: 2 -- proto: WarningPlasma - entities: - - uid: 1683 + - uid: 9671 components: - type: Transform - pos: 22.5,30.5 - parent: 2 + pos: 11.5,-59.5 + parent: 3564 - proto: WarningWaste entities: - - uid: 1681 + - uid: 3111 components: - type: Transform - pos: 22.5,28.5 + pos: 24.5,-3.5 parent: 2 + - uid: 9687 + components: + - type: Transform + pos: 16.5,-62.5 + parent: 3564 - proto: WaterTankFull entities: - - uid: 2250 + - uid: 1474 components: - type: Transform - pos: -3.5,7.5 + pos: 37.5,23.5 + parent: 2 + - uid: 2054 + components: + - type: Transform + pos: 46.5,11.5 + parent: 2 + - uid: 3300 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 2 + - uid: 3337 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 2 + - uid: 7385 + components: + - type: Transform + pos: 12.5,-7.5 parent: 2 - uid: 7463 components: - type: Transform pos: 49.5,30.5 parent: 2 - - uid: 7477 - components: - - type: Transform - pos: 37.5,22.5 - parent: 2 - uid: 7498 components: - type: Transform @@ -52507,40 +72347,13 @@ entities: - type: Transform pos: 15.5,-11.5 parent: 2 -- proto: WaterTankHighCapacity - entities: - - uid: 132 + - uid: 11515 components: - type: Transform - pos: 12.5,-8.5 - parent: 2 -- proto: WaterVaporCanister - entities: - - uid: 798 - components: - - type: MetaData - desc: A canister that can contain any type of gas. This one contains a good time. Use sparingly! - name: party gas canister - - type: Transform - pos: 27.5,-8.5 - parent: 2 - - type: Pullable - prevFixedRotation: True - - uid: 1593 - components: - - type: MetaData - desc: A canister that can contain any type of gas. This one contains a good time. Use sparingly! - name: party gas canister - - type: Transform - pos: 22.5,0.5 + pos: 22.5,33.5 parent: 2 - proto: WeaponCapacitorRecharger entities: - - uid: 2392 - components: - - type: Transform - pos: 48.5,-0.5 - parent: 2 - uid: 7133 components: - type: Transform @@ -52556,6 +72369,16 @@ entities: - type: Transform pos: 10.5,-7.5 parent: 2 + - uid: 10417 + components: + - type: Transform + pos: 33.5,-69.5 + parent: 3564 + - uid: 11218 + components: + - type: Transform + pos: 54.5,9.5 + parent: 2 - proto: WeaponEnergyTurretAI entities: - uid: 1540 @@ -52563,128 +72386,86 @@ entities: - type: Transform pos: 33.5,55.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 1920 components: - type: Transform pos: 31.5,55.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 2188 components: - type: Transform pos: 34.5,50.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 2607 components: - type: Transform pos: 27.5,49.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 2762 components: - type: Transform pos: 21.5,57.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 2764 components: - type: Transform pos: 20.5,57.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 2766 components: - type: Transform pos: 19.5,49.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 2767 components: - type: Transform pos: 23.5,49.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 7555 components: - type: Transform pos: 25.5,57.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 7622 components: - type: Transform pos: 37.5,49.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 7628 components: - type: Transform pos: 42.5,47.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 7629 components: - type: Transform pos: 50.5,49.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 7630 components: - type: Transform pos: 49.5,50.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - proto: WeaponEnergyTurretAIControlPanel entities: - - uid: 8332 + - uid: 4557 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,59.5 + rot: 3.141592653589793 rad + pos: 29.5,49.5 + parent: 2 + - uid: 6155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,56.5 + parent: 2 + - uid: 6658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,46.5 parent: 2 - - type: DeviceList - devices: - - 2764 - - 2762 - - 2766 - - 2767 - - 7555 - - 2607 - - 2188 - - 1920 - - 1540 - - 7622 - - 7628 - - 7630 - - 7629 - proto: Welder entities: - uid: 7549 @@ -52694,26 +72475,51 @@ entities: parent: 2 - proto: WeldingFuelTankFull entities: - - uid: 1728 + - uid: 2164 components: - type: Transform - pos: 30.5,37.5 + pos: 36.5,30.5 parent: 2 - - uid: 2551 + - uid: 3274 components: - type: Transform - pos: 31.5,37.5 + pos: 47.5,27.5 parent: 2 - - uid: 7476 + - uid: 3311 components: - type: Transform - pos: 47.5,29.5 + pos: 12.5,-6.5 + parent: 2 + - uid: 3347 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 2 + - uid: 3919 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 + - uid: 6548 + components: + - type: Transform + pos: 33.5,-10.5 parent: 2 - uid: 7672 components: - type: Transform pos: 15.5,-12.5 parent: 2 + - uid: 8355 + components: + - type: Transform + pos: 34.5,25.5 + parent: 2 + - uid: 11168 + components: + - type: Transform + pos: 41.5,21.5 + parent: 2 - proto: Windoor entities: - uid: 32 @@ -52727,10 +72533,17 @@ entities: - type: Transform pos: 19.5,3.5 parent: 2 + - uid: 57 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,4.5 + parent: 2 - uid: 59 components: - type: Transform - pos: 43.5,21.5 + rot: 1.5707963267948966 rad + pos: 40.5,23.5 parent: 2 - uid: 80 components: @@ -52759,12 +72572,6 @@ entities: - type: Transform pos: 5.5,-4.5 parent: 2 - - uid: 241 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,5.5 - parent: 2 - uid: 257 components: - type: Transform @@ -52797,11 +72604,11 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,12.5 parent: 2 - - uid: 635 + - uid: 697 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,17.5 + rot: 1.5707963267948966 rad + pos: 14.5,5.5 parent: 2 - uid: 792 components: @@ -52818,11 +72625,46 @@ entities: - type: Transform pos: 17.5,8.5 parent: 2 - - uid: 1170 + - uid: 1291 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,17.5 + rot: 1.5707963267948966 rad + pos: 12.5,26.5 + parent: 2 + - uid: 1294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,20.5 + parent: 2 + - uid: 1370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-9.5 + parent: 2 + - uid: 1396 + components: + - type: Transform + pos: 61.5,42.5 + parent: 2 + - uid: 1692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,23.5 + parent: 2 + - uid: 1807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,22.5 + parent: 2 + - uid: 1922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,24.5 parent: 2 - uid: 1945 components: @@ -52842,10 +72684,10 @@ entities: rot: 3.141592653589793 rad pos: 58.5,11.5 parent: 2 - - uid: 2271 + - uid: 2132 components: - type: Transform - pos: 45.5,26.5 + pos: 37.5,32.5 parent: 2 - uid: 2380 components: @@ -52869,46 +72711,283 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,16.5 parent: 2 + - uid: 3171 + components: + - type: Transform + pos: 37.5,28.5 + parent: 2 - uid: 3234 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,16.5 parent: 2 -- proto: WindoorHydroponicsLocked - entities: - - uid: 139 + - uid: 3313 components: - type: Transform - pos: 19.5,-4.5 + rot: 1.5707963267948966 rad + pos: 48.5,25.5 parent: 2 - - uid: 376 + - uid: 3760 + components: + - type: Transform + pos: 51.5,27.5 + parent: 2 + - uid: 3984 + components: + - type: Transform + pos: 61.5,40.5 + parent: 2 + - uid: 4417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,48.5 + parent: 2 + - uid: 5848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,31.5 + parent: 2 + - uid: 6338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-9.5 + parent: 2 + - uid: 6655 + components: + - type: Transform + pos: 43.5,35.5 + parent: 2 + - uid: 7157 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 7247 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 + - uid: 7249 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 + - uid: 7387 components: - type: Transform pos: 18.5,-4.5 parent: 2 -- proto: WindoorJanitorLocked - entities: - - uid: 176 + - uid: 7414 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,6.5 + pos: 43.5,22.5 parent: 2 - - uid: 186 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,5.5 - parent: 2 -- proto: WindoorKitchenHydroponicsLocked - entities: - - uid: 2680 + - uid: 8367 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-8.5 + pos: 31.5,34.5 parent: 2 + - uid: 8392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,31.5 + parent: 2 + - uid: 10344 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 3564 + - uid: 10345 + components: + - type: Transform + pos: 24.5,-24.5 + parent: 3564 + - uid: 10346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-26.5 + parent: 3564 + - uid: 10347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-27.5 + parent: 3564 + - uid: 10348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-38.5 + parent: 3564 + - uid: 10349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-38.5 + parent: 3564 + - uid: 10350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-34.5 + parent: 3564 + - uid: 10351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-34.5 + parent: 3564 + - uid: 10352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-38.5 + parent: 3564 + - uid: 10353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-38.5 + parent: 3564 + - uid: 10354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-42.5 + parent: 3564 + - uid: 10355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-42.5 + parent: 3564 + - uid: 10356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-46.5 + parent: 3564 + - uid: 10357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-46.5 + parent: 3564 + - uid: 10358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-46.5 + parent: 3564 + - uid: 10359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-46.5 + parent: 3564 + - uid: 10360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-50.5 + parent: 3564 + - uid: 10361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-50.5 + parent: 3564 + - uid: 10362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-50.5 + parent: 3564 + - uid: 10363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-50.5 + parent: 3564 + - uid: 10364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-54.5 + parent: 3564 + - uid: 10365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-54.5 + parent: 3564 + - uid: 10366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-54.5 + parent: 3564 + - uid: 10367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-54.5 + parent: 3564 + - uid: 10375 + components: + - type: Transform + pos: 28.5,-62.5 + parent: 3564 + - uid: 10427 + components: + - type: Transform + pos: 37.5,53.5 + parent: 2 +- proto: WindoorSecure + entities: + - uid: 107 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: 9.5,4.5 + parent: 2 +- proto: WindoorSecureArmoryLocked + entities: + - uid: 10373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-59.5 + parent: 3564 + - uid: 10374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-58.5 + parent: 3564 + - uid: 10376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-61.5 + parent: 3564 + - uid: 10377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-66.5 + parent: 3564 - proto: WindoorSecureChapelLocked entities: - uid: 356 @@ -52930,12 +73009,22 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,11.5 parent: 2 + - uid: 1327 + components: + - type: Transform + pos: 32.5,12.5 + parent: 2 - uid: 2222 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,7.5 parent: 2 + - uid: 2484 + components: + - type: Transform + pos: 31.5,12.5 + parent: 2 - proto: WindoorSecureCommandLocked entities: - uid: 125 @@ -52954,6 +73043,18 @@ entities: - type: AccessReader access: - - Captain + - uid: 692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,50.5 + parent: 2 + - uid: 703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,50.5 + parent: 2 - uid: 2399 components: - type: Transform @@ -52963,50 +73064,69 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -122722.266 + secondsUntilStateChange: -239673.5 state: Opening - type: Airlock autoClose: False - - uid: 2400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,25.5 - parent: 2 - uid: 3814 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,31.5 parent: 2 + - uid: 4601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,50.5 + parent: 2 + - uid: 11363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,54.5 + parent: 2 - proto: WindoorSecureEngineeringLocked entities: + - uid: 136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,30.5 + parent: 2 - uid: 321 components: - type: Transform pos: 60.5,60.5 parent: 2 + - uid: 1365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,20.5 + parent: 2 + - uid: 1617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,21.5 + parent: 2 - uid: 2645 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-10.5 parent: 2 -- proto: WindoorSecureHeadOfPersonnelLocked - entities: - - uid: 2267 + - uid: 8396 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,26.5 + pos: 33.5,36.5 parent: 2 -- proto: WindoorSecureKitchenLocked - entities: - - uid: 1487 + - uid: 8476 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-7.5 + rot: 1.5707963267948966 rad + pos: 21.5,34.5 parent: 2 - proto: WindoorSecureMedicalLocked entities: @@ -53045,14 +73165,6 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,11.5 parent: 2 -- proto: WindoorSecureScienceLocked - entities: - - uid: 2198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,9.5 - parent: 2 - proto: WindoorSecureSecurityLawyerLocked entities: - uid: 1231 @@ -53061,6 +73173,52 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,0.5 parent: 2 + - uid: 10329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-32.5 + parent: 3564 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10330: + - - DoorStatus + - DoorBolt + - uid: 10330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-32.5 + parent: 3564 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10329: + - - DoorStatus + - DoorBolt + - uid: 10368 + components: + - type: Transform + pos: 22.5,-62.5 + parent: 3564 + - uid: 10369 + components: + - type: Transform + pos: 23.5,-62.5 + parent: 3564 + - uid: 10370 + components: + - type: Transform + pos: 22.5,-56.5 + parent: 3564 + - uid: 10371 + components: + - type: Transform + pos: 23.5,-56.5 + parent: 3564 - proto: WindoorSecureSecurityLocked entities: - uid: 1053 @@ -53075,6 +73233,13 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,-2.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1441: + - - DoorStatus + - DoorBolt - uid: 1364 components: - type: Transform @@ -53086,44 +73251,21 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,-2.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1097: + - - DoorStatus + - DoorBolt + - uid: 10372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-28.5 + parent: 3564 - proto: WindowDirectional entities: - - uid: 168 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,5.5 - parent: 2 - - uid: 216 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,6.5 - parent: 2 - - uid: 223 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,5.5 - parent: 2 - - uid: 235 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,5.5 - parent: 2 - - uid: 255 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,5.5 - parent: 2 - - uid: 425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,5.5 - parent: 2 - uid: 471 components: - type: Transform @@ -53304,24 +73446,6 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,1.5 parent: 2 - - uid: 1451 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-9.5 - parent: 2 - - uid: 1484 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-7.5 - parent: 2 - - uid: 1533 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-7.5 - parent: 2 - uid: 2002 components: - type: Transform @@ -53380,29 +73504,53 @@ entities: - type: Transform pos: 53.5,35.5 parent: 2 - - uid: 4004 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-7.5 - parent: 2 - - uid: 4005 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-8.5 - parent: 2 - - uid: 7296 + - uid: 6014 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-7.5 + pos: 30.5,-10.5 parent: 2 - - uid: 7297 + - uid: 6382 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-7.5 + rot: 3.141592653589793 rad + pos: 31.5,-7.5 + parent: 2 + - uid: 6415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-7.5 + parent: 2 + - uid: 6419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-7.5 + parent: 2 + - uid: 6420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-7.5 + parent: 2 + - uid: 6421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-7.5 + parent: 2 + - uid: 6423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-8.5 + parent: 2 + - uid: 6438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-7.5 parent: 2 - uid: 7298 components: @@ -53416,6 +73564,18 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,12.5 parent: 2 + - uid: 8365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,33.5 + parent: 2 + - uid: 8366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,35.5 + parent: 2 - proto: WindowReinforcedDirectional entities: - uid: 20 @@ -53510,17 +73670,17 @@ entities: rot: 3.141592653589793 rad pos: 38.5,-0.5 parent: 2 - - uid: 1071 - components: - - type: Transform - pos: 53.5,7.5 - parent: 2 - uid: 1101 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,1.5 parent: 2 + - uid: 1197 + components: + - type: Transform + pos: -8.5,13.5 + parent: 2 - uid: 1322 components: - type: Transform @@ -53539,24 +73699,6 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-0.5 parent: 2 - - uid: 1730 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,33.5 - parent: 2 - - uid: 1758 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,35.5 - parent: 2 - - uid: 1791 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,34.5 - parent: 2 - uid: 1886 components: - type: Transform @@ -53581,33 +73723,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,38.5 parent: 2 - - uid: 2134 - components: - - type: Transform - pos: 52.5,7.5 - parent: 2 - - uid: 2197 - components: - - type: Transform - pos: 45.5,6.5 - parent: 2 - - uid: 2199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,6.5 - parent: 2 - - uid: 2200 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,8.5 - parent: 2 - - uid: 2201 - components: - - type: Transform - pos: 46.5,6.5 - parent: 2 - uid: 2229 components: - type: Transform @@ -53644,6 +73759,12 @@ entities: rot: -1.5707963267948966 rad pos: 57.5,61.5 parent: 2 + - uid: 2629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,11.5 + parent: 2 - uid: 2631 components: - type: Transform @@ -53684,6 +73805,12 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,29.5 parent: 2 + - uid: 3784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,42.5 + parent: 2 - uid: 3811 components: - type: Transform @@ -53696,6 +73823,23 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,34.5 parent: 2 + - uid: 5343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,34.5 + parent: 2 + - uid: 7116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,35.5 + parent: 2 + - uid: 7119 + components: + - type: Transform + pos: 42.5,35.5 + parent: 2 - uid: 7285 components: - type: Transform @@ -53713,6 +73857,95 @@ entities: rot: 3.141592653589793 rad pos: 54.5,32.5 parent: 2 + - uid: 7415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,42.5 + parent: 2 + - uid: 8456 + components: + - type: Transform + pos: 60.5,42.5 + parent: 2 + - uid: 8457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,42.5 + parent: 2 + - uid: 11201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,33.5 + parent: 2 + - uid: 11202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,32.5 + parent: 2 + - uid: 11203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,31.5 + parent: 2 + - uid: 11204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,30.5 + parent: 2 + - uid: 11205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,29.5 + parent: 2 + - uid: 11206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,28.5 + parent: 2 + - uid: 11357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,15.5 + parent: 2 + - uid: 11358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,14.5 + parent: 2 + - uid: 11359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,13.5 + parent: 2 + - uid: 11360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,11.5 + parent: 2 + - uid: 11361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,10.5 + parent: 2 + - uid: 11362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,9.5 + parent: 2 - proto: Wirecutter entities: - uid: 7520 @@ -53720,30 +73953,51 @@ entities: - type: Transform pos: 17.5,0.5 parent: 2 -- proto: WoodDoor - entities: - - uid: 7157 - components: - - type: Transform - pos: 5.5,8.5 - parent: 2 - proto: Wrench entities: - - uid: 3226 + - uid: 2182 components: - type: Transform - pos: 22.422697,-0.5009035 + pos: 53.5,3.5 parent: 2 - - uid: 7654 + - uid: 3161 components: - type: Transform - pos: 26.5,-8.5 + pos: 30.5,8.5 parent: 2 -- proto: WristwatchGold - entities: - - uid: 7732 + - uid: 6350 components: - type: Transform - pos: 62.5,7.5 + pos: 45.5,35.5 + parent: 2 + - uid: 6699 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 + - uid: 6700 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - uid: 6701 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 + - uid: 6702 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 8261 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - uid: 11516 + components: + - type: Transform + pos: 17.5,33.5 parent: 2 ... diff --git a/Resources/Maps/saltern.yml b/Resources/Maps/saltern.yml index 826045296e..58400ac0fe 100644 --- a/Resources/Maps/saltern.yml +++ b/Resources/Maps/saltern.yml @@ -32338,7 +32338,7 @@ entities: pos: 40.5,4.5 parent: 31 - type: FaxMachine - name: engineering + name: Engineering - uid: 2045 components: - type: Transform @@ -32353,7 +32353,7 @@ entities: pos: 9.5,-28.5 parent: 31 - type: FaxMachine - name: library + name: Library - uid: 8994 components: - type: Transform @@ -32368,15 +32368,15 @@ entities: pos: 8.5,18.5 parent: 31 - type: FaxMachine - name: hop's office + name: HoP's office - uid: 10825 components: - type: Transform pos: 1.5,32.5 parent: 31 - type: FaxMachine - destinationAddress: bridge - name: bridge + destinationAddress: Bridge + name: Bridge - proto: FaxMachineCaptain entities: - uid: 9686 @@ -32385,7 +32385,7 @@ entities: pos: 7.5,24.5 parent: 31 - type: FaxMachine - name: captain's office + name: Captain's office - proto: filingCabinetDrawerRandom entities: - uid: 4637 diff --git a/Resources/Prototypes/Actions/anomaly.yml b/Resources/Prototypes/Actions/anomaly.yml index f89ccce92c..3c1d270870 100644 --- a/Resources/Prototypes/Actions/anomaly.yml +++ b/Resources/Prototypes/Actions/anomaly.yml @@ -6,6 +6,6 @@ components: - type: Action useDelay: 30 - icon: Structures/Specific/anomaly.rsi/anom1.png + icon: { sprite: Structures/Specific/anomaly.rsi, state: anom1 } - type: InstantAction event: !type:ActionAnomalyPulseEvent diff --git a/Resources/Prototypes/Actions/changeling.yml b/Resources/Prototypes/Actions/changeling.yml index 273bb8ed6b..6e4ec6db6c 100644 --- a/Resources/Prototypes/Actions/changeling.yml +++ b/Resources/Prototypes/Actions/changeling.yml @@ -20,3 +20,25 @@ retractSounds: collection: gib # Placeholder +- type: entity + id: ActionChangelingDevour + name: "[color=red]Devour[/color]" + description: Consume the essence of your victims and subsume their identity and mind into your own. + components: + - type: Action + icon: { sprite : Interface/Actions/changeling.rsi, state: "devour" } + iconOn: { sprite : Interface/Actions/changeling.rsi, state: "devour_on" } + priority: 1 + - type: TargetAction + - type: EntityTargetAction + event: !type:ChangelingDevourActionEvent + +- type: entity + id: ActionChangelingTransform + name: "[color=red]Transform[/color]" + description: Transform and assume the identities of those you have devoured. + components: + - type: Action + icon: { sprite : Interface/Actions/changeling.rsi, state: "transform" } + - type: InstantAction + event: !type:ChangelingTransformActionEvent diff --git a/Resources/Prototypes/Actions/types.yml b/Resources/Prototypes/Actions/types.yml index 97435c229d..6202b49333 100644 --- a/Resources/Prototypes/Actions/types.yml +++ b/Resources/Prototypes/Actions/types.yml @@ -376,6 +376,7 @@ iconOn: { sprite: Interface/Actions/actions_fakemindshield.rsi, state: icon-on } itemIconStyle: NoItem useDelay: 1 + raiseOnUser: true - type: InstantAction event: !type:FakeMindShieldToggleEvent - type: Tag @@ -395,6 +396,17 @@ useDelay: 1 itemIconStyle: BigAction +# TODO: Add back once we have animated tails again. Were removed due to the sprite rework, causing all of them to not fit anymore. +# - type: entity +# parent: ActionToggleWagging +# id: ActionToggleWaggingVulpkanin +# components: +# - type: Action +# icon: { sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi, state: tail-wag-icon } +# iconOn: { sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi, state: tail-wag-icon } +# itemIconStyle: NoItem +# useDelay: 1 # Prevents Emote Spam + - type: entity parent: BaseAction id: ActionGravityJump @@ -409,6 +421,20 @@ - type: InstantAction event: !type:GravityJumpEvent {} +- type: entity + parent: BaseAction + id: ActionVulpkaninGravityJump + name: Leap + description: Use your agile legs to leap a short distance. Be careful not to bump into anything! + components: + - type: Action + useDelay: 12 + icon: + sprite: Interface/Actions/jump.rsi + state: icon + - type: InstantAction + event: !type:GravityJumpEvent {} + - type: entity parent: BaseToggleAction id: ActionToggleRootable diff --git a/Resources/Prototypes/Alerts/revenant.yml b/Resources/Prototypes/Alerts/revenant.yml index ab2b13905d..8e1c494d64 100644 --- a/Resources/Prototypes/Alerts/revenant.yml +++ b/Resources/Prototypes/Alerts/revenant.yml @@ -10,7 +10,7 @@ - type: alert id: Corporeal - icons: [ /Textures/Mobs/Ghosts/revenant.rsi/icon.png ] + icons: [ { sprite: /Textures/Mobs/Ghosts/revenant.rsi, state: icon } ] name: alerts-revenant-corporeal-name description: alerts-revenant-corporeal-desc diff --git a/Resources/Prototypes/Antag/changeling.yml b/Resources/Prototypes/Antag/changeling.yml deleted file mode 100644 index b4c8b2e3dc..0000000000 --- a/Resources/Prototypes/Antag/changeling.yml +++ /dev/null @@ -1,35 +0,0 @@ -- type: entity - parent: MobHuman - id: MobLing - name: Urist McLing - suffix: Non-Antag - components: - - type: ChangelingDevour - - type: ChangelingIdentity - - type: ChangelingTransform - - type: ActionGrant - actions: - - ActionRetractableItemArmBlade # Temporary addition, will inevitably be a purchasable in the bio-store - -- type: entity - id: ActionChangelingDevour - name: "[color=red]Devour[/color]" - description: Consume the essence of your victims and subsume their identity and mind into your own. - components: - - type: Action - icon: { sprite : Interface/Actions/changeling.rsi, state: "devour" } - iconOn: { sprite : Interface/Actions/changeling.rsi, state: "devour_on" } - priority: 1 - - type: TargetAction - - type: EntityTargetAction - event: !type:ChangelingDevourActionEvent - -- type: entity - id: ActionChangelingTransform - name: "[color=red]Transform[/color]" - description: Transform and assume the identities of those you have devoured. - components: - - type: Action - icon: { sprite : Interface/Actions/changeling.rsi, state: "transform" } - - type: InstantAction - event: !type:ChangelingTransformActionEvent diff --git a/Resources/Prototypes/Atmospherics/reactions.yml b/Resources/Prototypes/Atmospherics/reactions.yml index d226c81f6c..88c986ab97 100644 --- a/Resources/Prototypes/Atmospherics/reactions.yml +++ b/Resources/Prototypes/Atmospherics/reactions.yml @@ -3,10 +3,8 @@ priority: -2 minimumTemperature: 373.149 # Same as Atmospherics.FireMinimumTemperatureToExist minimumRequirements: # In this case, same as minimum mole count. - - 0.01 # oxygen - - 0 # nitrogen - - 0 # carbon dioxide - - 0.01 # plasma + Oxygen: 0.01 + Plasma: 0.01 effects: - !type:PlasmaFireReaction {} @@ -15,11 +13,8 @@ priority: -1 minimumTemperature: 373.149 # Same as Atmospherics.FireMinimumTemperatureToExist minimumRequirements: # In this case, same as minimum mole count. - - 0.01 # oxygen - - 0 # nitrogen - - 0 # carbon dioxide - - 0 # plasma - - 0.01 # tritium + Oxygen: 0.01 + Tritium: 0.01 effects: - !type:TritiumFireReaction {} @@ -28,15 +23,8 @@ priority: 1 minimumTemperature: 23.15 minimumRequirements: - - 0 # oxygen - - 0.01 # nitrogen - - 0 # carbon dioxide - - 0 # plasma - - 0 # tritium - - 0 # vapor - - 0 # ammonia - - 0 # n2o - - 0.01 # frezon + Nitrogen: 0.01 + Frezon: 0.01 effects: - !type:FrezonCoolantReaction {} @@ -45,15 +33,9 @@ priority: 2 maximumTemperature: 73.15 # Cold tritium fire, basically. minimumRequirements: - - 0.01 # oxygen - - 0.01 # nitrogen - - 0 # carbon dioxide - - 0 # plasma - - 0.01 # tritium - - 0 # vapor - - 0 # ammonia - - 0 # n2o - - 0 # frezon + Oxygen: 0.01 + Nitrogen: 0.01 + Tritium: 0.01 effects: - !type:FrezonProductionReaction {} @@ -62,15 +44,8 @@ priority: 2 minimumTemperature: 323.149 minimumRequirements: - - 0.01 # oxygen - - 0 # nitrogen - - 0 # carbon dioxide - - 0 # plasma - - 0 # tritium - - 0 # vapor - - 0.01 # ammonia - - 0 # n2o - - 0 # frezon + Oxygen: 0.01 + Ammonia: 0.01 effects: - !type:AmmoniaOxygenReaction {} @@ -79,15 +54,7 @@ priority: 0 minimumTemperature: 850 minimumRequirements: - - 0 # oxygen - - 0 # nitrogen - - 0 # carbon dioxide - - 0 # plasma - - 0 # tritium - - 0 # vapor - - 0 # ammonia - - 0.01 # n2o - - 0 # frezon + NitrousOxide: 0.01 effects: - !type:N2ODecompositionReaction {} @@ -96,12 +63,7 @@ # priority: 1 # maximumTemperature: 373.13 # Boiling point of water. # minimumRequirements: # In this case, same as minimum mole count. -# - 0 # oxygen -# - 0 # nitrogen -# - 0 # carbon dioxide -# - 0 # plasma -# - 0 # tritium -# - 1 # water vapor +# WaterVapor: 1 # effects: # - !type:WaterVaporReaction # gas: 5 diff --git a/Resources/Prototypes/Body/Organs/Animal/animal.yml b/Resources/Prototypes/Body/Organs/Animal/animal.yml index e59aad9da3..dbf96068fa 100644 --- a/Resources/Prototypes/Body/Organs/Animal/animal.yml +++ b/Resources/Prototypes/Body/Organs/Animal/animal.yml @@ -33,7 +33,7 @@ - type: entity id: OrganAnimalLungs parent: BaseAnimalOrgan - name: lungs + name: animal lungs categories: [ HideSpawnMenu ] components: - type: Sprite @@ -67,7 +67,7 @@ - type: entity id: OrganAnimalStomach parent: BaseAnimalOrgan - name: stomach + name: animal stomach categories: [ HideSpawnMenu ] components: - type: Sprite @@ -96,7 +96,6 @@ - type: entity id: OrganMouseStomach parent: OrganAnimalStomach - name: stomach categories: [ HideSpawnMenu ] components: - type: SolutionContainerManager @@ -110,7 +109,7 @@ - type: entity id: OrganAnimalLiver parent: BaseAnimalOrgan - name: liver + name: animal liver categories: [ HideSpawnMenu ] components: - type: Sprite @@ -129,7 +128,7 @@ - type: entity id: OrganAnimalHeart parent: BaseAnimalOrgan - name: heart + name: animal heart categories: [ HideSpawnMenu ] components: - type: Sprite @@ -149,7 +148,7 @@ - type: entity id: OrganAnimalKidneys parent: BaseAnimalOrgan - name: kidneys + name: animal kidneys categories: [ HideSpawnMenu ] components: - type: Sprite diff --git a/Resources/Prototypes/Body/Organs/Animal/bloodsucker.yml b/Resources/Prototypes/Body/Organs/Animal/bloodsucker.yml index e360f362d8..6e9b4d5900 100644 --- a/Resources/Prototypes/Body/Organs/Animal/bloodsucker.yml +++ b/Resources/Prototypes/Body/Organs/Animal/bloodsucker.yml @@ -1,7 +1,6 @@ - type: entity id: OrganBloodsuckerStomach parent: OrganAnimalStomach - name: stomach categories: [ HideSpawnMenu ] components: - type: Metabolizer @@ -10,7 +9,6 @@ - type: entity id: OrganBloodsuckerLiver parent: OrganAnimalLiver - name: liver categories: [ HideSpawnMenu ] components: - type: Metabolizer @@ -19,7 +17,6 @@ - type: entity id: OrganBloodsuckerHeart parent: OrganAnimalHeart - name: heart categories: [ HideSpawnMenu ] components: - type: Metabolizer diff --git a/Resources/Prototypes/Body/Organs/arachnid.yml b/Resources/Prototypes/Body/Organs/arachnid.yml index 20ff344fa1..b044706ecf 100644 --- a/Resources/Prototypes/Body/Organs/arachnid.yml +++ b/Resources/Prototypes/Body/Organs/arachnid.yml @@ -28,7 +28,6 @@ - type: entity id: OrganArachnidStomach parent: OrganAnimalStomach - name: stomach description: "Gross. This is hard to stomach." components: - type: Sprite diff --git a/Resources/Prototypes/Body/Parts/vulpkanin.yml b/Resources/Prototypes/Body/Parts/vulpkanin.yml new file mode 100644 index 0000000000..d563a6423f --- /dev/null +++ b/Resources/Prototypes/Body/Parts/vulpkanin.yml @@ -0,0 +1,89 @@ +# Limbs that spawn when gibbed should get descriptions. +- type: entity + abstract: true + parent: [ BasePart ] + id: PartVulpkanin + name: vulpkanin body part + components: + - type: Sprite + sprite: Mobs/Species/Vulpkanin/parts.rsi + +- type: entity + parent: [ PartVulpkanin, BaseTorso ] + id: TorsoVulpkanin + name: vulpkanin torso + components: + - type: Sprite + state: torso_m + +- type: entity + parent: [ PartVulpkanin, BaseHead ] + id: HeadVulpkanin + name: vulpkanin head + components: + - type: Sprite + state: head_m + +- type: entity + parent: [ PartVulpkanin, BaseLeftArm ] + id: LeftArmVulpkanin + name: left vulpkanin arm + components: + - type: Sprite + state: l_arm + +- type: entity + parent: [ PartVulpkanin, BaseRightArm ] + id: RightArmVulpkanin + name: right vulpkanin arm + components: + - type: Sprite + state: r_arm + +- type: entity + parent: [ PartVulpkanin, BaseLeftHand ] + id: LeftHandVulpkanin + name: left vulpkanin hand + components: + - type: Sprite + state: l_hand + +- type: entity + parent: [ PartVulpkanin, BaseRightHand ] + id: RightHandVulpkanin + name: right vulpkanin hand + components: + - type: Sprite + state: r_hand + +- type: entity + parent: [ PartVulpkanin, BaseLeftLeg ] + id: LeftLegVulpkanin + name: left vulpkanin leg + components: + - type: Sprite + state: l_leg + +- type: entity + parent: [ PartVulpkanin, BaseRightLeg ] + id: RightLegVulpkanin + name: right vulpkanin leg + components: + - type: Sprite + state: r_leg + +- type: entity + parent: [ PartVulpkanin, BaseLeftFoot ] + id: LeftFootVulpkanin + name: left vulpkanin foot + components: + - type: Sprite + state: l_foot + +- type: entity + parent: [ PartVulpkanin, BaseRightFoot ] + id: RightFootVulpkanin + name: right vulpkanin foot + components: + - type: Sprite + state: r_foot diff --git a/Resources/Prototypes/Body/Prototypes/vulpkanin.yml b/Resources/Prototypes/Body/Prototypes/vulpkanin.yml new file mode 100644 index 0000000000..ad0d1fcf2c --- /dev/null +++ b/Resources/Prototypes/Body/Prototypes/vulpkanin.yml @@ -0,0 +1,49 @@ +- type: body + id: Vulpkanin + name: vulpkanin + root: torso + slots: + head: + part: HeadVulpkanin + connections: + - torso + organs: + brain: OrganHumanBrain + eyes: OrganHumanEyes + torso: + part: TorsoVulpkanin + connections: + - right arm + - left arm + - right leg + - left leg + organs: + heart: OrganAnimalHeart + lungs: OrganHumanLungs + stomach: OrganAnimalStomach + liver: OrganAnimalLiver + kidneys: OrganHumanKidneys + right arm: + part: RightArmVulpkanin + connections: + - right hand + left arm: + part: LeftArmVulpkanin + connections: + - left hand + right hand: + part: RightHandVulpkanin + left hand: + part: LeftHandVulpkanin + right leg: + part: RightLegVulpkanin + connections: + - right foot + left leg: + part: LeftLegVulpkanin + connections: + - left foot + right foot: + part: RightFootVulpkanin + left foot: + part: LeftFootVulpkanin diff --git a/Resources/Prototypes/Catalog/Fills/Crates/npc.yml b/Resources/Prototypes/Catalog/Fills/Crates/npc.yml index 10c715bb99..403eb1a01d 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/npc.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/npc.yml @@ -233,6 +233,11 @@ - type: StorageFill contents: - id: MobHamsterHamlet + prob: 1 + orGroup: MobHamsterHamlet + - id: MobHamsterHamletSlippery + prob: 0.001 + orGroup: MobHamsterHamlet - type: entity id: CrateNPCLizard diff --git a/Resources/Prototypes/Catalog/Fills/Crates/permaescape.yml b/Resources/Prototypes/Catalog/Fills/Crates/permaescape.yml index 4ee0d5f9ea..ed48479cd2 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/permaescape.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/permaescape.yml @@ -82,7 +82,7 @@ prob: 0.25 - id: OxygenTankFilled prob: 0.05 - + - type: entity id: CratePermaEscapeGun parent: CrateGenericSteel @@ -124,40 +124,37 @@ contents: - id: RubberStampApproved - id: RubberStampDenied + - id: Paper + amount: 5 - id: Pen - - id: Pen - - id: Pen - - id: BoxFolderBase + amount: 3 + - id: BoxFolderBaseEmpty orGroup: folderA - - id: BoxFolderBlack + - id: BoxFolderBlackEmpty orGroup: folderA - - id: BoxFolderBlue + - id: BoxFolderBlueEmpty orGroup: folderA - - id: BoxFolderGreen + - id: BoxFolderGreenEmpty orGroup: folderA - - id: BoxFolderGrey + - id: BoxFolderGreyEmpty orGroup: folderA - - id: BoxFolderRed + - id: BoxFolderRedEmpty orGroup: folderA - - id: BoxFolderWhite + - id: BoxFolderYellowEmpty orGroup: folderA - - id: BoxFolderYellow - orGroup: folderA - - id: BoxFolderBase + - id: BoxFolderBaseEmpty orGroup: folderB - - id: BoxFolderBlack + - id: BoxFolderBlackEmpty orGroup: folderB - - id: BoxFolderBlue + - id: BoxFolderBlueEmpty orGroup: folderB - - id: BoxFolderGreen + - id: BoxFolderGreenEmpty orGroup: folderB - - id: BoxFolderGrey + - id: BoxFolderGreyEmpty orGroup: folderB - - id: BoxFolderRed + - id: BoxFolderRedEmpty orGroup: folderB - - id: BoxFolderWhite - orGroup: folderB - - id: BoxFolderYellow + - id: BoxFolderYellowEmpty orGroup: folderB - id: CrayonBox prob: 0.50 diff --git a/Resources/Prototypes/Catalog/Fills/Crates/service.yml b/Resources/Prototypes/Catalog/Fills/Crates/service.yml index 84da90eb2a..46299ef6b9 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/service.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/service.yml @@ -144,15 +144,17 @@ - type: StorageFill contents: - id: Paper - amount: 15 + amount: 12 + - id: PaperOffice + amount: 6 - id: Pen amount: 2 - - id: BoxFolderClipboard + - id: BoxFolderClipboardEmpty amount: 2 - id: HandLabeler - - id: BoxFolderBlue - - id: BoxFolderRed - - id: BoxFolderYellow + - id: BoxFolderBlueEmpty + - id: BoxFolderRedEmpty + - id: BoxFolderYellowEmpty - id: NewtonCradle - id: BoxEnvelope - id: BrbSign diff --git a/Resources/Prototypes/Catalog/Fills/Items/gas_tanks.yml b/Resources/Prototypes/Catalog/Fills/Items/gas_tanks.yml index 2cf1354c14..2bbcc3b13d 100644 --- a/Resources/Prototypes/Catalog/Fills/Items/gas_tanks.yml +++ b/Resources/Prototypes/Catalog/Fills/Items/gas_tanks.yml @@ -31,7 +31,7 @@ # 31 minutes volume: 5 moles: - - 2.051379050 # oxygen + Oxygen: 2.051379050 # oxygen temperature: 293.15 - type: entity @@ -45,7 +45,7 @@ # 4 minutes volume: 0.66 moles: - - 0.270782035 # oxygen + Oxygen: 0.270782035 # oxygen temperature: 293.15 - type: entity @@ -59,8 +59,7 @@ # 4 minutes volume: 0.66 moles: - - 0 # oxygen - - 0.270782035 # nitrogen + Nitrogen: 0.270782035 # nitrogen temperature: 293.15 @@ -75,7 +74,7 @@ # 9 minutes volume: 1.5 moles: - - 0.615413715 # oxygen + Oxygen: 0.615413715 # oxygen temperature: 293.15 - type: entity @@ -89,8 +88,7 @@ # 9 minutes volume: 1.5 moles: - - 0 # oxygen - - 0.615413715 # nitrogen + Nitrogen: 0.615413715 # nitrogen temperature: 293.15 @@ -105,7 +103,7 @@ # 15 minutes volume: 2.5 moles: - - 1.025689525 # oxygen + Oxygen: 1.025689525 # oxygen temperature: 293.15 - type: entity @@ -119,8 +117,7 @@ # 15 minutes volume: 2.5 moles: - - 0 # oxygen - - 1.025689525 # nitrogen + Nitrogen: 1.025689525 # nitrogen temperature: 293.15 - type: entity @@ -134,15 +131,9 @@ # 4 minutes volume: 0.66 moles: - - 0.270782035 # 95% oxygen - - 0 # nitrogen - - 0 # CO2 - - 0 # plasma - - 0 # tritium - - 0 # water vapor - - 0 # ammonia - - 0.014251686 # 5% N2O - # 0.285033721 total + Oxygen: 0.270782035 # 95% oxygen + NitrousOxide: 0.014251686 # 5% N2O + # 0.285033721 total temperature: 293.15 - type: entity @@ -156,8 +147,8 @@ # 6 minutes due to output pressure volume: 5 moles: - - 0.451303391 # 22% oxygen - - 1.600075659 # 78% nitrogen + Oxygen: 0.451303391 # 22% oxygen + Nitrogen: 1.600075659 # 78% nitrogen # 2.051379050 total temperature: 293.15 @@ -172,8 +163,7 @@ # 31 minutes volume: 5 moles: - - 0 # oxygen not included - - 2.051379050 # nitrogen + Nitrogen: 2.051379050 # nitrogen temperature: 293.15 - type: entity @@ -193,14 +183,8 @@ # only 22 minutes due to pressure volume: 5 moles: - - 1.435965335 # 70% oxygen - - 0 # nitrogen - - 0 # CO2 - - 0 # plasma - - 0 # tritium - - 0 # water vapor - - 0 # ammonia - - 0.615413715 # 30% N2O + Oxygen: 1.435965335 # 70% oxygen + NitrousOxide: 0.615413715 # 30% N2O # 2.051379050 total temperature: 293.15 @@ -216,8 +200,5 @@ # 6 minutes of agony volume: 5 moles: - - 0 # oxygen - - 0 # nitrogen - - 0 # CO2 - - 2.051379050 # plasma + Plasma: 2.051379050 temperature: 293.15 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml index 414e77bcad..df4af37f52 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml @@ -7,6 +7,7 @@ ClothingHeadsetGrey: 5 RubberStampApproved: 1 RubberStampDenied: 1 + BoxFolderPlasticClipboardEmpty: 2 Paper: 10 Envelope: 10 HandLabeler: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/medical.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/medical.yml index 18a63f4f41..fe8668ec30 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/medical.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/medical.yml @@ -1,14 +1,77 @@ +- type: vendingMachineInventory + id: NanoMedInventory + startingInventory: + HandheldHealthAnalyzer: 1 + Gauze: 3 + Brutepack: 3 + Ointment: 3 + Bloodpack: 3 + ChemistryBottleEpinephrine: 3 + Syringe: 3 + PillCanisterTricordrazine: 2 + contrabandInventory: + PillCanisterRandom: 1 + PowerCellSmall: 2 + +- type: vendingMachineInventory + id: NanoMedCivilianWallInventory + startingInventory: + HandheldHealthAnalyzer: 1 + AloeCream: 2 + Gauze: 3 + Brutepack: 3 + Ointment: 2 + Bloodpack: 3 + ChemistryBottleEpinephrine: 3 + Syringe: 3 + PillCanisterTricordrazine: 2 + contrabandInventory: + PillCanisterRandom: 1 + PowerCellSmall: 2 + - type: vendingMachineInventory id: NanoMedPlusInventory startingInventory: HandheldHealthAnalyzer: 3 + Gauze: 5 Brutepack: 5 Ointment: 5 Bloodpack: 5 + Tourniquet: 2 ChemistryBottleEpinephrine: 3 + ChemistryBottleBicaridine: 1 Syringe: 5 BoxBottle: 3 + PillCanisterTricordrazine: 3 + PillCanisterIron: 1 + PillCanisterCopper: 1 + PillCanisterPotassiumIodide: 1 + SyringeIpecac: 1 ClothingEyesHudMedical: 2 ClothingEyesEyepatchHudMedical: 2 contrabandInventory: + PillCanisterRandom: 3 + PillSpaceDrugs: 3 FoodApple: 1 + +- type: vendingMachineInventory + id: NanoMedCivilianInventory + startingInventory: + HandheldHealthAnalyzer: 3 + AloeCream: 3 + Gauze: 5 + Brutepack: 5 + Ointment: 4 + Bloodpack: 5 + Tourniquet: 1 + ChemistryBottleEpinephrine: 3 + Syringe: 5 + BoxBottle: 3 + PillCanisterTricordrazine: 2 + PillCanisterIron: 1 + PillCanisterCopper: 1 + PillCanisterPotassiumIodide: 1 + contrabandInventory: + PillCanisterRandom: 1 + PillSpaceDrugs: 3 + FoodApple: 1 \ No newline at end of file diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/wallmed.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/wallmed.yml deleted file mode 100644 index 327c17269a..0000000000 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/wallmed.yml +++ /dev/null @@ -1,10 +0,0 @@ -- type: vendingMachineInventory - id: NanoMedInventory - startingInventory: - Brutepack: 3 - Ointment: 3 - Bloodpack: 3 - ChemistryBottleEpinephrine: 3 - Syringe: 3 - contrabandInventory: - PowerCellSmall: 2 diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index ebeae71d99..c499f54db6 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -2202,7 +2202,7 @@ discountDownTo: Telecrystal: 2 cost: - Telecrystal: 5 + Telecrystal: 3 categories: - UplinkJob conditions: diff --git a/Resources/Prototypes/Damage/modifier_sets.yml b/Resources/Prototypes/Damage/modifier_sets.yml index 2791be2c91..ffd7bb66a9 100644 --- a/Resources/Prototypes/Damage/modifier_sets.yml +++ b/Resources/Prototypes/Damage/modifier_sets.yml @@ -208,7 +208,7 @@ id: Moth # Slightly worse at everything but cold coefficients: Cold: 0.7 - Heat: 1.3 + Heat: 1.2 - type: damageModifierSet id: Vox @@ -331,3 +331,10 @@ id: ManifestedSpirit coefficients: Holy: 2 + +# Vulps get more heat damage because fur +- type: damageModifierSet + id: Vulpkanin + coefficients: + Heat: 1.15 + Cold: 0.85 diff --git a/Resources/Prototypes/Datasets/Names/borg.yml b/Resources/Prototypes/Datasets/Names/borg.yml index 33b2565f06..fef6109049 100644 --- a/Resources/Prototypes/Datasets/Names/borg.yml +++ b/Resources/Prototypes/Datasets/Names/borg.yml @@ -3,4 +3,4 @@ id: NamesBorg values: prefix: names-borg-dataset- - count: 43 + count: 42 diff --git a/Resources/Prototypes/Datasets/Names/vulpkanin_female.yml b/Resources/Prototypes/Datasets/Names/vulpkanin_female.yml new file mode 100644 index 0000000000..f13e5bfeb6 --- /dev/null +++ b/Resources/Prototypes/Datasets/Names/vulpkanin_female.yml @@ -0,0 +1,5 @@ +- type: localizedDataset + id: names_vulpkanin_female + values: + prefix: names-vulpkanin-female-dataset- + count: 113 diff --git a/Resources/Prototypes/Datasets/Names/vulpkanin_last.yml b/Resources/Prototypes/Datasets/Names/vulpkanin_last.yml new file mode 100644 index 0000000000..298a29a16d --- /dev/null +++ b/Resources/Prototypes/Datasets/Names/vulpkanin_last.yml @@ -0,0 +1,5 @@ +- type: localizedDataset + id: names_vulpkanin_last + values: + prefix: names-vulpkanin-last-dataset- + count: 252 diff --git a/Resources/Prototypes/Datasets/Names/vulpkanin_male.yml b/Resources/Prototypes/Datasets/Names/vulpkanin_male.yml new file mode 100644 index 0000000000..cb5589e365 --- /dev/null +++ b/Resources/Prototypes/Datasets/Names/vulpkanin_male.yml @@ -0,0 +1,5 @@ +- type: localizedDataset + id: names_vulpkanin_male + values: + prefix: names-vulpkanin-male-dataset- + count: 80 diff --git a/Resources/Prototypes/Decals/lettering.yml b/Resources/Prototypes/Decals/lettering.yml new file mode 100644 index 0000000000..81b893db5f --- /dev/null +++ b/Resources/Prototypes/Decals/lettering.yml @@ -0,0 +1,321 @@ +- type: decal + id: StencilNumber0 + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil0 + +- type: decal + id: StencilNumber1 + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil1 + +- type: decal + id: StencilNumber2 + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil2 + +- type: decal + id: StencilNumber3 + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil3 + +- type: decal + id: StencilNumber4 + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil4 + +- type: decal + id: StencilNumber5 + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil5 + +- type: decal + id: StencilNumber6 + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil6 + +- type: decal + id: StencilNumber7 + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil7 + +- type: decal + id: StencilNumber8 + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil8 + +- type: decal + id: StencilNumber9 + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil9 + +- type: decal + id: StencilLetterA + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilA + +- type: decal + id: StencilLetterB + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilB + +- type: decal + id: StencilLetterC + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilC + +- type: decal + id: StencilLetterD + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilD + +- type: decal + id: StencilLetterE + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilE + +- type: decal + id: StencilLetterF + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilF + +- type: decal + id: StencilLetterG + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilG + +- type: decal + id: StencilLetterH + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilH + +- type: decal + id: StencilLetterI + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilI + +- type: decal + id: StencilLetterJ + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilJ + +- type: decal + id: StencilLetterK + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilK + +- type: decal + id: StencilLetterL + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilL + +- type: decal + id: StencilLetterM + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilM + +- type: decal + id: StencilLetterN + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilN + +- type: decal + id: StencilLetterO + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilO + +- type: decal + id: StencilLetterP + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilP + +- type: decal + id: StencilLetterQ + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilQ + +- type: decal + id: StencilLetterR + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilR + +- type: decal + id: StencilLetterS + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilS + +- type: decal + id: StencilLetterT + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilT + +- type: decal + id: StencilLetterU + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilU + +- type: decal + id: StencilLetterV + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilV + +- type: decal + id: StencilLetterW + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilW + +- type: decal + id: StencilLetterX + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilX + +- type: decal + id: StencilLetterY + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilY + +- type: decal + id: StencilLetterZ + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencilZ + +- type: decal + id: StencilSymbolAmpersand + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil_Ampersand + +- type: decal + id: StencilSymbolAsterix + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil_Asterix + +- type: decal + id: StencilSymbolDash + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil_Dash + +- type: decal + id: StencilSymbolEquals + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil_Equals + +- type: decal + id: StencilSymbolExclaim + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil_Exclaim + +- type: decal + id: StencilSymbolHash + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil_Hash + +- type: decal + id: StencilSymbolSpeso + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil_Speso + +- type: decal + id: StencilSymbolMultiocular + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil_Multiocular + +- type: decal + id: StencilSymbolPlus + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil_Plus + +- type: decal + id: StencilSymbolQuestion + tags: ["station", "markings"] + sprite: + sprite: Decals/stencil.rsi + state: stencil_Question diff --git a/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml b/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml index fc3e557bea..b424d5a0b9 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml @@ -46,6 +46,12 @@ - type: Storage storageOpenSound: collection: BikeHorn + params: + variation: 0.125 + storageInsertSound: + collection: FootstepClown + params: + variation: 0.125 - type: entity parent: ClothingBackpack diff --git a/Resources/Prototypes/Entities/Clothing/Back/duffel.yml b/Resources/Prototypes/Entities/Clothing/Back/duffel.yml index 2e76976443..7c86c08cb4 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/duffel.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/duffel.yml @@ -62,6 +62,12 @@ - type: Storage storageOpenSound: collection: BikeHorn + params: + variation: 0.125 + storageInsertSound: + collection: FootstepClown + params: + variation: 0.125 - type: entity parent: [ClothingBackpackDuffel, BaseSecurityContraband] diff --git a/Resources/Prototypes/Entities/Clothing/Back/satchel.yml b/Resources/Prototypes/Entities/Clothing/Back/satchel.yml index ac26054033..c29f12f21d 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/satchel.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/satchel.yml @@ -50,6 +50,12 @@ - type: Storage storageOpenSound: collection: BikeHorn + params: + variation: 0.125 + storageInsertSound: + collection: FootstepClown + params: + variation: 0.125 - type: entity parent: ClothingBackpackSatchel diff --git a/Resources/Prototypes/Entities/Clothing/Back/smuggler.yml b/Resources/Prototypes/Entities/Clothing/Back/smuggler.yml index f5ec4fcd3a..3a4495f895 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/smuggler.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/smuggler.yml @@ -85,11 +85,11 @@ children: - id: RevolverCapGun amount: !type:RangeNumberSelector - range: 4, 8 + range: 4, 6 weight: 95 - id: RevolverCapGunFake amount: !type:RangeNumberSelector - range: 1, 8 + range: 1, 6 weight: 5 - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/Back/specific.yml b/Resources/Prototypes/Entities/Clothing/Back/specific.yml index 005dfedba5..54b8f677b8 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/specific.yml @@ -1,5 +1,5 @@ - type: entity - parent: ClothingBackpack + parent: [ClothingBackpack, BaseChameleon] id: ClothingBackpackChameleon name: backpack description: You wear this on your back and put items into it. @@ -96,6 +96,7 @@ - WhitelistChameleon - CorgiWearable - PetOnly + - ScurretWearable - type: Construction graph: ClothingBagPet node: bagPet diff --git a/Resources/Prototypes/Entities/Clothing/Ears/specific.yml b/Resources/Prototypes/Entities/Clothing/Ears/specific.yml index 83612ac4b2..987c3f7340 100644 --- a/Resources/Prototypes/Entities/Clothing/Ears/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Ears/specific.yml @@ -1,5 +1,5 @@ - type: entity - parent: ClothingHeadsetGrey + parent: [ClothingHeadsetGrey, BaseChameleon] id: ClothingHeadsetChameleon name: passenger headset description: An updated, modular intercom that fits over the head. Takes encryption keys. @@ -14,7 +14,3 @@ - type: ChameleonClothing slot: [ears] default: ClothingHeadsetGrey - - type: UserInterface - interfaces: - enum.ChameleonUiKey.Key: - type: ChameleonBoundUserInterface diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml index 30c14cab04..8142c0dc49 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml @@ -281,7 +281,7 @@ - type: FlashImmunity - type: entity - parent: ClothingEyesBase + parent: [ClothingEyesBase, ShowSecurityIcons, BaseSecurityContraband] id: ClothingEyesGlassesNoir name: noir-tech glasses description: A pair of glasses that simulate what the world looked like before the invention of color. diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/specific.yml b/Resources/Prototypes/Entities/Clothing/Eyes/specific.yml index 936856fdf7..b62773fe50 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/specific.yml @@ -1,5 +1,5 @@ - type: entity - parent: ClothingEyesBase + parent: [ClothingEyesBase, BaseChameleon] id: ClothingEyesChameleon # no flash immunity, sorry name: sun glasses description: Useful both for security and cargonia. @@ -7,7 +7,7 @@ components: - type: Tag tags: # intentionally no WhitelistChameleon tag - - PetWearable + - PetWearable - type: Sprite sprite: Clothing/Eyes/Glasses/sunglasses.rsi - type: Clothing @@ -15,8 +15,3 @@ - type: ChameleonClothing slot: [eyes] default: ClothingEyesGlassesSunglasses - - type: UserInterface - interfaces: - enum.ChameleonUiKey.Key: - type: ChameleonBoundUserInterface - diff --git a/Resources/Prototypes/Entities/Clothing/Hands/specific.yml b/Resources/Prototypes/Entities/Clothing/Hands/specific.yml index 6140bcd8ed..1a2ed4301a 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/specific.yml @@ -1,5 +1,5 @@ - type: entity - parent: ClothingHandsButcherable + parent: [ClothingHandsButcherable, BaseChameleon] id: ClothingHandsChameleon # doesn't protect from electricity or heat name: black gloves description: Regular black gloves that do not keep you from frying. @@ -17,10 +17,6 @@ - type: Fiber fiberMaterial: fibers-chameleon - type: FingerprintMask - - type: UserInterface - interfaces: - enum.ChameleonUiKey.Key: - type: ChameleonBoundUserInterface - type: entity parent: ClothingHandsChameleon diff --git a/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml b/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml index e4afec873c..5d512cb3c7 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml @@ -141,6 +141,7 @@ - Snout - HeadTop - HeadSide + - FacialHair - type: entity abstract: true @@ -189,6 +190,7 @@ - Snout - HeadTop - HeadSide + - FacialHair - type: entity abstract: true diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml index 836ebfffda..043c4f6166 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml @@ -33,6 +33,12 @@ head-vox: - state: equipped-head-light-vox shader: unshaded + head-vulpkanin: + - state: equipped-head-light-vulpkanin + shader: unshaded + head-reptilian: + - state: equipped-head-light-reptilian + shader: unshaded head-dog: - state: equipped-head-light-dog shader: unshaded @@ -46,6 +52,14 @@ - state: equipped-head-vox - state: equipped-head-unshaded-vox shader: unshaded + head-vulpkanin: + - state: equipped-head-vulpkanin + - state: equipped-head-unshaded-vulpkanin + shader: unshaded + head-reptilian: + - state: equipped-head-reptilian + - state: equipped-head-unshaded-reptilian + shader: unshaded head-dog: - state: equipped-head-dog - state: equipped-head-unshaded-dog @@ -93,6 +107,12 @@ head-vox: - state: equipped-head-light-vox shader: unshaded + head-vulpkanin: + - state: equipped-head-light-vulpkanin + shader: unshaded + head-reptilian: + - state: equipped-head-light-reptilian + shader: unshaded head-dog: - state: equipped-head-light-dog shader: unshaded @@ -106,6 +126,14 @@ - state: equipped-head-vox - state: equipped-head-unshaded-vox shader: unshaded + head-vulpkanin: + - state: equipped-head-vulpkanin + - state: equipped-head-unshaded-vulpkanin + shader: unshaded + head-reptilian: + - state: equipped-head-reptilian + - state: equipped-head-unshaded-reptilian + shader: unshaded head-dog: - state: equipped-head-dog - state: equipped-head-unshaded-dog @@ -147,6 +175,12 @@ head-vox: - state: equipped-head-light-vox shader: unshaded + head-vulpkanin: + - state: equipped-head-light-vulpkanin + shader: unshaded + head-reptilian: + - state: equipped-head-light-reptilian + shader: unshaded head-dog: - state: equipped-head-light-dog shader: unshaded @@ -160,6 +194,14 @@ - state: equipped-head-vox - state: equipped-head-unshaded-vox shader: unshaded + head-vulpkanin: + - state: equipped-head-vulpkanin + - state: equipped-head-unshaded-vulpkanin + shader: unshaded + head-reptilian: + - state: equipped-head-reptilian + - state: equipped-head-unshaded-reptilian + shader: unshaded head-dog: - state: equipped-head-dog - state: equipped-head-unshaded-dog @@ -223,6 +265,9 @@ head-vox: - state: equipped-head-light-vox shader: unshaded + head-reptilian: + - state: equipped-head-reptilian + shader: unshaded head-dog: - state: equipped-head-light-dog shader: unshaded @@ -236,6 +281,10 @@ - state: equipped-head-vox - state: equipped-head-unshaded-vox shader: unshaded + head-reptilian: + - state: equipped-head-reptilian + - state: equipped-head-unshaded-reptilian + shader: unshaded head-dog: - state: equipped-head-dog - state: equipped-head-unshaded-dog @@ -398,6 +447,12 @@ head-vox: - state: equipped-head-light-vox shader: unshaded + head-vulpkanin: + - state: equipped-head-light-vulpkanin + shader: unshaded + head-reptilian: + - state: equipped-head-light-reptilian + shader: unshaded head-dog: - state: equipped-head-light-dog shader: unshaded @@ -411,6 +466,14 @@ - state: equipped-head-vox - state: equipped-head-unshaded-vox shader: unshaded + head-vulpkanin: + - state: equipped-head-vulpkanin + - state: equipped-head-unshaded-vulpkanin + shader: unshaded + head-reptilian: + - state: equipped-head-reptilian + - state: equipped-head-unshaded-reptilian + shader: unshaded head-dog: - state: equipped-head-dog - state: equipped-head-unshaded-dog @@ -729,6 +792,9 @@ head-vox: - state: equipped-HELMET-light-vox shader: unshaded + head-reptilian: + - state: equipped-HELMET-light-reptilian + shader: unshaded - type: Clothing sprite: Clothing/Head/Hardsuits/piratecaptainhelm.rsi clothingVisuals: @@ -740,6 +806,10 @@ - state: equipped-HELMET-vox - state: equipped-HELMET-unshaded-vox shader: unshaded + head-reptilian: + - state: equipped-HELMET-reptilian + - state: equipped-HELMET-unshaded-reptilian + shader: unshaded - type: PointLight # Color matches visor colors, radius/energy same as mining hardsuit for the big captain. color: "#f3ea9c" radius: 7 @@ -890,6 +960,10 @@ - state: equipped-head-vox - state: equipped-head-unshaded-vox shader: unshaded + head-reptilian: + - state: equipped-head-reptilian + - state: equipped-head-unshaded-reptilian + shader: unshaded - type: PointLight color: orange - type: PressureProtection diff --git a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml index 57665af04f..93efa6415c 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml @@ -585,8 +585,6 @@ modifiers: coefficients: Blunt: 0.95 - - type: StaminaResistance - damageCoefficient: 0.95 - type: Construction graph: cardHelmet - node: cardhelmet \ No newline at end of file + node: cardhelmet diff --git a/Resources/Prototypes/Entities/Clothing/Head/misc.yml b/Resources/Prototypes/Entities/Clothing/Head/misc.yml index 96844d4017..da0f17f324 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/misc.yml @@ -198,7 +198,7 @@ sprite: Clothing/Head/Misc/fancycrown.rsi - type: TypingIndicatorClothing proto: regal - - type: MobPrice + - type: StaticPrice price: 3000 - type: AddAccentClothing accent: MobsterAccent diff --git a/Resources/Prototypes/Entities/Clothing/Head/specific.yml b/Resources/Prototypes/Entities/Clothing/Head/specific.yml index 15f89da106..4539e2fdf3 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/specific.yml @@ -1,5 +1,5 @@ - type: entity - parent: ClothingHeadBase + parent: [ClothingHeadBase, BaseChameleon] id: ClothingHeadHatChameleon name: beret description: A beret, an artists favorite headwear. @@ -14,10 +14,6 @@ - type: ChameleonClothing slot: [HEAD] default: ClothingHeadHatBeret - - type: UserInterface - interfaces: - enum.ChameleonUiKey.Key: - type: ChameleonBoundUserInterface - type: entity parent: ClothingHeadHatFedoraBrown diff --git a/Resources/Prototypes/Entities/Clothing/Masks/specific.yml b/Resources/Prototypes/Entities/Clothing/Masks/specific.yml index 286dfd6cf1..33f0ec3ad6 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/specific.yml @@ -1,5 +1,5 @@ - type: entity - parent: ClothingMaskBase + parent: [ClothingMaskBase, BaseChameleon] id: ClothingMaskGasChameleon name: gas mask description: A face-covering mask that can be connected to an air supply. @@ -16,10 +16,6 @@ default: ClothingMaskGas - type: BreathMask - type: IdentityBlocker # need that for default ClothingMaskGas - - type: UserInterface - interfaces: - enum.ChameleonUiKey.Key: - type: ChameleonBoundUserInterface - type: HideLayerClothing slots: - Snout @@ -30,6 +26,12 @@ suffix: Voice Mask, Chameleon components: - type: VoiceMask + - type: UIRequiresLock + userInterfaceKeys: + - enum.ChameleonUiKey.Key + - enum.VoiceMaskUIKey.Key + accessDeniedSound: null + popup: null - type: HideLayerClothing slots: - Snout diff --git a/Resources/Prototypes/Entities/Clothing/Neck/pins.yml b/Resources/Prototypes/Entities/Clothing/Neck/pins.yml index 1724186bc2..cab86da726 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/pins.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/pins.yml @@ -14,6 +14,25 @@ - type: entity parent: ClothingNeckPinBase + id: ClothingGenderPinBase + abstract: true + components: + - type: ChameleonClothing + slot: Neck +# default: ClothingNeckLGBTPin + requireTag: GenderPin + - type: UserInterface + interfaces: + enum.ChameleonUiKey.Key: + type: ChameleonBoundUserInterface + - type: Tag + tags: + - ClothMade #idk man its on the parent + - WhitelistChameleon + - GenderPin + +- type: entity + parent: ClothingGenderPinBase id: ClothingNeckLGBTPin name: LGBT pin description: Be gay do crime. @@ -22,9 +41,11 @@ state: lgbt - type: Clothing equippedPrefix: lgbt + - type: ChameleonClothing + default: ClothingNeckLGBTPin - type: entity - parent: ClothingNeckPinBase + parent: ClothingGenderPinBase id: ClothingNeckAllyPin name: straight ally pin description: Be ally do crime. @@ -33,9 +54,11 @@ state: ally - type: Clothing equippedPrefix: ally + - type: ChameleonClothing + default: ClothingNeckAllyPin - type: entity - parent: ClothingNeckPinBase + parent: ClothingGenderPinBase id: ClothingNeckAromanticPin name: aromantic pin description: Be aro do crime. @@ -44,9 +67,11 @@ state: aro - type: Clothing equippedPrefix: aro + - type: ChameleonClothing + default: ClothingNeckAromanticPin - type: entity - parent: ClothingNeckPinBase + parent: ClothingGenderPinBase id: ClothingNeckAroacePin name: aroace pin description: Be aroace do crime. @@ -55,9 +80,11 @@ state: aroace - type: Clothing equippedPrefix: aroace + - type: ChameleonClothing + default: ClothingNeckAroacePin - type: entity - parent: ClothingNeckPinBase + parent: ClothingGenderPinBase id: ClothingNeckAsexualPin name: asexual pin description: Be ace do crime. @@ -66,9 +93,11 @@ state: asex - type: Clothing equippedPrefix: asex + - type: ChameleonClothing + default: ClothingNeckAsexualPin - type: entity - parent: ClothingNeckPinBase + parent: ClothingGenderPinBase id: ClothingNeckBisexualPin name: bisexual pin description: Be bi do crime. @@ -77,9 +106,11 @@ state: bi - type: Clothing equippedPrefix: bi + - type: ChameleonClothing + default: ClothingNeckBisexualPin - type: entity - parent: ClothingNeckPinBase + parent: ClothingGenderPinBase id: ClothingNeckGayPin name: gay pin description: Be gay~ do crime. @@ -88,9 +119,11 @@ state: gay - type: Clothing equippedPrefix: gay + - type: ChameleonClothing + default: ClothingNeckGayPin - type: entity - parent: ClothingNeckPinBase + parent: ClothingGenderPinBase id: ClothingNeckIntersexPin name: intersex pin description: Be intersex do crime. @@ -99,9 +132,11 @@ state: inter - type: Clothing equippedPrefix: inter + - type: ChameleonClothing + default: ClothingNeckIntersexPin - type: entity - parent: ClothingNeckPinBase + parent: ClothingGenderPinBase id: ClothingNeckLesbianPin name: lesbian pin description: Be lesbian do crime. @@ -110,9 +145,11 @@ state: les - type: Clothing equippedPrefix: les + - type: ChameleonClothing + default: ClothingNeckLesbianPin - type: entity - parent: ClothingNeckPinBase + parent: ClothingGenderPinBase id: ClothingNeckNonBinaryPin name: non-binary pin description: "01100010 01100101 00100000 01100101 01101110 01100010 01111001 00100000 01100100 01101111 00100000 01100011 01110010 01101001 01101101 01100101" @@ -121,9 +158,11 @@ state: non - type: Clothing equippedPrefix: non + - type: ChameleonClothing + default: ClothingNeckNonBinaryPin - type: entity - parent: ClothingNeckPinBase + parent: ClothingGenderPinBase id: ClothingNeckPansexualPin name: pansexual pin description: Be pan do crime. @@ -132,9 +171,11 @@ state: pan - type: Clothing equippedPrefix: pan + - type: ChameleonClothing + default: ClothingNeckPansexualPin - type: entity - parent: ClothingNeckPinBase + parent: ClothingGenderPinBase id: ClothingNeckPluralPin name: plural pin description: Be plural, do crimes. @@ -143,9 +184,11 @@ state: plural - type: Clothing equippedPrefix: plural + - type: ChameleonClothing + default: ClothingNeckPluralPin - type: entity - parent: ClothingNeckPinBase + parent: ClothingGenderPinBase id: ClothingNeckOmnisexualPin name: omnisexual pin description: Be omni do crime. @@ -154,9 +197,11 @@ state: omni - type: Clothing equippedPrefix: omni + - type: ChameleonClothing + default: ClothingNeckOmnisexualPin - type: entity - parent: ClothingNeckPinBase + parent: ClothingGenderPinBase id: ClothingNeckGenderqueerPin name: genderqueer pin description: be crime, do gender @@ -165,9 +210,11 @@ state: gender - type: Clothing equippedPrefix: gender + - type: ChameleonClothing + default: ClothingNeckGenderqueerPin - type: entity - parent: ClothingNeckPinBase + parent: ClothingGenderPinBase id: ClothingNeckGenderfluidPin name: genderfluid pin description: be gender, be fluid @@ -176,9 +223,11 @@ state: fluid - type: Clothing equippedPrefix: fluid + - type: ChameleonClothing + default: ClothingNeckGenderfluidPin - type: entity - parent: ClothingNeckPinBase + parent: ClothingGenderPinBase id: ClothingNeckTransPin name: transgender pin description: Be trans do crime. @@ -187,6 +236,8 @@ state: trans - type: Clothing equippedPrefix: trans + - type: ChameleonClothing + default: ClothingNeckTransPin - type: entity parent: ClothingNeckPinBase diff --git a/Resources/Prototypes/Entities/Clothing/Neck/specific.yml b/Resources/Prototypes/Entities/Clothing/Neck/specific.yml index b98cdd02e0..a32d9b5eea 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/specific.yml @@ -1,5 +1,5 @@ - type: entity - parent: ClothingNeckBase + parent: [ClothingNeckBase, BaseChameleon] id: ClothingNeckChameleon name: striped red scarf description: A stylish striped red scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks. @@ -14,7 +14,3 @@ - type: ChameleonClothing slot: [NECK] default: ClothingNeckScarfStripedRed - - type: UserInterface - interfaces: - enum.ChameleonUiKey.Key: - type: ChameleonBoundUserInterface diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml index 25d963882c..5cc78d90b0 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml @@ -505,8 +505,6 @@ modifiers: coefficients: Blunt: 0.9 - - type: StaminaResistance - damageCoefficient: 0.90 - type: Construction graph: cardArmour - node: cardarmour \ No newline at end of file + node: cardarmour diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml index 4f647b8680..1de646a363 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml @@ -145,6 +145,9 @@ flatReductions: Heat: 10 # the average lightbulb only does around four damage! slots: OUTERCLOTHING + - type: HideLayerClothing + slots: + - Tail - type: entity abstract: true @@ -174,6 +177,9 @@ flatReductions: Heat: 10 # the average lightbulb only does around four damage! slots: OUTERCLOTHING + - type: HideLayerClothing + slots: + - Tail - type: entity parent: ClothingOuterBase diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/bio.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/bio.yml index f4a1828010..4da176e2ed 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/bio.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/bio.yml @@ -9,6 +9,9 @@ sprite: Clothing/OuterClothing/Bio/general.rsi - type: Clothing sprite: Clothing/OuterClothing/Bio/general.rsi + - type: HideLayerClothing + slots: + - Tail - type: Armor modifiers: coefficients: diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml index 6904727d2b..0909ef56a4 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml @@ -974,7 +974,7 @@ damageCoefficient: 0.2 - type: FireProtection reduction: 0.8 - - type: StaminaResistance + - type: StaminaResistance # do not add these to other equipment or mobs, we don't want to microbalance these everywhere damageCoefficient: 0.15 # Needs 21 hits with a disabler to stun :godo: - type: Armor modifiers: diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/specific.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/specific.yml index aec34e80ca..8b2116f0ca 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/specific.yml @@ -1,5 +1,5 @@ - type: entity - parent: ClothingOuterBase + parent: [ClothingOuterBase, BaseChameleon] id: ClothingOuterChameleon name: vest description: A thick vest with a rubbery, water-resistant shell. @@ -14,10 +14,6 @@ - type: ChameleonClothing slot: [outerClothing] default: ClothingOuterVest - - type: UserInterface - interfaces: - enum.ChameleonUiKey.Key: - type: ChameleonBoundUserInterface - type: TemperatureProtection # Same as a basic winter coat. heatingCoefficient: 1.1 coolingCoefficient: 0.1 diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml index cf8ace4930..6d0b706a49 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml @@ -27,6 +27,9 @@ - WhitelistChameleon - type: ProtectedFromStepTriggers slots: WITHOUT_POCKET + - type: HideLayerClothing + slots: + - Tail - type: entity parent: ClothingOuterSuitBomb @@ -70,6 +73,9 @@ - type: GroupExamine - type: ProtectedFromStepTriggers slots: WITHOUT_POCKET + - type: HideLayerClothing + slots: + - Tail - type: entity parent: [ClothingOuterBaseLarge, AllowSuitStorageClothing] @@ -106,6 +112,9 @@ tags: - CorgiWearable - WhitelistChameleon + - type: HideLayerClothing + slots: + - Tail - type: entity parent: [ClothingOuterBaseLarge, GeigerCounterClothing, AllowSuitStorageClothing] @@ -131,6 +140,9 @@ toggleable-clothing: !type:ContainerSlot {} - type: ProtectedFromStepTriggers slots: WITHOUT_POCKET + - type: HideLayerClothing + slots: + - Tail - type: entity parent: [ClothingOuterBaseLarge, AllowSuitStorageClothing, BaseToggleClothing, BaseMajorContraband] @@ -195,6 +207,9 @@ whitelist: tags: - PowerCell + - type: HideLayerClothing + slots: + - Tail - type: entity parent: ClothingOuterBase @@ -292,6 +307,9 @@ - type: ContainerContainer containers: toggleable-clothing: !type:ContainerSlot {} + - type: HideLayerClothing + slots: + - Tail - type: entity parent: ClothingOuterSuitCarp diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/base_clothingshoes.yml b/Resources/Prototypes/Entities/Clothing/Shoes/base_clothingshoes.yml index 73e9ff3ada..646adda105 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/base_clothingshoes.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/base_clothingshoes.yml @@ -55,6 +55,7 @@ tags: - Knife - Sidearm + priority: 4 - type: entity abstract: true diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml b/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml index 0e9873780f..19a907f5d1 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml @@ -108,8 +108,8 @@ volume: 0.75 temperature: 293.15 moles: - - 0.153853429 # oxygen - - 0.153853429 # nitrogen + Oxygen: 0.153853429 # oxygen + Nitrogen: 0.153853429 # nitrogen - type: Item sprite: null size: Normal diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml b/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml index 26fbc0c7ae..69c167051b 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml @@ -135,6 +135,7 @@ - type: ClothingSpeedModifier walkModifier: 1.5 sprintModifier: 1.5 + standing: true - type: Appearance - type: GenericVisualizer visuals: @@ -182,7 +183,7 @@ price: 75 - type: Tag tags: [ ] - + - type: entity parent: ClothingShoesBase id: ClothingShoesBootsJump @@ -200,7 +201,7 @@ jumpSound: /Audio/Effects/stealthoff.ogg - type: ActionGrant actions: - - ActionGravityJump + - ActionGravityJump - type: ItemActionGrant actions: - ActionGravityJump diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml index ebf304557e..cfdc967a7e 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml @@ -163,7 +163,7 @@ sprite: Clothing/Shoes/Specific/wizard.rsi - type: entity - parent: ClothingShoesBase + parent: [ClothingShoesBase, BaseChameleon] id: ClothingShoesChameleon name: black shoes suffix: Chameleon @@ -197,10 +197,6 @@ - type: ChameleonClothing slot: [FEET] default: ClothingShoesColorBlack - - type: UserInterface - interfaces: - enum.ChameleonUiKey.Key: - type: ChameleonBoundUserInterface - type: entity parent: ClothingShoesChameleon diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/ship_vs_ship.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/ship_vs_ship.yml index b19f70881d..c6945b9de2 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/ship_vs_ship.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/ship_vs_ship.yml @@ -49,17 +49,6 @@ sprite: Clothing/Uniforms/Jumpsuit/repairman_syndie.rsi #Paramedic -- type: entity - parent: ClothingUniformBase - id: ClothingUniformJumpsuitParamedicNT - name: paramedic jumpsuit - description: A basic white & blue jumpsuit made for Nanotrasen paramedics stationed in combat sectors. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi - - type: entity parent: [ ClothingUniformBase, BaseSyndicateContraband ] id: ClothingUniformJumpsuitParamedicSyndie @@ -73,17 +62,6 @@ #HEADS OF STAFF #Chief Engineer -- type: entity - parent: ClothingUniformBase - id: ClothingUniformJumpsuitChiefEngineerNT - name: chief engineer jumpsuit - description: It is often joked that the role of the combat-sector Chief Engineer is where the actual, logistically-minded engineers are promoted to. Good luck. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpsuit/ce_nt.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/ce_nt.rsi - - type: entity parent: [ ClothingUniformBase, BaseSyndicateContraband ] id: ClothingUniformJumpsuitChiefEngineerSyndie diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/specific.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/specific.yml index a2c903bac3..f7ce37fe19 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/specific.yml @@ -1,5 +1,5 @@ - type: entity - parent: ClothingUniformBase + parent: [ClothingUniformBase, BaseChameleon] id: ClothingUniformJumpsuitChameleon name: black jumpsuit description: A generic black jumpsuit with no rank markings. @@ -36,7 +36,3 @@ - type: ChameleonClothing slot: [innerclothing] default: ClothingUniformJumpsuitColorBlack - - type: UserInterface - interfaces: - enum.ChameleonUiKey.Key: - type: ChameleonBoundUserInterface diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/folders.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/folders.yml index 7631d43316..5d4c133a03 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/folders.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/folders.yml @@ -10,15 +10,15 @@ - type: Sprite sprite: Objects/Misc/folders.rsi layers: - - state: folder-base - - state: folder-colormap + - state: folder-base + - state: folder-colormap - type: RandomSpawner offset: 0 prototypes: - - BoxFolderRed - - BoxFolderBlue - - BoxFolderYellow - - BoxFolderWhite - - BoxFolderGrey - - BoxFolderBlack - - BoxFolderGreen + - BoxFolderBase + - BoxFolderRed + - BoxFolderBlue + - BoxFolderYellow + - BoxFolderGrey + - BoxFolderBlack + - BoxFolderGreen diff --git a/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml b/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml index 48a2e70655..5815dbba47 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml @@ -110,7 +110,7 @@ description: ghost-role-information-loneop-description rules: ghost-role-information-loneop-rules mindRoles: - - MindRoleGhostRoleSoloAntagonist + - MindRoleLoneops - type: Sprite sprite: Markers/jobs.rsi layers: @@ -211,6 +211,18 @@ - sprite: Mobs/Aliens/paradox_clone.rsi state: preview +- type: entity + categories: [ HideSpawnMenu, Spawner ] + parent: SpawnPointGhostDerelictCyborg + id: SpawnPointGhostDerelictEngineeringCyborg + components: + - type: GhostRole + name: ghost-role-information-derelict-engineering-cyborg-name + description: ghost-role-information-derelict-engineering-cyborg-description + rules: ghost-role-information-silicon-rules + raffle: + settings: default + - type: entity categories: [ HideSpawnMenu, Spawner ] parent: BaseAntagSpawner @@ -229,6 +241,54 @@ - sprite: Mobs/Silicon/chassis.rsi state: derelict_icon +- type: entity + categories: [ HideSpawnMenu, Spawner ] + parent: SpawnPointGhostDerelictCyborg + id: SpawnPointGhostDerelictJanitorCyborg + components: + - type: GhostRole + name: ghost-role-information-derelict-janitor-cyborg-name + description: ghost-role-information-derelict-janitor-cyborg-description + rules: ghost-role-information-silicon-rules + raffle: + settings: default + +- type: entity + categories: [ HideSpawnMenu, Spawner ] + parent: SpawnPointGhostDerelictCyborg + id: SpawnPointGhostDerelictMedicalCyborg + components: + - type: GhostRole + name: ghost-role-information-derelict-medical-cyborg-name + description: ghost-role-information-derelict-medical-cyborg-description + rules: ghost-role-information-silicon-rules + raffle: + settings: default + +- type: entity + categories: [ HideSpawnMenu, Spawner ] + parent: SpawnPointGhostDerelictCyborg + id: SpawnPointGhostDerelictMiningCyborg + components: + - type: GhostRole + name: ghost-role-information-derelict-mining-cyborg-name + description: ghost-role-information-derelict-mining-cyborg-description + rules: ghost-role-information-silicon-rules + raffle: + settings: default + +- type: entity + categories: [ HideSpawnMenu, Spawner ] + parent: SpawnPointGhostDerelictCyborg + id: SpawnPointGhostDerelictSyndicateAssaultCyborg + components: + - type: GhostRole + name: ghost-role-information-derelict-syndicate-assault-cyborg-name + description: ghost-role-information-derelict-syndicate-assault-cyborg-description + rules: ghost-role-information-silicon-rules + raffle: + settings: default + - type: entity categories: [ HideSpawnMenu, Spawner ] parent: BaseAntagSpawner diff --git a/Resources/Prototypes/Entities/Markers/Spawners/jobs.yml b/Resources/Prototypes/Entities/Markers/Spawners/jobs.yml index 7ad8c61956..3a43116798 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/jobs.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/jobs.yml @@ -36,6 +36,17 @@ - type: SpawnPoint spawn_type: LateJoin +- type: entity + name: any job spawn point + id: SpawnPointAnyJob # used for integration tests so we don't need to map every single job spawner on the test map + parent: SpawnPointJobBase + components: + - type: Sprite + state: green + - type: SpawnPoint + spawn_type: Job + job_id: null # any job can spawn here + # Cargo - type: entity diff --git a/Resources/Prototypes/Entities/Markers/Spawners/nuke_ops_spawners.yml b/Resources/Prototypes/Entities/Markers/Spawners/nuke_ops_spawners.yml new file mode 100644 index 0000000000..60f6a3a118 --- /dev/null +++ b/Resources/Prototypes/Entities/Markers/Spawners/nuke_ops_spawners.yml @@ -0,0 +1,243 @@ +# Tables + +- type: entityTable + id: NukeOpsLootTable + table: !type:GroupSelector + children: + - !type:NestedSelector + tableId: NukeOpsUplinkLootTable + weight: 6.25 + - !type:NestedSelector + tableId: NukeOpsWeaponsTable + weight: 0.25 + - !type:NestedSelector + tableId: NukeOpsGrenadeTable + weight: 0.75 + - !type:NestedSelector + tableId: NukeOpsAmmoTable + weight: 0.75 + - !type:NestedSelector + tableId: NukeOpsMedKitGeneral + weight: 0.75 + +- type: entityTable + id: NukeOpsUplinkLootTable + table: !type:GroupSelector + children: + - id: ClothingBackpackChameleonFill + - id: ClothingMaskGasVoiceChameleon + amount: !type:RangeNumberSelector + range: 1, 2 + - id: NukeDiskFake + weight: 0.5 + - id: ClothingBackpackDuffelSyndicateDecoyKitFilled + weight: 0.75 + - id: BriefcaseSyndieLobbyingBundleFilled + amount: !type:RangeNumberSelector + range: 1, 2 + - id: ChameleonProjector + - id: CameraBug + - id: SyndicateJawsOfLife + - id: RadioJammer + - id: BorgModuleMartyr + - id: ScramImplant + - id: FakeMindShieldImplanter + amount: !type:RangeNumberSelector + range: 1, 3 + - id: EmpImplanter + - id: MicroBombImplanter + - id: SlipocalypseClusterSoap + amount: !type:RangeNumberSelector + range: 1, 2 + - id: ReinforcementRadioSyndicateAncestor + - id: ClothingEyesHudSyndicate + amount: !type:RangeNumberSelector + range: 1, 2 + - id: CigPackSyndicate + amount: !type:RangeNumberSelector + range: 1, 3 + - id: PenExplodingBox + +- type: entityTable + id: NukeOpsWeaponsTable + table: !type:GroupSelector + children: + - id: ThrowingKnivesKit + - id: ClothingHandsKnuckleDustersSyndicate + - id: EnergyDaggerLoud + weight: 0.5 + - id: WeaponRevolverPython + - id: WeaponPistolCobra + - id: WeaponShotgunSawn + - id: RevolverCapGunFake + weight: .01 + +- type: entityTable + id: NukeOpsAmmoTable + table: !type:GroupSelector + children: + - id: MagazinePistolSubMachineGun + - id: MagazineRifle + - id: MagazineBoxLightRifle + weight: 0.5 + - id: MagazineShotgunSlug + weight: 0.5 + - id: MagazineShotgun + weight: 0.5 + - id: MagazinePistol + weight: 0.5 + - id: MagazineBoxAntiMateriel + weight: 0.5 + - id: MagazinePistolCaselessRifle + weight: 0.5 + - id: SpeedLoaderMagnumAP + weight: 0.5 + +- type: entityTable + id: NukeOpsGrenadeTable + table: !type:GroupSelector + children: + - id: SmokeGrenade + weight: 1.25 + - id: GrenadeFlashBang + weight: 1.25 + - id: GrenadeShrapnel + weight: 1.25 + - id: GrenadeIncendiary + - id: EmpGrenade + - id: ExGrenade + weight: 0.5 + - id: SingularityGrenade + weight: 0.25 + - id: WhiteholeGrenade + weight: 0.25 + +- type: entityTable + id: NukeOpsMedkitTableBrute + table: !type:GroupSelector + children: + - id: MedkitFilled + weight: 1.5 + - id: MedkitBruteFilled + weight: 1.5 + - id: MedkitAdvancedFilled + - id: MedkitCombatFilled + weight: 0.2 + +- type: entityTable + id: NukeOpsMedKitGeneral + table: !type:GroupSelector + children: + - id: MedkitFilled + - id: MedkitBruteFilled + - id: MedkitToxinFilled + - id: MedkitRadiationFilled + - id: MedkitOxygenFilled + - id: MedkitBurnFilled + +# Spawners + +- type: entity + name: nuke ops loot spawner + id: NukeOpsLootSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Devices/jammer.rsi + state: jammer + - type: EntityTableSpawner + table: !type:NestedSelector + tableId: NukeOpsLootTable + placement: + mode: AlignTileAny + +- type: entity + name: nuke ops weapon spawner + id: NukeOpsWeaponSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Weapons/Guns/Revolvers/python.rsi + state: icon + - type: EntityTableSpawner + offset: 0.15 + table: !type:NestedSelector + tableId: NukeOpsWeaponsTable + placement: + mode: AlignTileAny + +- type: entity + name: nuke ops brute medkit spawner + id: NukeOpsMedkitBruteSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Specific/Medical/firstaidkits.rsi + state: brutekit + - type: EntityTableSpawner + table: !type:NestedSelector + tableId: NukeOpsMedkitTableBrute + placement: + mode: AlignTileAny + +- type: entity + name: nuke ops general medkit spawner + id: NukeOpsMedkitSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Specific/Medical/firstaidkits.rsi + state: burnkit + - type: EntityTableSpawner + table: !type:NestedSelector + tableId: NukeOpsMedKitGeneral + rolls: !type:RangeNumberSelector + range: 2, 4 + placement: + mode: AlignTileAny + +- type: entity + name: nuke ops grenade spawner + id: NukeOpsGrenadeSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Weapons/Grenades/grenade.rsi + state: icon + - type: EntityTableSpawner + offset: 0.15 + table: !type:NestedSelector + tableId: NukeOpsGrenadeTable + rolls: !type:RangeNumberSelector + range: 1, 2 + placement: + mode: AlignTileAny + +- type: entity + name: nuke ops ammo spawner + id: NukeOpsAmmoSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Weapons/Guns/Ammunition/Magazine/Pistol/smg_mag.rsi + state: base + - type: EntityTableSpawner + offset: 0.15 + table: !type:NestedSelector + tableId: NukeOpsAmmoTable + rolls: !type:RangeNumberSelector + range: 1, 2 + placement: + mode: AlignTileAny diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/Vulpkanin/vulpkanin_chest.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/Vulpkanin/vulpkanin_chest.yml new file mode 100644 index 0000000000..316332b7b0 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/Vulpkanin/vulpkanin_chest.yml @@ -0,0 +1,27 @@ +# Body Markings (Chest) +- type: marking + id: VulpBellyCrest + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: belly_crest + +- type: marking + id: VulpBellyFull + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: belly_full + +- type: marking + id: VulpBellyFox + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: belly_fox \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/Vulpkanin/vulpkanin_ears.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/Vulpkanin/vulpkanin_ears.yml new file mode 100644 index 0000000000..12bba0c6c5 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/Vulpkanin/vulpkanin_ears.yml @@ -0,0 +1,115 @@ + +# Ears Markings +- type: marking + id: VulpEar + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: vulp + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: vulp-inner + +- type: marking + id: VulpEarSharp + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: vulp + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: vulp-sharp + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: vulp-inner + +- type: marking + id: VulpEarFade + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: vulp + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: vulp-fade + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: vulp-inner + +- type: marking + id: VulpEarJackal + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: jackal + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: jackal-inner + +- type: marking + id: VulpEarTerrier + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: terrier + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: terrier-inner + +- type: marking + id: VulpEarFennec + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: fennec + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: fennec-inner + +- type: marking + id: VulpEarFox + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: fox + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: fox-inner + +- type: marking + id: VulpEarOtie + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: otie + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: otie-inner + +- type: marking + id: VulpEarShock + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: shock + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: shock-inner + +- type: marking + id: VulpEarCoyote + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: coyote + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: coyote-inner diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/Vulpkanin/vulpkanin_hair.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/Vulpkanin/vulpkanin_hair.yml new file mode 100644 index 0000000000..880f737977 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/Vulpkanin/vulpkanin_hair.yml @@ -0,0 +1,261 @@ +# Hairs +- type: marking + id: VulpHairAdhara + bodyPart: Hair + speciesRestriction: [ Vulpkanin ] + markingCategory: Hair + canBeDisplaced: false + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: adhara + +- type: marking + id: VulpHairAnita + bodyPart: Hair + speciesRestriction: [ Vulpkanin ] + markingCategory: Hair + canBeDisplaced: false + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: anita + +- type: marking + id: VulpHairApollo + bodyPart: Hair + speciesRestriction: [ Vulpkanin ] + markingCategory: Hair + canBeDisplaced: false + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: apollo + +- type: marking + id: VulpHairBelle + bodyPart: Hair + speciesRestriction: [ Vulpkanin ] + markingCategory: Hair + canBeDisplaced: false + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: belle + +- type: marking + id: VulpHairBraided + bodyPart: Hair + markingCategory: Hair + canBeDisplaced: false + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: braided + +- type: marking + id: VulpHairBun + bodyPart: Hair + markingCategory: Hair + canBeDisplaced: false + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: bun + +- type: marking + id: VulpHairCleanCut + bodyPart: Hair + markingCategory: Hair + canBeDisplaced: false + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: clean_cut + +- type: marking + id: VulpHairCurl + bodyPart: Hair + markingCategory: Hair + canBeDisplaced: false + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: curl + +- type: marking + id: VulpHairHawk + bodyPart: Hair + markingCategory: Hair + canBeDisplaced: false + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: hawk + +- type: marking + id: VulpHairJagged + bodyPart: Hair + markingCategory: Hair + canBeDisplaced: false + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: jagged + +- type: marking + id: VulpHairJeremy + bodyPart: Hair + markingCategory: Hair + canBeDisplaced: false + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: jeremy + +- type: marking + id: VulpHairKajam + bodyPart: Hair + markingCategory: Hair + canBeDisplaced: false + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: kajam + +- type: marking + id: VulpHairKeid + bodyPart: Hair + markingCategory: Hair + canBeDisplaced: false + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: keid + +- type: marking + id: VulpHairKleeia + bodyPart: Hair + markingCategory: Hair + canBeDisplaced: false + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: kleeia + +- type: marking + id: VulpHairMizar + bodyPart: Hair + markingCategory: Hair + canBeDisplaced: false + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: mizar + +- type: marking + id: VulpHairPunkBraided + bodyPart: Hair + markingCategory: Hair + canBeDisplaced: false + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: punkbraided + +- type: marking + id: VulpHairRaine + bodyPart: Hair + markingCategory: Hair + canBeDisplaced: false + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: raine + +- type: marking + id: VulpHairRough + bodyPart: Hair + markingCategory: Hair + canBeDisplaced: false + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: rough + +- type: marking + id: VulpHairShort + bodyPart: Hair + markingCategory: Hair + canBeDisplaced: false + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: short + +- type: marking + id: VulpHairShort2 + bodyPart: Hair + markingCategory: Hair + canBeDisplaced: false + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: short2 + +- type: marking + id: VulpHairSpike + bodyPart: Hair + markingCategory: Hair + canBeDisplaced: false + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: spike + +# Facial Hairs +- type: marking + id: VulpFacialHairRuff + bodyPart: FacialHair + markingCategory: FacialHair + speciesRestriction: [ Vulpkanin ] + canBeDisplaced: false + sprites: + - sprite: Mobs/Customization/Vulpkanin/facial_hair.rsi + state: ruff + +- type: marking + id: VulpFacialHairElder + bodyPart: FacialHair + markingCategory: FacialHair + speciesRestriction: [ Vulpkanin ] + canBeDisplaced: false + sprites: + - sprite: Mobs/Customization/Vulpkanin/facial_hair.rsi + state: elder + +- type: marking + id: VulpFacialHairElderChin + bodyPart: FacialHair + markingCategory: FacialHair + speciesRestriction: [ Vulpkanin ] + canBeDisplaced: false + sprites: + - sprite: Mobs/Customization/Vulpkanin/facial_hair.rsi + state: elder_chin + +- type: marking + id: VulpFacialHairKita + bodyPart: FacialHair + markingCategory: FacialHair + speciesRestriction: [ Vulpkanin ] + canBeDisplaced: false + sprites: + - sprite: Mobs/Customization/Vulpkanin/facial_hair.rsi + state: kita + +- type: marking + id: VulpFacialHairGoatee + bodyPart: FacialHair + markingCategory: FacialHair + speciesRestriction: [ Vulpkanin ] + canBeDisplaced: false + sprites: + - sprite: Mobs/Customization/Vulpkanin/facial_hair.rsi + state: goatee diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/Vulpkanin/vulpkanin_head.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/Vulpkanin/vulpkanin_head.yml new file mode 100644 index 0000000000..6fefbe3e4c --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/Vulpkanin/vulpkanin_head.yml @@ -0,0 +1,63 @@ +# Head Markings (Head) +- type: marking + id: VulpHeadBlaze + bodyPart: Head + markingCategory: Head + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/head_markings.rsi + state: blaze + +- type: marking + id: VulpHeadMask + bodyPart: Head + markingCategory: Head + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/head_markings.rsi + state: mask + +- type: marking + id: VulpPatch + bodyPart: Head + markingCategory: Head + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/head_markings.rsi + state: patch + +- type: marking + id: VulpSlash + bodyPart: Head + markingCategory: Head + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/head_markings.rsi + state: slash + +- type: marking + id: VulpStripes1 + bodyPart: Head + markingCategory: Head + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/head_markings.rsi + state: stripes_1 + +- type: marking + id: VulpStripes2 + bodyPart: Head + markingCategory: Head + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/head_markings.rsi + state: stripes_2 + +- type: marking + id: VulpVulpine + bodyPart: Head + markingCategory: Head + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/head_markings.rsi + state: vulpine diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/Vulpkanin/vulpkanin_limbs.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/Vulpkanin/vulpkanin_limbs.yml new file mode 100644 index 0000000000..23d7b0242f --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/Vulpkanin/vulpkanin_limbs.yml @@ -0,0 +1,436 @@ +- type: marking + id: VulpClawsHandLeft + bodyPart: LHand + markingCategory: Arms + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: claws_l_hand + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" + +- type: marking + id: VulpClawsHandRight + bodyPart: RHand + markingCategory: Arms + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: claws_r_hand + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" + +- type: marking + id: VulpClawsFootLeft + bodyPart: LFoot + markingCategory: Legs + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: claws_l_foot + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" + +- type: marking + id: VulpClawsFootRight + bodyPart: RFoot + markingCategory: Legs + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: claws_r_foot + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" + +# Crest + +## Left Side +- type: marking + id: VulpPointsCrestLegLeft + markingCategory: Legs + bodyPart: LLeg + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: crest-leg-l + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" + +- type: marking + id: VulpPointsCrestArmLeft + markingCategory: Arms + bodyPart: LArm + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: crest-arm-l + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" + +- type: marking + id: VulpPointsCrestFootLeft + markingCategory: Legs + bodyPart: LFoot + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: crest-foot-l + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" + +- type: marking + id: VulpPointsCrestHandLeft + markingCategory: Arms + bodyPart: LHand + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: crest-hand-l + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" + +## Right Side + +- type: marking + id: VulpPointsCrestLegRight + markingCategory: Legs + bodyPart: RLeg + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: crest-leg-r + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" + +- type: marking + id: VulpPointsCrestArmRight + markingCategory: Arms + bodyPart: RArm + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: crest-arm-r + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" + +- type: marking + id: VulpPointsCrestFootRight + markingCategory: Legs + bodyPart: RFoot + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: crest-foot-r + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" + +- type: marking + id: VulpPointsCrestHandRight + markingCategory: Arms + bodyPart: RHand + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: crest-hand-r + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" + +# Fade + +## Left Side + +- type: marking + id: VulpPointsFadeLegLeft + markingCategory: Legs + bodyPart: LLeg + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: points_fade-leg-l + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" + +- type: marking + id: VulpPointsFadeArmLeft + markingCategory: Arms + bodyPart: LArm + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: points_fade-arm-l + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" + +- type: marking + id: VulpPointsFadeFootLeft + markingCategory: Legs + bodyPart: LFoot + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: points_fade-foot-l + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" + +- type: marking + id: VulpPointsFadeHandLeft + markingCategory: Arms + bodyPart: LHand + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: points_fade-hand-l + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" + +## Right Side + +- type: marking + id: VulpPointsFadeLegRight + markingCategory: Legs + bodyPart: RLeg + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: points_fade-leg-r + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" + +- type: marking + id: VulpPointsFadeArmRight + markingCategory: Arms + bodyPart: RArm + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: points_fade-arm-r + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" + +- type: marking + id: VulpPointsFadeFootRight + markingCategory: Legs + bodyPart: RFoot + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: points_fade-foot-r + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" + +- type: marking + id: VulpPointsFadeHandRight + markingCategory: Arms + bodyPart: RHand + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: points_fade-hand-r + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" + +# Sharp + +## Left Side + +- type: marking + id: VulpPointsSharpLegLeft + markingCategory: Legs + bodyPart: LLeg + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: points_sharp-leg-l + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" + +- type: marking + id: VulpPointsSharpArmLeft + markingCategory: Arms + bodyPart: LArm + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: points_sharp-arm-l + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" + +- type: marking + id: VulpPointsSharpLongArmLeft + markingCategory: Arms + bodyPart: LArm + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: points_sharp-arm-long-l + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" + +- type: marking + id: VulpPointsSharpFootLeft + markingCategory: Legs + bodyPart: LFoot + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: points_sharp-foot-l + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" + +- type: marking + id: VulpPointsSharpHandLeft + markingCategory: Arms + bodyPart: LHand + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: points_sharp-hand-l + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" + +## Right Side + +- type: marking + id: VulpPointsSharpLegRight + markingCategory: Legs + bodyPart: RLeg + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: points_sharp-leg-r + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" + +- type: marking + id: VulpPointsSharpArmRight + markingCategory: Arms + bodyPart: RArm + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: points_sharp-arm-r + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" + +- type: marking + id: VulpPointsSharpLongArmRight + markingCategory: Arms + bodyPart: RArm + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: points_sharp-arm-long-r + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" + +- type: marking + id: VulpPointsSharpFootRight + markingCategory: Legs + bodyPart: RFoot + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: points_sharp-foot-r + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" + +- type: marking + id: VulpPointsSharpHandRight + markingCategory: Arms + bodyPart: RHand + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: points_sharp-hand-r + coloring: + default: + type: + !type:SimpleColoring + color: "#e5e3d1" \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/Vulpkanin/vulpkanin_snout.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/Vulpkanin/vulpkanin_snout.yml new file mode 100644 index 0000000000..44c494d52d --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/Vulpkanin/vulpkanin_snout.yml @@ -0,0 +1,73 @@ +# Snout Markings + +- type: marking + id: VulpSnout + bodyPart: Snout + markingCategory: Snout + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/snout_markings.rsi + state: snout + +- type: marking + id: VulpSnoutNose + bodyPart: Snout + markingCategory: SnoutCover + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/snout_markings.rsi + state: snout-nose + +- type: marking + id: VulpSnoutVulpine + bodyPart: Snout + markingCategory: SnoutCover + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/snout_markings.rsi + state: vulpine + +- type: marking + id: VulpSnoutVulpineLines + bodyPart: Snout + markingCategory: SnoutCover + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/snout_markings.rsi + state: vulpine-lines + +- type: marking + id: VulpSnoutBlaze + bodyPart: Snout + markingCategory: SnoutCover + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/snout_markings.rsi + state: blaze + +- type: marking + id: VulpSnoutMask + bodyPart: Snout + markingCategory: SnoutCover + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/snout_markings.rsi + state: mask + +- type: marking + id: VulpSnoutTop + bodyPart: Snout + markingCategory: SnoutCover + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/snout_markings.rsi + state: snout-top + +- type: marking + id: VulpSnoutPatch + bodyPart: Snout + markingCategory: SnoutCover + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/snout_markings.rsi + state: patch diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/Vulpkanin/vulpkanin_tail.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/Vulpkanin/vulpkanin_tail.yml new file mode 100644 index 0000000000..238bf88134 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/Vulpkanin/vulpkanin_tail.yml @@ -0,0 +1,68 @@ +# Tail Markings +- type: marking + id: VulpTailFennec + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: fennec + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: fennec-tip + +- type: marking + id: VulpTailFluffy + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: fluffy + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: fluffy-tip + +- type: marking + id: VulpTailHusky + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: husky + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: husky-inner + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: husky-outer + +- type: marking + id: VulpTailLong + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: long + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: long-tip + +- type: marking + id: VulpTailVulp + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: vulp + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: vulp-tip + +- type: marking + id: VulpTailVulpFade + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: vulp + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: vulp-fade \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml index b67eb7631c..fb6f8d4fed 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml @@ -12,6 +12,13 @@ sprites: - sprite: Mobs/Customization/human_hair.rsi state: afro2 +- type: marking + id: HumanHairBaby + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: baby - type: marking id: HumanHairBigafro bodyPart: Hair @@ -54,6 +61,13 @@ sprites: - sprite: Mobs/Customization/human_hair.rsi state: bedheadv3 +- type: marking + id: HumanHairCube + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: cube - type: marking id: HumanHairPulato bodyPart: Hair diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/tattoos.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/tattoos.yml index eaca0d719c..f4b7e2aca2 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/tattoos.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/tattoos.yml @@ -113,8 +113,8 @@ - type: marking id: TattooEyeRight bodyPart: Eyes - markingCategory: Head - speciesRestriction: [Human, SlimePerson, Reptilian, Dwarf] + markingCategory: [Head] + speciesRestriction: [Human, SlimePerson, Reptilian, Dwarf, Vulpkanin] coloring: default: type: @@ -128,7 +128,7 @@ id: TattooEyeLeft bodyPart: Eyes markingCategory: Head - speciesRestriction: [Human, SlimePerson, Reptilian, Dwarf] + speciesRestriction: [Human, SlimePerson, Reptilian, Dwarf, Vulpkanin] coloring: default: type: diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_parts.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_parts.yml index f3c0e5d204..0643c5cbd4 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_parts.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_parts.yml @@ -161,4 +161,34 @@ forcedColoring: true sprites: - sprite: Mobs/Customization/vox_parts.rsi - state: tail_big \ No newline at end of file + state: tail_big + +- type: marking + id: VoxTailSpikes + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Vox] + forcedColoring: true + sprites: + - sprite: Mobs/Customization/vox_parts.rsi + state: tail_spikes + +- type: marking + id: VoxTailDocked + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Vox] + forcedColoring: true + sprites: + - sprite: Mobs/Customization/vox_parts.rsi + state: tail_docked + +- type: marking + id: VoxTailSplit + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Vox] + forcedColoring: true + sprites: + - sprite: Mobs/Customization/vox_parts.rsi + state: tail_split \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_tattoos.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_tattoos.yml index 567c3b2620..cf350da60d 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_tattoos.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_tattoos.yml @@ -56,6 +56,7 @@ - type: marking id: TattooVoxTailRing + # TODO // Looks off on some tails (i.e docked/amputated), if conditionals for markings ever get implemented this needs to be updated to account for those. bodyPart: Tail markingCategory: Overlay speciesRestriction: [Vox] diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml index cb95c231e9..dd6f5a570b 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml @@ -167,7 +167,9 @@ - type: Lock locked: true unlockOnClick: false - - type: ActivatableUIRequiresLock + - type: UIRequiresLock + userInterfaceKeys: + - enum.BorgUiKey.Key - type: LockedWiresPanel - type: Damageable damageContainer: Silicon @@ -351,6 +353,7 @@ - Syndicate - type: ActiveRadio channels: + - Binary - Syndicate - type: ShowSyndicateIcons - type: MovementAlwaysTouching @@ -384,6 +387,44 @@ chance: 1 - type: ShowJobIcons +- type: entity + id: BaseBorgChassisSyndicateDerelict #For assault borg and maybe others in time + parent: BaseBorgChassis # We don't want them to see Nukies or have syndi comms, their database is out of date + abstract: true + components: + - type: SiliconLawProvider + laws: SyndicateStatic #Non-subverted version so they can still be changed + - type: StartIonStormed + ionStormAmount: 3 + - type: IonStormTarget + chance: 1 + - type: ShowJobIcons + - type: NpcFactionMember # They're still syndicate even if they can't listen to the radio or see icons + factions: + - Syndicate + - type: Access + tags: + - NuclearOperative + - SyndicateAgent + - type: AccessReader + access: [ [ "SyndicateAgent" ], [ "NuclearOperative" ] ] + - type: IntrinsicRadioTransmitter # Copy components from base SyndiBorg but without the stuff we don't want + channels: + - Binary #1984 + - type: ActiveRadio + channels: + - Binary + - type: MovementAlwaysTouching + - type: Speech + speechSounds: SyndieBorg + allowedEmotes: + - Laugh + - type: Vocal + sounds: + Unsexed: UnisexSiliconSyndicate + - type: PointLight + color: "#dd200b" + - type: entity parent: BaseBorgChassisNotIonStormable id: BaseXenoborgChassis diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml index 87b8d54a97..1b9fbed3ac 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml @@ -206,7 +206,7 @@ map: ["light"] visible: false - type: BorgChassis - maxModules: 5 # the sixth one broke lol + maxModules: 5 # One less module slot than the regular module to reflect this being a "broken" cyborg. moduleWhitelist: tags: - BorgModuleGeneric @@ -218,4 +218,165 @@ interactSuccessString: petting-success-derelict-cyborg interactFailureString: petting-failure-derelict-cyborg interactSuccessSound: - path: /Audio/Ambience/Objects/periodic_beep.ogg \ No newline at end of file + path: /Audio/Ambience/Objects/periodic_beep.ogg + +- type: entity + parent: BaseBorgChassisDerelict + id: EngineeringBorgChassisDerelict + name: derelict engineer cyborg + description: A man-machine hybrid that assists the engineering department. This one seems to have chunks of strange crystals pockmarking its surface. + components: + - type: Sprite + layers: + - state: engineer_derelict + - state: engineer_e_r + map: ["enum.BorgVisualLayers.Light"] + shader: unshaded + visible: false + - state: engineer_derelict_crystal #This layer and the layer below are duplicated in order to create a more mellow unshaded layer. See https://github.com/space-wizards/space-station-14/pull/37869 for more info on the method. + shader: unshaded + - state: engineer_derelict_crystal + shader: shaded + - state: engineer_l + shader: unshaded + map: ["light"] + visible: false + - type: BorgChassis + maxModules: 5 # One less module slot than the regular module to reflect this being a "broken" cyborg. + moduleWhitelist: + tags: + - BorgModuleGeneric + - BorgModuleEngineering + hasMindState: engineer_e + noMindState: engineer_e_r + +- type: entity + parent: BaseBorgChassisDerelict + id: JanitorBorgChassisDerelict + name: derelict janitor cyborg + description: A man-machine hybrid that assists the service department. It's a bigger mess than anything it can clean up. + components: + - type: Sprite + layers: + - state: janitor_derelict + map: ["movement"] + - state: janitor_e_r + map: ["enum.BorgVisualLayers.Light"] + shader: unshaded + visible: false + - state: janitor_l + shader: unshaded + map: ["light"] + visible: false + - type: SpriteMovement + movementLayers: + movement: + state: janitor_moving_derelict + noMovementLayers: + movement: + state: janitor_derelict + - type: BorgChassis + maxModules: 5 # One less module slot than the regular module to reflect this being a "broken" cyborg. + moduleWhitelist: + tags: + - BorgModuleGeneric + - BorgModuleJanitor + hasMindState: janitor_e + noMindState: janitor_e_r + +- type: entity + parent: BaseBorgChassisDerelict + id: MedicalBorgChassisDerelict + name: derelict medical cyborg + description: A man-machine hybrid that assists the medical department. This one's needles don't look very sanitary. + components: + - type: Sprite + layers: + - state: medical_derelict + map: ["movement"] + - state: medical_e_r + map: ["enum.BorgVisualLayers.Light"] + shader: unshaded + visible: false + - state: medical_l + shader: unshaded + map: ["light"] + visible: false + - type: SpriteMovement + movementLayers: + movement: + state: medical_moving_derelict + noMovementLayers: + movement: + state: medical_derelict + - type: BorgChassis + maxModules: 6 # One less module slot than the regular module to reflect this being a "broken" cyborg. + moduleWhitelist: + tags: + - BorgModuleGeneric + - BorgModuleMedical + hasMindState: medical_e + noMindState: medical_e_r + +- type: entity + parent: BaseBorgChassisDerelict + id: MiningBorgChassisDerelict + name: derelict salvage cyborg + description: A man-machine hybrid that assists the cargo department. This one has seen the wrong side of a gibtonite chunk. + components: + - type: Sprite + layers: + - state: miner_derelict + map: ["movement"] + - state: miner_e_r + map: ["enum.BorgVisualLayers.Light"] + shader: unshaded + visible: false + - state: miner_l + shader: unshaded + map: ["light"] + visible: false + - type: SpriteMovement + movementLayers: + movement: + state: miner_moving_derelict + noMovementLayers: + movement: + state: miner_derelict + - type: BorgChassis + maxModules: 6 # One less module slot than the regular module to reflect this being a "broken" cyborg. + moduleWhitelist: + tags: + - BorgModuleGeneric + - BorgModuleCargo + hasMindState: miner_e + noMindState: miner_e_r + +- type: entity + parent: BaseBorgChassisSyndicateDerelict + id: SyndicateAssaultBorgChassisDerelict + name: derelict syndicate assault cyborg + description: A lean, mean killing machine with access to a variety of deadly modules. This one is more rust-orange than blood-red. + components: + - type: Sprite + layers: + - state: synd_sec_derelict + - state: synd_sec_e + map: ["enum.BorgVisualLayers.Light"] + shader: unshaded + visible: false + - state: synd_sec_l + shader: unshaded + map: ["light"] + visible: false + - type: BorgChassis + maxModules: 3 + moduleWhitelist: # Note - the Derelict Assault Borg does not have a traversal module. This is intentional as Assault Borgs have space traversal with their c20 and free space movement, and they can navigate to the station using the pinpointer. + tags: + - BorgModuleGeneric + - BorgModuleSyndicate + - BorgModuleSyndicateAssault + hasMindState: synd_sec_derelict_e + noMindState: synd_sec_derelict + - type: Construction + node: derelictcyborg diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index da68ee109b..916b91b1f4 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -426,8 +426,6 @@ - !type:GibBehavior recursive: false - type: NonSpreaderZombie - - type: SentienceTarget - flavorKind: station-event-random-sentience-flavor-organic - type: MeleeWeapon soundHit: path: /Audio/Effects/bite.ogg @@ -1220,8 +1218,6 @@ 0: Alive 200: Critical 250: Dead - - type: StaminaResistance - damageCoefficient: 0.40 - type: entity name: kangaroo @@ -1433,6 +1429,7 @@ methods: [ Touch ] effects: - !type:WashCreamPieReaction + - type: Crawler @@ -2319,6 +2316,7 @@ types: Heat : 0.2 #per second, scales with temperature & other constants +# TODO: Make grenade penguin voice activated like the rest of the stealth items. - type: entity name: grenade penguin parent: [ MobPenguin, MobCombat, BaseSyndicateContraband ] @@ -2926,8 +2924,6 @@ amount: 2 - type: ReplacementAccent accent: dog - - type: SentienceTarget - flavorKind: station-event-random-sentience-flavor-corgi - type: Tag tags: - VimPilot diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml b/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml index d2dd761468..909e11e21f 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml @@ -19,7 +19,6 @@ group: GenericNumber - type: StatusEffects allowed: - - Stutter - Electrocution - TemporaryBlindness - RadiationProtection diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml b/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml index ba4c5e3698..eba25717f3 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml @@ -35,7 +35,6 @@ bodyType: KinematicController # Same for all inheritors - type: StatusEffects allowed: - - Stutter - Electrocution - type: Pullable - type: Tag diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml index dcfd6b41fc..ccb5c3aebb 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml @@ -662,6 +662,22 @@ - meaty - sadness +- type: entity + parent: MobHamsterHamlet + id: MobHamsterHamletSlippery + suffix: Slippery + components: + - type: Slippery + - type: StepTrigger + requiredTriggeredSpeed: 1 + - type: TriggerOnStepTrigger + - type: GibOnTrigger + - type: EmitSoundOnTrigger + sound: + path: "/Audio/Animals/mouse_squeak.ogg" + positional: true + predicted: true + - type: entity name: Shiva parent: MobGiantSpider @@ -828,8 +844,6 @@ - type: Item sprite: Mobs/Pets/Smile/smile.rsi size: Huge - - type: SentienceTarget - flavorKind: station-event-random-sentience-flavor-slime - type: MobPrice price: 3000 # it is a truly valuable creature - type: GhostRole diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/scurret.yml b/Resources/Prototypes/Entities/Mobs/NPCs/scurret.yml index 6d328014db..3c19010635 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/scurret.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/scurret.yml @@ -61,6 +61,7 @@ proto: moth - type: InteractionPopup successChance: 0.99 # Imagine not being allowed to headpat a scurret, chat + interactDelay: 2.25 interactSuccessString: petting-success-scurret interactFailureString: petting-failure-scurret interactSuccessSpawn: EffectHearts diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml index 279dbe9f54..fd700d7a4c 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml @@ -15,7 +15,6 @@ bodyType: KinematicController # Same for all inheritors - type: StatusEffects allowed: - - Stutter - Electrocution - type: Repairable doAfterDelay: 8 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml b/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml index 11c0f0d21d..4090138b57 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml @@ -19,7 +19,6 @@ baseSprintSpeed : 4 - type: StatusEffects allowed: - - Stutter - Electrocution - TemporaryBlindness - Pacified @@ -93,7 +92,6 @@ baseDecayRate: 0.04 - type: StatusEffects allowed: - - Stutter - Electrocution - TemporaryBlindness - Pacified diff --git a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml index 6248207a81..7c1bb7ef16 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml @@ -117,7 +117,7 @@ components: - type: Action icon: { sprite: Structures/Machines/parts.rsi, state: box_0 } - iconOn: Structures/Machines/parts.rsi/box_2.png + iconOn: { sprite: Structures/Machines/parts.rsi, state: box_2 } keywords: [ "AI", "console", "interface" ] priority: -10 @@ -138,7 +138,7 @@ components: - type: Action icon: { sprite: Interface/Actions/actions_ai.rsi, state: comms_console } - iconOn: Interface/Actions/actions_ai.rsi/comms_console.png + iconOn: { sprite: Interface/Actions/actions_ai.rsi, state: comms_console } keywords: [ "AI", "console", "interface" ] priority: -4 - type: InstantAction @@ -152,7 +152,7 @@ components: - type: Action icon: { sprite: Interface/Actions/actions_ai.rsi, state: mass_scanner } - iconOn: Interface/Actions/actions_ai.rsi/mass_scanner.png + iconOn: { sprite: Interface/Actions/actions_ai.rsi, state: comms_console } keywords: [ "AI", "console", "interface" ] priority: -6 - type: InstantAction @@ -175,7 +175,7 @@ components: - type: Action icon: { sprite: Interface/Actions/actions_ai.rsi, state: crew_monitor } - iconOn: Interface/Actions/actions_ai.rsi/crew_monitor.png + iconOn: { sprite: Interface/Actions/actions_ai.rsi, state: crew_monitor } keywords: [ "AI", "console", "interface" ] priority: -8 - type: InstantAction @@ -189,7 +189,7 @@ components: - type: Action icon: { sprite: Interface/Actions/actions_ai.rsi, state: station_records } - iconOn: Interface/Actions/actions_ai.rsi/station_records.png + iconOn: { sprite: Interface/Actions/actions_ai.rsi, state: station_records } keywords: [ "AI", "console", "interface" ] priority: -7 - type: InstantAction diff --git a/Resources/Prototypes/Entities/Mobs/Player/changeling.yml b/Resources/Prototypes/Entities/Mobs/Player/changeling.yml new file mode 100644 index 0000000000..d8d4aac742 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Player/changeling.yml @@ -0,0 +1,12 @@ +- type: entity + parent: MobHuman + id: MobLing + name: Urist McLing + suffix: Non-Antag + components: + - type: ChangelingDevour + - type: ChangelingIdentity + - type: ChangelingTransform + - type: ActionGrant + actions: + - ActionRetractableItemArmBlade # Temporary addition, will inevitably be a purchasable in the bio-store diff --git a/Resources/Prototypes/Entities/Mobs/Player/clone.yml b/Resources/Prototypes/Entities/Mobs/Player/clone.yml index 907b694db9..ca100ea110 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/clone.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/clone.yml @@ -16,6 +16,8 @@ # traits - BlackAndWhiteOverlay - Clumsy + - Hemophilia + - ImpairedMobility # - LegsParalyzed (you get healed) - LightweightDrunk - Muted @@ -108,8 +110,10 @@ # that means we only need to copy them over when switching between species. # So these don't need to be part of the Body settings, unless someone makes a trait that adjusts these components. - BodyEmotes + - MessyDrinker # - Fixtures TODO: A better way to clone fixtures or a fixture fix. Currently if you devour someone on the ground and transform, you lose collision with tables as they were knocked down when they were copied. - Speech + - TemperatureProtection - TypingIndicator - ScaleVisuals # for dwarf height eventComponents: @@ -121,6 +125,7 @@ - Rootable # diona - Sericulture # arachnids - MovementSpeedModifier # moths when weightless + - JumpAbility # vulp leaping copyEquipment: null copyInternalStorage: false copyImplants: false diff --git a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml index b6b344d6b5..441751a80b 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml @@ -100,7 +100,6 @@ types: {} - type: StatusEffects # Overwriting basesimplemob to remove flash, getting flashed as dragon just feelsbad allowed: - - Stutter - Electrocution - TemporaryBlindness - Pacified diff --git a/Resources/Prototypes/Entities/Mobs/Player/mothershipcore.yml b/Resources/Prototypes/Entities/Mobs/Player/mothershipcore.yml index 4d729889c2..1d989a462c 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/mothershipcore.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/mothershipcore.yml @@ -77,9 +77,7 @@ gasMixture: volume: 1000 moles: - - 0 # oxygen - - 0 # nitrogen - - 340.5701689 # carbon dioxide + CarbonDioxide: 340.5701689 # carbon dioxide temperature: 373.15 - type: Repairable doAfterDelay: 30 # you can heal the mothership core, but it takes a while @@ -90,6 +88,17 @@ maxIntensity: 100 intensitySlope: 2 totalIntensity: 200 + - type: SurveillanceCameraSpeaker + - type: SurveillanceCameraMonitor + - type: RoboticsConsole + allowBorgControl: false + radioChannel: Xenoborg + - type: DeviceNetwork + deviceNetId: Wireless + receiveFrequencyId: Mothership + transmitFrequencyId: Mothership + - type: WirelessNetworkConnection + range: 10000 # mothership can see them from very far - type: WiresPanel - type: ActivatableUI key: enum.LatheUiKey.Key @@ -101,6 +110,10 @@ requireInputValidation: false enum.RadarConsoleUiKey.Key: type: RadarConsoleBoundUserInterface + enum.RoboticsConsoleUiKey.Key: + type: RoboticsConsoleBoundUserInterface + enum.SurveillanceCameraMonitorUiKey.Key: + type: SurveillanceCameraMonitorBoundUserInterface enum.LatheUiKey.Key: type: LatheBoundUserInterface enum.ResearchClientUiKey.Key: @@ -184,9 +197,38 @@ uis: enum.RadarConsoleUiKey.Key: toggleAction: ActionAGhostShowRadar + enum.RoboticsConsoleUiKey.Key: + toggleAction: ActionXenoborgControlMonitor + enum.SurveillanceCameraMonitorUiKey.Key: + toggleAction: ActionXenoborgCameraMonitor - type: ShowElectrocutionHUD - type: PowerMonitoringCableNetworks - type: RadarConsole -# TODO: add xenoborg control interface action (part 5) -# TODO: add xenoborg camera monitor interface action (part 5) +- type: entity + parent: BaseAGhostAction + id: ActionXenoborgControlMonitor + name: Xenoborgs Control Console + description: View the Xenoborgs Control Console + components: + - type: Action + icon: { sprite: Interface/Actions/actions_borg.rsi, state: xenoborg-basic-module } + iconOn: { sprite: Interface/Actions/actions_borg.rsi, state: xenoborg-basic-module } + keywords: [ "Mothership Core", "console", "interface" ] + priority: -6 + - type: InstantAction + event: !type:ToggleIntrinsicUIEvent { key: enum.RoboticsConsoleUiKey.Key } + +- type: entity + parent: BaseAGhostAction + id: ActionXenoborgCameraMonitor + name: Xenoborgs Camera Monitor + description: View the Xenoborgs Camera Monitor + components: + - type: Action + icon: { sprite: Interface/Actions/actions_borg.rsi, state: xenoborg-eye-module } + iconOn: { sprite: Interface/Actions/actions_borg.rsi, state: xenoborg-eye-module } + keywords: [ "Mothership Core", "console", "interface" ] + priority: -6 + - type: InstantAction + event: !type:ToggleIntrinsicUIEvent { key: enum.SurveillanceCameraMonitorUiKey.Key } diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index 303f7dc676..e18100ab8a 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -170,6 +170,10 @@ - AiHolder suffix: Empty components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: WarpPoint blacklist: tags: @@ -195,6 +199,7 @@ - type: StationAiVision - type: InteractionOutline - type: Sprite + snapCardinals: true sprite: Mobs/Silicon/station_ai.rsi layers: - state: base @@ -383,7 +388,7 @@ borg_module: - BorgModuleOperative - BorgModuleL6C - - BorgModuleEsword + - BorgModuleDoubleEsword - type: ItemSlots slots: cell_slot: @@ -453,8 +458,45 @@ - PlayerBorgSyndicateSaboteurGhostRole - type: entity - id: PlayerBorgDerelict + parent: EngineeringBorgChassisDerelict + id: PlayerEngineeringBorgDerelict + suffix: Battery, Module + components: + - type: ContainerFill + containers: + borg_brain: + - PositronicBrain + borg_module: + - BorgModuleTool + - BorgModuleFireExtinguisher + - BorgModuleConstruction + - BorgModuleRCD + - BorgModuleCable + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + startingItem: PowerCellHigh + - type: RandomMetadata + nameSegments: [NamesBorg] + +- type: entity + parent: PlayerEngineeringBorgDerelict + id: PlayerEngineeringBorgDerelictGhostRole + suffix: Ghost role + components: + - type: GhostRole + name: ghost-role-information-derelict-engineering-cyborg-name + description: ghost-role-information-derelict-engineering-cyborg-description + rules: ghost-role-information-silicon-rules + raffle: + settings: default + reregister: false + - type: GhostTakeoverAvailable + +- type: entity parent: BorgChassisDerelict + id: PlayerBorgDerelict suffix: Battery, Module components: - type: ContainerFill @@ -473,8 +515,8 @@ nameSegments: [NamesBorg] - type: entity - id: PlayerBorgDerelictGhostRole parent: PlayerBorgDerelict + id: PlayerBorgDerelictGhostRole suffix: Ghost role components: - type: GhostRole @@ -483,4 +525,149 @@ rules: ghost-role-information-silicon-rules raffle: settings: default + reregister: false - type: GhostTakeoverAvailable + +- type: entity + parent: JanitorBorgChassisDerelict + id: PlayerJanitorBorgDerelict + suffix: Battery, Module + components: + - type: ContainerFill + containers: + borg_brain: + - PositronicBrain + borg_module: + - BorgModuleTool + - BorgModuleFireExtinguisher + - BorgModuleCleaning + - BorgModuleCustodial + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + startingItem: PowerCellHigh + - type: RandomMetadata + nameSegments: [NamesBorg] + +- type: entity + parent: PlayerJanitorBorgDerelict + id: PlayerJanitorBorgDerelictGhostRole + suffix: Ghost role + components: + - type: GhostRole + name: ghost-role-information-derelict-janitor-cyborg-name + description: ghost-role-information-derelict-janitor-cyborg-description + rules: ghost-role-information-silicon-rules + raffle: + settings: default + reregister: false + - type: GhostTakeoverAvailable + +- type: entity + parent: MedicalBorgChassisDerelict + id: PlayerMedicalBorgDerelict + suffix: Battery, Module + components: + - type: ContainerFill + containers: + borg_brain: + - PositronicBrain + borg_module: + - BorgModuleTool + - BorgModuleFireExtinguisher + - BorgModuleChemical + - BorgModuleTopicals + - BorgModuleRescue + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + startingItem: PowerCellHigh + - type: RandomMetadata + nameSegments: [NamesBorg] + +- type: entity + parent: PlayerMedicalBorgDerelict + id: PlayerMedicalBorgDerelictGhostRole + suffix: Ghost role + components: + - type: GhostRole + name: ghost-role-information-derelict-medical-cyborg-name + description: ghost-role-information-derelict-medical-cyborg-description + rules: ghost-role-information-silicon-rules + raffle: + settings: default + reregister: false + - type: GhostTakeoverAvailable + +- type: entity + parent: MiningBorgChassisDerelict + id: PlayerMiningBorgDerelict + suffix: Battery, Module + components: + - type: ContainerFill + containers: + borg_brain: + - PositronicBrain + borg_module: + - BorgModuleTool #No fire extinguisher, traversal is better + - BorgModuleMining + - BorgModuleTraversal + - BorgModuleAppraisal + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + startingItem: PowerCellHigh + - type: RandomMetadata + nameSegments: [NamesBorg] + +- type: entity + parent: PlayerMiningBorgDerelict + id: PlayerMiningBorgDerelictGhostRole + suffix: Ghost role + components: + - type: GhostRole + name: ghost-role-information-derelict-mining-cyborg-name + description: ghost-role-information-derelict-mining-cyborg-description + rules: ghost-role-information-silicon-rules + raffle: + settings: default + reregister: false + - type: GhostTakeoverAvailable + +- type: entity + parent: SyndicateAssaultBorgChassisDerelict + id: PlayerSyndicateAssaultBorgDerelict + suffix: Battery, Module + components: + - type: ContainerFill + containers: + borg_brain: + - PositronicBrain + borg_module: + - BorgModuleOperative + - BorgModuleC20r + - BorgModuleEsword + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + startingItem: PowerCellHyper + - type: RandomMetadata + nameSegments: [NamesDeathCommando] + +- type: entity + parent: PlayerSyndicateAssaultBorgDerelict + id: PlayerBorgSyndicateDerelictGhostRole + suffix: Ghost role + components: + - type: GhostRole + name: ghost-role-information-derelict-syndicate-assault-cyborg-name + description: ghost-role-information-derelict-syndicate-assault-cyborg-description + rules: ghost-role-information-silicon-rules + raffle: + settings: default + reregister: false + - type: GhostTakeoverAvailable diff --git a/Resources/Prototypes/Entities/Mobs/Player/vulpkanin.yml b/Resources/Prototypes/Entities/Mobs/Player/vulpkanin.yml new file mode 100644 index 0000000000..52a839dd4a --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Player/vulpkanin.yml @@ -0,0 +1,5 @@ +- type: entity + save: false + name: Urist McBark + parent: BaseMobVulpkanin + id: MobVulpkanin diff --git a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml index 110e6513da..92d118cb26 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml @@ -95,6 +95,7 @@ - map: [ "enum.HumanoidVisualLayers.Tail" ] # Mentioned in moth code: This needs renaming lol. - map: [ "back" ] - map: [ "neck" ] + - map: [ "enum.HumanoidVisualLayers.SnoutCover" ] - map: [ "enum.HumanoidVisualLayers.FacialHair" ] - map: [ "enum.HumanoidVisualLayers.Hair" ] # Do these need to be here? (arachnid hair arachnid hair) - map: [ "enum.HumanoidVisualLayers.HeadSide" ] @@ -127,7 +128,7 @@ - type: HumanoidAppearance species: Arachnid - type: Inventory - speciesId: arachnid + speciesId: arachnid #>88w88< diff --git a/Resources/Prototypes/Entities/Mobs/Species/base.yml b/Resources/Prototypes/Entities/Mobs/Species/base.yml index 8fcaef42b9..d4fecee2ca 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/base.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/base.yml @@ -35,6 +35,7 @@ - map: [ "outerClothing" ] - map: [ "back" ] - map: [ "neck" ] + - map: [ "enum.HumanoidVisualLayers.SnoutCover" ] - map: [ "enum.HumanoidVisualLayers.FacialHair" ] - map: [ "enum.HumanoidVisualLayers.Hair" ] - map: [ "enum.HumanoidVisualLayers.HeadSide" ] @@ -120,10 +121,7 @@ - !type:WashCreamPieReaction - type: StatusEffects allowed: - - Stutter - Electrocution - - Drunk - - SlurredSpeech - RatvarianLanguage - PressureImmunity - Muted @@ -163,6 +161,7 @@ - type: SleepEmitSound - type: SSDIndicator - type: StandingState + - type: Crawler - type: Dna - type: MindContainer showExamineInfo: true @@ -324,6 +323,7 @@ - map: [ "outerClothing" ] - map: [ "back" ] - map: [ "neck" ] + - map: [ "enum.HumanoidVisualLayers.SnoutCover" ] - map: [ "enum.HumanoidVisualLayers.FacialHair" ] - map: [ "enum.HumanoidVisualLayers.Hair" ] - map: [ "enum.HumanoidVisualLayers.HeadSide" ] diff --git a/Resources/Prototypes/Entities/Mobs/Species/moth.yml b/Resources/Prototypes/Entities/Mobs/Species/moth.yml index 54ad2d0f47..9503c2f56d 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/moth.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/moth.yml @@ -54,7 +54,7 @@ - type: Flammable damage: types: - Heat: 4.5 # moths burn more easily + Heat: 2.5 # moths burn more easily - type: Temperature # Moths hate the heat and thrive in the cold. heatDamageThreshold: 320 coldDamageThreshold: 230 @@ -105,6 +105,7 @@ - map: [ "enum.HumanoidVisualLayers.Tail" ] #in the utopian future we should probably have a wings enum inserted here so everyhting doesn't break - map: [ "back" ] - map: [ "neck" ] + - map: [ "enum.HumanoidVisualLayers.SnoutCover" ] - map: [ "enum.HumanoidVisualLayers.FacialHair" ] - map: [ "enum.HumanoidVisualLayers.Hair" ] - map: [ "enum.HumanoidVisualLayers.HeadSide" ] diff --git a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml index 1d9737dd47..67d0cfba80 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml @@ -11,6 +11,7 @@ - Snout - HeadTop - HeadSide + - Tail undergarmentBottom: UndergarmentBottomBoxersReptilian - type: Hunger - type: Puller @@ -77,7 +78,27 @@ 32: sprite: Mobs/Species/Human/displacement.rsi state: jumpsuit-female - + head: + sizeMaps: + 32: + sprite: Mobs/Species/Reptilian/displacement.rsi + state: head + mask: + sizeMaps: + 32: + sprite: Mobs/Species/Reptilian/displacement.rsi + state: mask + displacements: + head: + sizeMaps: + 32: + sprite: Mobs/Species/Reptilian/displacement.rsi + state: head + mask: + sizeMaps: + 32: + sprite: Mobs/Species/Reptilian/displacement.rsi + state: mask - type: entity parent: BaseSpeciesDummy @@ -98,7 +119,28 @@ jumpsuit: sizeMaps: 32: - sprite: Mobs/Species/Human/displacement.rsi + sprite: Mobs/Species/Reptilian/displacement.rsi state: jumpsuit-female + head: + sizeMaps: + 32: + sprite: Mobs/Species/Reptilian/displacement.rsi + state: head + mask: + sizeMaps: + 32: + sprite: Mobs/Species/Reptilian/displacement.rsi + state: mask + displacements: + head: + sizeMaps: + 32: + sprite: Mobs/Species/Reptilian/displacement.rsi + state: head + mask: + sizeMaps: + 32: + sprite: Mobs/Species/Reptilian/displacement.rsi + state: mask #Weh diff --git a/Resources/Prototypes/Entities/Mobs/Species/vox.yml b/Resources/Prototypes/Entities/Mobs/Species/vox.yml index fa22736179..b49d0fb409 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/vox.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/vox.yml @@ -86,6 +86,7 @@ - map: [ "back" ] - map: [ "neck" ] - map: [ "suitstorage" ] # This is not in the default order + - map: [ "enum.HumanoidVisualLayers.SnoutCover" ] - map: [ "enum.HumanoidVisualLayers.FacialHair" ] - map: [ "enum.HumanoidVisualLayers.Hair" ] - map: [ "enum.HumanoidVisualLayers.HeadSide" ] diff --git a/Resources/Prototypes/Entities/Mobs/Species/vulpkanin.yml b/Resources/Prototypes/Entities/Mobs/Species/vulpkanin.yml new file mode 100644 index 0000000000..2a44c70270 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Species/vulpkanin.yml @@ -0,0 +1,241 @@ +- type: entity + abstract: true + save: false + parent: [BaseMobSpeciesOrganic] + id: BaseMobVulpkanin + name: Urist McBark + components: + - type: Hunger + - type: Thirst + - type: MessyDrinker + spillChance: 0.33 + - type: Icon + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: full + - type: Body + prototype: Vulpkanin + - type: Speech + speechSounds: Vulpkanin + speechVerb: Vulpkanin + allowedEmotes: [ 'Bark', 'Snarl', 'Whine', 'Howl', 'Growl' ] + - type: Vocal + sounds: + Male: MaleVulpkanin + Female: FemaleVulpkanin + Unsexed: MaleVulpkanin + - type: Damageable + damageModifierSet: Vulpkanin + - type: MeleeWeapon + soundHit: + path: /Audio/Weapons/pierce.ogg + animation: WeaponArcClaw + damage: + types: + Piercing: 2 + Slash: 3 + - type: Temperature # Same as moth temperatures until below is solved. + heatDamageThreshold: 320 # TODO: 315 when there is a way to make the temperature alert not blink to the side of the screen and disappear when you "sweat" at 39C. + coldDamageThreshold: 230 # TODO: 220 when the above is solved. + specificHeat: 44 + coldDamage: + types: + Cold: 0.05 # Per second, scales with temperature & other constants + heatDamage: + types: + Heat: 2.5 # Per second, scales with temperature & other constants + # - type: Wagging TODO: Add back once we have animated tails again. Were removed due to the sprite rework, causing all of them to not fit anymore. + # action: ActionToggleWaggingVulpkanin + - type: TemperatureProtection + heatingCoefficient: 1.2 + coolingCoefficient: 0.3 + - type: JumpAbility + action: ActionVulpkaninGravityJump + canCollide: true + jumpDistance: 3 + jumpSound: + path: /Audio/Weapons/punchmiss.ogg + params: + pitch: 1.33 + volume: -5 + variation: 0.05 + - type: InteractionPopup # Crucial detail. + successChance: 1 + interactSuccessString: petting-success-soft-floofy-vulp + messagePerceivedByOthers: petting-success-soft-floofy-vulp-others + interactFailureString: petting-failure-generic + - type: Sprite # Drawlayers. Top to bottom in order I believe. + netsync: false + layers: + - map: [ "enum.HumanoidVisualLayers.Chest" ] + - map: [ "enum.HumanoidVisualLayers.Head" ] + - map: [ "enum.HumanoidVisualLayers.Snout" ] + - map: [ "enum.HumanoidVisualLayers.Eyes" ] + - map: [ "enum.HumanoidVisualLayers.RArm" ] + - map: [ "enum.HumanoidVisualLayers.LArm" ] + - map: [ "enum.HumanoidVisualLayers.RLeg" ] + - map: [ "enum.HumanoidVisualLayers.LLeg" ] + - map: [ "enum.HumanoidVisualLayers.UndergarmentBottom" ] + - map: [ "enum.HumanoidVisualLayers.UndergarmentTop" ] + - map: [ "jumpsuit" ] + - map: [ "enum.HumanoidVisualLayers.LHand" ] + - map: [ "enum.HumanoidVisualLayers.RHand" ] + - map: [ "enum.HumanoidVisualLayers.LFoot" ] + - map: [ "enum.HumanoidVisualLayers.RFoot" ] + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - map: [ "id" ] + - map: [ "gloves" ] + - map: [ "shoes" ] + - map: [ "ears" ] + - map: [ "outerClothing" ] + - map: [ "eyes" ] + - map: [ "belt" ] + - map: [ "neck" ] + - map: [ "back" ] + - map: [ "enum.HumanoidVisualLayers.SnoutCover" ] + - map: [ "enum.HumanoidVisualLayers.FacialHair" ] + - map: [ "enum.HumanoidVisualLayers.Hair" ] + - map: [ "enum.HumanoidVisualLayers.HeadSide" ] + - map: [ "enum.HumanoidVisualLayers.HeadTop" ] + - map: [ "enum.HumanoidVisualLayers.Tail" ] + - map: [ "mask" ] + - map: [ "head" ] + - map: [ "pocket1" ] + - map: [ "pocket2" ] + - map: [ "clownedon" ] + sprite: "Effects/creampie.rsi" + state: "creampie_vulpkanin" + visible: false + - type: HumanoidAppearance + species: Vulpkanin + hideLayersOnEquip: + - Snout + - SnoutCover + - HeadTop + - HeadSide + - FacialHair + markingsDisplacement: + Hair: + sizeMaps: + 32: + sprite: Mobs/Species/Vulpkanin/displacement.rsi + state: hair + - type: Inventory + speciesId: vulpkanin + displacements: + jumpsuit: + sizeMaps: + 32: + sprite: Mobs/Species/Vulpkanin/displacement.rsi + state: jumpsuit + back: + sizeMaps: + 32: + sprite: Mobs/Species/Vulpkanin/displacement.rsi + state: back + outerClothing: + sizeMaps: + 32: + sprite: Mobs/Species/Vulpkanin/displacement.rsi + state: outerwear + gloves: + sizeMaps: + 32: + sprite: Mobs/Species/Vulpkanin/displacement.rsi + state: hand + shoes: + sizeMaps: + 32: + sprite: Mobs/Species/Vulpkanin/displacement.rsi + state: shoes + head: + sizeMaps: + 32: + sprite: Mobs/Species/Vulpkanin/displacement.rsi + state: head + neck: + sizeMaps: + 32: + sprite: Mobs/Species/Vulpkanin/displacement.rsi + state: neck + eyes: + sizeMaps: + 32: + sprite: Mobs/Species/Vulpkanin/displacement.rsi + state: eyes + belt: + sizeMaps: + 32: + sprite: Mobs/Species/Vulpkanin/displacement.rsi + state: belt + +- type: entity + parent: [BaseSpeciesDummy] + id: MobVulpkaninDummy + name: Vulpkanin Dummy + categories: [ HideSpawnMenu ] + description: A dummy Vulpkanin meant to be used in character setup. + components: + - type: HumanoidAppearance + species: Vulpkanin + hideLayersOnEquip: + - Snout + - HeadTop + - HeadSide + markingsDisplacement: + Hair: + sizeMaps: + 32: + sprite: Mobs/Species/Vulpkanin/displacement.rsi + state: hair + - type: Inventory + speciesId: vulpkanin + displacements: + jumpsuit: + sizeMaps: + 32: + sprite: Mobs/Species/Vulpkanin/displacement.rsi + state: jumpsuit + back: + sizeMaps: + 32: + sprite: Mobs/Species/Vulpkanin/displacement.rsi + state: back + outerClothing: + sizeMaps: + 32: + sprite: Mobs/Species/Vulpkanin/displacement.rsi + state: outerwear + gloves: + sizeMaps: + 32: + sprite: Mobs/Species/Vulpkanin/displacement.rsi + state: hand + shoes: + sizeMaps: + 32: + sprite: Mobs/Species/Vulpkanin/displacement.rsi + state: shoes + head: + sizeMaps: + 32: + sprite: Mobs/Species/Vulpkanin/displacement.rsi + state: head + neck: + sizeMaps: + 32: + sprite: Mobs/Species/Vulpkanin/displacement.rsi + state: neck + eyes: + sizeMaps: + 32: + sprite: Mobs/Species/Vulpkanin/displacement.rsi + state: eyes + belt: + sizeMaps: + 32: + sprite: Mobs/Species/Vulpkanin/displacement.rsi + state: belt diff --git a/Resources/Prototypes/Entities/Mobs/base.yml b/Resources/Prototypes/Entities/Mobs/base.yml index cfd9c13631..a0b2da3975 100644 --- a/Resources/Prototypes/Entities/Mobs/base.yml +++ b/Resources/Prototypes/Entities/Mobs/base.yml @@ -9,6 +9,7 @@ noRot: true drawdepth: Mobs - type: MobCollision + - type: GravityAffected - type: Physics bodyType: KinematicController - type: Fixtures @@ -84,6 +85,21 @@ - !type:PlaySoundBehavior sound: collection: MeatLaserImpact + - trigger: + !type:DamageTypeTrigger + damageType: Radiation + damage: 15 + behaviors: + - !type:PopupBehavior + popup: mouth-taste-metal + popupType: LargeCaution + targetOnly: true + - trigger: + !type:DamageTypeTrigger + damageType: Radiation + damage: 40 + behaviors: + - !type:VomitBehavior - type: RadiationReceiver - type: Stamina - type: MobState diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml index 6d17f4fbbb..1d50d62f31 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml @@ -127,6 +127,20 @@ - state: custburg-filling color: red - state: custburg-top + - type: Item + inhandVisuals: + left: + - state: bun-inhand-left + - state: alpha-patty-inhand-left + color: "#f70000" + - state: alpha-filling-inhand-left + color: "#f70000" + right: + - state: bun-inhand-right + - state: alpha-patty-inhand-right + color: "#f70000" + - state: alpha-filling-inhand-right + color: "#f70000" # Burger @@ -156,6 +170,20 @@ - type: Tag tags: - Meat + - type: Item + inhandVisuals: + left: + - state: bun-inhand-left + - state: alpha-patty-inhand-left + color: "#382010" + - state: alpha-filling-inhand-left + color: "#bd9451" + right: + - state: bun-inhand-right + - state: alpha-patty-inhand-right + color: "#382010" + - state: alpha-filling-inhand-right + color: "#bd9451" # Tastes like bun, grass. - type: entity @@ -182,6 +210,20 @@ - type: Tag tags: - Meat + - type: Item + inhandVisuals: + left: + - state: bun-inhand-left + - state: alpha-patty-inhand-left + color: "#b37659" + - state: alpha-filling-inhand-left + color: "#e8634f" + right: + - state: bun-inhand-right + - state: alpha-patty-inhand-right + color: "#b37659" + - state: alpha-filling-inhand-right + color: "#e8634f" # Tastes like bun, bacon. - type: entity @@ -210,6 +252,16 @@ - type: Tag tags: - Meat + - type: Item + inhandVisuals: + left: + - state: alpha-bun-inhand-left + color: "#f7f7f7" + - state: burger-inhand-left + right: + - state: alpha-bun-inhand-right + color: "#f7f7f7" + - state: burger-inhand-right - type: entity name: bearger @@ -237,6 +289,12 @@ - type: Tag tags: - Meat + - type: Item + inhandVisuals: + left: + - state: bear-inhand-left + right: + - state: bear-inhand-right - type: entity name: big bite burger @@ -265,6 +323,12 @@ - type: Tag tags: - Meat + - type: Item + inhandVisuals: + left: + - state: burger-big-inhand-left + right: + - state: burger-big-inhand-right # Tastes like bun, silver, magic. - type: entity @@ -293,6 +357,12 @@ - type: Tag tags: - Meat + - type: Item + inhandVisuals: + left: + - state: brain-inhand-left + right: + - state: brain-inhand-right # Tastes like bun, brains. - type: entity @@ -322,6 +392,14 @@ - type: Tag tags: - Meat + - type: Item + inhandVisuals: + left: + - state: cat-inhand-left + - state: plain-inhand-left + right: + - state: cat-inhand-right + - state: plain-inhand-right - type: entity name: cheese burger @@ -350,6 +428,12 @@ - type: Tag tags: - Meat + - type: Item + inhandVisuals: + left: + - state: plain-inhand-left + right: + - state: plain-inhand-right # TODO: Make this work. # - type: Sprite # state: plate @@ -388,6 +472,20 @@ - type: Tag tags: - Meat + - type: Item + inhandVisuals: + left: + - state: bun-inhand-left + - state: alpha-filling-inhand-left + color: "#98d966" + - state: alpha-patty-inhand-left + color: "#f7b125" + right: + - state: bun-inhand-right + - state: alpha-filling-inhand-right + color: "#98d966" + - state: alpha-patty-inhand-right + color: "#f7b125" # Tastes like bun, chicken. - type: entity @@ -416,6 +514,12 @@ - type: Tag tags: - Meat + - type: Item + inhandVisuals: + left: + - state: clown-inhand-left + right: + - state: clown-inhand-right - type: entity name: corger #not curger @@ -441,6 +545,12 @@ - type: Tag tags: - Meat + - type: Item + inhandVisuals: + left: + - state: dog-inhand-left + right: + - state: dog-inhand-right - type: entity name: crab burger @@ -468,6 +578,20 @@ - type: Tag tags: - Meat + - type: Item + inhandVisuals: + left: + - state: bun-inhand-left + - state: alpha-filling-inhand-left + color: "#7e1a07" + - state: alpha-patty-inhand-left + color: "#7e1a07" + right: + - state: bun-inhand-right + - state: alpha-filling-inhand-right + color: "#7e1a07" + - state: alpha-patty-inhand-right + color: "#7e1a07" - type: entity name: crazy hamburger # Burger for you euro-cucks @@ -501,6 +625,12 @@ - type: Tag tags: - Meat + - type: Item + inhandVisuals: + left: + - state: crazy-inhand-left + right: + - state: crazy-inhand-right - type: entity name: duck sandwich # Burger for you sick bastards @@ -526,6 +656,20 @@ - type: Tag tags: - Meat + - type: Item + inhandVisuals: + left: + - state: bun-inhand-left + - state: alpha-filling-inhand-left + color: "#98d966" + - state: alpha-patty-inhand-left + color: "#e8b348" + right: + - state: bun-inhand-right + - state: alpha-filling-inhand-right + color: "#98d966" + - state: alpha-patty-inhand-right + color: "#e8b348" # Tastes like bun, duck. - type: entity @@ -549,6 +693,12 @@ Quantity: 8 - ReagentId: Licoxide Quantity: 5 + - type: Item + inhandVisuals: + left: + - state: plasma-inhand-left + right: + - state: plasma-inhand-right # Tastes like bun, pure electricity. - type: entity @@ -566,6 +716,20 @@ - type: Tag tags: - Meat + - type: Item + inhandVisuals: + left: + - state: bun-inhand-left + - state: alpha-filling-inhand-left + color: "#feffba" + - state: alpha-patty-inhand-left + color: "#f4bb53" + right: + - state: bun-inhand-right + - state: alpha-filling-inhand-right + color: "#feffba" + - state: alpha-patty-inhand-right + color: "#f4bb53" # Tastes like bun, fish. - type: entity @@ -598,6 +762,12 @@ - type: Tag tags: - Meat + - type: Item + inhandVisuals: + left: + - state: plain-inhand-left + right: + - state: plain-inhand-right # Tastes like bun, HEAT. @@ -626,6 +796,22 @@ tags: - ClothMade - Meat + - type: Item + inhandVisuals: + left: + - state: alpha-bun-inhand-left + color: "#cededa" + - state: alpha-filling-inhand-left + color: "#6a6281" + - state: alpha-patty-inhand-left + color: "#95a79f" + right: + - state: alpha-bun-inhand-right + color: "#cededa" + - state: alpha-filling-inhand-right + color: "#6a6281" + - state: alpha-patty-inhand-right + color: "#95a79f" # Tastes like bun, ectoplasm. - type: entity @@ -654,6 +840,12 @@ - type: Tag tags: - Meat + - type: Item + inhandVisuals: + left: + - state: plain-inhand-left + right: + - state: plain-inhand-right - type: entity name: McGuffin @@ -681,6 +873,20 @@ - type: Tag tags: - Meat + - type: Item + inhandVisuals: + left: + - state: bun-inhand-left + - state: alpha-filling-inhand-left + color: "#f2efce" + - state: alpha-patty-inhand-left + color: "#e3756d" + right: + - state: bun-inhand-right + - state: alpha-filling-inhand-right + color: "#f2efce" + - state: alpha-patty-inhand-right + color: "#e3756d" - type: entity name: BBQ Rib Sandwich @@ -713,6 +919,20 @@ - type: Tag tags: - Meat + - type: Item + inhandVisuals: + left: + - state: bun-inhand-left + - state: alpha-filling-inhand-left + color: "#899660" + - state: alpha-patty-inhand-left + color: "#a94a31" + right: + - state: bun-inhand-right + - state: alpha-filling-inhand-right + color: "#899660" + - state: alpha-patty-inhand-right + color: "#a94a31" # Tastes like bun, pork patty. - type: entity @@ -740,6 +960,12 @@ Quantity: 4 - ReagentId: Nothing Quantity: 1 + - type: Item + inhandVisuals: + left: + - state: mime-inhand-left + right: + - state: mime-inhand-right # Tastes like . - type: entity @@ -768,6 +994,12 @@ - type: Tag tags: - Meat + - type: Item + inhandVisuals: + left: + - state: plain-inhand-left + right: + - state: plain-inhand-right - type: entity name: rat burger @@ -795,6 +1027,15 @@ - type: Tag tags: - Meat + - type: Item + inhandVisuals: + left: + - state: bun-inhand-left + - state: rat-inhand-left + right: + - state: bun-inhand-right + - state: rat-inhand-right + # Tastes like bun, HEAT. - type: entity @@ -822,6 +1063,22 @@ - type: Tag tags: - Meat + - type: Item + inhandVisuals: + left: + - state: alpha-bun-inhand-left + color: "#7f7f7f" + - state: alpha-patty-inhand-left + color: "#c0c0c0" + - state: alpha-filling-inhand-left + color: "#141414" + right: + - state: alpha-bun-inhand-right + color: "#7f7f7f" + - state: alpha-patty-inhand-right + color: "#c0c0c0" + - state: alpha-filling-inhand-right + color: "#141414" # Tastes like bun, lettuce, sludge. - type: entity @@ -845,6 +1102,20 @@ Quantity: 13 - ReagentId: Vitamin Quantity: 5 + - type: Item + inhandVisuals: + left: + - state: bun-inhand-left + - state: alpha-patty-inhand-left + color: "#91d90b" + - state: alpha-filling-inhand-left + color: "#91d90b" + right: + - state: bun-inhand-right + - state: alpha-patty-inhand-right + color: "#91d90b" + - state: alpha-filling-inhand-right + color: "#91d90b" # Tastes like bun, redditors. - type: entity @@ -870,6 +1141,12 @@ Quantity: 5 - ReagentId: Vitamin Quantity: 10 + - type: Item + inhandVisuals: + left: + - state: spell-inhand-left + right: + - state: spell-inhand-right # Tastes like bun, silver. - type: entity @@ -901,6 +1178,12 @@ - type: Tag tags: - Meat + - type: Item + inhandVisuals: + left: + - state: burger-super-inhand-left + right: + - state: burger-super-inhand-right # Tastes like bun, diabetes. - type: entity @@ -924,6 +1207,20 @@ Quantity: 8 - ReagentId: Protein Quantity: 3 + - type: Item + inhandVisuals: + left: + - state: bun-inhand-left + - state: alpha-patty-inhand-left + color: "#f0d8a1" + - state: alpha-filling-inhand-left + color: "#e5ad29" + right: + - state: bun-inhand-right + - state: alpha-patty-inhand-right + color: "#f0d8a1" + - state: alpha-filling-inhand-right + color: "#e5ad29" # Tastes like bun, tofu. - type: entity @@ -953,6 +1250,20 @@ - type: Tag tags: - Meat + - type: Item + inhandVisuals: + left: + - state: bun-inhand-left + - state: alpha-patty-inhand-left + color: "#00cc33" + - state: alpha-filling-inhand-left + color: "#9900cc" + right: + - state: bun-inhand-right + - state: alpha-patty-inhand-right + color: "#00cc33" + - state: alpha-filling-inhand-right + color: "#9900cc" # Tastes like bun, acid. # Note: I would put a bunch of colored burgers here as listed in the tg .dm but @@ -985,4 +1296,10 @@ - type: Tag tags: - Meat + - type: Item + inhandVisuals: + left: + - state: mothroach-inhand-left + right: + - state: mothroach-inhand-right diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml index 3841dc06b0..551ea802ca 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml @@ -443,6 +443,7 @@ - Trash - BananaPeel - Ruminant + - WhitelistChameleon - HamsterWearable - type: SolutionContainerManager @@ -459,7 +460,7 @@ requiresSpecialDigestion: true - type: Clothing sprite: Objects/Specific/Hydroponics/banana.rsi - equippedState: peel-equipped-HELMET + equippedPrefix: peel slots: - HEAD quickEquip: false @@ -471,7 +472,7 @@ components: - type: Clothing sprite: Objects/Specific/Hydroponics/banana.rsi - equippedState: baked-peel-equipped-HELMET + equippedPrefix: baked-peel - type: Sprite sprite: Objects/Specific/Hydroponics/banana.rsi state: baked-peel @@ -502,7 +503,7 @@ heldPrefix: peel - type: Clothing sprite: Objects/Specific/Hydroponics/mimana.rsi - equippedState: equipped-HELMET + equippedPrefix: peel - type: Slippery slipSound: path: /Audio/Effects/slip.ogg @@ -523,7 +524,7 @@ - type: Slippery - type: Clothing sprite: Objects/Materials/materials.rsi - equippedState: peel-equipped-HELMET + equippedPrefix: peel - type: entity name: carrot diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/taco.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/taco.yml index d715704770..d680d16765 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/taco.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/taco.yml @@ -132,7 +132,7 @@ name: beef taco supreme parent: FoodTacoBase id: FoodTacoBeefSupreme - description: It's like a regular beef taco, but surpeme! + description: It's like a regular beef taco, but supreme! components: - type: Food - type: Sprite @@ -151,7 +151,7 @@ name: chicken taco supreme parent: FoodTacoBase id: FoodTacoChickenSupreme - description: It's like a regular chicken taco, but surpeme! + description: It's like a regular chicken taco, but supreme! components: - type: Food - type: Sprite diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/base_machineboard.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/base_machineboard.yml index 360fc5ffaa..eb202e6345 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/base_machineboard.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/base_machineboard.yml @@ -18,4 +18,5 @@ Glass: 230 chemicalComposition: Silicon: 20 + - type: Circuitboard diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml index f645539035..eec282acda 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml @@ -1131,6 +1131,20 @@ Cable: 2 Glass: 1 +- type: entity + parent: BaseMachineCircuitboard + id: SurveillanceCameraWirelessRouterXenoborgCircuitboard + name: xenoborg camera wireless router + description: A machine printed circuit board for a xenoborg camera wireless router. + components: + - type: Sprite + state: generic + - type: MachineBoard + prototype: SurveillanceCameraWirelessRouterXenoborg + stackRequirements: + Cable: 2 + Glass: 1 + - type: entity id: SurveillanceWirelessCameraMovableCircuitboard parent: BaseMachineCircuitboard diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/turrets.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/turrets.yml index d9d8a848c3..d9bb861171 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/turrets.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/turrets.yml @@ -31,7 +31,7 @@ components: - type: Sprite sprite: Objects/Misc/module.rsi - state: command + state: science - type: MachineBoard prototype: WeaponEnergyTurretAI @@ -45,4 +45,15 @@ state: security - type: MachineBoard prototype: WeaponEnergyTurretSecurity + +- type: entity + parent: WeaponEnergyTurretStationMachineCircuitboardBase + id: WeaponEnergyTurretCommandMachineCircuitboard + suffix: Command + components: + - type: Sprite + sprite: Objects/Misc/module.rsi + state: command + - type: MachineBoard + prototype: WeaponEnergyTurretCommand diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml index 8f2c7f0103..459030d8a9 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml @@ -17,6 +17,7 @@ Glass: 230 chemicalComposition: Silicon: 20 + - type: Circuitboard - type: entity parent: BaseComputerCircuitboard @@ -259,6 +260,17 @@ state: cpu_service - type: ComputerBoard prototype: ComputerSurveillanceWirelessCameraMonitor + +- type: entity + parent: BaseComputerCircuitboard + id: XenoborgCameraMonitorCircuitboard + name: xenoborg camera monitor board + description: A computer printed circuit board for a xenoborg camera monitor. + components: + - type: Sprite + state: cpu_science + - type: ComputerBoard + prototype: ComputerSurveillanceWirelessXenoborgCameraMonitor - type: entity parent: BaseComputerCircuitboard @@ -527,6 +539,17 @@ - type: ComputerBoard prototype: ComputerRoboticsControl +- type: entity + parent: BaseComputerCircuitboard + id: ComputerXenoborgsControlCircuitboard + name: xenoborg control console board + description: A computer printed circuit board for a xenoborg control console. + components: + - type: Sprite + state: cpu_science + - type: ComputerBoard + prototype: ComputerXenoborgsControl + - type: entity parent: BaseComputerCircuitboard id: StationAiUploadCircuitboard diff --git a/Resources/Prototypes/Entities/Objects/Devices/Electronics/base_electronics.yml b/Resources/Prototypes/Entities/Objects/Devices/Electronics/base_electronics.yml index 7848d987e5..7d2daaec0d 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Electronics/base_electronics.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Electronics/base_electronics.yml @@ -17,3 +17,4 @@ Glass: 200 chemicalComposition: Silicon: 20 + - type: Circuitboard diff --git a/Resources/Prototypes/Entities/Objects/Devices/Electronics/door_access.yml b/Resources/Prototypes/Entities/Objects/Devices/Electronics/door_access.yml index 6176b6b2ea..1e5cf63b74 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Electronics/door_access.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Electronics/door_access.yml @@ -318,3 +318,11 @@ components: - type: AccessReader access: [["Security"], ["Command"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsXenoborg + suffix: Xenoborg, Locked + components: + - type: AccessReader + access: [["Xenoborg"]] diff --git a/Resources/Prototypes/Entities/Objects/Devices/Electronics/turret_controls.yml b/Resources/Prototypes/Entities/Objects/Devices/Electronics/turret_controls.yml new file mode 100644 index 0000000000..ced73dd949 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Devices/Electronics/turret_controls.yml @@ -0,0 +1,43 @@ +- type: entity + abstract: true + parent: BaseElectronics + id: WeaponEnergyTurretStationControlPanelElectronicsBase + name: sentry turret control panel electronics + description: An electronics board used in a sentry turret control panel. + components: + - type: Sprite + sprite: Objects/Misc/module.rsi + state: security + - type: ElectronicsBoard + prototype: WeaponEnergyTurretSecurityControlPanel + - type: Tag + tags: + - TurretControlElectronics + +- type: entity + parent: WeaponEnergyTurretStationControlPanelElectronicsBase + id: WeaponEnergyTurretSecurityControlPanelElectronics + suffix: Security + +- type: entity + parent: WeaponEnergyTurretStationControlPanelElectronicsBase + id: WeaponEnergyTurretAIControlPanelElectronics + suffix: AI, Silicon + components: + - type: Sprite + sprite: Objects/Misc/module.rsi + state: science + - type: ElectronicsBoard + prototype: WeaponEnergyTurretAIControlPanel + +- type: entity + parent: WeaponEnergyTurretStationControlPanelElectronicsBase + id: WeaponEnergyTurretCommandControlPanelElectronics + suffix: Command + components: + - type: Sprite + sprite: Objects/Misc/module.rsi + state: command + - type: ElectronicsBoard + prototype: WeaponEnergyTurretCommandControlPanel + diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index 2082d9a152..6a024d29fa 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -1426,6 +1426,25 @@ - type: Icon state: pda-seniorofficer +- type: entity + parent: BasePDA + id: SeniorCourierPDA + name: senior courier PDA + description: Smells like postage stamps and shuttle fuel. + components: + - type: Pda + id: CargoIDCard + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-seniorcourier + - type: PdaBorderColor + borderColor: "#e39751" + accentVColor: "#DFDFDF" + - type: Icon + state: pda-seniorcourier + - type: entity parent: [ BaseMajorContraband, SyndiPDA ] id: PiratePDA @@ -1467,7 +1486,7 @@ - MedTekCartridge - type: entity - parent: BasePDA + parent: [BasePDA, SelectableLock] id: ChameleonPDA name: passenger PDA description: Why isn't it gray? diff --git a/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml b/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml index f124be8a42..e5f68aac8f 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml @@ -158,6 +158,8 @@ sprite: Objects/Fun/bananiumhorn.rsi slots: [Belt] quickEquip: false + - type: UseDelay + delay: 3 - type: EmitSoundOnUse sound: collection: BananiumHorn diff --git a/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml b/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml index e57223e1b4..15f67245f1 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml @@ -6,11 +6,13 @@ - type: Clickable - type: InteractionOutline - type: MovementIgnoreGravity + weightless: true - type: Sprite sprite: Objects/Fun/immovable_rod.rsi state: icon noRot: false - type: ImmovableRod + - type: GravityAffected - type: Physics bodyType: Dynamic linearDamping: 0 @@ -78,8 +80,6 @@ damage: types: Blunt: 190 - - type: MovementIgnoreGravity - gravityState: true - type: InputMover - type: MovementSpeedModifier baseWeightlessAcceleration: 5 diff --git a/Resources/Prototypes/Entities/Objects/Fun/plushies.yml b/Resources/Prototypes/Entities/Objects/Fun/plushies.yml index c0718d022b..fa028c038a 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/plushies.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/plushies.yml @@ -495,7 +495,7 @@ parent: PlushieLizard id: PlushieSpaceLizard #ᵂᵉʰ! name: space lizard plushie - description: An adorable stuffed toy that resembles a lizardperson in an EVA suit. Made by CentComm as a token initiative to combat speciesism in space environments. "Welcome your new colleges as you do this plush, with open arms!" + description: An adorable stuffed toy that resembles a lizardperson in an EVA suit. Made by CentComm as a token initiative to combat speciesism in space environments. "Welcome your new colleagues as you do this plush, with open arms!" components: - type: Sprite sprite: Objects/Fun/Plushies/lizard.rsi diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index 81b09be659..c1aea7ecd5 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -317,6 +317,10 @@ - state: base map: ["enum.GunVisualLayers.Base"] - type: Item + shape: + - 0,0,1,0 + - 0,1,0,1 + storedOffset: -2,-7 sprite: Objects/Fun/capgun.rsi - type: Tag tags: @@ -773,7 +777,7 @@ parent: BaseItem id: CardSword name: cardboard sword - description: A cardboard tube thats been fashioned into a sword. + description: A cardboard tube fashioned into the shape of a sword. components: - type: Sprite sprite: Objects/Fun/card_sword.rsi @@ -911,6 +915,7 @@ delay: 0.8 - type: Slippery staminaDamage: 0 + frictionStatusTime: 0 slipData: stunTime: 0 knockdownTime: 0 diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml index 5676c49324..532d0b9cca 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml @@ -15,6 +15,7 @@ - type: Tag tags: - Sheet + - ConstructionMaterial - type: Material - type: Damageable damageContainer: Inorganic @@ -108,15 +109,6 @@ stackType: Glass count: 1 -- type: entity - parent: SheetGlass - id: SheetGlassLingering0 - suffix: Lingering, 0 - components: - - type: Stack - lingering: true - count: 0 - - type: entity parent: SheetGlassBase id: SheetRGlass @@ -197,15 +189,6 @@ Quantity: 0.5 canReact: false -- type: entity - parent: SheetRGlass - id: SheetRGlassLingering0 - suffix: Lingering, 0 - components: - - type: Stack - lingering: true - count: 0 - - type: entity parent: SheetGlassBase id: SheetPGlass @@ -336,15 +319,6 @@ stackType: ReinforcedPlasmaGlass count: 1 -- type: entity - parent: SheetRPGlass - id: SheetRPGlassLingering0 - suffix: Lingering, 0 - components: - - type: Stack - lingering: true - count: 0 - - type: entity parent: SheetGlassBase id: SheetUGlass diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml index bd22eee691..1cc4c3a5f5 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml @@ -15,6 +15,7 @@ tags: - Sheet - Metal + - ConstructionMaterial - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic @@ -94,15 +95,6 @@ stackType: Steel count: 1 -- type: entity - parent: SheetSteel - id: SheetSteelLingering0 - suffix: Lingering, 0 - components: - - type: Stack - lingering: true - count: 0 - - type: entity parent: SheetMetalBase id: SheetBrass @@ -229,12 +221,3 @@ - type: Stack stackType: Plasteel count: 1 - -- type: entity - parent: SheetPlasteel - id: SheetPlasteelLingering0 - suffix: Lingering, 0 - components: - - type: Stack - lingering: true - count: 0 \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml index 4a37e18ccf..b10e071fd9 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml @@ -12,6 +12,7 @@ - type: Tag tags: - Sheet + - ConstructionMaterial - type: Damageable damageContainer: Inorganic - type: Destructible @@ -110,6 +111,7 @@ - type: Tag tags: - Sheet + - ConstructionMaterial - type: entity parent: SheetPlasma @@ -132,16 +134,6 @@ - type: Stack count: 1 -- type: entity - parent: SheetPlasma - id: SheetPlasmaLingering0 - name: plasma - suffix: 0, Lingering - components: - - type: Stack - lingering: true - count: 0 - - type: entity parent: SheetOtherBase id: SheetPlastic @@ -152,6 +144,7 @@ tags: - Plastic - Sheet + - ConstructionMaterial - type: Material - type: PhysicalComposition materialComposition: diff --git a/Resources/Prototypes/Entities/Objects/Materials/ingots.yml b/Resources/Prototypes/Entities/Objects/Materials/ingots.yml index 7e8e6a5b74..8d9b8259da 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/ingots.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/ingots.yml @@ -14,6 +14,7 @@ - type: Tag tags: - Ingot + - ConstructionMaterial - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic diff --git a/Resources/Prototypes/Entities/Objects/Materials/materials.yml b/Resources/Prototypes/Entities/Objects/Materials/materials.yml index 969dc5997a..9eeed7af80 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/materials.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/materials.yml @@ -147,6 +147,7 @@ - ClothMade - Gauze - RawMaterial + - ConstructionMaterial - type: Construction graph: WebObjects # not sure if I should either keep this here or just make another prototype. Will keep it here just in case. node: cloth @@ -212,6 +213,7 @@ tags: - ClothMade - RawMaterial + - ConstructionMaterial - type: Item heldPrefix: durathread @@ -261,6 +263,7 @@ tags: - Wooden - RawMaterial + - ConstructionMaterial - type: Extractable grindableSolutionName: wood - type: SolutionContainerManager diff --git a/Resources/Prototypes/Entities/Objects/Materials/parts.yml b/Resources/Prototypes/Entities/Objects/Materials/parts.yml index 44d72cda12..71e2704fce 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/parts.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/parts.yml @@ -19,6 +19,9 @@ behaviors: - !type:DoActsBehavior acts: [ "Destruction" ] + - type: Tag + tags: + - ConstructionMaterial - type: entity parent: PartBase @@ -81,6 +84,7 @@ - type: Tag tags: - RodMetal1 + - ConstructionMaterial - type: Sprite state: rods - type: Stack @@ -95,43 +99,8 @@ - type: Tag tags: - RodMetal1 + - ConstructionMaterial - type: Sprite state: rods - type: Stack count: 1 - -- type: entity - parent: PartRodMetal - id: PartRodMetalLingering0 - suffix: Lingering, 0 - components: - - type: Stack - lingering: true - count: 0 - -- type: entity - parent: FloorTileItemSteel - id: FloorTileItemSteelLingering0 - suffix: Lingering, 0 - components: - - type: Stack - lingering: true - count: 0 - -- type: entity - parent: FloorTileItemWhite - id: FloorTileItemWhiteLingering0 - suffix: Lingering, 0 - components: - - type: Stack - lingering: true - count: 0 - -- type: entity - parent: FloorTileItemDark - id: FloorTileItemDarkLingering0 - suffix: Lingering, 0 - components: - - type: Stack - lingering: true - count: 0 diff --git a/Resources/Prototypes/Entities/Objects/Misc/folders.yml b/Resources/Prototypes/Entities/Objects/Misc/folders.yml index f72d4c3abc..cee720b6ea 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/folders.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/folders.yml @@ -1,6 +1,6 @@ - type: entity - id: BoxFolderNuclearCodes parent: BaseItem + id: BoxFolderNuclearCodes name: nuclear code folder components: - type: Sprite @@ -19,8 +19,8 @@ - type: Appearance - type: entity - id: BoxFolderBase parent: BoxBase + id: BoxFolderBaseEmpty name: folder description: A folder filled with top secret paperwork. components: @@ -62,22 +62,42 @@ - type: Tag tags: - Folder - - type: StorageFill - contents: - - id: Paper - prob: 0.5 - - id: PaperOffice - prob: 0.4 - - id: Paper - prob: 0.3 - - id: PaperOffice - prob: 0.2 - - id: Paper - prob: 0.2 - type: entity - id: BoxFolderRed - parent: BoxFolderBase + abstract: true + id: BoxFolderFill # Include this as a parent prototype to add 0-5 random papers to a folder's inventory when spawned. + suffix: Filled + components: + - type: StorageFill + contents: + - id: Paper + prob: 0.5 + - id: PaperOffice + prob: 0.4 + - id: Paper + prob: 0.3 + - id: PaperOffice + prob: 0.2 + - id: Paper + prob: 0.2 + +- type: entity + abstract: true + id: BoxFolderFillThreePapers # Like BoxFolderFill, but always has exactly three sheets of standard paper; use for roles' startingGear + suffix: 3 papers + components: + - type: StorageFill + contents: + - id: Paper + amount: 3 + +- type: entity + parent: [BoxFolderBaseEmpty, BoxFolderFill] + id: BoxFolderBase + +- type: entity + parent: BoxFolderBaseEmpty + id: BoxFolderRedEmpty suffix: Red components: - type: Sprite @@ -87,8 +107,13 @@ - state: folder-base - type: entity - id: BoxFolderBlue - parent: BoxFolderBase + parent: [BoxFolderRedEmpty, BoxFolderFill] + id: BoxFolderRed + suffix: Red, Filled + +- type: entity + parent: BoxFolderBaseEmpty + id: BoxFolderBlueEmpty suffix: Blue components: - type: Sprite @@ -98,8 +123,13 @@ - state: folder-base - type: entity - id: BoxFolderYellow - parent: BoxFolderBase + parent: [BoxFolderBlueEmpty, BoxFolderFill] + id: BoxFolderBlue + suffix: Blue, Filled + +- type: entity + parent: BoxFolderBaseEmpty + id: BoxFolderYellowEmpty suffix: Yellow components: - type: Sprite @@ -109,18 +139,13 @@ - state: folder-base - type: entity - id: BoxFolderWhite - parent: BoxFolderBase - suffix: White - components: - - type: Sprite - layers: - - state: folder-white - - state: folder-base + parent: [BoxFolderYellowEmpty, BoxFolderFill] + id: BoxFolderYellow + suffix: Yellow, Filled - type: entity - id: BoxFolderGrey - parent: BoxFolderBase + parent: BoxFolderBaseEmpty + id: BoxFolderGreyEmpty suffix: Grey components: - type: Sprite @@ -130,8 +155,13 @@ - state: folder-base - type: entity - id: BoxFolderBlack - parent: BoxFolderBase + parent: [BoxFolderGreyEmpty, BoxFolderFill] + id: BoxFolderGrey + suffix: Grey, Filled + +- type: entity + parent: BoxFolderBaseEmpty + id: BoxFolderBlackEmpty suffix: Black components: - type: Sprite @@ -141,8 +171,13 @@ - state: folder-base - type: entity - id: BoxFolderGreen - parent: BoxFolderBase + parent: [BoxFolderBlackEmpty, BoxFolderFill] + id: BoxFolderBlack + suffix: Black, Filled + +- type: entity + parent: BoxFolderBaseEmpty + id: BoxFolderGreenEmpty suffix: Green components: - type: Sprite @@ -152,10 +187,30 @@ - state: folder-base - type: entity - id: BoxFolderCentCom - name: CentComm folder - parent: BoxFolderBase + parent: [BoxFolderGreenEmpty, BoxFolderFill] + id: BoxFolderGreen + suffix: Green, Filled + +- type: entity + parent: BoxFolderBaseEmpty + id: BoxFolderWhiteEmpty + suffix: White + components: + - type: Sprite + layers: + - state: folder-white + - state: folder-base + +- type: entity + parent: [BoxFolderWhiteEmpty, BoxFolderFill] + id: BoxFolderWhite + suffix: White, Filled + +- type: entity + parent: BoxFolderBaseEmpty + id: BoxFolderCentComEmpty categories: [ DoNotMap ] + name: CentComm folder description: CentComm's miserable little pile of secrets! components: - type: Sprite @@ -164,8 +219,13 @@ - state: folder-base - type: entity - id: BoxFolderClipboard - parent: BoxFolderBase + parent: [BoxFolderCentComEmpty, BoxFolderFill] + id: BoxFolderCentCom + suffix: DO NOT MAP, Filled + +- type: entity + parent: BoxFolderBaseEmpty + id: BoxFolderClipboardEmpty name: clipboard description: The weapon of choice for those on the front lines of bureaucracy. components: @@ -223,8 +283,42 @@ Blunt: 6 - type: entity - id: BoxFolderCentComClipboard - parent: BoxFolderClipboard + parent: [BoxFolderClipboardEmpty, BoxFolderFill] + id: BoxFolderClipboard + +- type: entity + parent: [BoxFolderClipboardEmpty, BoxFolderFillThreePapers] + id: BoxFolderClipboardThreePapers + +- type: entity + parent: BoxFolderClipboardEmpty + id: BoxFolderPlasticClipboardEmpty + name: plastic clipboard + description: A cheap clipboard made of blue plastic. For those who aren't yet ready to wield the bureaucratic might of a proper wooden clipboard. + components: + - type: Sprite + sprite: Objects/Misc/plastic_clipboard.rsi + layers: + - state: clipboard + - state: clipboard_paper + map: ["clipboard_paper"] + visible: false + - state: clipboard_pen + map: ["clipboard_pen"] + visible: false + - state: clipboard_over + - type: Item + sprite: Objects/Misc/plastic_clipboard.rsi + - type: Clothing + sprite: Objects/Misc/plastic_clipboard.rsi + +- type: entity + parent: [BoxFolderPlasticClipboardEmpty, BoxFolderFill] + id: BoxFolderPlasticClipboard + +- type: entity + parent: BoxFolderClipboardEmpty + id: BoxFolderCentComClipboardEmpty name: CentComm clipboard description: A luxurious clipboard upholstered with green velvet. Often seen carried by CentComm officials, seldom seen actually used. components: @@ -245,8 +339,16 @@ sprite: Objects/Misc/cc-clipboard.rsi - type: entity + parent: [BoxFolderCentComClipboardEmpty, BoxFolderFill] + id: BoxFolderCentComClipboard + +- type: entity + parent: [BoxFolderCentComClipboardEmpty, BoxFolderFillThreePapers] + id: BoxFolderCentComClipboardThreePapers + +- type: entity + parent: [BoxFolderClipboardEmpty, BaseGrandTheftContraband] id: BoxFolderQmClipboard - parent: [BoxFolderClipboard, BaseGrandTheftContraband] name: requisition digi-board description: A bulky electric clipboard, filled with shipping orders and financing details. With so many compromising documents, you ought to keep this safe. components: @@ -278,8 +380,6 @@ grid: - 0,0,4,3 quickInsert: true - - type: StorageFill - contents: [] #to override base clipboard fill - type: ItemMapper mapLayers: qm_clipboard_paper: diff --git a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml index c4c5cc0aaf..d236383226 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml @@ -580,7 +580,7 @@ - type: entity name: passenger ID card - parent: IDCardStandard + parent: [IDCardStandard, BaseChameleon] id: AgentIDCard suffix: Agent components: @@ -595,9 +595,11 @@ - state: default - state: idpassenger - type: AgentIDCard + - type: UIRequiresLock - type: ActivatableUI key: enum.AgentIDCardUiKey.Key inHandsOnly: true + verbText: agent-id-open-ui-verb - type: Tag tags: - DoorBumpOpener diff --git a/Resources/Prototypes/Entities/Objects/Misc/implanters.yml b/Resources/Prototypes/Entities/Objects/Misc/implanters.yml index e1918ef5e6..316acba6fc 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/implanters.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/implanters.yml @@ -6,89 +6,89 @@ parent: BaseItem abstract: true components: - - type: ItemSlots - - type: ContainerContainer - containers: - implanter_slot: !type:ContainerSlot { } - - type: Implanter + - type: ItemSlots + - type: ContainerContainer + containers: + implanter_slot: !type:ContainerSlot { } + - type: Implanter + whitelist: + components: + - MobState # no chair microbomb + blacklist: + components: + - Guardian # no holoparasite macrobomb wombo combo + tags: + - Unimplantable + currentMode: Draw + implanterSlot: + name: Implant + locked: True + priority: 0 whitelist: - components: - - MobState # no chair microbomb - blacklist: - components: - - Guardian # no holoparasite macrobomb wombo combo tags: - - Unimplantable - currentMode: Draw - implanterSlot: - name: Implant - locked: True - priority: 0 - whitelist: - tags: - - SubdermalImplant - allowDeimplantAll: false - deimplantWhitelist: - - SadTromboneImplant - - LightImplant - - BikeHornImplant - - TrackingImplant - - StorageImplant - - FreedomImplant - - UplinkImplant - - EmpImplant - - ScramImplant - - DnaScramblerImplant - - MicroBombImplant - - MacroBombImplant - - DeathAcidifierImplant - - DeathRattleImplant - - MindShieldImplant - - FakeMindShieldImplant - - RadioImplant - - ChameleonControllerImplant - deimplantFailureDamage: - types: - Cellular: 50 - Heat: 10 - - type: Sprite - sprite: Objects/Specific/Medical/implanter.rsi - state: implanter0 - layers: - - state: implanter0 - map: [ "implantOnly" ] - visible: true - - state: implanter1 - map: [ "implantFull" ] - visible: false - - type: Item - sprite: Objects/Specific/Medical/implanter.rsi - heldPrefix: implanter - size: Small - - type: Appearance - - type: GenericVisualizer - visuals: - enum.ImplanterVisuals.Full: - implantFull: - True: {visible: true} - False: {visible: false} - enum.ImplanterImplantOnlyVisuals.ImplantOnly: - implantOnly: - True: {state: broken} - False: {state: implanter0} - - type: UserInterface - interfaces: - enum.DeimplantUiKey.Key: - type: DeimplantBoundUserInterface + - SubdermalImplant + allowDeimplantAll: false + deimplantWhitelist: + - SadTromboneImplant + - LightImplant + - BikeHornImplant + - TrackingImplant + - StorageImplant + - FreedomImplant + - UplinkImplant + - EmpImplant + - ScramImplant + - DnaScramblerImplant + - MicroBombImplant + - MacroBombImplant + - DeathAcidifierImplant + - DeathRattleImplant + - MindShieldImplant + - FakeMindShieldImplant + - RadioImplant + - ChameleonControllerImplant + deimplantFailureDamage: + types: + Cellular: 50 + Heat: 10 + - type: Sprite + sprite: Objects/Specific/Medical/implanter.rsi + state: implanter0 + layers: + - state: implanter0 + map: [ "implantOnly" ] + visible: true + - state: implanter1 + map: [ "implantFull" ] + visible: false + - type: Item + sprite: Objects/Specific/Medical/implanter.rsi + heldPrefix: implanter + size: Small + - type: Appearance + - type: GenericVisualizer + visuals: + enum.ImplanterVisuals.Full: + implantFull: + True: {visible: true} + False: {visible: false} + enum.ImplanterImplantOnlyVisuals.ImplantOnly: + implantOnly: + True: {state: broken} + False: {state: implanter0} + - type: UserInterface + interfaces: + enum.DeimplantUiKey.Key: + type: DeimplantBoundUserInterface - type: entity id: Implanter parent: BaseImplanter description: A disposable syringe exclusively designed for the injection and extraction of subdermal implants. components: - - type: Tag - tags: - - Trash + - type: Tag + tags: + - Trash - type: entity parent: Implanter @@ -108,18 +108,18 @@ description: A disposable syringe exclusively designed for the injection of subdermal implants. abstract: true components: - - type: Sprite - sprite: Objects/Specific/Medical/implanter.rsi - state: implanter0 - layers: - - state: implanter1 - map: [ "implantFull" ] - visible: true - - state: implanter0 - map: [ "implantOnly" ] - - type: Implanter - currentMode: Inject - implantOnly: true + - type: Sprite + sprite: Objects/Specific/Medical/implanter.rsi + state: implanter0 + layers: + - state: implanter1 + map: [ "implantFull" ] + visible: true + - state: implanter0 + map: [ "implantOnly" ] + - type: Implanter + currentMode: Inject + implantOnly: true - type: entity id: BaseImplantOnlyImplanterSyndi @@ -128,30 +128,30 @@ description: A compact disposable syringe exclusively designed for the injection of subdermal implants. Make sure to scrub it with soap or a rag to remove residual DNA after use! abstract: true components: - - type: Item - sprite: Objects/Specific/Medical/syndi_implanter.rsi - heldPrefix: implanter - - type: Sprite - sprite: Objects/Specific/Medical/syndi_implanter.rsi - state: implanter1 - layers: - - state: implanter0 - map: [ "implantFull" ] - visible: true - - state: implanter1 - map: [ "implantOnly" ] - - type: GenericVisualizer - visuals: - enum.ImplanterVisuals.Full: - implantFull: - True: {visible: true} - False: {visible: false} - enum.ImplanterImplantOnlyVisuals.ImplantOnly: - implantOnly: - True: {state: broken} - False: {state: implanter1} - - type: Tag - tags: [] + - type: Item + sprite: Objects/Specific/Medical/syndi_implanter.rsi + heldPrefix: implanter + - type: Sprite + sprite: Objects/Specific/Medical/syndi_implanter.rsi + state: implanter1 + layers: + - state: implanter0 + map: [ "implantFull" ] + visible: true + - state: implanter1 + map: [ "implantOnly" ] + - type: GenericVisualizer + visuals: + enum.ImplanterVisuals.Full: + implantFull: + True: {visible: true} + False: {visible: false} + enum.ImplanterImplantOnlyVisuals.ImplantOnly: + implantOnly: + True: {state: broken} + False: {state: implanter1} + - type: Tag + tags: [] #Fun implanters @@ -160,24 +160,24 @@ name: sad trombone implanter parent: BaseImplantOnlyImplanter components: - - type: Implanter - implant: SadTromboneImplant + - type: Implanter + implant: SadTromboneImplant - type: entity id: LightImplanter name: light implanter parent: BaseImplantOnlyImplanter components: - - type: Implanter - implant: LightImplant + - type: Implanter + implant: LightImplant - type: entity id: BikeHornImplanter name: bike horn implanter parent: BaseImplantOnlyImplanter components: - - type: Implanter - implant: BikeHornImplant + - type: Implanter + implant: BikeHornImplant #Security implanters @@ -186,8 +186,8 @@ name: tracking implanter parent: BaseImplantOnlyImplanter components: - - type: Implanter - implant: TrackingImplant + - type: Implanter + implant: TrackingImplant #Traitor implanters @@ -196,16 +196,16 @@ name: storage implanter parent: BaseImplantOnlyImplanterSyndi components: - - type: Implanter - implant: StorageImplant + - type: Implanter + implant: StorageImplant - type: entity id: FreedomImplanter name: freedom implanter parent: BaseImplantOnlyImplanterSyndi components: - - type: Implanter - implant: FreedomImplant + - type: Implanter + implant: FreedomImplant - type: entity id: RadioImplanter @@ -228,24 +228,24 @@ name: EMP implanter parent: BaseImplantOnlyImplanterSyndi components: - - type: Implanter - implant: EmpImplant + - type: Implanter + implant: EmpImplant - type: entity id: ScramImplanter name: scram implanter parent: BaseImplantOnlyImplanterSyndi components: - - type: Implanter - implant: ScramImplant + - type: Implanter + implant: ScramImplant - type: entity id: DnaScramblerImplanter name: DNA scrambler implanter parent: BaseImplantOnlyImplanterSyndi components: - - type: Implanter - implant: DnaScramblerImplant + - type: Implanter + implant: DnaScramblerImplant - type: entity id: ChameleonControllerImplanter @@ -262,24 +262,24 @@ name: micro-bomb implanter parent: BaseImplantOnlyImplanterSyndi components: - - type: Implanter - implant: MicroBombImplant + - type: Implanter + implant: MicroBombImplant - type: entity id: MacroBombImplanter name: macro-bomb implanter parent: BaseImplantOnlyImplanterSyndi components: - - type: Implanter - implant: MacroBombImplant + - type: Implanter + implant: MacroBombImplant - type: entity id: DeathRattleImplanter name: death rattle implanter parent: BaseImplantOnlyImplanterSyndi components: - - type: Implanter - implant: DeathRattleImplant + - type: Implanter + implant: DeathRattleImplant - type: entity id: DeathAcidifierImplanter @@ -304,8 +304,8 @@ name: mindshield implanter parent: BaseImplantOnlyImplanter components: - - type: Implanter - implant: MindShieldImplant + - type: Implanter + implant: MindShieldImplant # Centcomm implanters diff --git a/Resources/Prototypes/Entities/Objects/Misc/inflatable_wall.yml b/Resources/Prototypes/Entities/Objects/Misc/inflatable_wall.yml index 0641084847..176c7f79ff 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/inflatable_wall.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/inflatable_wall.yml @@ -33,7 +33,13 @@ - type: DisassembleOnAltVerb prototypeToSpawn: InflatableWallStack1 disassembleTime: 3 + - type: InflatableSafeDisassembly - type: Airtight + - type: DeltaPressure + minPressure: 1000 + minPressureDelta: 750 + scalingType: Linear + scalingPower: 0.0005 - type: Transform anchored: true placement: @@ -81,5 +87,11 @@ - type: DisassembleOnAltVerb prototypeToSpawn: InflatableDoorStack1 disassembleTime: 3 + - type: InflatableSafeDisassembly - type: Occluder enabled: false + - type: DeltaPressure + minPressure: 1000 + minPressureDelta: 750 + scalingType: Linear + scalingPower: 0.0005 diff --git a/Resources/Prototypes/Entities/Objects/Misc/machine_parts.yml b/Resources/Prototypes/Entities/Objects/Misc/machine_parts.yml index 7d944602c5..83bc2d1cec 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/machine_parts.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/machine_parts.yml @@ -11,6 +11,9 @@ size: Tiny - type: Stack count: 1 + - type: Tag + tags: + - ConstructionMaterial - type: entity id: MicroManipulatorStockPart diff --git a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml index 6a4ad24664..5ff8c79fb4 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml @@ -19,18 +19,18 @@ description: This implant plays a sad tune when the user dies. categories: [ HideSpawnMenu ] components: - - type: SubdermalImplant - whitelist: - components: - - MobState # admeme implanting a chair with trombone implant needs to give the chair mobstate so it can die first - - type: TriggerOnMobstateChange - mobState: - - Dead - - type: EmitSoundOnTrigger - sound: - collection: SadTrombone - params: - variation: 0.125 + - type: SubdermalImplant + whitelist: + components: + - MobState # admeme implanting a chair with trombone implant needs to give the chair mobstate so it can die first + - type: TriggerOnMobstateChange + mobState: + - Dead + - type: EmitSoundOnTrigger + sound: + collection: SadTrombone + params: + variation: 0.125 - type: entity parent: BaseSubdermalImplant @@ -39,20 +39,20 @@ description: This implant emits light from the user's skin on activation. categories: [ HideSpawnMenu ] components: - - type: SubdermalImplant - implantAction: ActionToggleLight - - type: PointLight - enabled: false - radius: 2.5 - softness: 5 - mask: /Textures/Effects/LightMasks/cone.png - autoRot: true - - type: Tag - tags: - - SubdermalImplant - - HideContextMenu - - Flashlight - - type: UnpoweredFlashlight + - type: SubdermalImplant + implantAction: ActionToggleLight + - type: PointLight + enabled: false + radius: 2.5 + softness: 5 + mask: /Textures/Effects/LightMasks/cone.png + autoRot: true + - type: Tag + tags: + - SubdermalImplant + - HideContextMenu + - Flashlight + - type: UnpoweredFlashlight - type: entity parent: BaseSubdermalImplant @@ -108,6 +108,7 @@ description: This implant grants hidden storage within a person's body using bluespace technology. categories: [ HideSpawnMenu ] components: + - type: StorageImplant - type: SubdermalImplant implantAction: ActionOpenStorageImplant whitelist: @@ -280,6 +281,10 @@ components: - type: SubdermalImplant permanent: true + - type: ReplacementImplant + whitelist: + tags: + - MicroBomb # replace microbomb implant with macrobomb - type: TriggerOnMobstateChange #activates the timer mobState: - Dead @@ -306,9 +311,9 @@ canCreateVacuum: true - type: Tag tags: - - SubdermalImplant - - HideContextMenu - - MacroBomb + - SubdermalImplant + - HideContextMenu + - MacroBomb - type: entity parent: BaseSubdermalImplant @@ -362,9 +367,11 @@ description: This implant allows the implanter to produce a fake signal that NT security huds use to identify individuals implanted with a mindshield. categories: [ HideSpawnMenu ] components: - - type: SubdermalImplant - implantAction: FakeMindShieldToggleAction - - type: FakeMindShieldImplant + - type: SubdermalImplant + implantAction: FakeMindShieldToggleAction + implantComponents: + - type: FakeMindShield # TODO: put the component on the implant and use implant relay events for the status icon + - type: FakeMindShieldImplant # Sec and Command implants diff --git a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml index fcd25b80bf..6670114bdf 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml @@ -1768,6 +1768,20 @@ - type: Stack stackType: FloorTileXenoMaint +- type: entity + id: FloorTileItemXenoborg + parent: FloorTileItemBase + name: xenoborg floor + components: + - type: Sprite + state: xenoborg-floor + - type: FloorTile + outputs: + - Plating + - FloorXenoborg + - type: Stack + stackType: FloorTileXenoborg + - type: entity parent: FloorTileItemDark id: FloorTileItemDarkSquiggly diff --git a/Resources/Prototypes/Entities/Objects/Shields/shields.yml b/Resources/Prototypes/Entities/Objects/Shields/shields.yml index 3b64f0c4b1..188f4892b6 100644 --- a/Resources/Prototypes/Entities/Objects/Shields/shields.yml +++ b/Resources/Prototypes/Entities/Objects/Shields/shields.yml @@ -184,15 +184,12 @@ name: cardboard shield parent: BaseShield id: CardShield - description: A shield that wont shield you from much. + description: A shield made of cardboard. Won't protect you from much. components: - type: Sprite state: cardshield-icon - type: Item heldPrefix: cardshield - - type: StaminaResistance - damageCoefficient: 0.95 - worn: true - type: Blocking passiveBlockModifier: coefficients: diff --git a/Resources/Prototypes/Entities/Objects/Specific/Cargo/mail_bag.yml b/Resources/Prototypes/Entities/Objects/Specific/Cargo/mail_bag.yml index 9f7ad36eb6..bf41e70be1 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Cargo/mail_bag.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Cargo/mail_bag.yml @@ -12,6 +12,7 @@ quickEquip: false slots: - belt + - back - type: Item size: Ginormous - type: Storage @@ -28,3 +29,7 @@ - Document - Paper - type: Dumpable + - type: Tag + tags: + - ScurretWearable + - CorgiWearable diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml index 9f33e3c239..318c8d7150 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml @@ -239,25 +239,3 @@ - type: Residue residueAdjective: residue-slippery residueColor: residue-blue - -- type: entity - name: soap - id: SoapBorg # Intended for borg internals, not slippery or food, not a container for soap reagent - parent: BaseItem - description: A Nanotrasen brand bar of soap. Smells of plasma and machines. - components: - - type: Sprite - sprite: Objects/Specific/Janitorial/soap.rsi - layers: - - state: nt-4 - - type: Appearance - - type: Item - sprite: Objects/Specific/Janitorial/soap.rsi - storedRotation: -90 - - type: CleansForensics - - type: Residue - residueAdjective: residue-slippery - residueColor: residue-grey - - type: Tag - tags: - - Soap diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mech/mech_construction.yml b/Resources/Prototypes/Entities/Objects/Specific/Mech/mech_construction.yml index c40073c659..2731c6909f 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Mech/mech_construction.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Mech/mech_construction.yml @@ -75,16 +75,23 @@ - type: ContainerContainer containers: mech-assembly-container: !type:Container - - type: MechAssembly - finishedPrototype: RipleyChassis - requiredParts: - RipleyLArm: false - RipleyRArm: false - RipleyLLeg: false - RipleyRLeg: false + battery-container: !type:Container + - type: MechAssemblyVisuals + statePrefix: ripley - type: Sprite state: ripley_harness+o noRot: true + - type: PartAssembly + parts: + Ripley: + - RipleyLArm + - RipleyRArm + - RipleyLLeg + - RipleyRLeg + containerId: mech-assembly-container + - type: Construction + graph: Ripley + node: start - type: entity parent: BaseRipleyPartItem @@ -134,26 +141,6 @@ tags: - RipleyRArm -- type: entity - id: RipleyChassis - parent: BaseRipleyPart - name: ripley chassis - description: An in-progress construction of the Ripley APLU mech. - components: - - type: Appearance - - type: ContainerContainer - containers: - battery-container: !type:Container - - type: MechAssemblyVisuals - statePrefix: ripley - - type: Sprite - noRot: true - state: ripley0 - - type: Construction - graph: Ripley - node: start - defaultTarget: ripley - # H.O.N.K. - type: entity @@ -203,16 +190,23 @@ - type: ContainerContainer containers: mech-assembly-container: !type:Container - - type: MechAssembly - finishedPrototype: HonkerChassis - requiredParts: - HonkerLArm: false - HonkerRArm: false - HonkerLLeg: false - HonkerRLeg: false + battery-container: !type:Container + - type: MechAssemblyVisuals + statePrefix: honker - type: Sprite state: honker_harness+o noRot: true + - type: PartAssembly + parts: + Honker: + - HonkerLArm + - HonkerRArm + - HonkerLLeg + - HonkerRLeg + containerId: mech-assembly-container + - type: Construction + graph: Honker + node: start - type: entity parent: BaseHonkerPartItem @@ -262,26 +256,6 @@ tags: - HonkerRArm -- type: entity - id: HonkerChassis - parent: BaseHonkerPart - name: H.O.N.K. chassis - description: An in-progress construction of a H.O.N.K. mech. Contains chuckle unit, bananium core and honk support systems. - components: - - type: Appearance - - type: ContainerContainer - containers: - battery-container: !type:Container - - type: MechAssemblyVisuals - statePrefix: honker - - type: Sprite - noRot: true - state: honker0 - - type: Construction - graph: Honker - node: start - defaultTarget: honker - # H.A.M.T.R. - type: entity @@ -331,16 +305,23 @@ - type: ContainerContainer containers: mech-assembly-container: !type:Container - - type: MechAssembly - finishedPrototype: HamtrChassis - requiredParts: - HamtrLArm: false - HamtrRArm: false - HamtrLLeg: false - HamtrRLeg: false + battery-container: !type:Container + - type: MechAssemblyVisuals + statePrefix: hamtr - type: Sprite state: hamtr_harness+o noRot: true + - type: PartAssembly + parts: + Hamtr: + - HamtrLArm + - HamtrRArm + - HamtrLLeg + - HamtrRLeg + containerId: mech-assembly-container + - type: Construction + graph: Hamtr + node: start - type: entity parent: BaseHamtrPartItem @@ -390,26 +371,6 @@ tags: - HamtrRArm -- type: entity - id: HamtrChassis - parent: BaseHamtrPart - name: HAMTR chassis - description: An in-progress construction of the HAMTR mech. - components: - - type: Appearance - - type: ContainerContainer - containers: - battery-container: !type:Container - - type: MechAssemblyVisuals - statePrefix: hamtr - - type: Sprite - noRot: true - state: hamtr0 - - type: Construction - graph: Hamtr - node: start - defaultTarget: hamtr - # Vim!!!!!! - type: entity @@ -455,30 +416,17 @@ - type: ContainerContainer containers: mech-assembly-container: !type:Container - - type: MechAssembly - finishedPrototype: VimChassis - requiredParts: - HelmetEVA: false - BorgLeg: false + battery-container: !type:Container + - type: PartAssembly + parts: + Vim: + - HelmetEVA + - BorgLeg + - BorgLeg + containerId: mech-assembly-container - type: Sprite state: harness noRot: true - -- type: entity - id: VimChassis - parent: BaseVimPart - name: vim chassis - description: An in-progress construction of the Vim exosuit. - components: - - type: Appearance - - type: ContainerContainer - containers: - battery-container: !type:Container - - type: MechAssemblyVisuals - statePrefix: vim - - type: Sprite - noRot: true - state: vim0 - type: Construction graph: Vim node: start diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml index 4c4e44c28c..bda5901378 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml @@ -64,6 +64,7 @@ - type: Pullable - type: Physics bodyType: KinematicController + - type: GravityAffected - type: Clickable - type: WiresPanel - type: Fixtures diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml index 4a05817646..0f0d8ae0c2 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml @@ -61,15 +61,6 @@ stackType: Ointment count: 1 -- type: entity - id: Ointment10Lingering - parent: Ointment - suffix: 10, Lingering - components: - - type: Stack - lingering: true - count: 10 - - type: entity name: regenerative mesh description: Used to treat even the nastiest burns. Also effective against caustic burns. @@ -118,15 +109,6 @@ stackType: RegenerativeMesh count: 1 -- type: entity - parent: RegenerativeMesh - id: RegenerativeMeshLingering0 - suffix: 0, Lingering - components: - - type: Stack - lingering: true - count: 0 - - type: entity name: bruise pack description: A therapeutic gel pack and bandages designed to treat blunt-force trauma. @@ -172,15 +154,6 @@ stackType: Brutepack count: 1 -- type: entity - id: Brutepack10Lingering - parent: Brutepack - suffix: 10, Lingering - components: - - type: Stack - lingering: true - count: 10 - - type: entity name: medicated suture description: A suture soaked in medicine, treats blunt-force trauma effectively and closes wounds. @@ -228,15 +201,6 @@ stackType: MedicatedSuture count: 1 -- type: entity - parent: MedicatedSuture - id: MedicatedSutureLingering0 - suffix: 0, Lingering - components: - - type: Stack - lingering: true - count: 0 - - type: entity name: blood pack description: Contains a groundbreaking universal blood replacement created by Nanotrasen's advanced medical science. @@ -283,15 +247,6 @@ stackType: Bloodpack count: 1 -- type: entity - parent: Bloodpack - id: Bloodpack10Lingering - suffix: 10, Lingering - components: - - type: Stack - lingering: true - count: 10 - - type: entity parent: BaseHealingItem id: Tourniquet @@ -375,15 +330,6 @@ - type: Stack count: 1 -- type: entity - id: Gauze10Lingering - parent: Gauze - suffix: 10, Lingering - components: - - type: Stack - lingering: true - count: 10 - - type: entity name: aloe cream description: A topical cream for burns. diff --git a/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml b/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml index f3a82abd72..71dbed0aac 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Research/anomaly.yml @@ -6,7 +6,26 @@ components: - type: Sprite sprite: Objects/Specific/Research/anomalyscanner.rsi - state: icon + layers: + - state: icon + map: ["enum.AnomalyScannerVisualLayers.Base"] + - map: ["enum.AnomalyScannerVisualLayers.Screen"] + visible: false + shader: unshaded + - state: severity_mask + map: ["enum.AnomalyScannerVisualLayers.SeverityMask"] + visible: false + shader: unshaded + - map: ["enum.AnomalyScannerVisualLayers.Stability"] + visible: false + shader: unshaded + - visible: false + map: ["enum.AnomalyScannerVisualLayers.Pulse"] + shader: unshaded + - state: supercritical + map: ["enum.AnomalyScannerVisualLayers.Supercritical"] + shader: unshaded + visible: false - type: ActivatableUI key: enum.AnomalyScannerUiKey.Key requireActiveHand: false @@ -15,7 +34,35 @@ interfaces: enum.AnomalyScannerUiKey.Key: type: AnomalyScannerBoundUserInterface + - type: Appearance + - type: GenericVisualizer + visuals: + enum.AnomalyScannerVisuals.HasAnomaly: + enum.AnomalyScannerVisualLayers.Screen: + True: { visible: true } + False: { visible: false } + enum.AnomalyScannerVisualLayers.SeverityMask: + True: { visible: true } + False: { visible: false } + enum.AnomalyScannerVisuals.AnomalyStability: + enum.AnomalyScannerVisualLayers.Stability: + Stable: { visible: false } + Decaying: { visible: true, state: decaying } + Growing: { visible: true, state: growing } + enum.AnomalyScannerVisuals.AnomalyNextPulse: + enum.AnomalyScannerVisualLayers.Pulse: + 0: { visible: false } + 1: { visible: true, state: timer_1 } + 2: { visible: true, state: timer_2 } + 3: { visible: true, state: timer_3 } + 4: { visible: true, state: timer_4 } + 5: { visible: true, state: timer_5 } + enum.AnomalyScannerVisuals.AnomalyIsSupercritical: + enum.AnomalyScannerVisualLayers.Supercritical: + True: { visible: true } + False: { visible: false } - type: AnomalyScanner + - type: AnomalyScannerScreen - type: GuideHelp guides: - ScannersAndVessels diff --git a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml index dee6033a5b..edc0040512 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml @@ -46,7 +46,7 @@ - type: SelectableBorgModule - type: ContainerContainer containers: - provided_container: !type:Container { } + holding_container: !type:Container { } - type: entity parent: BaseAction @@ -422,13 +422,31 @@ - state: generic - state: icon-cables - type: ItemBorgModule - items: - - CableApcStackLingering10 - - CableMVStackLingering10 - - CableHVStackLingering10 - - Wirecutter - - Crowbar - - trayScanner + hands: + - item: CableApcStack10 + hand: + emptyRepresentative: CableApcStack10 + emptyLabel: borg-slot-cables-empty + whitelist: + tags: + - CableCoil + - item: CableMVStack10 + hand: + emptyRepresentative: CableMVStack10 + emptyLabel: borg-slot-cables-empty + whitelist: + tags: + - CableCoil + - item: CableHVStack10 + hand: + emptyRepresentative: CableHVStack10 + emptyLabel: borg-slot-cables-empty + whitelist: + tags: + - CableCoil + - item: Wirecutter + - item: Crowbar + - item: trayScanner - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: wire-module } @@ -443,11 +461,11 @@ - state: generic - state: icon-fire-extinguisher - type: ItemBorgModule - items: - - BorgFireExtinguisher - - BorgHandheldGPSBasic - - HandheldStationMapUnpowered - - HandHeldMassScannerBorg + hands: + - item: BorgFireExtinguisher + - item: BorgHandheldGPSBasic + - item: HandheldStationMapUnpowered + - item: HandHeldMassScannerBorg - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: extinguisher-module } @@ -461,16 +479,46 @@ - state: generic - state: icon-tools - type: ItemBorgModule - items: - - Crowbar - - Wrench - - Screwdriver - - Wirecutter - - WelderIndustrial - - Multitool + hands: + - item: Crowbar + - item: Wrench + - item: Screwdriver + - item: Wirecutter + - item: WelderIndustrial + - item: Multitool - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: tool-module } +- type: entity + id: BorgModuleInflatable + parent: [ BaseBorgModule, BaseProviderBorgModule ] + name: inflatable cyborg module + components: + - type: Sprite + layers: + - state: generic + - state: icon-inflatable + - type: ItemBorgModule + hands: + - item: InflatableDoorStack + hand: + emptyRepresentative: InflatableDoorStack + emptyLabel: borg-slot-inflatable-door-empty + whitelist: + tags: + - Inflatable + - item: InflatableWallStack + hand: + emptyRepresentative: InflatableWallStack + emptyLabel: borg-slot-inflatable-wall-empty + whitelist: + tags: + - Inflatable + - item: BoxInflatable + - item: WeaponMeleeNeedle + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: inflatable-module } + # cargo modules - type: entity id: BorgModuleAppraisal @@ -482,13 +530,13 @@ - state: cargo - state: icon-appraisal - type: ItemBorgModule - items: - - AppraisalTool - - Pen - - HandLabeler - - RubberStampApproved - - RubberStampDenied - - RadioHandheld + hands: + - item: AppraisalTool + - item: Pen + - item: HandLabeler + - item: RubberStampApproved + - item: RubberStampDenied + - item: RadioHandheld - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: appraisal-module } @@ -502,11 +550,11 @@ - state: cargo - state: icon-mining - type: ItemBorgModule - items: - - MiningDrill - - Shovel - - MineralScannerUnpowered - - BorgOreBag + hands: + - item: MiningDrill + - item: Shovel + - item: MineralScannerUnpowered + - item: BorgOreBag - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: mining-module } @@ -521,11 +569,11 @@ - state: cargo - state: icon-mining-adv - type: ItemBorgModule - items: - - MiningDrillDiamond - - Shovel - - AdvancedMineralScannerUnpowered - - OreBagOfHolding + hands: + - item: MiningDrillDiamond + - item: Shovel + - item: AdvancedMineralScannerUnpowered + - item: OreBagOfHolding - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: adv-mining-module } @@ -539,11 +587,11 @@ - state: cargo - state: icon-grappling-gun - type: ItemBorgModule - items: - - WeaponGrapplingGun - - BorgFireExtinguisher - - BorgHandheldGPSBasic - - HandHeldMassScannerBorg + hands: + - item: WeaponGrapplingGun + - item: BorgFireExtinguisher + - item: BorgHandheldGPSBasic + - item: HandHeldMassScannerBorg - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: grappling-module } @@ -559,15 +607,23 @@ - state: engineering - state: icon-tools-adv - type: ItemBorgModule - items: - - JawsOfLife - - PowerDrill - - WelderExperimental - - Multitool - - RemoteSignallerAdvanced + hands: + - item: JawsOfLife + - item: PowerDrill + - item: WelderExperimental + - item: Multitool + - item: RemoteSignallerAdvanced - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: adv-tools-module } +- type: entity + id: BorgModuleConstructionMaterialPlaceholder + parent: BaseItem + components: + - type: Sprite + sprite: Objects/Materials/Sheets/other.rsi + state: generic_materials + - type: entity id: BorgModuleConstruction parent: [ BaseBorgModuleEngineering, BaseProviderBorgModule ] @@ -578,16 +634,64 @@ - state: engineering - state: icon-construction - type: ItemBorgModule - items: - - SheetSteelLingering0 - - SheetGlassLingering0 - - SheetRGlassLingering0 - - SheetRPGlassLingering0 - - SheetPlasteelLingering0 - - PartRodMetalLingering0 - - FloorTileItemSteelLingering0 - - FloorTileItemWhiteLingering0 - - FloorTileItemDarkLingering0 + hands: + - hand: + emptyRepresentative: BorgModuleConstructionMaterialPlaceholder + emptyLabel: borg-slot-construction-empty + whitelist: + tags: + - ConstructionMaterial + - hand: + emptyRepresentative: BorgModuleConstructionMaterialPlaceholder + emptyLabel: borg-slot-construction-empty + whitelist: + tags: + - ConstructionMaterial + - hand: + emptyRepresentative: BorgModuleConstructionMaterialPlaceholder + emptyLabel: borg-slot-construction-empty + whitelist: + tags: + - ConstructionMaterial + - hand: + emptyRepresentative: DoorElectronics + emptyLabel: borg-slot-circuitboards-empty + whitelist: + components: + - Circuitboard + blacklist: + components: + - SiliconLawProvider + - hand: + emptyRepresentative: MicroManipulatorStockPart + emptyLabel: borg-slot-construction-empty + whitelist: + tags: + - ConstructionMaterial + - hand: + emptyRepresentative: SpaceHeaterFlatpack + emptyLabel: borg-slot-flatpacks-empty + whitelist: + components: + - Flatpack + - hand: + emptyRepresentative: FloorTileItemSteel + emptyLabel: borg-slot-tiles-empty + whitelist: + components: + - FloorTile + - hand: + emptyRepresentative: FloorTileItemWhite + emptyLabel: borg-slot-tiles-empty + whitelist: + components: + - FloorTile + - hand: + emptyRepresentative: FloorTileItemDark + emptyLabel: borg-slot-tiles-empty + whitelist: + components: + - FloorTile - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: construction-module } @@ -601,13 +705,13 @@ - state: engineering - state: icon-rcd - type: ItemBorgModule - items: - - RCDRecharging - - BorgFireExtinguisher - - BorgHandheldGPSBasic - - GasAnalyzer - - HolofanProjectorBorg - - GeigerCounter + hands: + - item: RCDRecharging + - item: BorgFireExtinguisher + - item: BorgHandheldGPSBasic + - item: GasAnalyzer + - item: HolofanProjectorBorg + - item: GeigerCounter - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: rcd-module } @@ -622,11 +726,17 @@ - state: janitor - state: icon-light-replacer - type: ItemBorgModule - items: - - LightReplacer - - BorgTrashBag - - Plunger - - SoapBorg + hands: + - item: LightReplacer + - item: BorgTrashBag + - item: Plunger + - item: SoapNT + hand: + emptyLabel: borg-slot-soap-empty + emptyRepresentative: SoapNT + whitelist: + tags: + - Soap - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: light-replacer-module } @@ -640,11 +750,11 @@ - state: janitor - state: icon-mop - type: ItemBorgModule - items: - - MopItem - - BorgBucket - - BorgSprayBottle - - HoloprojectorBorg + hands: + - item: MopItem + - item: BorgBucket + - item: BorgSprayBottle + - item: HoloprojectorBorg - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: cleaning-module } @@ -659,12 +769,18 @@ - state: janitor - state: icon-mop-adv - type: ItemBorgModule - items: - - AdvMopItem - - BorgMegaSprayBottle - - HoloprojectorBorg - - BorgDropper - - BorgBeaker + hands: + - item: AdvMopItem + - item: BorgMegaSprayBottle + - item: HoloprojectorBorg + - item: BorgDropper + - item: Beaker + hand: + emptyLabel: borg-slot-beakers-empty + emptyRepresentative: Beaker + whitelist: + tags: + - GlassBeaker - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: adv-cleaning-module } @@ -679,9 +795,9 @@ - state: medical - state: icon-diagnosis - type: ItemBorgModule - items: - - HandheldHealthAnalyzerUnpowered - - ClothingNeckStethoscope + hands: + - item: HandheldHealthAnalyzerUnpowered + - item: ClothingNeckStethoscope - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: diagnosis-module } @@ -695,14 +811,36 @@ - state: medical - state: icon-treatment - type: ItemBorgModule - items: - - HandheldHealthAnalyzerUnpowered - - Gauze10Lingering - - Brutepack10Lingering - - Ointment10Lingering - - Bloodpack10Lingering - - RegenerativeMeshLingering0 - - MedicatedSutureLingering0 + hands: + - item: HandheldHealthAnalyzerUnpowered + - item: Gauze + hand: + emptyLabel: borg-slot-topicals-empty + emptyRepresentative: Gauze + whitelist: + components: + - Healing + - item: Brutepack + hand: + emptyLabel: borg-slot-topicals-empty + emptyRepresentative: Brutepack + whitelist: + components: + - Healing + - item: Ointment + hand: + emptyLabel: borg-slot-topicals-empty + emptyRepresentative: Ointment + whitelist: + components: + - Healing + - item: Bloodpack + hand: + emptyLabel: borg-slot-topicals-empty + emptyRepresentative: Bloodpack + whitelist: + components: + - Healing - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: treatment-module } @@ -716,12 +854,12 @@ - state: medical - state: icon-defib - type: ItemBorgModule - items: - - HandheldHealthAnalyzerUnpowered - - DefibrillatorOneHandedUnpowered - - BorgFireExtinguisher - - BorgHandheldGPSBasic - - HandLabeler + hands: + - item: HandheldHealthAnalyzerUnpowered + - item: DefibrillatorOneHandedUnpowered + - item: BorgFireExtinguisher + - item: BorgHandheldGPSBasic + - item: HandLabeler - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: defib-module } @@ -735,13 +873,31 @@ - state: medical - state: icon-chem - type: ItemBorgModule - items: - - HandheldHealthAnalyzerUnpowered - - Syringe - - BorgDropper - - BorgVial - - BorgVial - - BorgVial + hands: + - item: HandheldHealthAnalyzerUnpowered + - item: Syringe + - item: BorgDropper + - item: BaseChemistryEmptyVial + hand: + emptyLabel: borg-slot-small-containers-empty + emptyRepresentative: BaseChemistryEmptyVial + whitelist: + components: + - FitsInDispenser + - item: BaseChemistryEmptyVial + hand: + emptyLabel: borg-slot-small-containers-empty + emptyRepresentative: BaseChemistryEmptyVial + whitelist: + components: + - FitsInDispenser + - item: BaseChemistryEmptyVial + hand: + emptyLabel: borg-slot-small-containers-empty + emptyRepresentative: BaseChemistryEmptyVial + whitelist: + components: + - FitsInDispenser - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: chem-module } @@ -756,13 +912,38 @@ - state: medical - state: icon-chemist - type: ItemBorgModule - items: - - HandheldHealthAnalyzerUnpowered - - BorgHypo - - Syringe - - BorgDropper - - BorgBeaker - - BorgBeaker + hands: + - item: HandheldHealthAnalyzerUnpowered + - item: BorgHypo + - item: Syringe + - item: BorgDropper + - item: Beaker + hand: + emptyLabel: borg-slot-chemical-containers-empty + emptyRepresentative: Beaker + whitelist: + components: + - FitsInDispenser + tags: + - ChemDispensable + - item: Beaker + hand: + emptyLabel: borg-slot-chemical-containers-empty + emptyRepresentative: Beaker + whitelist: + components: + - FitsInDispenser + tags: + - ChemDispensable + - item: Beaker + hand: + emptyLabel: borg-slot-chemical-containers-empty + emptyRepresentative: Beaker + whitelist: + components: + - FitsInDispenser + tags: + - ChemDispensable - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: adv-chem-module } @@ -778,13 +959,19 @@ - state: science - state: icon-artifacts - type: ItemBorgModule - items: - - NodeScanner - - SprayBottle - - GasAnalyzer - - BorgDropper - - BorgVial - - GeigerCounter + hands: + - item: NodeScanner + - item: SprayBottle + - item: GasAnalyzer + - item: BorgDropper + - item: BaseChemistryEmptyVial + hand: + emptyLabel: borg-slot-small-containers-empty + emptyRepresentative: BaseChemistryEmptyVial + whitelist: + components: + - FitsInDispenser + - item: GeigerCounter - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: node-scanner-module } @@ -798,13 +985,23 @@ - state: science - state: icon-anomalies - type: ItemBorgModule - items: - - AnomalyScanner - - AnomalyLocatorUnpowered - - AnomalyLocatorWideUnpowered - - HandLabeler - - SheetRGlassLingering0 - - SheetRPGlassLingering0 + hands: + - item: AnomalyScanner + - item: AnomalyLocatorUnpowered + - item: AnomalyLocatorWideUnpowered + - item: HandLabeler + - hand: + emptyRepresentative: SheetRGlass + emptyLabel: borg-slot-construction-empty + whitelist: + tags: + - ConstructionMaterial + - hand: + emptyRepresentative: SheetRPGlass + emptyLabel: borg-slot-construction-empty + whitelist: + tags: + - ConstructionMaterial - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: anomaly-module } @@ -819,14 +1016,43 @@ - state: service - state: icon-pen - type: ItemBorgModule - items: - - Pen - #- BooksBag (Add back when hand whitelisting exists, at the moment they can only use it like an orebag.) - - HandLabeler - - RubberStampApproved - - RubberStampDenied - - BorgDropper - - BorgVial + hands: + - item: Pen + - item: BooksBag + - hand: + emptyLabel: borg-slot-documents-empty + emptyRepresentative: BookBase + whitelist: + tags: + - Book + - Dice + - Document + - Figurine + - TabletopBoard + - Write + - hand: + emptyLabel: borg-slot-documents-empty + emptyRepresentative: Paper + whitelist: + tags: + - Book + - Dice + - Document + - Figurine + - TabletopBoard + - Write + - item: HandLabeler + - item: RubberStampApproved + - item: RubberStampDenied + - item: BorgDropper + - item: DrinkShaker + hand: + emptyLabel: borg-slot-small-containers-empty + emptyRepresentative: DrinkShaker + whitelist: + components: + - FitsInDispenser + - item: BarSpoon - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: service-module } @@ -840,10 +1066,28 @@ - state: service - state: icon-musique - type: ItemBorgModule - items: - - SynthesizerInstrument - - ElectricGuitarInstrument - - SaxophoneInstrument + hands: + - item: SynthesizerInstrument + hand: + emptyLabel: borg-slot-instruments-empty + emptyRepresentative: SynthesizerInstrument + whitelist: + components: + - Instrument + - item: ElectricGuitarInstrument + hand: + emptyLabel: borg-slot-instruments-empty + emptyRepresentative: ElectricGuitarInstrument + whitelist: + components: + - Instrument + - item: SaxophoneInstrument + hand: + emptyLabel: borg-slot-instruments-empty + emptyRepresentative: SaxophoneInstrument + whitelist: + components: + - Instrument - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: musical-module } @@ -857,11 +1101,11 @@ - state: service - state: icon-gardening - type: ItemBorgModule - items: - - HydroponicsToolMiniHoe - - HydroponicsToolSpade - - HydroponicsToolClippers - - Bucket + hands: + - item: HydroponicsToolMiniHoe + - item: HydroponicsToolSpade + - item: HydroponicsToolClippers + - item: Bucket - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: gardening-module } @@ -875,10 +1119,10 @@ - state: service - state: icon-harvesting - type: ItemBorgModule - items: - - HydroponicsToolScythe - - HydroponicsToolHatchet - - PlantBag + hands: + - item: HydroponicsToolScythe + - item: HydroponicsToolHatchet + - item: PlantBag - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: harvesting-module } @@ -892,10 +1136,10 @@ - state: service - state: icon-clown - type: ItemBorgModule - items: - - BikeHorn - - ClownRecorder - - BikeHornInstrument + hands: + - item: BikeHorn + - item: ClownRecorder + - item: BikeHornInstrument - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: clowning-module } @@ -910,19 +1154,19 @@ - state: service - state: icon-clown-adv - type: ItemBorgModule - items: - - HoloprojectorClownBorg - - BorgLauncherCreamPie - - ClownRecorder - - PushHorn - - BikeHornInstrument + hands: + - item: HoloprojectorClownBorg + - item: BorgLauncherCreamPie + - item: ClownRecorder + - item: PushHorn + - item: BikeHornInstrument - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: adv-clowning-module } #syndicate modules - type: entity - id: BorgModuleSyndicateWeapon parent: [ BaseBorgModule, BaseProviderBorgModule, BaseSyndicateContraband ] + id: BorgModuleSyndicateWeapon name: weapon cyborg module components: - type: Sprite @@ -930,9 +1174,9 @@ - state: syndicate - state: icon-syndicate - type: ItemBorgModule - items: - - WeaponPistolEchis - - EnergyDaggerLoud + hands: + - item: WeaponPistolEchis + - item: EnergyDaggerLoud - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: syndicate-weapon-module } - type: Item @@ -957,8 +1201,8 @@ price: 2500 - type: entity - id: BorgModuleOperative parent: [ BaseBorgModuleSyndicate, BaseProviderBorgModule, BaseSyndicateContraband ] + id: BorgModuleOperative name: operative cyborg module description: A module that comes with a crowbar, an Emag, an Access Breaker and a syndicate pinpointer. components: @@ -967,51 +1211,85 @@ - state: syndicate - state: icon-syndicate - type: ItemBorgModule - items: - - Crowbar - - Emag - - AccessBreaker - - PinpointerSyndicateNuclear + hands: + - item: Crowbar + - item: Emag + - item: AccessBreaker + - item: PinpointerSyndicateNuclear - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: syndicate-operative-module } - type: entity - id: BorgModuleEsword parent: [ BaseBorgModuleSyndicate, BaseProviderBorgModule, BaseSyndicateContraband ] + id: BorgModuleEsword name: energy sword cyborg module - description: A module that comes with a double energy sword. + description: A weapons module that comes with an energy sword. components: - - type: Sprite - layers: - - state: syndicate - - state: icon-syndicate - - type: ItemBorgModule - items: - - CyborgEnergySwordDouble - - PinpointerSyndicateNuclear - - type: BorgModuleIcon - icon: { sprite: Interface/Actions/actions_borg.rsi, state: syndicate-esword-module } + - type: Sprite + layers: + - state: syndicate + - state: icon-syndicate + - type: ItemBorgModule + hands: + - item: CyborgEnergySword + - item: PinpointerSyndicateNuclear + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: syndicate-esword-module } + +- type: entity + id: BorgModuleDoubleEsword + parent: [ BaseBorgModuleSyndicate, BaseProviderBorgModule, BaseSyndicateContraband ] + name: double energy sword cyborg module + description: A weapons module that comes with a double energy sword. + components: + - type: Sprite + layers: + - state: syndicate + - state: icon-syndicate + - type: ItemBorgModule + hands: + - item: CyborgEnergySwordDouble + - item: PinpointerSyndicateNuclear + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: syndicate-desword-module } - type: entity - id: BorgModuleL6C parent: [ BaseBorgModuleSyndicateAssault, BaseProviderBorgModule, BaseSyndicateContraband ] + id: BorgModuleL6C name: L6C ROW cyborg module - description: A module that comes with a L6C. + description: A weapons module that comes with a L6C. components: - - type: Sprite - layers: - - state: syndicate - - state: icon-syndicate - - type: ItemBorgModule - items: - - WeaponLightMachineGunL6C - - PinpointerSyndicateNuclear - - type: BorgModuleIcon - icon: { sprite: Interface/Actions/actions_borg.rsi, state: syndicate-l6c-module } + - type: Sprite + layers: + - state: syndicate + - state: icon-syndicate + - type: ItemBorgModule + hands: + - item: WeaponLightMachineGunL6C + - item: PinpointerSyndicateNuclear + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: syndicate-l6c-module } + +- type: entity + parent: [ BaseBorgModuleSyndicateAssault, BaseProviderBorgModule, BaseSyndicateContraband ] + id: BorgModuleC20r + name: C20-r ROW cyborg module + description: A weapons module that comes with a burst-fire C-20r. + components: + - type: Sprite + layers: + - state: syndicate + - state: icon-syndicate + - type: ItemBorgModule + hands: + - item: WeaponSubMachineGunC20rROW + - item: PinpointerSyndicateNuclear + - type: BorgModuleIcon + icon: { sprite: Interface/Actions/actions_borg.rsi, state: syndicate-c20r-module } - type: entity - id: BorgModuleMartyr parent: [ BaseBorgModule, BaseProviderBorgModule, BaseSyndicateContraband ] + id: BorgModuleMartyr name: martyr cyborg module description: "A module that comes with an explosive you probably don't want to handle yourself." components: @@ -1020,8 +1298,8 @@ - state: syndicateborgbomb - state: icon-bomb - type: ItemBorgModule - items: - - SelfDestructSeq + hands: + - item: SelfDestructSeq - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: syndicate-martyr-module } - type: Item @@ -1057,10 +1335,10 @@ - state: xenoborg_generic - state: icon-xenoborg-basic - type: ItemBorgModule - items: - - MaterialBag - - PinpointerMothership - - HandheldGPSBasic + hands: + - item: MaterialBag + - item: PinpointerMothership + - item: HandheldGPSBasic - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: xenoborg-basic-module } @@ -1075,13 +1353,13 @@ - state: xenoborg_generic - state: icon-xenoborg-tools - type: ItemBorgModule - items: - - Crowbar - - Wrench - - Screwdriver - - Wirecutter - - Multitool - - RefuelingWelder + hands: + - item: Crowbar + - item: Wrench + - item: Screwdriver + - item: Wirecutter + - item: Multitool + - item: RefuelingWelder - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: xenoborg-tool-module } @@ -1096,8 +1374,8 @@ - state: xenoborg_engi - state: icon-xenoborg-access-breaker - type: ItemBorgModule - items: - - AccessBreaker + hands: + - item: AccessBreaker - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: xenoborg-access-breaker-module } @@ -1112,8 +1390,8 @@ - state: xenoborg_engi - state: icon-xenoborg-fire-extinguisher - type: ItemBorgModule - items: - - SelfRechargingFireExtinguisher + hands: + - item: SelfRechargingFireExtinguisher - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: xenoborg-extinguisher-module } @@ -1128,8 +1406,8 @@ - state: xenoborg_heavy - state: icon-xenoborg-jammer - type: ItemBorgModule - items: - - XenoborgRadioJammer + hands: + - item: XenoborgRadioJammer - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: xenoborg-jammer-module } @@ -1144,8 +1422,8 @@ - state: xenoborg_heavy - state: icon-xenoborg-laser - type: ItemBorgModule - items: - - XenoborgLaserGun + hands: + - item: XenoborgLaserGun - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: xenoborg-laser-module } @@ -1160,8 +1438,8 @@ - state: xenoborg_heavy - state: icon-xenoborg-laser2 - type: ItemBorgModule - items: - - XenoborgHeavyLaserGun + hands: + - item: XenoborgHeavyLaserGun - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: xenoborg-laser2-module } @@ -1176,12 +1454,12 @@ - state: xenoborg_scout - state: icon-xenoborg-space-movement - type: ItemBorgModule - items: - - HandheldGPSBasic - - HandHeldMassScannerBorg - - HandheldStationMapUnpowered - - WeaponGrapplingGun - - JetpackXenoborg + hands: + - item: HandheldGPSBasic + - item: HandHeldMassScannerBorg + - item: HandheldStationMapUnpowered + - item: WeaponGrapplingGun + - item: JetpackXenoborg - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: xenoborg-space-movement-module } @@ -1196,9 +1474,9 @@ - state: xenoborg_scout - state: icon-xenoborg-sword - type: ItemBorgModule - items: - - KukriKnife - - JetpackXenoborg + hands: + - item: KukriKnife + - item: JetpackXenoborg - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: xenoborg-sword-module } @@ -1213,9 +1491,9 @@ - state: xenoborg_scout - state: icon-xenoborg-sword2 - type: ItemBorgModule - items: - - EnergyDaggerLoudBlue - - JetpackXenoborg + hands: + - item: EnergyDaggerLoudBlue + - item: JetpackXenoborg - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: xenoborg-sword2-module } @@ -1230,8 +1508,8 @@ - state: xenoborg_stealth - state: icon-xenoborg-hypo - type: ItemBorgModule - items: - - NocturineHypo + hands: + - item: NocturineHypo - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: xenoborg-hypo-module } @@ -1246,8 +1524,8 @@ - state: xenoborg_stealth - state: icon-xenoborg-projector - type: ItemBorgModule - items: - - ChameleonProjector + hands: + - item: ChameleonProjector - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: xenoborg-projector-module } @@ -1262,8 +1540,8 @@ - state: xenoborg_stealth - state: icon-xenoborg-cloak - type: ItemBorgModule - items: - - CloakingDevice + hands: + - item: CloakingDevice - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: xenoborg-eye-module } @@ -1278,7 +1556,7 @@ - state: xenoborg_stealth - state: icon-xenoborg-cloak2 - type: ItemBorgModule - items: - - SuperCloakingDevice + hands: + - item: SuperCloakingDevice - type: BorgModuleIcon icon: { sprite: Interface/Actions/actions_borg.rsi, state: xenoborg-eye2-module } diff --git a/Resources/Prototypes/Entities/Objects/Specific/Service/vending_machine_restock.yml b/Resources/Prototypes/Entities/Objects/Specific/Service/vending_machine_restock.yml index 95d79dc378..5c78f305c2 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Service/vending_machine_restock.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Service/vending_machine_restock.yml @@ -281,6 +281,8 @@ canRestock: - NanoMedInventory - NanoMedPlusInventory + - NanoMedCivilianInventory + - NanoMedCivilianWallInventory - type: Sprite layers: - state: base diff --git a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml index bdd042df57..8352933f8b 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml @@ -138,6 +138,7 @@ - type: AccessReader access: [["Research"], ["Cargo"]] - type: Lock + - type: LockedStorage - type: SuppressArtifactContainer - type: RadiationBlockingContainer resistance: 5 diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml index 0c0c1cf172..c8c275ac23 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml @@ -148,6 +148,263 @@ tags: - Bottle +# Medicine bottles + +- type: entity + id: ChemistryBottleAloxadone + suffix: aloxadone + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-aloxadone + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Aloxadone + Quantity: 30 + +- type: entity + id: ChemistryBottleAmbuzol + suffix: ambuzol + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-ambuzol + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Ambuzol + Quantity: 30 + +- type: entity + id: ChemistryBottleAmbuzolPlus + suffix: ambuzol+ + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-ambuzol-plus + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: AmbuzolPlus + Quantity: 30 + +- type: entity + id: ChemistryBottleArithrazine + suffix: arithrazine + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-arithrazine + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Arithrazine + Quantity: 30 + +- type: entity + id: ChemistryBottleBarozine + suffix: barozine + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-barozine + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Barozine + Quantity: 30 + +- type: entity + id: ChemistryBottleBicaridine + suffix: bicaridine + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-bicaridine + - type: SolutionContainerManager + solutions: + drink: # This solution name and target volume is hard-coded in ChemMasterComponent + maxVol: 30 + reagents: + - ReagentId: Bicaridine + Quantity: 30 + +- type: entity + id: ChemistryBottleBruizine + suffix: bruizine + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-bruizine + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Bruizine + Quantity: 30 + +- type: entity + id: ChemistryBottleCognizine + suffix: cognizine + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-cognizine + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Cognizine + Quantity: 30 + +- type: entity + id: ChemistryBottleCryoxadone + suffix: cryoxadone + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-cryoxadone + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Cryoxadone + Quantity: 30 + +- type: entity + id: ChemistryBottleCryptobiolin + suffix: cryptobiolin + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-cryptobiolin + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Cryptobiolin + Quantity: 30 + +- type: entity + id: ChemistryBottleDermaline + suffix: dermaline + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-dermaline + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Dermaline + Quantity: 30 + +- type: entity + id: ChemistryBottleDexalin + suffix: dex + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-dexalin + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Dexalin + Quantity: 30 + +- type: entity + id: ChemistryBottleDexalinPlus + suffix: dex+ + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-dexalin-plus + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: DexalinPlus + Quantity: 30 + +- type: entity + id: ChemistryBottleDiphenhydramine + suffix: diphenhydramine + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-diphenhydramine + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Diphenhydramine + Quantity: 30 + +- type: entity + id: ChemistryBottleDiphenylmethylamine + suffix: meth + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-diphenylmethylamine + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Diphenylmethylamine + Quantity: 30 + +- type: entity + id: ChemistryBottleDoxarubixadone + suffix: doxarubixadone + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-doxarubixadone + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Doxarubixadone + Quantity: 30 + +- type: entity + id: ChemistryBottleDylovene + suffix: dylovene + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-dylovene + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Dylovene + Quantity: 30 + - type: entity id: ChemistryBottleEpinephrine suffix: epinephrine @@ -157,12 +414,494 @@ currentLabel: reagent-name-epinephrine - type: SolutionContainerManager solutions: - drink: # This solution name and target volume is hard-coded in ChemMasterComponent + drink: maxVol: 30 reagents: - ReagentId: Epinephrine Quantity: 30 +- type: entity + id: ChemistryBottleEthyloxyephedrine + suffix: ethyloxyephedrine + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-ethyloxyephedrine + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Ethyloxyephedrine + Quantity: 30 + +- type: entity + id: ChemistryBottleEthylredoxrazine + suffix: ethylredoxrazine + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-ethylredoxrazine + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Ethylredoxrazine + Quantity: 30 + +- type: entity + id: ChemistryBottleHaloperidol + suffix: haloperidol + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-haloperidol + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Haloperidol + Quantity: 30 + +- type: entity + id: ChemistryBottleHolywater + suffix: holy water + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-holy-water + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Holywater + Quantity: 30 + +- type: entity + id: ChemistryBottleHyronalin + suffix: hyronalin + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-hyronalin + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Hyronalin + Quantity: 30 + +- type: entity + id: ChemistryBottleInaprovaline + suffix: inaprovaline + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-inaprovaline + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Inaprovaline + Quantity: 30 + +- type: entity + id: ChemistryBottleInsuzine + suffix: insuzine + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-insuzine + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Insuzine + Quantity: 30 + +- type: entity + id: ChemistryBottleIpecac + suffix: ipecac + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-ipecac + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Ipecac + Quantity: 30 + +- type: entity + id: ChemistryBottleKelotane + suffix: kelotane + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-kelotane + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Kelotane + Quantity: 30 + +- type: entity + id: ChemistryBottleLacerinol + suffix: lacerinol + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-lacerinol + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Lacerinol + Quantity: 30 + +- type: entity + id: ChemistryBottleLeporazine + suffix: leporazine + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-leporazine + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Leporazine + Quantity: 30 + +- type: entity + id: ChemistryBottleLipozine + suffix: lipozine + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-lipozine + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Lipozine + Quantity: 30 + +- type: entity + id: ChemistryBottleMannitol + suffix: mannitol + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-mannitol + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Mannitol + Quantity: 30 + +- type: entity + id: ChemistryBottleNecrosol + suffix: necrosol + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-necrosol + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Necrosol + Quantity: 30 + +- type: entity + id: ChemistryBottleOculine + suffix: oculine + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-oculine + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Oculine + Quantity: 30 + +- type: entity + id: ChemistryBottleOmnizine + suffix: omnizine + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-omnizine + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Omnizine + Quantity: 30 + +- type: entity + id: ChemistryBottleOpporozidone + suffix: opporozidone + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-opporozidone + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Opporozidone + Quantity: 30 + +- type: entity + id: ChemistryBottlePhalanximine + suffix: phalanximine + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-phalanximine + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Phalanximine + Quantity: 30 + +- type: entity + id: ChemistryBottlePolypyryliumOligomers + suffix: poly-oli + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-polypyrylium-oligomers + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: PolypyryliumOligomers + Quantity: 30 + +- type: entity + id: ChemistryBottlePotassiumIodide + suffix: iodide + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-potassium-iodide + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: PotassiumIodide + Quantity: 30 + +- type: entity + id: ChemistryBottlePsicodine + suffix: psicodine + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-psicodine + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Psicodine + Quantity: 30 + +- type: entity + id: ChemistryBottlePulpedBananaPeel + suffix: pulped-banana-peel + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-pulped-banana-peel + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: PulpedBananaPeel + Quantity: 30 + +- type: entity + id: ChemistryBottlePuncturase + suffix: puncturase + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-puncturase + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Puncturase + Quantity: 30 + +- type: entity + id: ChemistryBottlePyrazine + suffix: pyrazine + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-pyrazine + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Pyrazine + Quantity: 30 + +- type: entity + id: ChemistryBottleSaline + suffix: saline + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-saline + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Saline + Quantity: 30 + +- type: entity + id: ChemistryBottleSiderlac + suffix: siderlac + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-siderlac + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Siderlac + Quantity: 30 + +- type: entity + id: ChemistryBottleSigynate + suffix: sigynate + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-sigynate + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Sigynate + Quantity: 30 + +- type: entity + id: ChemistryBottleStellibinin + suffix: stellibinin + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-stellibinin + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Stellibinin + Quantity: 30 + +- type: entity + id: ChemistryBottleSynaptizine + suffix: synaptizine + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-synaptizine + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Synaptizine + Quantity: 30 + +- type: entity + id: ChemistryBottleTranexamicAcid + suffix: tranexamic acid + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-tranexamic-acid + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: TranexamicAcid + Quantity: 30 + +- type: entity + id: ChemistryBottleTricordrazine + suffix: tricordrazine + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-tricordrazine + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Tricordrazine + Quantity: 30 + +- type: entity + id: ChemistryBottleUltravasculine + suffix: ultravasculine + parent: BaseChemistryBottleFilled + components: + - type: Label + currentLabel: reagent-name-ultravasculine + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Ultravasculine + Quantity: 30 + +# Other bottles + - type: entity id: ChemistryBottleRobustHarvest suffix: robust harvest @@ -253,36 +992,6 @@ - ReagentId: Ephedrine Quantity: 30 -- type: entity - id: ChemistryBottleOmnizine - suffix: omnizine - parent: BaseChemistryBottleFilled - components: - - type: Label - currentLabel: reagent-name-omnizine - - type: SolutionContainerManager - solutions: - drink: - maxVol: 30 - reagents: - - ReagentId: Omnizine - Quantity: 30 - -- type: entity - parent: BaseChemistryBottleFilled - id: ChemistryBottleCognizine - suffix: cognizine - components: - - type: Label - currentLabel: reagent-name-cognizine - - type: SolutionContainerManager - solutions: - drink: - maxVol: 30 - reagents: - - ReagentId: Cognizine - Quantity: 30 - - type: entity id: ChemistryBottlePax suffix: pax @@ -669,3 +1378,85 @@ - id: ChemistryBottleSodium - id: ChemistryBottleSugar - id: ChemistryBottleSulfur + +- type: entityTable + id: CoreMedicineReagentBottleTable + table: !type:GroupSelector + children: + - id: ChemistryBottleBicaridine + - id: ChemistryBottleKelotane + - id: ChemistryBottleDermaline + - id: ChemistryBottleDylovene + - id: ChemistryBottleInaprovaline + - id: ChemistryBottleDexalin + - id: ChemistryBottleDexalinPlus + - id: ChemistryBottleSaline + - id: ChemistryBottleTricordrazine + +- type: entityTable + id: SpecialtyMedicineReagentBottleTable + table: !type:GroupSelector + children: + - id: ChemistryBottleCryoxadone + - id: ChemistryBottleEpinephrine + - id: ChemistryBottleHyronalin + - id: ChemistryBottleArithrazine + - id: ChemistryBottlePhalanximine + - id: ChemistryBottleTricordrazine + - id: ChemistryBottleTranexamicAcid + - id: ChemistryBottleOculine + +- type: entityTable + id: AllMedicineReagentBottlesTable + table: !type:GroupSelector + children: + - id: ChemistryBottleAloxadone + - id: ChemistryBottleAmbuzol + - id: ChemistryBottleAmbuzolPlus + - id: ChemistryBottleArithrazine + - id: ChemistryBottleBarozine + - id: ChemistryBottleBicaridine + - id: ChemistryBottleBruizine + - id: ChemistryBottleCognizine + - id: ChemistryBottleCryoxadone + - id: ChemistryBottleCryptobiolin + - id: ChemistryBottleDermaline + - id: ChemistryBottleDexalin + - id: ChemistryBottleDexalinPlus + - id: ChemistryBottleDiphenhydramine + - id: ChemistryBottleDiphenylmethylamine + - id: ChemistryBottleDoxarubixadone + - id: ChemistryBottleDylovene + - id: ChemistryBottleEpinephrine + - id: ChemistryBottleEthyloxyephedrine + - id: ChemistryBottleEthylredoxrazine + - id: ChemistryBottleHaloperidol + - id: ChemistryBottleHolywater + - id: ChemistryBottleHyronalin + - id: ChemistryBottleInaprovaline + - id: ChemistryBottleInsuzine + - id: ChemistryBottleIpecac + - id: ChemistryBottleKelotane + - id: ChemistryBottleLacerinol + - id: ChemistryBottleLeporazine + - id: ChemistryBottleLipozine + - id: ChemistryBottleMannitol + - id: ChemistryBottleNecrosol + - id: ChemistryBottleOculine + - id: ChemistryBottleOmnizine + - id: ChemistryBottleOpporozidone + - id: ChemistryBottlePhalanximine + - id: ChemistryBottlePolypyryliumOligomers + - id: ChemistryBottlePotassiumIodide + - id: ChemistryBottlePsicodine + - id: ChemistryBottlePulpedBananaPeel + - id: ChemistryBottlePuncturase + - id: ChemistryBottlePyrazine + - id: ChemistryBottleSaline + - id: ChemistryBottleSiderlac + - id: ChemistryBottleSigynate + - id: ChemistryBottleStellibinin + - id: ChemistryBottleSynaptizine + - id: ChemistryBottleTranexamicAcid + - id: ChemistryBottleTricordrazine + - id: ChemistryBottleUltravasculine diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml index bc8207b673..21b3742d02 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml @@ -104,64 +104,6 @@ solution: beaker - type: DnaSubstanceTrace -- type: entity - parent: BaseItem - id: BorgVial - name: integrated vial - description: An internal compartment installed into a cyborg. Rated for 30 units of any liquid. - components: - # All this shit is here to avoid inheriting breakable, since borgs can't replace broken vials. - - type: Sprite - sprite: Objects/Specific/Chemistry/vial.rsi - layers: - - state: vial-1 - - state: vial-1-1 - map: ["enum.SolutionContainerLayers.Fill"] - visible: false - - type: Appearance - - type: SolutionContainerVisuals - maxFillLevels: 6 - fillBaseName: vial-1- - inHandsMaxFillLevels: 4 - inHandsFillBaseName: -fill- - - type: Drink - solution: beaker - - type: SolutionContainerManager - solutions: - beaker: - maxVol: 30 - - type: MixableSolution - solution: beaker - - type: RefillableSolution - solution: beaker - - type: DrainableSolution - solution: beaker - - type: ExaminableSolution - solution: beaker - exactVolume: true - - type: DrawableSolution - solution: beaker - - type: SolutionTransfer - maxTransferAmount: 30 - canChangeTransferAmount: true - - type: SolutionItemStatus - solution: beaker - - type: UserInterface - interfaces: - enum.TransferAmountUiKey.Key: - type: TransferAmountBoundUserInterface - - type: Item - size: Tiny - sprite: Objects/Specific/Chemistry/vial.rsi - shape: - - 0,0,0,0 - - type: MeleeWeapon - soundNoDamage: - path: "/Audio/Effects/Fluids/splat.ogg" - damage: - types: - Blunt: 0 - - type: entity id: VestineChemistryVial parent: BaseChemistryEmptyVial diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml index 70ea8080ae..843515cffa 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml @@ -95,65 +95,6 @@ price: 30 - type: DnaSubstanceTrace -- type: entity - parent: BaseItem - id: BorgBeaker - name: integrated beaker - description: An internal compartment installed into a cyborg. Rated for 50 units of any liquid. - components: - # 3 morbillion components are to avoid inheriting breakable since borgs can't replace beakers. - - type: Tag - tags: - - GlassBeaker - - type: Sprite - sprite: Objects/Specific/Chemistry/beaker.rsi - layers: - - state: beaker - - state: beaker1 - map: ["enum.SolutionContainerLayers.Fill"] - visible: false - - type: Item - sprite: Objects/Specific/Chemistry/beaker.rsi - - type: MeleeWeapon - soundNoDamage: - path: "/Audio/Effects/Fluids/splat.ogg" - damage: - types: - Blunt: 0 - - type: SolutionContainerManager - solutions: - beaker: - maxVol: 50 - - type: MixableSolution - solution: beaker - - type: FitsInDispenser - solution: beaker - - type: RefillableSolution - solution: beaker - - type: DrainableSolution - solution: beaker - - type: ExaminableSolution - solution: beaker - exactVolume: true - - type: DrawableSolution - solution: beaker - - type: InjectableSolution - solution: beaker - - type: SolutionTransfer - canChangeTransferAmount: true - - type: SolutionItemStatus - solution: beaker - - type: UserInterface - interfaces: - enum.TransferAmountUiKey.Key: - type: TransferAmountBoundUserInterface - - type: Drink - solution: beaker - - type: Appearance - - type: SolutionContainerVisuals - maxFillLevels: 6 - fillBaseName: beaker - - type: entity parent: BaseItem id: BaseBeakerMetallic @@ -345,10 +286,13 @@ injectOnly: false ignoreMobs: true ignoreClosed: false - minTransferAmount: 1 - maxTransferAmount: 5 - transferAmount: 1 - toggleState: 1 # draw + transferAmounts: + - 1 + - 2 + - 3 + - 4 + - 5 + currentTransferAmount: 1 - type: ExaminableSolution solution: dropper exactVolume: true @@ -444,8 +388,7 @@ id: Syringe components: - type: Injector - transferAmount: 15 - toggleState: Draw + currentTransferAmount: 15 - type: Tag tags: - Syringe @@ -469,9 +412,13 @@ injector: maxVol: 5 - type: Injector - minTransferAmount: 1 - maxTransferAmount: 5 - transferAmount: 5 + transferAmounts: + - 1 + - 2 + - 3 + - 4 + - 5 + currentTransferAmount: 5 - type: SolutionContainerVisuals maxFillLevels: 3 fillBaseName: minisyringe @@ -520,6 +467,7 @@ - SyringeGunAmmo - type: entity + abstract: true parent: BaseSyringe id: PrefilledSyringe components: @@ -580,15 +528,15 @@ canReact: false - type: Injector injectOnly: false - minTransferAmount: 5 - maxTransferAmount: 10 - transferAmount: 10 + transferAmounts: + - 5 + - 10 + currentTransferAmount: 10 - type: Tag tags: - Syringe - Trash - - type: entity name: pill parent: BaseItem diff --git a/Resources/Prototypes/Entities/Objects/Specific/locks.yml b/Resources/Prototypes/Entities/Objects/Specific/locks.yml new file mode 100644 index 0000000000..bcb204cf48 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Specific/locks.yml @@ -0,0 +1,69 @@ +- type: entity + id: SelectableLock + abstract: true + components: + - type: Lock + locked: false + showLockVerbs: false + showExamine: false + lockOnClick: false + unlockOnClick: false + useAccess: false + unlockingSound: null # TODO: Maybe add sounds but just to the user? + lockingSound: null + breakOnAccessBreaker: true # more fun + lockTime: 0 + unlockTime: 0 + - type: LockOnTrigger + keysIn: [ lock ] + - type: SelectableComponentAdder + selections: 1 + verbCategoryName: selectable-lock-verb-category-name + entries: + - verbName: selectable-lock-tool-prying-verb + popup: selectable-lock-tool-prying-popup + priority: 4 + componentsToAdd: + - type: TriggerOnSimpleToolUsage + keyOut: lock + - type: SimpleToolUsage + quality: Prying + doAfter: 1 + - verbName: selectable-lock-tool-screwing-verb + popup: selectable-lock-tool-screwing-popup + priority: 3 + componentsToAdd: + - type: TriggerOnSimpleToolUsage + keyOut: lock + - type: SimpleToolUsage + quality: Screwing + doAfter: 1 + - verbName: selectable-lock-tool-cutting-verb + popup: selectable-lock-tool-cutting-popup + priority: 2 + componentsToAdd: + - type: TriggerOnSimpleToolUsage + keyOut: lock + - type: SimpleToolUsage + quality: Cutting + doAfter: 1 + # no anchoring since some objects might be anchorable + # no pulsing because it conflicts with the linking ability of the multitool + - verbName: selectable-lock-voice-verb + popup: selectable-lock-voice-popup + priority: 1 + componentsToAdd: + - type: TriggerOnVoice + keyOut: lock + listenRange: 2 # more fun + startRecordingVerb: voice-trigger-lock-verb-record + recordingVerbMessage: voice-trigger-lock-verb-message + inspectUninitializedLoc: voice-trigger-lock-on-uninitialized + inspectInitializedLoc: voice-trigger-lock-on-examine + - type: ActiveListener + - type: VoiceTriggerLock + - verbName: selectable-lock-no-lock-verb + popup: selectable-lock-no-lock-popup + priority: 0 + componentsToAdd: null + diff --git a/Resources/Prototypes/Entities/Objects/Tools/appraisal.yml b/Resources/Prototypes/Entities/Objects/Tools/appraisal.yml index 3edf26ea78..8b6ca5e02c 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/appraisal.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/appraisal.yml @@ -9,6 +9,10 @@ state: icon - type: Item sprite: Objects/Tools/appraisal-tool.rsi + shape: + - 0,0,1,0 + - 0,1,0,1 + storedOffset: -3,-3 - type: PriceGun - type: UseDelay delay: 3 diff --git a/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml b/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml index 4c24117caa..d8b05addca 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml @@ -82,15 +82,6 @@ - type: Stack count: 10 -- type: entity - parent: CableHVStack10 - id: CableHVStackLingering10 - suffix: Lingering, 10 - components: - - type: Stack - lingering: true - count: 10 - - type: entity parent: CableHVStack id: CableHVStack1 @@ -147,15 +138,6 @@ - type: Stack count: 10 -- type: entity - parent: CableMVStack10 - id: CableMVStackLingering10 - suffix: Lingering, 10 - components: - - type: Stack - lingering: true - count: 10 - - type: entity parent: CableMVStack id: CableMVStack1 @@ -211,15 +193,6 @@ - type: Stack count: 10 -- type: entity - parent: CableApcStack10 - id: CableApcStackLingering10 - suffix: Lingering, 10 - components: - - type: Stack - lingering: true - count: 10 - - type: entity parent: CableApcStack id: CableApcStack1 diff --git a/Resources/Prototypes/Entities/Objects/Tools/inflatable_wall.yml b/Resources/Prototypes/Entities/Objects/Tools/inflatable_wall.yml index f5e05b4e28..4f55d5c164 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/inflatable_wall.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/inflatable_wall.yml @@ -5,21 +5,24 @@ description: A folded membrane which rapidly expands into a large cubical shape on activation. suffix: Full components: - - type: Stack - stackType: InflatableWall - count: 10 - - type: Sprite - sprite: Objects/Misc/inflatable_wall.rsi - state: item_wall - - type: Item - sprite: Objects/Misc/inflatable_wall.rsi - size: Small - - type: SpawnAfterInteract - prototype: InflatableWall - doAfter: 1 - removeOnInteract: true - - type: Clickable - - type: PhysicalComposition + - type: Stack + stackType: InflatableWall + count: 10 + - type: Sprite + sprite: Objects/Misc/inflatable_wall.rsi + state: item_wall + - type: Item + sprite: Objects/Misc/inflatable_wall.rsi + size: Small + - type: SpawnAfterInteract + prototype: InflatableWall + doAfter: 1 + removeOnInteract: true + - type: Clickable + - type: PhysicalComposition + - type: Tag + tags: + - Inflatable # TODO: Add stack sprites + visuals. - type: entity @@ -29,21 +32,24 @@ description: A folded membrane which rapidly expands into a large cubical shape on activation. suffix: Full components: - - type: Stack - stackType: InflatableDoor - count: 4 - - type: Sprite - sprite: Objects/Misc/inflatable_door.rsi - state: item_door - - type: Item - sprite: Objects/Misc/inflatable_door.rsi - size: Small - - type: SpawnAfterInteract - prototype: InflatableDoor - doAfter: 1 - removeOnInteract: true - - type: Clickable - - type: PhysicalComposition + - type: Stack + stackType: InflatableDoor + count: 4 + - type: Sprite + sprite: Objects/Misc/inflatable_door.rsi + state: item_door + - type: Item + sprite: Objects/Misc/inflatable_door.rsi + size: Small + - type: SpawnAfterInteract + prototype: InflatableDoor + doAfter: 1 + removeOnInteract: true + - type: Clickable + - type: PhysicalComposition + - type: Tag + tags: + - Inflatable # TODO: Add stack sprites + visuals. - type: entity @@ -51,27 +57,27 @@ id: InflatableWallStack5 suffix: 5 components: - - type: Sprite - state: item_wall - - type: Stack - count: 5 + - type: Sprite + state: item_wall + - type: Stack + count: 5 - type: entity parent: InflatableWallStack id: InflatableWallStack1 suffix: 1 components: - - type: Sprite - state: item_wall - - type: Stack - count: 1 + - type: Sprite + state: item_wall + - type: Stack + count: 1 - type: entity parent: InflatableDoorStack id: InflatableDoorStack1 suffix: 1 components: - - type: Sprite - state: item_door - - type: Stack - count: 1 + - type: Sprite + state: item_door + - type: Stack + count: 1 diff --git a/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml b/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml index f579890ad4..5a6bc352c4 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml @@ -108,8 +108,8 @@ volume: 5 temperature: 293.15 moles: - - 1.025689525 # oxygen - - 1.025689525 # nitrogen + Oxygen: 1.025689525 # oxygen + Nitrogen: 1.025689525 # nitrogen #Empty black - type: entity @@ -143,8 +143,8 @@ volume: 5 temperature: 293.15 moles: - - 1.025689525 # oxygen - - 1.025689525 # nitrogen + Oxygen: 1.025689525 # oxygen + Nitrogen: 1.025689525 # nitrogen #Empty captain - type: entity @@ -183,8 +183,8 @@ volume: 5 temperature: 293.15 moles: - - 1.025689525 # oxygen - - 1.025689525 # nitrogen + Oxygen: 1.025689525 # oxygen + Nitrogen: 1.025689525 # nitrogen #Empty mini - type: entity @@ -223,14 +223,15 @@ volume: 1.5 temperature: 293.15 moles: - - 0.307706858 # oxygen - - 0.307706858 # nitrogen + Oxygen: 0.307706858 # oxygen + Nitrogen: 0.307706858 # nitrogen #Empty security - type: entity id: JetpackSecurity - parent: [BaseJetpack, BaseSecurityContraband] - name: security jetpack + parent: [JetpackMini, BaseSecurityContraband] + name: security mini jetpack + description: A compact jetpack utilized by station security when patrolling the station's exterior. Not intended for long range travel, it holds only 1.5 L of gas. suffix: Empty components: - type: Item @@ -239,8 +240,6 @@ sprite: Objects/Tanks/Jetpacks/security.rsi - type: Clothing sprite: Objects/Tanks/Jetpacks/security.rsi - slots: - - Back #Filled security - type: entity @@ -252,12 +251,12 @@ - type: GasTank outputPressure: 42.6 air: - # 13 minutes thrust - volume: 5 + # 4 minutes of thrust + volume: 1.5 temperature: 293.15 moles: - - 1.025689525 # oxygen - - 1.025689525 # nitrogen + Oxygen: 0.307706858 # oxygen + Nitrogen: 0.307706858 # nitrogen #Empty void - type: entity @@ -291,8 +290,8 @@ volume: 5 temperature: 293.15 moles: - - 1.025689525 # oxygen - - 1.025689525 # nitrogen + Oxygen: 1.025689525 # oxygen + Nitrogen: 1.025689525 # nitrogen # Infinite jetpack - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/heavy_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/heavy_rifle.yml index 2054fa7884..51bf0fea54 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/heavy_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/heavy_rifle.yml @@ -1,6 +1,6 @@ - type: entity id: BaseCartridgeHeavyRifle - name: cartridge (.20 rifle) + name: cartridge (.10 rifle) parent: [ BaseCartridge, BaseSecurityContraband ] abstract: true components: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/heavy_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/heavy_rifle.yml index d37555c344..eebccf32a0 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/heavy_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/heavy_rifle.yml @@ -1,6 +1,6 @@ - type: entity id: BulletHeavyRifle - name: bullet (.20 rifle) + name: bullet (.10 rifle) parent: BaseBullet categories: [ HideSpawnMenu ] components: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/light_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/light_rifle.yml index 7eac4b53d0..43427c1dac 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/light_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/light_rifle.yml @@ -1,6 +1,6 @@ - type: entity id: BulletLightRifle - name: bullet (.20 rifle) + name: bullet (.30 rifle) parent: BaseBullet categories: [ HideSpawnMenu ] components: @@ -11,7 +11,7 @@ - type: entity id: BulletLightRiflePractice - name: bullet (.20 rifle practice) + name: bullet (.30 rifle practice) parent: BaseBulletPractice categories: [ HideSpawnMenu ] components: @@ -23,7 +23,7 @@ - type: entity id: BulletLightRifleIncendiary parent: BaseBulletIncendiary - name: bullet (.20 rifle incendiary) + name: bullet (.30 rifle incendiary) categories: [ HideSpawnMenu ] components: - type: Projectile @@ -35,7 +35,7 @@ - type: entity id: BulletLightRifleUranium parent: BaseBulletUranium - name: bullet (.20 rifle uranium) + name: bullet (.30 rifle uranium) categories: [ HideSpawnMenu ] components: - type: Projectile diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/rifle.yml index e3e26bf9f3..497ca9e2a3 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/rifle.yml @@ -1,6 +1,6 @@ - type: entity id: BulletRifle - name: bullet (0.20 rifle) + name: bullet (.20 rifle) parent: BaseBullet categories: [ HideSpawnMenu ] components: @@ -11,7 +11,7 @@ - type: entity id: BulletRiflePractice - name: bullet (0.20 rifle practice) + name: bullet (.20 rifle practice) parent: BaseBulletPractice categories: [ HideSpawnMenu ] components: @@ -23,7 +23,7 @@ - type: entity id: BulletRifleIncendiary parent: BaseBulletIncendiary - name: bullet (0.20 rifle incendiary) + name: bullet (.20 rifle incendiary) categories: [ HideSpawnMenu ] components: - type: Projectile @@ -35,7 +35,7 @@ - type: entity id: BulletRifleUranium parent: BaseBulletUranium - name: bullet (0.20 rifle uranium) + name: bullet (.20 rifle uranium) categories: [ HideSpawnMenu ] components: - type: Projectile diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/toy.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/toy.yml index cfe080da6d..3e4235f677 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/toy.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/toy.yml @@ -24,7 +24,7 @@ - Trash - type: Ammo - type: Sprite - sprite: Objects/Fun/Foam/foam_crossbow.rsi + sprite: Objects/Fun/Foam/foam_dart.rsi layers: - state: foamdart - type: EmbeddableProjectile diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/watergun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/watergun.yml index 55adfb7ba6..65535223d9 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/watergun.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/watergun.yml @@ -56,6 +56,11 @@ name: water pistol description: The dinkiest of water-based weaponry. You swear the trigger doesn't do anything. components: + - type: Item + shape: + - 0,0,1,0 + - 0,1,0,1 + storedOffset: -4,-4 - type: Sprite sprite: Objects/Weapons/Guns/Pistols/water_pistol.rsi layers: @@ -95,7 +100,9 @@ map: [ "enum.DamageStateVisualLayers.Base" ] - type: Item sprite: Objects/Weapons/Guns/Pistols/soaker.rsi - size: Normal + size: Large + shape: + - 0,0,2,1 - type: RandomSprite getAllGroups: true available: @@ -132,7 +139,9 @@ map: [ "enum.DamageStateVisualLayers.Base" ] - type: Item sprite: Objects/Weapons/Guns/Pistols/soaker.rsi - size: Normal + size: Large + shape: # SMG size. + - 0,0,2,1 - type: RandomSprite getAllGroups: true available: 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 cdd3edd93f..3b034eafbb 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -116,6 +116,10 @@ map: ["enum.GunVisualLayers.MagUnshaded"] shader: unshaded - type: Item + shape: + - 0,0,1,0 + - 0,1,0,1 + storedOffset: 0,-7 sprite: Objects/Weapons/Guns/Battery/svalinn.rsi - type: MagazineVisuals magState: mag @@ -136,6 +140,8 @@ - state: mag-unshaded-4 map: ["enum.GunVisualLayers.MagUnshaded"] shader: unshaded + - type: Item + storedOffset: 0,-5 - type: HitscanBatteryAmmoProvider proto: RedMediumLaser fireCost: 62.5 @@ -159,6 +165,8 @@ - state: mag-unshaded-4 map: ["enum.GunVisualLayers.MagUnshaded"] shader: unshaded + - type: Item + storedOffset: 0,-4 - type: MagazineVisuals magState: mag steps: 5 @@ -179,6 +187,10 @@ id: WeaponTeslaGun description: The power of the primordial element of lightning in your hands. components: + - type: Item + size: Large + shape: + - 0,0,2,1 - type: Sprite sprite: Objects/Weapons/Guns/Battery/tesla_gun.rsi layers: @@ -203,11 +215,13 @@ - type: Appearance - type: entity - name: practice laser rifle + name: laser carbine parent: [BaseWeaponBattery, BaseGunWieldable] - id: WeaponLaserCarbinePractice - description: This modified laser rifle fires nearly harmless beams in the 40-watt range, for target practice. + id: WeaponLaserCarbine + description: Favoured by Nanotrasen Security for being cheap and easy to use. components: + - type: Item + size: Large - type: Sprite sprite: Objects/Weapons/Guns/Battery/laser_gun.rsi layers: @@ -227,23 +241,24 @@ selectedMode: SemiAuto availableModes: - SemiAuto - - type: HitscanBatteryAmmoProvider - proto: RedLaserPractice - fireCost: 62.5 - - type: StaticPrice - price: 300 - -- type: entity - name: laser rifle - parent: [WeaponLaserCarbinePractice, BaseGunWieldable, BaseSecurityContraband] - id: WeaponLaserCarbine - description: Favoured by Nanotrasen Security for being cheap and easy to use. - components: - - type: StaticPrice - price: 420 - type: HitscanBatteryAmmoProvider proto: RedLaser fireCost: 62.5 + - type: StaticPrice + price: 420 + +- type: entity + name: practice laser carbine + parent: [WeaponLaserCarbine, BaseGunWieldable] + id: WeaponLaserCarbinePractice + description: This modified laser carbine fires nearly harmless beams in the 40-watt range, for target practice. + components: + - type: StaticPrice + price: 300 + - type: HitscanBatteryAmmoProvider + proto: RedLaserPractice + fireCost: 62.5 + - type: PacifismAllowedGun - type: entity name: pulse pistol @@ -259,6 +274,8 @@ - state: mag-unshaded-4 map: ["enum.GunVisualLayers.MagUnshaded"] shader: unshaded + - type: Item + storedOffset: -2,-5 - type: MagazineVisuals magState: mag steps: 5 @@ -285,6 +302,8 @@ id: WeaponPulseCarbine description: A high tech energy carbine favoured by the NT-ERT operatives. components: + - type: Item + size: Large - type: Sprite sprite: Objects/Weapons/Guns/Battery/pulse_carbine.rsi layers: @@ -321,6 +340,10 @@ id: WeaponPulseRifle description: A weapon that is almost as infamous as its users. components: + - type: Item + size: Huge + shape: + - 0,0,4,1 - type: Sprite sprite: Objects/Weapons/Guns/Battery/pulse_rifle.rsi layers: @@ -353,6 +376,10 @@ id: WeaponLaserCannon description: A heavy duty, high powered laser weapon. components: + - type: Item + size: Huge + shape: + - 0,0,4,1 - type: Sprite sprite: Objects/Weapons/Guns/Battery/laser_cannon.rsi layers: @@ -416,6 +443,10 @@ id: WeaponXrayCannon description: An experimental weapon that uses concentrated x-ray energy against its target. components: + - type: Item + size: Huge + shape: + - 0,0,4,1 - type: Sprite sprite: Objects/Weapons/Guns/Battery/xray.rsi layers: @@ -452,6 +483,8 @@ - state: mag-unshaded-0 map: ["enum.GunVisualLayers.MagUnshaded"] shader: unshaded + - type: Item + storedOffset: -1,-5 - type: Clothing sprite: Objects/Weapons/Guns/Battery/practice_disabler.rsi quickEquip: false @@ -476,6 +509,7 @@ tags: - Taser - Sidearm + - type: PacifismAllowedGun - type: entity name: disabler @@ -504,6 +538,7 @@ guides: - Security - Antagonists + - type: PacifismAllowedGun - type: entity name: disabler SMG @@ -513,6 +548,8 @@ components: - type: Item size: Large + shape: + - 0,0,2,1 - type: Tag tags: - Taser @@ -542,6 +579,7 @@ - type: Appearance - type: StaticPrice price: 260 + - type: PacifismAllowedGun - type: entity name: taser @@ -602,6 +640,10 @@ id: WeaponAntiqueLaser 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: Item + size: Normal + shape: + - 0,0,1,1 - type: Sprite sprite: Objects/Weapons/Guns/Battery/antiquelasergun.rsi layers: @@ -647,7 +689,9 @@ description: An experimental high-energy laser pistol with a self-charging nuclear battery. components: - type: Item - size: Normal # Intentionally larger than other pistols + size: Normal + shape: + - 0,0,1,1 - type: Sprite sprite: Objects/Weapons/Guns/Battery/advancedlasergun.rsi layers: @@ -690,6 +734,8 @@ visible: false map: ["enum.GunVisualLayers.MagUnshaded"] shader: unshaded + - type: Item + storedOffset: 0,-6 - type: Appearance - type: MagazineVisuals magState: mag @@ -802,8 +848,6 @@ fireCost: 120 - type: Item size: Large - shape: - - 0,0,3,1 sprite: Objects/Weapons/Guns/Battery/inhands_64x.rsi heldPrefix: energy - type: Tag diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Bow/bow.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Bow/bow.yml index 13a52a6c14..edb3d40803 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Bow/bow.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Bow/bow.yml @@ -49,6 +49,7 @@ - type: entity id: BowImprovised parent: BaseBow + name: improvised shortbow components: - type: Sprite layers: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml index 261cd87fd9..fcbffc6be6 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml @@ -12,7 +12,7 @@ slots: - Back - type: Item - size: Huge + size: Ginormous - type: StaticPrice price: 500 - type: ContainerContainer @@ -36,6 +36,10 @@ slots: - Back - suitStorage + - type: Item + size: Huge + shape: + - 0,0,4,2 - type: AmmoCounter - type: Gun fireRate: 1 @@ -72,6 +76,8 @@ slots: - Back - suitStorage + - type: Item + size: Huge - type: AmmoCounter - type: Gun fireRate: 1 @@ -206,7 +212,7 @@ description: Manipulates gravity around objects to fling them at high velocities. components: - type: Item - storedRotation: -90 + size: Normal - type: TetherGun frequency: 5 dampingRatio: 4 @@ -248,7 +254,7 @@ description: Manipulates gravity around objects to fling them at high velocities. components: - type: Item - storedRotation: -90 + size: Normal - type: ForceGun frequency: 15 dampingRatio: 4 @@ -292,6 +298,12 @@ parent: BaseItem id: WeaponGrapplingGun components: + - type: Item + size: Small + shape: + - 0,0,1,0 + - 0,1,0,1 + storedOffset: 0,-6 - type: AmmoCounter - type: GrapplingGun - type: Gun @@ -327,6 +339,8 @@ suffix: Admeme description: Manipulates gravity around objects to fling them at high velocities. components: + - type: Item + size: Normal - type: TetherGun canTetherAlive: true canUnanchor: true @@ -366,6 +380,8 @@ suffix: Admeme description: Manipulates gravity around objects to fling them at high velocities. components: + - type: Item + size: Normal - type: ForceGun canTetherAlive: true canUnanchor: true diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml index ed87a4edcb..eaa58562f1 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml @@ -16,6 +16,7 @@ shape: - 0,0,1,0 - 0,1,0,1 + storedOffset: 0,-4 - type: Tag tags: - Sidearm @@ -204,6 +205,8 @@ map: ["enum.GunVisualLayers.Mag"] - type: Clothing sprite: Objects/Weapons/Guns/Pistols/mk58.rsi + - type: Item + storedOffset: 0,-2 - type: Gun fireRate: 5 availableModes: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml index 1e61fa3295..3f9a2d5435 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml @@ -190,7 +190,7 @@ parent: BaseArrow id: ArrowCard name: cardboard arrow - description: Cant kill no matter how hard you try. + description: Careful, you'll poke an eye out! components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/arrows.rsi @@ -209,4 +209,4 @@ damage: 10 - type: Construction graph: CardArrow - node: CardArrow \ No newline at end of file + node: CardArrow diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml index 1cf6ab9a94..cff52ee3a3 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml @@ -925,6 +925,7 @@ Quantity: 30 - type: EmitSoundOnTrigger sound: /Audio/Items/smoke_grenade_smoke.ogg + positional: true - type: ExplodeOnTrigger - type: Explosive explosionType: Default diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml index 1cc54cc548..f860830dc7 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml @@ -12,6 +12,7 @@ shape: - 0,0,1,0 - 0,1,0,1 + storedOffset: 0,-6 - type: Tag tags: - Sidearm @@ -82,12 +83,14 @@ name: Inspector parent: [BaseWeaponRevolver, BaseSecurityContraband] id: WeaponRevolverInspector - description: A single-action revolver manufactured by various companies. It is readily available on the civilian market, making it a popular choice among private investigators. You feel lucky just holding it. Loads 6 rounds of .45 magnum. + description: A double-action revolver manufactured by various companies. It is readily available on the civilian market, making it a popular choice among private investigators. You feel lucky just holding it. Loads 6 rounds of .45 magnum. components: - type: Sprite sprite: Objects/Weapons/Guns/Revolvers/inspector.rsi - type: Clothing sprite: Objects/Weapons/Guns/Revolvers/inspector.rsi + - type: Item + storedOffset: 0,-2 - type: RevolverAmmoProvider capacity: 6 chambers: [ True, True, True, True, True, True ] @@ -103,6 +106,8 @@ sprite: Objects/Weapons/Guns/Revolvers/mateba.rsi - type: Clothing sprite: Objects/Weapons/Guns/Revolvers/mateba.rsi + - type: Item + storedOffset: 0,-3 - type: Gun fireRate: 3 soundGunshot: @@ -126,6 +131,8 @@ sprite: Objects/Weapons/Guns/Revolvers/python.rsi - type: Clothing sprite: Objects/Weapons/Guns/Revolvers/python.rsi + - type: Item + storedOffset: 0,-2 - type: Gun selectedMode: SemiAuto fireRate: 2 @@ -161,6 +168,8 @@ sprite: Objects/Weapons/Guns/Revolvers/pirate_revolver.rsi - type: Clothing sprite: Objects/Weapons/Guns/Revolvers/pirate_revolver.rsi + - type: Item + storedOffset: 1,-5 - type: Gun fireRate: 1 - type: ContainerContainer diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml index 82955fdc9c..99fb4edce7 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml @@ -8,6 +8,8 @@ - type: Sprite - type: Item size: Huge + shape: + - 0,0,3,2 - type: Clothing sprite: Objects/Weapons/Guns/Rifles/ak.rsi quickEquip: false @@ -204,6 +206,9 @@ map: ["enum.GunVisualLayers.Base"] - state: mag-0 map: ["enum.GunVisualLayers.Mag"] + - type: Item + shape: + - 0,0,4,2 - type: Clothing sprite: Objects/Weapons/Guns/Rifles/estoc.rsi - type: Gun @@ -268,6 +273,8 @@ sprite: Objects/Fun/Foam/foam_rifle.rsi - type: Item sprite: Objects/Fun/Foam/foam_rifle_inhand_64x.rsi + shape: + - 0,0,3,0 - type: BallisticAmmoProvider whitelist: tags: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml index 7c9332891b..2ecaaec89e 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml @@ -8,6 +8,8 @@ - type: Sprite - type: Item size: Large + shape: + - 0,0,2,1 - type: Clothing sprite: Objects/Weapons/Guns/SMGs/atreides.rsi quickEquip: false @@ -121,6 +123,47 @@ - type: StaticPrice price: 5000 +- type: entity + name: C-20r ROW #I think ROW stands for Recharging Onboard Weapon so i'm following the L6C's example + id: WeaponSubMachineGunC20rROW + parent: BaseItem + description: A burst-fire C-20r submachine gun for use by cyborgs. Creates .35 caliber ammo on the fly from an internal ammo fabricator, which slowly self-charges. + components: + - type: Gun + minAngle: 2 + maxAngle: 16 + angleIncrease: 4 + angleDecay: 16 + fireRate: 8 + burstFireRate: 8 + selectedMode: Burst + availableModes: + - Burst + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/c-20r.ogg + - type: Sprite + sprite: Objects/Weapons/Guns/SMGs/c20r.rsi + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-5 + map: ["enum.GunVisualLayers.Mag"] + - type: Item + size: Huge + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + - type: ProjectileBatteryAmmoProvider + proto: CartridgePistol + fireCost: 100 + - type: Battery + maxCharge: 3000 + startingCharge: 3000 + - type: BatterySelfRecharger + autoRecharge: true + autoRechargeRate: 25 + - type: AmmoCounter + - type: entity name: Drozd parent: [BaseWeaponSubMachineGun, BaseSecurityContraband] diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml index 8a770506fb..0a23a51a4f 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml @@ -10,8 +10,9 @@ - state: icon map: [ "enum.GunVisualLayers.Base" ] - type: Item - # If you update this also update the bulldog's size. size: Large + shape: + - 0,0,4,0 - type: Clothing sprite: Objects/Weapons/Guns/Shotguns/db_shotgun.rsi quickEquip: false @@ -110,9 +111,6 @@ - type: Sprite sprite: Objects/Weapons/Guns/Shotguns/db_shotgun.rsi - type: Item - size: Normal - shape: - - 0,0,4,0 sprite: Objects/Weapons/Guns/Shotguns/db_shotgun_inhands_64x.rsi - type: GunRequiresWield #remove when inaccuracy on spreads is fixed - type: Gun @@ -166,9 +164,6 @@ description: An old yet faithful design, and a favorite among irregular forces of many worlds. Uses .50 shotgun shells. components: # intend for Kammerer to have tighter choke for slower fire rate and/or manual cycling - type: Item - size: Normal - shape: - - 0,0,4,0 sprite: Objects/Weapons/Guns/Shotguns/pump_inhands_64x.rsi - type: Sprite sprite: Objects/Weapons/Guns/Shotguns/pump.rsi @@ -195,6 +190,8 @@ sprite: Objects/Weapons/Guns/Shotguns/sawn.rsi - type: Item size: Small + shape: + - 0,0,2,0 sprite: Objects/Weapons/Guns/Shotguns/sawn_inhands_64x.rsi - type: Gun fireRate: 3 @@ -229,7 +226,10 @@ components: - type: Item size: Small - storedRotation: 90 + shape: + - 0,0,1,0 + - 0,1,0,1 + storedOffset: 0,-5 - type: Sprite sprite: Objects/Weapons/Guns/Shotguns/hm_pistol.rsi - type: Clothing @@ -252,10 +252,6 @@ suffix: Pirate description: Deadly at close range. components: - - type: Item - size: Normal - shape: - - 0,0,4,0 - type: Sprite sprite: Objects/Weapons/Guns/Shotguns/blunderbuss.rsi - type: GunRequiresWield #remove when inaccuracy on spreads is fixed @@ -277,9 +273,6 @@ - type: Clothing sprite: Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi - type: Item - size: Normal - shape: - - 0,0,4,0 sprite: Objects/Weapons/Guns/Shotguns/improvised_shotgun_inhands_64x.rsi - type: GunRequiresWield #remove when inaccuracy on spreads is fixed - type: Gun diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml index 655f866f77..13bac56bcd 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml @@ -10,7 +10,7 @@ - state: base map: ["enum.GunVisualLayers.Base"] - type: Item - size: Huge + size: Large - type: Clothing sprite: Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi quickEquip: false @@ -95,6 +95,10 @@ id: WeaponSniperHristov description: For when you absolutely, positively need to make someone regret their life choices from a safe distance. Uses .60 anti-materiel ammo. components: + - type: Item + size: Huge + shape: + - 0,0,5,1 - type: Sprite sprite: Objects/Weapons/Guns/Snipers/heavy_sniper.rsi - type: Clothing @@ -176,7 +180,7 @@ shape: - 0,0,1,0 - 0,1,0,1 - storedRotation: 0 + storedOffset: 0,-5 - type: Sprite sprite: Objects/Weapons/Guns/Snipers/flintlock.rsi - type: Clothing diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_energy.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_energy.yml index 40c67c898d..33d5fd6e97 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_energy.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_energy.yml @@ -5,6 +5,10 @@ name: sentry turret description: A high-tech autonomous weapons system designed to keep unauthorized personnel out of sensitive areas. components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: Fixtures fixtures: body: @@ -186,7 +190,7 @@ - Borg - BasicSilicon - type: Machine - board: WeaponEnergyTurretSecurityMachineCircuitboard + board: WeaponEnergyTurretCommandMachineCircuitboard - type: DeviceNetwork receiveFrequencyId: TurretControl transmitFrequencyId: Turret diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/flare_gun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/flare_gun.yml index 224697bc93..6c0df2cd76 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/flare_gun.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/flare_gun.yml @@ -11,6 +11,9 @@ map: ["enum.GunVisualLayers.Base"] - type: Item size: Small + shape: + - 0,0,1,0 + - 0,1,0,1 sprite: Objects/Weapons/Guns/Shotguns/flaregun.rsi - type: ItemSlots slots: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml index cadc0f478a..ec7e4b3e7f 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml @@ -93,7 +93,7 @@ - type: ContainerAmmoProvider container: storagebase - type: Item - size: Normal + size: Large - type: Clothing sprite: Objects/Weapons/Guns/Cannons/pie_cannon.rsi quickEquip: false @@ -137,7 +137,7 @@ - type: AmmoCounter - type: Item size: Normal - + - type: entity name: syringe gun parent: BaseStorageItem @@ -169,7 +169,9 @@ - type: ContainerAmmoProvider container: storagebase - type: Item - size: Normal + size: Large + shape: + - 0,0,2,1 - type: ContainerContainer containers: storagebase: !type:Container diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/cane.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/cane.yml index cbf437d0b2..fcf0b91f8e 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/cane.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/cane.yml @@ -11,6 +11,7 @@ size: Normal sprite: Objects/Weapons/Melee/cane.rsi - type: Appearance + - type: MobilityAid - type: MeleeWeapon wideAnimationRotation: 45 damage: @@ -41,7 +42,7 @@ attackRate: 1.5 damage: types: - Slash: 14 + Slash: 17 soundHit: path: /Audio/Weapons/bladeslice.ogg - type: Item @@ -53,7 +54,7 @@ - type: DisarmMalus - type: entity - parent: Cane + parent: [Cane, SelectableLock] id: CaneSheath suffix: Empty components: @@ -69,6 +70,9 @@ interfaces: enum.StorageUiKey.Key: type: StorageBoundUserInterface + - type: ItemSlotsLock + slots: + - item - type: ItemSlots slots: item: @@ -80,6 +84,7 @@ - CaneBlade insertSound: /Audio/Items/sheath.ogg ejectSound: /Audio/Items/unsheath.ogg + priority: 3 - type: ItemMapper mapLayers: cane: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml index f879e2891e..04b65ddb6b 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml @@ -159,7 +159,7 @@ - type: entity name: pen - parent: BaseMeleeWeaponEnergy + parent: [BaseMeleeWeaponEnergy, SelectableLock] id: EnergyDagger suffix: E-Dagger description: 'A dark ink pen.' @@ -222,6 +222,16 @@ damage: types: Blunt: 1 + - type: EmitSoundOnUse + sound: + path: /Audio/Items/pen_click.ogg + params: + volume: -4 + maxDistance: 2 + - type: UseDelay + delay: 1.5 + - type: ItemToggleRequiresLock # TODO: FIX THIS VERB IS COOKED + lockedPopup: null - type: Tag tags: - Write @@ -387,10 +397,17 @@ spread: 75 # Borgs + +- type: entity + parent: EnergySword + id: CyborgEnergySword + suffix: For Borgs + description: A very loud & dangerous sword with a beam made of pure, concentrated plasma. Specially designed for syndicate cyborgs. + - type: entity - suffix: One-Handed, For Borgs parent: EnergySwordDouble id: CyborgEnergySwordDouble # why is this invalid if ID is BorgEnergySwordDouble + suffix: One-Handed, For Borgs description: Syndicate Command Interns thought that having one blade on the energy sword was not enough. Specially designed for syndicate cyborgs. components: # could add energy-draining like the L6C - type: Wieldable diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/offset_cane.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/offset_cane.yml index 1d2081fe93..12e2e9ae70 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/offset_cane.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/offset_cane.yml @@ -10,6 +10,7 @@ - type: Item size: Normal sprite: Objects/Weapons/Melee/offset_canes/standard.rsi + - type: MobilityAid # - type: RandomSprite # Ideally I'd rather these be their own selectable item instead of randomly picked. # available: # - color: "#91949C" # standard gray diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml index 2dfb1b363f..01e31bc467 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml @@ -12,6 +12,7 @@ - type: Tag tags: - Spear + - ScurretWearable - type: Fixtures fixtures: fix1: @@ -217,7 +218,7 @@ - type: entity name: sharkminnow tooth spear - parent: Spear + parent: Spear id: SpearSharkMinnow description: A spear with a sharkminnow tooth as a tip. components: @@ -233,4 +234,4 @@ types: Piercing: 25 #throw dmg enough to two-shot carp - type: Construction - graph: SpearSharkMinnow \ No newline at end of file + graph: SpearSharkMinnow diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/white_cane.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/white_cane.yml index 997c3771d5..bba4085295 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/white_cane.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/white_cane.yml @@ -24,4 +24,3 @@ Blunt: 3 - type: UseDelay delay: 1 - diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml index d843463886..c1e87643bc 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml @@ -91,6 +91,7 @@ - timer sound: path: "/Audio/Effects/flash_bang.ogg" + positional: true - type: DeleteOnTrigger keysIn: - timer @@ -260,6 +261,7 @@ path: /Audio/Effects/Grenades/Supermatter/supermatter_end.ogg params: volume: 5 + positional: true keysIn: - stageTwo - type: DeleteOnTrigger @@ -478,6 +480,7 @@ keysIn: - timer sound: /Audio/Items/smoke_grenade_smoke.ogg + positional: true - type: DeleteOnTrigger keysIn: - timer @@ -566,8 +569,8 @@ air: volume: 1000 moles: # Target is 3117.84 mols total for filling 30 tiles (goal is 101.325 kPa @ 20C) - - 654.7464 # oxygen - - 2463.0936 # nitrogen + Oxygen: 654.7464 # oxygen + Nitrogen: 2463.0936 # nitrogen temperature: 293.15 - type: StaticPrice price: 350 @@ -601,6 +604,7 @@ - timer sound: path: /Audio/Effects/Emotes/parp1.ogg + positional: true - type: Appearance - type: TimerTriggerVisuals primingSound: @@ -621,6 +625,7 @@ - timer sound: path: /Audio/Effects/Emotes/parp1.ogg + positional: true - type: Appearance - type: TimerTriggerVisuals primingSound: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/projectile_grenades.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/projectile_grenades.yml index f9ce11a3b9..0e8b758a13 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/projectile_grenades.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/projectile_grenades.yml @@ -61,6 +61,7 @@ - timer sound: path: "/Audio/Effects/flash_bang.ogg" + positional: true - type: SpawnOnTrigger keysIn: - timer @@ -103,6 +104,7 @@ - timer sound: path: "/Audio/Weapons/Guns/Gunshots/batrifle.ogg" + positional: true - type: StaticPrice price: 1500 @@ -134,5 +136,6 @@ - timer sound: path: "/Audio/Weapons/Guns/Gunshots/batrifle.ogg" + positional: true - type: StaticPrice price: 1500 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/scattering_grenades.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/scattering_grenades.yml index ce031ba6ff..ba2bdd230e 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/scattering_grenades.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/scattering_grenades.yml @@ -87,6 +87,7 @@ - timer sound: path: "/Audio/Machines/door_lock_off.ogg" + positional: true - type: entity parent: [ScatteringGrenadeBase, BaseSyndicateContraband] @@ -114,6 +115,7 @@ - timer sound: path: "/Audio/Machines/door_lock_off.ogg" + positional: true - type: StaticPrice price: 2500 @@ -140,6 +142,7 @@ - timer sound: path: "/Audio/Items/bikehorn.ogg" + positional: true - type: entity parent: [SoapSyndie, ScatteringGrenadeBase, BaseSyndicateContraband] @@ -167,6 +170,7 @@ - timer sound: path: "/Audio/Effects/flash_bang.ogg" + positional: true - type: StaticPrice price: 1000 @@ -199,3 +203,4 @@ - timer sound: path: "/Audio/Weapons/Guns/Gunshots/batrifle.ogg" + positional: true diff --git a/Resources/Prototypes/Entities/Objects/base_contraband.yml b/Resources/Prototypes/Entities/Objects/base_contraband.yml index 0dfe95a68e..942e36b0cd 100644 --- a/Resources/Prototypes/Entities/Objects/base_contraband.yml +++ b/Resources/Prototypes/Entities/Objects/base_contraband.yml @@ -1,4 +1,13 @@ -# used by the unique items of xenoborgs (like modules and stuff) +# generic "highly illegal" contraband; Syndicate/magical contraband are already considered highly illegal under Space Law, +# so this is mostly for stuff that should be equally illegal but doesn't need its own unique contraband tier added +- type: entity + id: BaseHighlyIllegalContraband + abstract: true + components: + - type: Contraband + severity: HighlyIllegal + +# used by the unique items of xenoborgs (like modules and stuff) - type: entity id: BaseXenoborgContraband abstract: true diff --git a/Resources/Prototypes/Entities/Objects/base_item.yml b/Resources/Prototypes/Entities/Objects/base_item.yml index bb67d3f4cf..8490ba0042 100644 --- a/Resources/Prototypes/Entities/Objects/base_item.yml +++ b/Resources/Prototypes/Entities/Objects/base_item.yml @@ -24,6 +24,7 @@ soundHit: collection: MetalThud - type: CollisionWake + - type: GravityAffected - type: Physics bodyType: Dynamic fixedRotation: false diff --git a/Resources/Prototypes/Entities/StatusEffects/body.yml b/Resources/Prototypes/Entities/StatusEffects/body.yml new file mode 100644 index 0000000000..3765ebefd4 --- /dev/null +++ b/Resources/Prototypes/Entities/StatusEffects/body.yml @@ -0,0 +1,18 @@ +- type: entity + parent: MobStatusEffectBase + id: BloodstreamStatusEffectBase + abstract: true + components: + - type: StatusEffect + whitelist: + components: + - Bloodstream + +- type: entity + parent: [ BloodstreamStatusEffectBase ] + id: StatusEffectBloodloss + name: bloodloss + components: + - type: StutteringAccent + - type: DrunkStatusEffect + - type: RejuvenateRemovedStatusEffect diff --git a/Resources/Prototypes/Entities/StatusEffects/misc.yml b/Resources/Prototypes/Entities/StatusEffects/misc.yml index 3ce81081c0..14c6b5b649 100644 --- a/Resources/Prototypes/Entities/StatusEffects/misc.yml +++ b/Resources/Prototypes/Entities/StatusEffects/misc.yml @@ -78,3 +78,17 @@ name: hallucinations components: - type: SeeingRainbowsStatusEffect + +# Causes your vision to become blurry and gives me a headache. +- type: entity + parent: MobStatusEffectDebuff + id: StatusEffectWoozy + name: woozy + components: + - type: DrunkStatusEffect + +# Causes you to get drunk +- type: entity + parent: [ StatusEffectWoozy, StatusEffectSlurred ] + id: StatusEffectDrunk + name: drunk diff --git a/Resources/Prototypes/Entities/StatusEffects/movement.yml b/Resources/Prototypes/Entities/StatusEffects/movement.yml index a6cbd20724..71142af434 100644 --- a/Resources/Prototypes/Entities/StatusEffects/movement.yml +++ b/Resources/Prototypes/Entities/StatusEffects/movement.yml @@ -58,10 +58,3 @@ - type: StatusEffectAlert alert: Stun - type: StunnedStatusEffect - -- type: entity - parent: MobStandStatusEffectBase - id: StatusEffectKnockdown - name: knocked down - components: - - type: KnockdownStatusEffect diff --git a/Resources/Prototypes/Entities/StatusEffects/speech.yml b/Resources/Prototypes/Entities/StatusEffects/speech.yml new file mode 100644 index 0000000000..17e533b1a8 --- /dev/null +++ b/Resources/Prototypes/Entities/StatusEffects/speech.yml @@ -0,0 +1,27 @@ +- type: entity + parent: MobStatusEffectDebuff + id: SpeechStatusEffectBase + abstract: true + components: + - type: StatusEffect + whitelist: + components: + - MobState + - Speech + requireAll: true + +# Causes you to st-t-u-t-t-t-er randomly when talking. +- type: entity + parent: SpeechStatusEffectBase + id: StatusEffectStutter + name: stutter + components: + - type: StutteringAccent + +# Causes you to schlur your words schwhen talking. +- type: entity + parent: SpeechStatusEffectBase + id: StatusEffectSlurred + name: slurred + components: + - type: SlurredAccent diff --git a/Resources/Prototypes/Entities/Structures/Dispensers/base_structuredispensers.yml b/Resources/Prototypes/Entities/Structures/Dispensers/base_structuredispensers.yml index e9797ee24a..d69ab97bab 100644 --- a/Resources/Prototypes/Entities/Structures/Dispensers/base_structuredispensers.yml +++ b/Resources/Prototypes/Entities/Structures/Dispensers/base_structuredispensers.yml @@ -77,3 +77,7 @@ - type: StaticPrice price: 1000 - type: WiresPanel + - type: EmptyOnMachineDeconstruct + containers: + - storagebase + - beakerSlot diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml index 47bc6c96d0..879018d038 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml @@ -1133,6 +1133,17 @@ containers: board: [ DoorElectronicsNukeop ] +- type: entity + parent: AirlockXenoborg + id: AirlockXenoborgLocked + suffix: Xenoborg, Locked + components: + - type: StationAiWhitelist + enabled: false + - type: ContainerFill + containers: + board: [ DoorElectronicsXenoborg ] + # Shuttle airlocks - type: entity parent: AirlockShuttle @@ -1161,6 +1172,17 @@ containers: board: [ DoorElectronicsNukeop ] +- type: entity + parent: AirlockShuttleXenoborg + id: AirlockGlassShuttleXenoborgLocked + suffix: External, Docking, Xenoborg, Locked + components: + - type: StationAiWhitelist + enabled: false + - type: ContainerFill + containers: + board: [ DoorElectronicsXenoborg ] + - type: entity parent: AirlockGlassShuttle id: AirlockExternalGlassShuttleLocked diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml index 67e46649ef..76d98f96d2 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml @@ -160,6 +160,16 @@ - type: Paintable group: null +- type: entity + parent: Airlock + id: AirlockXenoborg + name: xenoborg airlock + components: + - type: Sprite + sprite: Structures/Doors/Airlocks/Standard/xenoborg.rsi + - type: Paintable + group: null + - type: entity parent: Airlock id: AirlockHatchMaintenance diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml index 437076b0a2..8b509a17ff 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml @@ -4,6 +4,10 @@ name: airlock description: It opens, it closes, and maybe crushes you. components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: StationAiWhitelist - type: MeleeSound soundGroups: diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml index 28b63d9723..975328c7c1 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml @@ -6,9 +6,14 @@ placement: mode: SnapgridCenter components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: StationAiWhitelist - type: InteractionOutline - type: Sprite + snapCardinals: true sprite: Structures/Doors/Airlocks/highsec/highsec.rsi layers: - state: closed diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml index cad40324c8..5f80b94250 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml @@ -117,3 +117,13 @@ components: - type: Sprite sprite: Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi + +- type: entity + parent: AirlockShuttle + id: AirlockShuttleXenoborg + suffix: Docking + name: external airlock + description: Necessary for connecting two space craft together. + components: + - type: Sprite + sprite: Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi diff --git a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml index 584a4e5c7b..489411bc28 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml @@ -5,6 +5,10 @@ name: firelock description: Apply crowbar. components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: AtmosAlarmable syncWith: - FireAlarm diff --git a/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml b/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml index d22687faec..510b76b41e 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml @@ -1,10 +1,14 @@ -- type: entity +- type: entity id: BaseMaterialDoor parent: BaseStructure name: door abstract: true description: A door, where will it lead? components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: InteractionOutline - type: Sprite sprite: Structures/Doors/MineralDoors/metal_door.rsi @@ -78,20 +82,10 @@ id: WoodDoor name: wooden door parent: BaseMaterialDoorNavMap - description: A door, where will it lead? components: - type: Sprite sprite: Structures/Doors/MineralDoors/wood_door.rsi - layers: - - state: closed - map: ["enum.DoorVisualLayers.Base"] - type: Door - bumpOpen: false - clickOpen: true - closeTimeOne: 0.2 - closeTimeTwo: 0.6 - openTimeOne: 0.6 - openTimeTwo: 0.2 openSound: path: /Audio/Effects/door_open.ogg closeSound: @@ -115,13 +109,9 @@ id: PaperDoor name: paper door parent: BaseMaterialDoorNavMap - description: A door, where will it lead? components: - type: Sprite sprite: Structures/Doors/MineralDoors/paper_door.rsi - layers: - - state: closed - map: ["enum.DoorVisualLayers.Base"] - type: Destructible thresholds: - trigger: @@ -143,13 +133,9 @@ id: PlasmaDoor name: plasma door parent: BaseMaterialDoorNavMap - description: A door, where will it lead? components: - type: Sprite sprite: Structures/Doors/MineralDoors/plasma_door.rsi - layers: - - state: closed - map: ["enum.DoorVisualLayers.Base"] - type: Damageable damageContainer: StructuralInorganic damageModifierSet: StructuralMetallicStrong @@ -169,13 +155,9 @@ id: GoldDoor name: gold door parent: BaseMaterialDoorNavMap - description: A door, where will it lead? components: - type: Sprite sprite: Structures/Doors/MineralDoors/gold_door.rsi - layers: - - state: closed - map: ["enum.DoorVisualLayers.Base"] - type: Construction graph: DoorGraph node: goldDoor @@ -184,13 +166,9 @@ id: SilverDoor name: silver door parent: BaseMaterialDoorNavMap - description: A door, where will it lead? components: - type: Sprite sprite: Structures/Doors/MineralDoors/silver_door.rsi - layers: - - state: closed - map: ["enum.DoorVisualLayers.Base"] - type: Construction graph: DoorGraph node: silverDoor @@ -199,13 +177,9 @@ id: BananiumDoor name: bananium door parent: BaseMaterialDoorNavMap - description: A door, where will it lead? components: - type: Sprite sprite: Structures/Doors/MineralDoors/bananium_door.rsi - layers: - - state: closed - map: ["enum.DoorVisualLayers.Base"] - type: Construction graph: DoorGraph node: bananiumDoor @@ -223,9 +197,6 @@ components: - type: Sprite sprite: Structures/Doors/web_door.rsi - layers: - - state: closed - map: ["enum.DoorVisualLayers.Base"] - type: Construction graph: WebStructures node: door @@ -262,43 +233,14 @@ openSound: path: /Audio/Effects/rustle2.ogg - - type: entity id: CardDoor - parent: BaseStructure + parent: BaseMaterialDoorNavMap name: cardboard door - description: A door, where will it lead? components: - - type: InteractionOutline - type: Sprite sprite: Structures/Doors/MineralDoors/card_door.rsi - layers: - - state: closed - map: ["enum.DoorVisualLayers.Base"] - - type: AnimationPlayer - - type: Physics - bodyType: Static - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeAabb - bounds: "-0.49,-0.49,0.49,0.49" - density: 100 - mask: - - FullTileMask - layer: - - FlimsyLayer - type: Door - bumpOpen: false - clickOpen: true - canCrush: false - closeTimeOne: 0.2 - closeTimeTwo: 0.6 - openTimeOne: 0.6 - openTimeTwo: 0.2 - openingAnimationTime: 1.2 - closingAnimationTime: 1.2 openSound: path: /Audio/Effects/card_drag.ogg closeSound: @@ -308,7 +250,6 @@ Brute: path: "/Audio/Weapons/pierce.ogg" - - type: Appearance - type: Damageable damageContainer: StructuralInorganic damageModifierSet: Card @@ -331,12 +272,6 @@ max: 4 - !type:DoActsBehavior acts: [ "Destruction" ] - - type: Icon - sprite: Structures/Doors/MineralDoors/card_door.rsi - state: closed - type: Construction graph: DoorGraph node: cardDoor - - type: NavMapDoor - - type: Occluder - - type: BlockWeather diff --git a/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml b/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml index 0784829e1c..c8fdbec326 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml @@ -6,6 +6,10 @@ abstract: true description: Keeps the air in and the greytide out. components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: Sprite sprite: Structures/Doors/secret_door.rsi layers: diff --git a/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml b/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml index ca870d7c7d..fc1bc2285a 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml @@ -7,6 +7,10 @@ placement: mode: SnapgridCenter components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: StationAiWhitelist - type: Sprite sprite: Structures/Doors/Shutters/shutters.rsi @@ -111,6 +115,11 @@ node: Shutters containers: - board + - type: DeltaPressure + minPressure: 1000 + minPressureDelta: 750 + scalingType: Linear + scalingPower: 0.0005 - type: entity id: ShuttersNormalOpen @@ -147,6 +156,11 @@ node: ShuttersRadiation containers: - board + - type: DeltaPressure + minPressure: 1000 + minPressureDelta: 750 + scalingType: Linear + scalingPower: 0.0005 - type: RadiationBlocker resistance: 4 @@ -184,6 +198,11 @@ node: ShuttersWindow containers: - board + - type: DeltaPressure + minPressure: 1000 + minPressureDelta: 750 + scalingType: Linear + scalingPower: 0.0005 - type: RadiationBlocker resistance: 1 diff --git a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml index 10062d7803..07618243d4 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml @@ -6,6 +6,10 @@ placement: mode: SnapgridCenter components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: MeleeSound soundGroups: Brute: @@ -159,6 +163,10 @@ noAirWhenFullyAirBlocked: false airBlockedDirection: - South + - type: DeltaPressure + minPressure: 250 + minPressureDelta: 187.5 + scalingType: Threshold - type: Construction graph: Windoor node: windoor @@ -231,6 +239,10 @@ - type: Construction graph: Windoor node: windoorSecure + - type: DeltaPressure + minPressure: 3750 + minPressureDelta: 2500 + scalingType: Threshold - type: StaticPrice price: 350 - type: Tag @@ -300,6 +312,10 @@ - type: Construction graph: Windoor node: pwindoor + - type: DeltaPressure + minPressure: 18750 + minPressureDelta: 12500 + scalingType: Threshold - type: StaticPrice price: 500 - type: RadiationBlocker @@ -366,6 +382,10 @@ - type: Construction graph: Windoor node: pwindoorSecure + - type: DeltaPressure + minPressure: 37500 + minPressureDelta: 25000 + scalingType: Threshold - type: StaticPrice price: 500 - type: RadiationBlocker @@ -434,6 +454,10 @@ max: 2 - !type:DoActsBehavior acts: [ "Destruction" ] + - type: DeltaPressure + minPressure: 18750 + minPressureDelta: 12500 + scalingType: Threshold - type: Construction graph: Windoor node: uwindoor @@ -500,6 +524,10 @@ max: 2 - !type:DoActsBehavior acts: [ "Destruction" ] + - type: DeltaPressure + minPressure: 37500 + minPressureDelta: 25000 + scalingType: Threshold - type: Construction graph: Windoor node: uwindoorSecure diff --git a/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml b/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml index 27cb4d8b68..3cbbccd3ca 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml @@ -57,4 +57,4 @@ mask: - TableMask layer: - - TableLayer + - CounterLayer diff --git a/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml b/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml index fda2ac5e18..edf653d066 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml @@ -77,7 +77,7 @@ mask: - TableMask layer: - - TableLayer + - CounterLayer - type: Damageable damageContainer: StructuralInorganic damageModifierSet: Wood @@ -201,7 +201,7 @@ - type: entity id: TableReinforced - parent: TableBase + parent: CounterBase name: reinforced table description: A square piece of metal standing on four metal legs. Extra robust. components: @@ -471,7 +471,7 @@ - type: entity id: TableBrass - parent: TableBase + parent: CounterBase name: brass table description: A shiny, corrosion resistant brass table. Steampunk! components: @@ -615,7 +615,7 @@ - type: entity id: TableStone - parent: TableBase + parent: CounterBase name: stone table description: Literally the sturdiest thing you have ever seen. components: @@ -675,7 +675,7 @@ collection: FootstepCarpet - type: entity - parent: TableBase + parent: CounterBase id: TableXeno name: xeno table description: I wouldn't put the silverware on it. diff --git a/Resources/Prototypes/Entities/Structures/Furniture/toilet.yml b/Resources/Prototypes/Entities/Structures/Furniture/toilet.yml index a6753766d5..6616983240 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/toilet.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/toilet.yml @@ -100,6 +100,11 @@ - type: ReagentTank - type: DumpableSolution solution: drainBuffer + - type: Edible + edible: Drink + solution: tank + destroyOnEmpty: false + utensil: Spoon - type: GenericVisualizer visuals: enum.ToiletVisuals.SeatVisualState: @@ -122,6 +127,9 @@ graph: Toilet node: toilet +# so theres not actually any way to replenish the gastrotoxin / gold in these. +# I wouldn't add it to the solutionregeneration comp because that doesn't make a lot of sense imo. +# I guess we just need to add shitting? - type: entity id: ToiletDirtyWater parent: ToiletEmpty diff --git a/Resources/Prototypes/Entities/Structures/Holographic/projections.yml b/Resources/Prototypes/Entities/Structures/Holographic/projections.yml index 4867fc84d8..1009374cd6 100644 --- a/Resources/Prototypes/Entities/Structures/Holographic/projections.yml +++ b/Resources/Prototypes/Entities/Structures/Holographic/projections.yml @@ -105,7 +105,7 @@ mask: - TableMask layer: - - TableLayer + - CounterLayer - type: TimedDespawn lifetime: 180 - type: PointLight diff --git a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml index 953bdb422e..8330bf2fd4 100644 --- a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml +++ b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml @@ -83,6 +83,8 @@ - !type:PlaySoundBehavior sound: collection: GlassBreak + - type: PlacementReplacement + key: lights placement: mode: SnapgridCenter snap: diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml index 6635e5698f..f6538ba64e 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml @@ -665,7 +665,7 @@ - type: CommunicationsConsole title: comms-console-announcement-title-station - type: DeviceNetwork - deviceNetId: Wireless + deviceNetId: Wireless transmitFrequencyId: ShuttleTimer - type: ActivatableUI key: enum.CommunicationsConsoleUiKey.Key @@ -1374,6 +1374,21 @@ enum.WiresUiKey.Key: type: WiresBoundUserInterface +- type: entity + parent: ComputerSurveillanceWirelessCameraMonitor + id: ComputerSurveillanceWirelessXenoborgCameraMonitor + name: xenoborg camera monitor + description: A wireless xenoborg camera monitor. You're watching them. Maybe. + components: + - type: Computer + board: XenoborgCameraMonitorCircuitboard + - type: DeviceNetwork + deviceNetId: Wireless + receiveFrequencyId: Mothership + transmitFrequencyId: Mothership + - type: WirelessNetworkConnection + range: 2000 + - type: entity id: ComputerPalletConsole parent: BaseComputerAiAccess @@ -1541,6 +1556,39 @@ - type: Lock unlockOnClick: false +- type: entity + parent: ComputerRoboticsControl + id: ComputerXenoborgsControl + name: xenoborgs control console + description: Used to remotely monitor all xenoborgs. + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + state: computer + - map: ["computerLayerKeyboard"] + state: generic_keyboard + - map: ["computerLayerScreen"] + state: xenorobot + - map: ["computerLayerKeys"] + state: rd_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open + - type: RoboticsConsole + allowBorgControl: false + radioChannel: Xenoborg + - type: ActiveRadio + channels: + - Xenoborg + - type: DeviceNetwork + deviceNetId: Wireless + receiveFrequencyId: Mothership + transmitFrequencyId: Xenoborg + - type: Computer + board: ComputerXenoborgsControlCircuitboard + - type: AccessReader # only used for dangerous things + access: [["Xenoborg"]] + - type: entity id: StationAiUploadComputer parent: BaseComputer diff --git a/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml b/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml index 6ef8f7262f..064dc68c68 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml @@ -53,15 +53,15 @@ enum.AnomalyVesselVisualLayers.Base: True: { visible: true } False: { visible: false } - enum.AnomalyVesselVisuals.AnomalyState: + enum.AnomalyVesselVisuals.AnomalySeverity: enum.PowerDeviceVisualLayers.Powered: - 1: { state: powered-1 } - 2: { state: powered-2 } - 3: { state: powered-3 } + Stable: { state: powered-1 } + Decaying: { state: powered-2 } + Growing: { state: powered-3 } enum.AnomalyVesselVisualLayers.Base: - 1: { state: anomaly-1 } - 2: { state: anomaly-2 } - 3: { state: anomaly-3 } + Stable: { state: anomaly-1 } + Decaying: { state: anomaly-2 } + Growing: { state: anomaly-3 } enum.WiresVisuals.MaintenancePanelState: enum.WiresVisualLayers.MaintenancePanel: True: { visible: false } diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 7cfac3488a..abff9561c2 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -123,6 +123,7 @@ - PartsStatic - AtmosStatic - CablesStatic + - PaperworkStatic - CargoStatic - MaterialsStatic - BasicChemistryStatic diff --git a/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml b/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml index f384de64ab..d423a47ae9 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/reagent_grinder.yml @@ -73,6 +73,7 @@ tags: - HighRiskItem #ian meat efficiency: 0.9 + reclaimMaterials: false # Materials have ExtractableComponent, which is whitelisted, so we have to avoid infinite recycling loops onlyReclaimDrainable: false solutionContainerId: output - type: Sprite diff --git a/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml b/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml index 977adfd79c..a14ae6cb7c 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml @@ -195,3 +195,19 @@ components: - type: SurveillanceCameraRouter subnetFrequency: SurveillanceCameraEntertainment + +- type: entity + parent: SurveillanceCameraWirelessRouterBase + id: SurveillanceCameraWirelessRouterXenoborg + name: xenoborg camera wireless router + components: + - type: DeviceNetwork + deviceNetId: Wireless + receiveFrequencyId: Mothership + transmitFrequencyId: Mothership + - type: WirelessNetworkConnection + range: 2000 # longer range to get xenoborgs even when the mothership is far away + - type: SurveillanceCameraRouter + subnetFrequency: Xenoborg + - type: Machine + board: SurveillanceCameraWirelessRouterXenoborgCircuitboard diff --git a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml index fe921e9a04..efcfb7e1ed 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml @@ -911,13 +911,13 @@ - type: entity parent: VendingMachine - id: VendingMachineMedical - name: NanoMed Plus + id: VendingMachineMedicalBase + name: NanoMed Civilian description: It's a medical drug dispenser. Natural chemicals only! components: - type: VendingMachine - pack: NanoMedPlusInventory - offState: off + pack: NanoMedCivilianInventory + offState: off-civilian brokenState: broken normalState: normal-unshaded ejectState: eject-unshaded @@ -927,6 +927,33 @@ dataset: NanoMedAds - type: SpeakOnUIClosed pack: GenericVendGoodbyes + - type: Sprite + sprite: Structures/Machines/VendingMachines/medical.rsi + layers: + - state: "off-civilian" + map: ["enum.VendingMachineVisualLayers.Base"] + - state: "off-civilian" + map: ["enum.VendingMachineVisualLayers.BaseUnshaded"] + shader: unshaded + - state: panel + map: ["enum.WiresVisualLayers.MaintenancePanel"] + - type: PointLight + radius: 1.5 + energy: 1.6 + color: "#9dc5c9" + - type: GuideHelp + guides: + - MedicalDoctor + +- type: entity + parent: VendingMachineMedicalBase + id: VendingMachineMedical + name: NanoMed Plus + description: It's a medical drug dispenser. Natural chemicals only! + components: + - type: VendingMachine + pack: NanoMedPlusInventory + offState: off - type: Sprite sprite: Structures/Machines/VendingMachines/medical.rsi layers: @@ -939,13 +966,6 @@ map: ["enum.WiresVisualLayers.MaintenancePanel"] - type: AccessReader access: [["Medical"]] - - type: PointLight - radius: 1.5 - energy: 1.6 - color: "#9dc5c9" - - type: GuideHelp - guides: - - MedicalDoctor - type: entity parent: VendingMachine @@ -2243,6 +2263,36 @@ # wallmount - type: entity parent: VendingMachineWallmount + id: VendingMachineWallMedicalCivilian + name: NanoMed band-aid + description: "It's a wall-mounted medical equipment dispenser. Natural chemicals only!" + components: + - type: VendingMachine + pack: NanoMedCivilianWallInventory + offState: off-civilian + brokenState: broken + normalState: normal-unshaded + denyState: deny-unshaded + - type: Sprite + sprite: Structures/Machines/VendingMachines/wallmed.rsi + layers: + - state: "off-civilian" + map: ["enum.VendingMachineVisualLayers.Base"] + - state: "off-civilian" + map: ["enum.VendingMachineVisualLayers.BaseUnshaded"] + shader: unshaded + - texture: Structures/Machines/VendingMachines/maintenance_panel.png + map: ["enum.WiresVisualLayers.MaintenancePanel"] + - type: PointLight + radius: 1.3 + energy: 1.6 + color: "#43ccb5" + - type: GuideHelp + guides: + - Medical + +- type: entity + parent: VendingMachineWallMedicalCivilian id: VendingMachineWallMedical name: NanoMed description: "It's a wall-mounted medical equipment dispenser. Natural chemicals only!" @@ -2250,9 +2300,6 @@ - type: VendingMachine pack: NanoMedInventory offState: off - brokenState: broken - normalState: normal-unshaded - denyState: deny-unshaded - type: Sprite sprite: Structures/Machines/VendingMachines/wallmed.rsi layers: @@ -2263,12 +2310,5 @@ shader: unshaded - texture: Structures/Machines/VendingMachines/maintenance_panel.png map: ["enum.WiresVisualLayers.MaintenancePanel"] - - type: PointLight - radius: 1.3 - energy: 1.6 - color: "#43ccb5" - type: AccessReader access: [["Medical"]] - - type: GuideHelp - guides: - - Medical diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml index 410df05021..456a83046b 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml @@ -2,6 +2,7 @@ - type: entity abstract: true + parent: BaseMachine id: BaseGenerator description: A high efficiency thermoelectric generator. name: generator @@ -12,10 +13,6 @@ range: 5 sound: path: /Audio/Ambience/Objects/engine_hum.ogg - - type: Clickable - - type: InteractionOutline - - type: Physics - bodyType: Static - type: Fixtures fixtures: fix1: @@ -27,9 +24,6 @@ - MachineMask layer: - MachineLayer - - type: Transform - anchored: true - noRot: true - type: Sprite sprite: Structures/Power/power.rsi state: generator @@ -49,8 +43,7 @@ supplyRate: 3000 supplyRampRate: 500 supplyRampTolerance: 500 - - type: Anchorable - - type: Pullable + - type: Anchorable # Reduces anchor time to 1 second - type: Damageable damageContainer: StructuralInorganic damageModifierSet: Metallic diff --git a/Resources/Prototypes/Entities/Structures/Power/apc.yml b/Resources/Prototypes/Entities/Structures/Power/apc.yml index 75f61e7534..0addb34704 100644 --- a/Resources/Prototypes/Entities/Structures/Power/apc.yml +++ b/Resources/Prototypes/Entities/Structures/Power/apc.yml @@ -235,3 +235,14 @@ - type: Battery maxCharge: 200000 startingCharge: 200000 + +- type: entity + parent: BaseAPC + id: APCXenoborg + suffix: Basic, 50kJ, Xenoborg + components: + - type: Battery + maxCharge: 50000 + startingCharge: 50000 + - type: AccessReader + access: [["Xenoborg"]] diff --git a/Resources/Prototypes/Entities/Structures/Power/substation.yml b/Resources/Prototypes/Entities/Structures/Power/substation.yml index db11270215..f2d86a3900 100644 --- a/Resources/Prototypes/Entities/Structures/Power/substation.yml +++ b/Resources/Prototypes/Entities/Structures/Power/substation.yml @@ -121,9 +121,7 @@ gasMixture: volume: 1000 moles: - - 0 # oxygen - - 0 # nitrogen - - 340.5701689 # carbon dioxide + CarbonDioxide: 340.5701689 # carbon dioxide temperature: 373.15 - type: Explosive explosionType: Default diff --git a/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml b/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml index 0662094143..b37d3d4c4d 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml @@ -37,7 +37,9 @@ 3: { state: can-o3, shader: "unshaded" } - type: ActivatableUI key: enum.GasCanisterUiKey.Key - - type: ActivatableUIRequiresLock + - type: UIRequiresLock + userInterfaceKeys: + - enum.GasCanisterUiKey.Key - type: UserInterface interfaces: enum.GasCanisterUiKey.Key: @@ -126,16 +128,6 @@ - type: GasCanister gasMixture: volume: 1500 - moles: # List of gasses for easy reference - - 0 # oxygen - - 0 # nitrogen - - 0 # CO2 - - 0 # Plasma - - 0 # Tritium - - 0 # Water vapor - - 0 # Ammonia - - 0 # N2O - - 0 # Frezon temperature: 293.15 - type: Destructible thresholds: @@ -176,8 +168,8 @@ gasMixture: volume: 1500 moles: - - 581.56 # oxygen 21% - - 2187.79 # nitrogen 79% + Oxygen: 581.56 # oxygen 21% + Nitrogen: 2187.79 # nitrogen 79% temperature: 293.15 - type: Destructible thresholds: @@ -216,7 +208,7 @@ gasMixture: volume: 1500 moles: - - 2769.36 # oxygen + Oxygen: 2769.36 # oxygen temperature: 293.15 - type: Destructible thresholds: @@ -252,7 +244,7 @@ gasMixture: volume: 1500 moles: - - 18710.71051 # oxygen + Oxygen: 18710.71051 # oxygen temperature: 72 - type: AccessReader access: [["Atmospherics"]] @@ -270,8 +262,7 @@ gasMixture: volume: 1500 moles: - - 0 # oxygen - - 2769.36 # nitrogen + Nitrogen: 2769.36 # nitrogen temperature: 293.15 - type: Destructible thresholds: @@ -307,8 +298,7 @@ gasMixture: volume: 1500 moles: - - 0 # oxygen - - 18710.71051 # nitrogen + Nitrogen: 18710.71051 # nitrogen temperature: 72 - type: AccessReader access: [["Atmospherics"]] @@ -326,9 +316,7 @@ gasMixture: volume: 1500 moles: - - 0 # oxygen - - 0 # nitrogen - - 2769.36 # CO2 + CarbonDioxide: 2769.36 # CO2 temperature: 293.15 - type: Destructible thresholds: @@ -366,9 +354,7 @@ gasMixture: volume: 1500 moles: - - 0 # oxygen - - 0 # nitrogen - - 18710.71051 # CO2 + CarbonDioxide: 18710.71051 # CO2 temperature: 72 - type: AccessReader access: [["Atmospherics"]] @@ -386,10 +372,7 @@ gasMixture: volume: 1500 moles: - - 0 # oxygen - - 0 # nitrogen - - 0 # carbon dioxide - - 2769.36 # plasma + Plasma: 2769.36 # plasma temperature: 293.15 - type: Destructible thresholds: @@ -430,11 +413,7 @@ gasMixture: volume: 1500 moles: - - 0 # oxygen - - 0 # nitrogen - - 0 # CO2 - - 0 # Plasma - - 2769.36 # Tritium + Tritium: 2769.36 # Tritium temperature: 293.15 - type: Destructible thresholds: @@ -475,12 +454,7 @@ gasMixture: volume: 1500 moles: - - 0 # oxygen - - 0 # nitrogen - - 0 # CO2 - - 0 # Plasma - - 0 # Tritium - - 2769.36 # Water vapor + WaterVapor: 2769.36 # Water vapor temperature: 293.15 - type: Destructible thresholds: @@ -519,13 +493,7 @@ gasMixture: volume: 1500 moles: - - 0 # oxygen - - 0 # nitrogen - - 0 # CO2 - - 0 # Plasma - - 0 # Tritium - - 0 # Water vapor - - 2769.36 # Ammonia + Ammonia: 2769.36 # Ammonia temperature: 293.15 - type: Destructible thresholds: @@ -566,14 +534,7 @@ gasMixture: volume: 1500 moles: - - 0 # oxygen - - 0 # nitrogen - - 0 # CO2 - - 0 # Plasma - - 0 # Tritium - - 0 # Water vapor - - 0 # Ammonia - - 2769.36 # N2O + NitrousOxide: 2769.36 # N2O temperature: 293.15 - type: Destructible thresholds: @@ -614,15 +575,7 @@ gasMixture: volume: 1500 moles: - - 0 # oxygen - - 0 # nitrogen - - 0 # CO2 - - 0 # Plasma - - 0 # Tritium - - 0 # Water vapor - - 0 # Ammonia - - 0 # N2O - - 2769.36 # Frezon + Frezon: 2769.36 # Frezon temperature: 293.15 - type: Destructible thresholds: diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml index 70d79aa912..a08ba4aacd 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml @@ -396,6 +396,8 @@ components: - type: Sprite sprite: Structures/Storage/Crates/cage.rsi + drawdepth: LargeObjects + snapCardinals: true layers: - state: base - state: closed @@ -441,12 +443,12 @@ fix1: shape: !type:PhysShapeAabb - bounds: "-0.4,-0.4,0.4,0.29" + bounds: "-0.4,-0.2,0.4,0.29" density: 80 mask: - - CrateMask + - TabletopMachineMask layer: - - LargeMobLayer + - TabletopMachineLayer - type: StaticPrice price: 75 diff --git a/Resources/Prototypes/Entities/Structures/Storage/filing_cabinets.yml b/Resources/Prototypes/Entities/Structures/Storage/filing_cabinets.yml index f0e79a841e..c53dfb5d78 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/filing_cabinets.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/filing_cabinets.yml @@ -6,12 +6,13 @@ rolls: !type:RangeNumberSelector range: 2, 4 children: - - id: BoxFolderBlue + - id: BoxFolderBase - id: BoxFolderRed + - id: BoxFolderBlue - id: BoxFolderYellow - - id: BoxFolderWhite - id: BoxFolderGrey - id: BoxFolderBlack + - id: BoxFolderGreen - !type:GroupSelector rolls: !type:RangeNumberSelector range: 0, 3 diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/bar_sign.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/bar_sign.yml index 320a251218..a28b9db277 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/bar_sign.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/bar_sign.yml @@ -1,6 +1,6 @@ - type: entity id: BaseBarSign - parent: [ BaseWallmountGlass, BaseWallmountMetallic ] + parent: [ BaseWallmountGlass, BaseWallmountMachine ] name: bar sign abstract: true components: diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/base_structuresigns.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/base_structuresigns.yml index 041a93e935..68693f41cd 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/base_structuresigns.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/base_structuresigns.yml @@ -20,3 +20,5 @@ snapCardinals: true - type: StaticPrice price: 20 + - type: Transform + anchored: false diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Storage/shelfs.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Storage/shelfs.yml index aeceba8f2e..dd3e7dd0a4 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Storage/shelfs.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Storage/shelfs.yml @@ -45,6 +45,7 @@ description: It looks as strong as reality itself. components: - type: Lock + - type: LockedStorage - type: LockVisuals - type: Sprite sprite: Structures/Storage/Shelfs/wood.rsi diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Switches/switch.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Switches/switch.yml index bbc6733441..ac4d41d306 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Switches/switch.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Switches/switch.yml @@ -29,25 +29,27 @@ - Status lastSignals: Status: false + - type: Transform + anchored: false - type: Destructible thresholds: - - trigger: - !type:DamageTrigger - damage: 80 - behaviors: - - !type:DoActsBehavior - acts: [ "Destruction" ] - - trigger: - !type:DamageTrigger - damage: 40 - behaviors: - - !type:DoActsBehavior - acts: [ "Destruction" ] - - !type:PlaySoundBehavior - sound: - collection: MetalBreak - params: - volume: -8 + - trigger: + !type:DamageTrigger + damage: 80 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 40 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:PlaySoundBehavior + sound: + collection: MetalBreak + params: + volume: -8 - type: entity parent: BaseWallmountMetallic @@ -79,25 +81,27 @@ - type: DeviceLinkSource ports: - Pressed + - type: Transform + anchored: false - type: Destructible thresholds: - - trigger: - !type:DamageTrigger - damage: 80 - behaviors: - - !type:DoActsBehavior - acts: [ "Destruction" ] - - trigger: - !type:DamageTrigger - damage: 40 - behaviors: - - !type:DoActsBehavior - acts: [ "Destruction" ] - - !type:PlaySoundBehavior - sound: - collection: MetalBreak - params: - volume: -8 + - trigger: + !type:DamageTrigger + damage: 80 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 40 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:PlaySoundBehavior + sound: + collection: MetalBreak + params: + volume: -8 - type: entity parent: BaseWallmountMetallic @@ -118,6 +122,8 @@ transmitFrequencyId: SmartLight # assuming people want to use it for light switches. - type: ApcNetworkConnection - type: ApcNetSwitch + - type: Transform + anchored: false - type: Construction graph: LightSwitchGraph node: LightSwitchNode @@ -125,10 +131,10 @@ #directional - type: entity + parent: SignalSwitch id: SignalSwitchDirectional name: signal switch suffix: directional - parent: SignalSwitch components: - type: WallMount arc: 175 @@ -137,10 +143,10 @@ node: SignalSwitchDirectionalNode - type: entity + parent: SignalButton id: SignalButtonDirectional name: signal button suffix: directional - parent: SignalButton components: - type: WallMount arc: 175 @@ -149,10 +155,10 @@ node: SignalButtonDirectionalNode - type: entity + parent: ApcNetSwitch id: ApcNetSwitchDirectional name: apc net switch suffix: directional - parent: ApcNetSwitch components: - type: WallMount arc: 175 @@ -163,9 +169,9 @@ # lockable buttons - type: entity + parent: SignalButtonDirectional id: LockableButton name: lockable button - parent: SignalButtonDirectional categories: [ HideSpawnMenu ] components: - type: Appearance @@ -182,249 +188,249 @@ shader: unshaded - type: entity + parent: LockableButton id: LockableButtonCaptain suffix: Captain - parent: LockableButton components: - type: AccessReader access: [["Captain"]] - type: entity + parent: LockableButton id: LockableButtonHeadOfPersonnel suffix: HeadOfPersonnel - parent: LockableButton components: - type: AccessReader access: [["HeadOfPersonnel"]] - type: entity + parent: LockableButton id: LockableButtonChiefEngineer suffix: ChiefEngineer - parent: LockableButton components: - type: AccessReader access: [["ChiefEngineer"]] - type: entity + parent: LockableButton id: LockableButtonChiefMedicalOfficer suffix: ChiefMedicalOfficer - parent: LockableButton components: - type: AccessReader access: [["ChiefMedicalOfficer"]] - type: entity + parent: LockableButton id: LockableButtonHeadOfSecurity suffix: HeadOfSecurity - parent: LockableButton components: - type: AccessReader access: [["HeadOfSecurity"]] - type: entity + parent: LockableButton id: LockableButtonResearchDirector suffix: ResearchDirector - parent: LockableButton components: - type: AccessReader access: [["ResearchDirector"]] - type: entity + parent: LockableButton id: LockableButtonCommand suffix: Command - parent: LockableButton components: - type: AccessReader access: [["Command"]] - type: entity + parent: LockableButton id: LockableButtonCryogenics suffix: Cryogenics - parent: LockableButton components: - type: AccessReader access: [["Cryogenics"]] - type: entity + parent: LockableButton id: LockableButtonSecurity suffix: Security - parent: LockableButton components: - type: AccessReader access: [["Security"]] - type: entity + parent: LockableButton id: LockableButtonDetective suffix: Detective - parent: LockableButton components: - type: AccessReader access: [["Detective"]] - type: entity + parent: LockableButton id: LockableButtonArmory suffix: Armory - parent: LockableButton components: - type: AccessReader access: [["Armory"]] - type: entity + parent: LockableButton id: LockableButtonBrig suffix: Brig - parent: LockableButton components: - type: AccessReader access: [["Brig"]] - type: entity + parent: LockableButton id: LockableButtonLawyer suffix: Lawyer - parent: LockableButton components: - type: AccessReader access: [["Lawyer"]] - type: entity + parent: LockableButton id: LockableButtonEngineering suffix: Engineering - parent: LockableButton components: - type: AccessReader access: [["Engineering"]] - type: entity + parent: LockableButton id: LockableButtonMedical suffix: Medical - parent: LockableButton components: - type: AccessReader access: [["Medical"]] - type: entity + parent: LockableButton id: LockableButtonQuartermaster suffix: Quartermaster - parent: LockableButton components: - type: AccessReader access: [["Quartermaster"]] - type: entity + parent: LockableButton id: LockableButtonSalvage suffix: Salvage - parent: LockableButton components: - type: AccessReader access: [["Salvage"]] - type: entity + parent: LockableButton id: LockableButtonCargo suffix: Cargo - parent: LockableButton components: - type: AccessReader access: [["Cargo"]] - type: entity + parent: LockableButton id: LockableButtonResearch suffix: Research - parent: LockableButton components: - type: AccessReader access: [["Research"]] - type: entity + parent: LockableButton id: LockableButtonService suffix: Service - parent: LockableButton components: - type: AccessReader access: [["Service"]] - type: entity + parent: LockableButton id: LockableButtonMaintenance suffix: Maintenance - parent: LockableButton components: - type: AccessReader access: [["Maintenance"]] - type: entity + parent: LockableButton id: LockableButtonExternal suffix: External - parent: LockableButton components: - type: AccessReader access: [["External"]] - type: entity + parent: LockableButton id: LockableButtonJanitor suffix: Janitor - parent: LockableButton components: - type: AccessReader access: [["Janitor"]] - type: entity + parent: LockableButton id: LockableButtonTheatre suffix: Theatre - parent: LockableButton components: - type: AccessReader access: [["Theatre"]] - type: entity + parent: LockableButton id: LockableButtonBar suffix: Bar - parent: LockableButton components: - type: AccessReader access: [["Bar"]] - type: entity + parent: LockableButton id: LockableButtonChemistry suffix: Chemistry - parent: LockableButton components: - type: AccessReader access: [["Chemistry"]] - type: entity + parent: LockableButton id: LockableButtonKitchen suffix: Kitchen - parent: LockableButton components: - type: AccessReader access: [["Kitchen"]] - type: entity + parent: LockableButton id: LockableButtonChapel suffix: Chapel - parent: LockableButton components: - type: AccessReader access: [["Chapel"]] - type: entity + parent: LockableButton id: LockableButtonHydroponics suffix: Hydroponics - parent: LockableButton components: - type: AccessReader access: [["Hydroponics"]] - type: entity + parent: LockableButton id: LockableButtonAtmospherics suffix: Atmospherics - parent: LockableButton components: - type: AccessReader access: [["Atmospherics"]] - type: entity + parent: LockableButton id: LockableButtonCentcomm suffix: CentComm - parent: LockableButton components: - type: AccessReader access: [["CentralCommand"]] diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/base_wallmount.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/base_wallmount.yml index 824a446013..b064d4a231 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/base_wallmount.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/base_wallmount.yml @@ -6,6 +6,12 @@ snap: - Wallmount components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable + - type: Physics + canCollide: false - type: Clickable - type: WallMount - type: InteractionOutline diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/turret_controls.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/turret_controls.yml index e65530509b..651a5fe10a 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/turret_controls.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/turret_controls.yml @@ -24,8 +24,8 @@ collection: MetalGlassBreak params: volume: -4 - #- !type:ChangeConstructionNodeBehavior - To be added in a later PR - # node: machineFrame + - !type:ChangeConstructionNodeBehavior + node: machineFrame - !type:DoActsBehavior acts: [ "Destruction" ] - type: Transform @@ -36,9 +36,11 @@ - type: ContainerContainer containers: board: !type:Container - #- type: Construction - To be added in a later PR - # graph: WeaponEnergyTurretControlPanel - # node: frame + - type: Construction + graph: WeaponEnergyTurretControlPanel + node: frame + containers: + - board placement: mode: SnapgridCenter snap: @@ -157,13 +159,13 @@ - type: Electrified enabled: false usesApcPower: true - #- type: ContainerFill - Will be added in a later PR - # containers: - # board: - # - WeaponEnergyTurretStationControlPanelElectronics - #- type: Construction - Will be added in a later PR - # graph: WeaponEnergyTurretControlPanel - # node: finish + - type: ContainerFill + containers: + board: + - WeaponEnergyTurretStationControlPanelElectronics + - type: Construction + graph: WeaponEnergyTurretControlPanel + node: finish - type: entity parent: WeaponEnergyTurretStationControlPanelBase @@ -172,10 +174,10 @@ components: - type: AccessReader access: [["StationAi"], ["ResearchDirector"]] - #- type: ContainerFill - Will be added in a later PR - # containers: - # board: - # - WeaponEnergyTurretAIControlPanelElectronics + - type: ContainerFill + containers: + board: + - WeaponEnergyTurretAIControlPanelElectronics - type: DeviceNetwork receiveFrequencyId: TurretAI transmitFrequencyId: TurretControlAI @@ -197,10 +199,10 @@ components: - type: AccessReader access: [["StationAi"], ["Security"]] - #- type: ContainerFill - Will be added in a later PR - # containers: - # board: - # - WeaponEnergyTurretSecurityControlPanelElectronics + - type: ContainerFill + containers: + board: + - WeaponEnergyTurretSecurityControlPanelElectronics - type: TurretTargetSettings exemptAccessLevels: - Security @@ -214,10 +216,10 @@ components: - type: AccessReader access: [["StationAi"], ["Command"]] - #- type: ContainerFill - Will be added in a later PR - # containers: - # board: - # - WeaponEnergyTurretCommandControlPanelElectronics + - type: ContainerFill + containers: + board: + - WeaponEnergyTurretCommandControlPanelElectronics - type: TurretTargetSettings exemptAccessLevels: - Command diff --git a/Resources/Prototypes/Entities/Structures/Walls/grille.yml b/Resources/Prototypes/Entities/Structures/Walls/grille.yml index d9ced96d0c..55b06f1e60 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/grille.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/grille.yml @@ -198,7 +198,7 @@ mask: - FullTileMask layer: - - WallLayer + - GlassLayer - type: Construction graph: GrilleDiagonal node: grilleDiagonal @@ -236,7 +236,7 @@ mask: - FullTileMask layer: - - WallLayer + - GlassLayer - type: Construction graph: GrilleDiagonal node: clockworkGrilleDiagonal diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml index f3c2eaafe4..2964b71162 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml @@ -9,6 +9,10 @@ snap: - Wall components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: RangedDamageSound soundGroups: Brute: @@ -1192,6 +1196,33 @@ graph: Girder node: reinforcedWallChitin +- type: entity + parent: WallPlastitanium + id: WallXenoborg + name: xenoborg wall + components: + - type: Sprite + sprite: Structures/Walls/xenoborg.rsi + - type: Icon + sprite: Structures/Walls/xenoborg.rsi + - type: IconSmooth + key: walls + base: xenoborg + +- type: entity + parent: WallPlastitaniumDiagonal + id: WallXenoborgDiagonal + name: xenoborg wall + suffix: diagonal + components: + - type: Sprite + drawdepth: Walls + sprite: Structures/Walls/xenoborg_diagonal.rsi + state: state0 + - type: Icon + sprite: Structures/Walls/xenoborg_diagonal.rsi + state: state0 + - type: entity parent: BaseWall id: WallUranium @@ -1696,6 +1727,6 @@ - type: IconSmooth key: cards base: card - - type: Occluder + - type: Occluder - type: BlockWeather - - type: SunShadowCast \ No newline at end of file + - type: SunShadowCast diff --git a/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml b/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml index 8cc6312fdf..876fefd332 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml @@ -125,6 +125,7 @@ - type: Tag tags: - Diagonal + - Window - type: IconSmooth mode: Diagonal key: windows diff --git a/Resources/Prototypes/Entities/Structures/Windows/mining.yml b/Resources/Prototypes/Entities/Structures/Windows/mining.yml index 9565ee6555..8e276b0bb9 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/mining.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/mining.yml @@ -67,6 +67,7 @@ - type: Tag tags: - Diagonal + - Window - type: IconSmooth mode: Diagonal key: windows diff --git a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml index 532c18b253..d6761239a8 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml @@ -48,6 +48,11 @@ trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks.rsi + - type: DeltaPressure + minPressure: 75000 + minPressureDelta: 50000 + scalingType: Linear + scalingPower: 0.0005 - type: StaticPrice price: 100 - type: RadiationBlocker @@ -104,6 +109,10 @@ max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] + - type: DeltaPressure + minPressure: 18750 + minPressureDelta: 12500 + scalingType: Threshold - type: StaticPrice price: 50 - type: RadiationBlocker @@ -125,6 +134,7 @@ - type: Tag tags: - Diagonal + - Window - type: IconSmooth mode: Diagonal key: windows diff --git a/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml b/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml index cf7303b7bb..295e9d59ce 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml @@ -138,6 +138,7 @@ - type: Tag tags: - Diagonal + - Window - type: Icon sprite: Structures/Windows/plastitanium_window_diagonal.rsi state: state0 diff --git a/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml b/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml index 9981d50ab5..912313c13d 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml @@ -55,6 +55,10 @@ trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks.rsi + - type: DeltaPressure + minPressure: 15000 + minPressureDelta: 10000 + scalingType: Threshold - type: entity id: WindowReinforcedDirectional @@ -113,6 +117,9 @@ max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] + - type: DeltaPressure + minPressure: 3750 + minPressureDelta: 2500 - type: StaticPrice price: 22.5 @@ -132,6 +139,7 @@ - type: Tag tags: - Diagonal + - Window - type: IconSmooth mode: Diagonal key: windows diff --git a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml index 8b2214b037..2506560572 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml @@ -53,6 +53,11 @@ trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks.rsi + - type: DeltaPressure + minPressure: 150000 + minPressureDelta: 100000 + scalingType: Linear + scalingPower: 0.0001 - type: StaticPrice price: 132 @@ -111,6 +116,10 @@ max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] + - type: DeltaPressure + minPressure: 37500 + minPressureDelta: 25000 + scalingType: Threshold - type: StaticPrice price: 66 @@ -130,6 +139,7 @@ - type: Tag tags: - Diagonal + - Window - type: IconSmooth mode: Diagonal key: windows diff --git a/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml b/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml index b1ab547f48..943c9c66b7 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml @@ -48,6 +48,11 @@ trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks.rsi + - type: DeltaPressure + minPressure: 150000 + minPressureDelta: 100000 + scalingType: Linear + scalingPower: 0.0001 - type: StaticPrice price: 215 - type: RadiationBlocker @@ -106,6 +111,10 @@ max: 2 - !type:DoActsBehavior acts: [ "Destruction" ] + - type: DeltaPressure + minPressure: 37500 + minPressureDelta: 25000 + scalingType: Threshold - type: StaticPrice price: 110 - type: RadiationBlocker @@ -127,6 +136,7 @@ - type: Tag tags: - Diagonal + - Window - type: IconSmooth mode: Diagonal key: windows diff --git a/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml b/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml index 75f6b1fc83..fde110faf8 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml @@ -51,6 +51,11 @@ trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks.rsi + - type: DeltaPressure + minPressure: 15000 + minPressureDelta: 10000 + scalingType: Linear + scalingPower: 0.0005 - type: StaticPrice price: 150 @@ -70,6 +75,7 @@ - type: Tag tags: - Diagonal + - Window - type: IconSmooth mode: Diagonal key: windows diff --git a/Resources/Prototypes/Entities/Structures/Windows/uranium.yml b/Resources/Prototypes/Entities/Structures/Windows/uranium.yml index 82905f90a1..00645ca1f0 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/uranium.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/uranium.yml @@ -46,6 +46,11 @@ trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks.rsi + - type: DeltaPressure + minPressure: 75000 + minPressureDelta: 50000 + scalingType: Linear + scalingPower: 0.0005 - type: StaticPrice price: 200 - type: RadiationBlocker @@ -99,6 +104,10 @@ max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] + - type: DeltaPressure + minPressure: 18750 + minPressureDelta: 12500 + scalingType: Threshold - type: StaticPrice price: 100 - type: RadiationBlocker @@ -120,6 +129,7 @@ - type: Tag tags: - Diagonal + - Window - type: IconSmooth mode: Diagonal key: windows diff --git a/Resources/Prototypes/Entities/Structures/Windows/window.yml b/Resources/Prototypes/Entities/Structures/Windows/window.yml index 0c8ada8f76..99c19c1a70 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/window.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/window.yml @@ -8,6 +8,10 @@ snap: - Window components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: MeleeSound soundGroups: Brute: @@ -71,6 +75,11 @@ - !type:DoActsBehavior acts: [ "Destruction" ] - type: Airtight + - type: DeltaPressure + minPressure: 1000 + minPressureDelta: 750 + scalingType: Linear + scalingPower: 0.0005 - type: IconSmooth key: windows base: window @@ -202,6 +211,10 @@ noAirWhenFullyAirBlocked: false airBlockedDirection: - South + - type: DeltaPressure + minPressure: 250 + minPressureDelta: 187.5 + scalingType: Threshold - type: Construction graph: WindowDirectional node: windowDirectional diff --git a/Resources/Prototypes/Entities/Structures/Windows/xenoborg.yml b/Resources/Prototypes/Entities/Structures/Windows/xenoborg.yml new file mode 100644 index 0000000000..9704ffee91 --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Windows/xenoborg.yml @@ -0,0 +1,14 @@ +- type: entity + id: XenoborgWindow + parent: PlastitaniumWindow + name: xenoborg window + components: + - type: Sprite + drawdepth: WallTops + sprite: Structures/Windows/xenoborg.rsi + - type: Icon + sprite: Structures/Windows/xenoborg.rsi + state: full + - type: IconSmooth + key: windows + base: xenoborg diff --git a/Resources/Prototypes/Entities/Structures/base_structure.yml b/Resources/Prototypes/Entities/Structures/base_structure.yml index 71971a6624..d4936c859c 100644 --- a/Resources/Prototypes/Entities/Structures/base_structure.yml +++ b/Resources/Prototypes/Entities/Structures/base_structure.yml @@ -7,6 +7,7 @@ - type: Transform anchored: true - type: Clickable + - type: GravityAffected - type: Physics bodyType: Static - type: Fixtures diff --git a/Resources/Prototypes/Entities/Structures/catwalk.yml b/Resources/Prototypes/Entities/Structures/catwalk.yml index 0a44c338a4..669f4a6800 100644 --- a/Resources/Prototypes/Entities/Structures/catwalk.yml +++ b/Resources/Prototypes/Entities/Structures/catwalk.yml @@ -6,6 +6,10 @@ placement: mode: SnapgridCenter components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: Clickable - type: Sprite sprite: Structures/catwalk.rsi diff --git a/Resources/Prototypes/Entities/Structures/conveyor.yml b/Resources/Prototypes/Entities/Structures/conveyor.yml index 6722181b26..feec88eeaf 100644 --- a/Resources/Prototypes/Entities/Structures/conveyor.yml +++ b/Resources/Prototypes/Entities/Structures/conveyor.yml @@ -29,10 +29,7 @@ - 0.50,0.50 - -0.50,0.50 layer: - - Impassable - - MidImpassable - - LowImpassable - - DoorPassable + - ConveyorMask hard: False - type: Conveyor - type: DeviceNetwork diff --git a/Resources/Prototypes/Entities/Structures/cryogenic_sleep_unit.yml b/Resources/Prototypes/Entities/Structures/cryogenic_sleep_unit.yml index 568c38a5d2..7458cd2b69 100644 --- a/Resources/Prototypes/Entities/Structures/cryogenic_sleep_unit.yml +++ b/Resources/Prototypes/Entities/Structures/cryogenic_sleep_unit.yml @@ -4,6 +4,10 @@ name: cryogenic sleep unit description: A super-cooled container that keeps crewmates safe during space travel. components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: Sprite noRot: true sprite: Structures/cryostorage.rsi diff --git a/Resources/Prototypes/Entities/Structures/meat_spike.yml b/Resources/Prototypes/Entities/Structures/meat_spike.yml index 5825cec6ad..b8714d9d5e 100644 --- a/Resources/Prototypes/Entities/Structures/meat_spike.yml +++ b/Resources/Prototypes/Entities/Structures/meat_spike.yml @@ -50,7 +50,7 @@ enum.KitchenSpikeVisuals.Status: base: Empty: { state: spike } - Bloody: { state: spikebloody } + Bloody: { state: spikebloody } # TODO: Add sprites for different species. - type: Construction graph: MeatSpike node: MeatSpike @@ -58,3 +58,6 @@ guides: - Chef - FoodRecipes + - type: ContainerContainer + containers: + body: !type:ContainerSlot diff --git a/Resources/Prototypes/Entities/Structures/plastic_flaps.yml b/Resources/Prototypes/Entities/Structures/plastic_flaps.yml index 088ddfda61..a8fa40b69d 100644 --- a/Resources/Prototypes/Entities/Structures/plastic_flaps.yml +++ b/Resources/Prototypes/Entities/Structures/plastic_flaps.yml @@ -5,6 +5,10 @@ placement: mode: SnapgridCenter components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: Sprite sprite: Structures/plastic_flaps.rsi state: plasticflaps diff --git a/Resources/Prototypes/Entities/Structures/stairs.yml b/Resources/Prototypes/Entities/Structures/stairs.yml index 1d107b50cd..a371f93567 100644 --- a/Resources/Prototypes/Entities/Structures/stairs.yml +++ b/Resources/Prototypes/Entities/Structures/stairs.yml @@ -6,6 +6,10 @@ placement: mode: SnapgridCenter components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: Clickable - type: Sprite sprite: Structures/stairs.rsi diff --git a/Resources/Prototypes/Flavors/flavors.yml b/Resources/Prototypes/Flavors/flavors.yml index 8eef7e1cb5..513803e102 100644 --- a/Resources/Prototypes/Flavors/flavors.yml +++ b/Resources/Prototypes/Flavors/flavors.yml @@ -1484,6 +1484,11 @@ flavorType: Complex description: flavor-complex-artifact-glue +- type: flavor + id: alkaline + flavorType: Base + description: flavor-base-alkaline + - type: flavor id: motivating flavorType: Base diff --git a/Resources/Prototypes/GameRules/dynamic_rules.yml b/Resources/Prototypes/GameRules/dynamic_rules.yml new file mode 100644 index 0000000000..02298e0faa --- /dev/null +++ b/Resources/Prototypes/GameRules/dynamic_rules.yml @@ -0,0 +1,112 @@ +- type: entity + parent: BaseGameRule + id: DynamicRule + components: + - type: GameRule + minPlayers: 5 # <5 is greenshift hours, buddy. + - type: DynamicRule + startingBudgetMin: 200 + startingBudgetMax: 350 + table: !type:AllSelector + children: + # Roundstart Major Rules + - !type:GroupSelector + conditions: + - !type:RoundDurationCondition + max: 1 + children: + - id: Traitor + weight: 60 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - id: Nukeops + weight: 25 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - !type:PlayerCountCondition + min: 20 + - id: Revolutionary + weight: 5 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - id: Zombie + weight: 5 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - !type:PlayerCountCondition + min: 20 + - id: Wizard + weight: 5 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - !type:PlayerCountCondition + min: 10 + # Roundstart Minor Rules + - !type:GroupSelector + conditions: + - !type:RoundDurationCondition + max: 1 + children: + - id: Thief + prob: 0.5 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + # Midround rules + - !type:GroupSelector + conditions: + - !type:RoundDurationCondition + min: 300 # minimum 5 minutes + children: + - id: SleeperAgents + weight: 15 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - !type:RoundDurationCondition + min: 900 # 15 minutes + - id: DragonSpawn + weight: 15 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - !type:RoundDurationCondition + min: 900 # 15 minutes + - id: NinjaSpawn + weight: 20 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - !type:RoundDurationCondition + min: 900 # 15 minutes + - id: ParadoxCloneSpawn + weight: 25 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + max: 2 + - !type:RoundDurationCondition + min: 600 # 10 minutes + - id: ZombieOutbreak + weight: 2.5 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - !type:PlayerCountCondition + min: 20 + - !type:RoundDurationCondition + min: 2700 # 45 minutes + - id: LoneOpsSpawn + weight: 5 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - !type:PlayerCountCondition + min: 20 + - !type:RoundDurationCondition + min: 2100 # 35 minutes diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index 78602f97b9..8ff3960703 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -30,16 +30,41 @@ table: !type:AllSelector # we need to pass a list of rules, since rules have further restrictions to consider via StationEventComp children: - id: ClosetSkeleton - - id: DragonSpawn - id: KingRatMigration + - id: RevenantSpawn + - !type:NestedSelector + tableId: DerelictBorgEventTable + +- type: entityTable + id: ModerateAntagEventsTable + table: !type:AllSelector # we need to pass a list of rules, since rules have further restrictions to consider via StationEventComp + children: + - id: DragonSpawn - id: NinjaSpawn - id: ParadoxCloneSpawn - - id: RevenantSpawn - id: SleeperAgents - id: ZombieOutbreak - id: LoneOpsSpawn - - id: DerelictCyborgSpawn - id: WizardSpawn + - !type:NestedSelector + tableId: DerelictBorgEventTable + +- type: entityTable + id: DerelictBorgEventTable #For Derelict Borg spawns + table: !type:GroupSelector + children: + - !type:GroupSelector # Standard NT Borgs + weight: 85 + children: + - id: DerelictEngineerCyborgSpawn + - id: DerelictGenericCyborgSpawn + - id: DerelictJanitorCyborgSpawn + - id: DerelictMedicalCyborgSpawn + - id: DerelictMiningCyborgSpawn + - !type:GroupSelector # Other Borgs + weight: 15 + children: + - id: DerelictSyndicateAssaultCyborgSpawn - type: entity id: BaseStationEvent @@ -132,6 +157,10 @@ - type: BureaucraticErrorRule ignoredJobs: - StationAi + - ResearchAssistant + - MedicalIntern + - SecurityCadet + - TechnicalAssistant - type: entity id: ClericalError @@ -183,6 +212,8 @@ pickPlayer: false mindRoles: - MindRoleDragon + - type: DynamicRuleCost + cost: 75 - type: entity parent: BaseGameRule @@ -233,6 +264,8 @@ nameFormat: name-format-ninja mindRoles: - MindRoleNinja + - type: DynamicRuleCost + cost: 75 - type: entity parent: BaseGameRule @@ -269,6 +302,8 @@ sound: /Audio/Misc/paradox_clone_greeting.ogg mindRoles: - MindRoleParadoxClone + - type: DynamicRuleCost + cost: 50 - type: entity parent: BaseGameRule @@ -291,7 +326,7 @@ duration: 1 earliestStart: 30 reoccurrenceDelay: 60 - minimumPlayers: 10 + minimumPlayers: 30 - type: AntagSelection agentName: wizard-round-end-name definitions: @@ -520,6 +555,8 @@ - type: InitialInfected mindRoles: - MindRoleInitialInfected + - type: DynamicRuleCost + cost: 200 - type: entity parent: BaseNukeopsRule @@ -529,7 +566,7 @@ earliestStart: 35 weight: 5.5 minimumPlayers: 20 - duration: null # LoneOpsSpawn needs an infinite duration so that it inherits the NukeOpsRule things of an actually appropriate end scrreen (not always "Neutral outcome!") and... ending the game if the station is nuked. + duration: null # LoneOpsSpawn needs an infinite duration so that it inherits the NukeOpsRule things of an actually appropriate end screen (not always "Neutral outcome!") and... ending the game if the station is nuked. - type: RuleGrids - type: LoadMapRule gridPath: /Maps/Shuttles/ShuttleEvent/striker.yml @@ -555,7 +592,9 @@ factions: - Syndicate mindRoles: - - MindRoleNukeops + - MindRoleLoneops + - type: DynamicRuleCost + cost: 75 - type: entity parent: BaseTraitorRule @@ -658,10 +697,10 @@ - type: entity parent: BaseGameRule - id: DerelictCyborgSpawn + id: DerelictEngineerCyborgSpawn components: - type: StationEvent - weight: 5 + weight: 2.5 earliestStart: 15 reoccurrenceDelay: 20 minimumPlayers: 4 @@ -669,10 +708,115 @@ - type: SpaceSpawnRule spawnDistance: 0 - type: AntagSpawner - prototype: PlayerBorgDerelict + prototype: PlayerEngineeringBorgDerelictGhostRole + - type: AntagSelection + definitions: + - spawnerPrototype: SpawnPointGhostDerelictEngineeringCyborg + min: 1 + max: 1 + pickPlayer: false + +- type: entity + parent: BaseGameRule + id: DerelictGenericCyborgSpawn + components: + - type: StationEvent + weight: 2.5 + earliestStart: 15 + reoccurrenceDelay: 20 + minimumPlayers: 4 + duration: null + - type: SpaceSpawnRule + spawnDistance: 0 + - type: AntagSpawner + prototype: PlayerBorgDerelictGhostRole - type: AntagSelection definitions: - spawnerPrototype: SpawnPointGhostDerelictCyborg min: 1 max: 1 pickPlayer: false + +- type: entity + parent: BaseGameRule + id: DerelictJanitorCyborgSpawn + components: + - type: StationEvent + weight: 2.5 + earliestStart: 15 + reoccurrenceDelay: 20 + minimumPlayers: 4 + duration: null + - type: SpaceSpawnRule + spawnDistance: 0 + - type: AntagSpawner + prototype: PlayerJanitorBorgDerelictGhostRole + - type: AntagSelection + definitions: + - spawnerPrototype: SpawnPointGhostDerelictJanitorCyborg + min: 1 + max: 1 + pickPlayer: false + +- type: entity + parent: BaseGameRule + id: DerelictMedicalCyborgSpawn + components: + - type: StationEvent + weight: 2.5 + earliestStart: 15 + reoccurrenceDelay: 20 + minimumPlayers: 4 + duration: null + - type: SpaceSpawnRule + spawnDistance: 0 + - type: AntagSpawner + prototype: PlayerMedicalBorgDerelictGhostRole + - type: AntagSelection + definitions: + - spawnerPrototype: SpawnPointGhostDerelictMedicalCyborg + min: 1 + max: 1 + pickPlayer: false + +- type: entity + parent: BaseGameRule + id: DerelictMiningCyborgSpawn + components: + - type: StationEvent + weight: 2.5 + earliestStart: 15 + reoccurrenceDelay: 20 + minimumPlayers: 4 + duration: null + - type: SpaceSpawnRule + spawnDistance: 0 + - type: AntagSpawner + prototype: PlayerMiningBorgDerelictGhostRole + - type: AntagSelection + definitions: + - spawnerPrototype: SpawnPointGhostDerelictMiningCyborg + min: 1 + max: 1 + pickPlayer: false + +- type: entity + parent: BaseGameRule + id: DerelictSyndicateAssaultCyborgSpawn + components: + - type: StationEvent + weight: 2.5 + earliestStart: 25 + reoccurrenceDelay: 20 + minimumPlayers: 15 + duration: null + - type: SpaceSpawnRule + spawnDistance: 0 + - type: AntagSpawner + prototype: PlayerBorgSyndicateDerelictGhostRole + - type: AntagSelection + definitions: + - spawnerPrototype: SpawnPointGhostDerelictSyndicateAssaultCyborg + min: 1 + max: 1 + pickPlayer: false diff --git a/Resources/Prototypes/GameRules/roundstart.yml b/Resources/Prototypes/GameRules/roundstart.yml index 1748a4c5a3..df4d59fd5a 100644 --- a/Resources/Prototypes/GameRules/roundstart.yml +++ b/Resources/Prototypes/GameRules/roundstart.yml @@ -173,6 +173,8 @@ - Syndicate mindRoles: - MindRoleNukeops + - type: DynamicRuleCost + cost: 200 - type: entity abstract: true @@ -188,6 +190,8 @@ maxDifficulty: 5 - type: AntagSelection agentName: traitor-round-end-agent-name + - type: DynamicRuleCost + cost: 100 - type: entity parent: BaseTraitorRule @@ -207,7 +211,7 @@ blacklist: components: - AntagImmune - lateJoinAdditional: true + lateJoinAdditional: false mindRoles: - MindRoleTraitor @@ -232,6 +236,8 @@ - type: GameRule minPlayers: 25 - type: AntagSelection + agentName: changeling-round-end-agent-name + selectionTime: IntraPlayerSpawn definitions: - prefRoles: [ Changeling ] max: 3 @@ -249,6 +255,9 @@ - ActionRetractableItemArmBlade # Temporary addition, will inevitably be a purchasable in the bio-store mindRoles: - MindRoleChangeling + - type: AntagObjectives + objectives: + - ChangelingSurviveObjective - type: entity id: Revolutionary @@ -273,6 +282,8 @@ - type: HeadRevolutionary mindRoles: - MindRoleHeadRevolutionary + - type: DynamicRuleCost + cost: 200 - type: entity id: Sandbox @@ -336,6 +347,8 @@ nameFormat: name-format-wizard mindRoles: - MindRoleWizard + - type: DynamicRuleCost + cost: 150 - type: entity id: Zombie @@ -368,6 +381,8 @@ - type: InitialInfected mindRoles: - MindRoleInitialInfected + - type: DynamicRuleCost + cost: 200 # This rule makes the chosen players unable to get other antag rules, as a way to prevent metagaming job rolls. # Put this before antags assigned to station jobs, but after non-job antags (NukeOps/Wiz). @@ -395,6 +410,8 @@ tableId: BasicCalmEventsTable - !type:NestedSelector tableId: BasicAntagEventsTable + - !type:NestedSelector + tableId: ModerateAntagEventsTable - !type:NestedSelector tableId: CargoGiftsTable - !type:NestedSelector @@ -402,6 +419,21 @@ - !type:NestedSelector tableId: SpicyPestEventsTable +- type: entityTable + id: DynamicGameRulesTable + table: !type:AllSelector # we need to pass a list of rules, since rules have further restrictions to consider via StationEventComp + children: + - !type:NestedSelector + tableId: BasicCalmEventsTable + - !type:NestedSelector + tableId: BasicAntagEventsTable + - !type:NestedSelector + tableId: CargoGiftsTable + - !type:NestedSelector + tableId: CalmPestEventsTable + - !type:NestedSelector + tableId: SpicyPestEventsTable + - type: entityTable id: SpaceTrafficControlTable table: !type:AllSelector # we need to pass a list of rules, since rules have further restrictions to consider via StationEventComp @@ -421,6 +453,14 @@ scheduledGameRules: !type:NestedSelector tableId: BasicGameRulesTable +- type: entity + id: DynamicStationEventScheduler # this isn't the dynamic mode, but rather the station event scheduler used for dynamic + parent: BaseGameRule + components: + - type: BasicStationEventScheduler + scheduledGameRules: !type:NestedSelector + tableId: DynamicGameRulesTable + - type: entity id: RampingStationEventScheduler parent: BaseGameRule diff --git a/Resources/Prototypes/GameRules/subgamemodes.yml b/Resources/Prototypes/GameRules/subgamemodes.yml index 2213623c28..0dbef6e06b 100644 --- a/Resources/Prototypes/GameRules/subgamemodes.yml +++ b/Resources/Prototypes/GameRules/subgamemodes.yml @@ -34,6 +34,8 @@ - MindRoleThief briefing: sound: "/Audio/Misc/thief_greeting.ogg" + - type: DynamicRuleCost + cost: 75 # Needs testing - type: entity diff --git a/Resources/Prototypes/Guidebook/species.yml b/Resources/Prototypes/Guidebook/species.yml index 78111d0fd1..9783b23285 100644 --- a/Resources/Prototypes/Guidebook/species.yml +++ b/Resources/Prototypes/Guidebook/species.yml @@ -3,14 +3,15 @@ name: guide-entry-species text: "/ServerInfo/Guidebook/Mobs/Species.xml" children: - - Arachnid - - Diona - - Dwarf - - Human - - Moth - - Reptilian - - SlimePerson - - Vox + - Arachnid + - Diona + - Dwarf + - Human + - Moth + - Reptilian + - SlimePerson + - Vox + - Vulpkanin - type: guideEntry id: Arachnid @@ -51,3 +52,8 @@ id: Vox name: species-name-vox text: "/ServerInfo/Guidebook/Mobs/Vox.xml" + +- type: guideEntry + id: Vulpkanin + name: species-name-vulpkanin + text: "/ServerInfo/Guidebook/Mobs/Vulpkanin.xml" diff --git a/Resources/Prototypes/InventoryTemplates/scurret_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/scurret_inventory_template.yml index 28b95eb3d3..89f0af0302 100644 --- a/Resources/Prototypes/InventoryTemplates/scurret_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/scurret_inventory_template.yml @@ -59,6 +59,18 @@ dependsOnComponents: - type: AllowSuitStorage displayName: Suit Storage + - name: back + slotTexture: back + fullTextureName: template_small + slotFlags: BACK + slotGroup: SecondHotbar + stripTime: 6 + uiWindowPos: 3,2 + strippingWindowPos: 0,5 + displayName: Back + whitelist: + tags: + - ScurretWearable - name: outerClothing slotTexture: suit slotFlags: OUTERCLOTHING diff --git a/Resources/Prototypes/Loadouts/Jobs/Cargo/cargo_technician.yml b/Resources/Prototypes/Loadouts/Jobs/Cargo/cargo_technician.yml index fb823fdcb9..d23027130f 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Cargo/cargo_technician.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Cargo/cargo_technician.yml @@ -1,3 +1,23 @@ +# Senior times +- type: loadoutEffectGroup + id: SeniorCargo + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:RoleTimeRequirement + role: JobCargoTechnician + time: 21600 #6 hrs + - !type:JobRequirementLoadoutEffect + requirement: + !type:RoleTimeRequirement + role: JobSalvageSpecialist + time: 21600 #6 hrs + - !type:JobRequirementLoadoutEffect + requirement: + !type:DepartmentTimeRequirement + department: Cargo + time: 216000 # 60 hrs + # Head - type: loadout id: CargoTechnicianHead @@ -42,3 +62,17 @@ id: CargoWinterBoots equipment: shoes: ClothingShoesBootsWinterCargo + +# ID +- type: loadout + id: CargoTechnicianPDA + equipment: + id: CargoPDA + +- type: loadout + id: SeniorCourierPDA + effects: + - !type:GroupLoadoutEffect + proto: SeniorCargo + equipment: + id: SeniorCourierPDA diff --git a/Resources/Prototypes/Loadouts/Miscellaneous/survival.yml b/Resources/Prototypes/Loadouts/Miscellaneous/survival.yml index 2f12b9a1f5..04bb1d8bdf 100644 --- a/Resources/Prototypes/Loadouts/Miscellaneous/survival.yml +++ b/Resources/Prototypes/Loadouts/Miscellaneous/survival.yml @@ -18,6 +18,7 @@ - Human - Moth - Reptilian + - Vulpkanin - type: loadoutEffectGroup id: EffectSpeciesVox @@ -75,6 +76,7 @@ - Dwarf - Human - Reptilian + - Vulpkanin - type: loadoutEffectGroup id: OxygenBreatherMimeMoth diff --git a/Resources/Prototypes/Loadouts/loadout_groups.yml b/Resources/Prototypes/Loadouts/loadout_groups.yml index 333d914225..7930b3ff1b 100644 --- a/Resources/Prototypes/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/Loadouts/loadout_groups.yml @@ -688,6 +688,13 @@ - BlackShoes - CargoWinterBoots +- type: loadoutGroup + id: CargoTechnicianID + name: loadout-group-cargo-technician-id + loadouts: + - CargoTechnicianPDA + - SeniorCourierPDA + - type: loadoutGroup id: SalvageSpecialistBackpack name: loadout-group-salvage-specialist-backpack diff --git a/Resources/Prototypes/Loadouts/role_loadouts.yml b/Resources/Prototypes/Loadouts/role_loadouts.yml index 43ede4a05f..e08e6aa0fc 100644 --- a/Resources/Prototypes/Loadouts/role_loadouts.yml +++ b/Resources/Prototypes/Loadouts/role_loadouts.yml @@ -225,6 +225,7 @@ - CargoTechnicianBackpack - CargoTechnicianOuterClothing - CargoTechnicianShoes + - CargoTechnicianID - Glasses - Survival - Trinkets diff --git a/Resources/Prototypes/Maps/packed.yml b/Resources/Prototypes/Maps/packed.yml index 7ea5fbc9d0..7410ce24c5 100644 --- a/Resources/Prototypes/Maps/packed.yml +++ b/Resources/Prototypes/Maps/packed.yml @@ -1,3 +1,4 @@ + - type: gameMap id: Packed mapName: 'Packed' @@ -8,57 +9,57 @@ Packed: stationProto: StandardNanotrasenStation components: - - type: StationNameSetup - mapNameTemplate: '{0} Packed {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: 'VG' - - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/emergency_crimson.yml - - type: StationJobs - availableJobs: # 46 jobs total w/o latejoins & interns, 57 jobs total w/ latejoins & interns - #command (7) - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - HeadOfSecurity: [ 1, 1 ] - ChiefMedicalOfficer: [ 1, 1 ] - ChiefEngineer: [ 1, 1 ] - ResearchDirector: [ 1, 1 ] - Quartermaster: [ 1, 1 ] - #service (8 - 10) - Bartender: [ 1, 1 ] - Botanist: [ 1, 2 ] - Chef: [ 1, 1 ] - Janitor: [ 1, 2 ] - Chaplain: [ 1, 1 ] - Librarian: [ 1, 1 ] - ServiceWorker: [ 2, 2 ] - #engineering (6) - AtmosphericTechnician: [ 2, 2 ] - StationEngineer: [ 4, 4 ] - TechnicalAssistant: [ 3, 3 ] #intern, not counted - #medical (6) - Chemist: [ 2, 2 ] - MedicalDoctor: [ 3, 3 ] - MedicalIntern: [ 2, 2 ] #intern, not counted - Paramedic: [ 1, 1 ] - #science (4) - Scientist: [ 4, 4 ] - ResearchAssistant: [ 2, 2 ] #intern, not counted - #security (6) - Warden: [ 1, 1 ] - SecurityOfficer: [ 3, 3 ] - Detective: [ 1, 1 ] - SecurityCadet: [ 2, 2 ] #intern, not counted - Lawyer: [ 1, 1 ] - #supply (4) - SalvageSpecialist: [ 2, 2 ] - CargoTechnician: [ 2, 2 ] - #civilian (3+) - Passenger: [ -1, -1 ] #infinite, not counted - Clown: [ 1, 1 ] - Mime: [ 1, 1 ] - Musician: [ 1, 1 ] - #silicon (2) - StationAi: [ 1, 1 ] - Borg: [ 1, 1 ] + - type: StationNameSetup + mapNameTemplate: '{0} Packed {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: 'VG' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency_crimson.yml + - type: StationJobs + availableJobs: # 47 jobs total w/o latejoins & interns, 58 jobs total w/ latejoins & interns + #command (7) + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + HeadOfSecurity: [ 1, 1 ] + ChiefMedicalOfficer: [ 1, 1 ] + ChiefEngineer: [ 1, 1 ] + ResearchDirector: [ 1, 1 ] + Quartermaster: [ 1, 1 ] + #service (8 - 10) + Bartender: [ 1, 1 ] + Botanist: [ 1, 2 ] + Chef: [ 1, 1 ] + Janitor: [ 1, 2 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + ServiceWorker: [ 2, 2 ] + #engineering (6) + AtmosphericTechnician: [ 2, 2 ] + StationEngineer: [ 4, 4 ] + TechnicalAssistant: [ 3, 3 ] #intern, not counted + #medical (6) + Chemist: [ 2, 2 ] + MedicalDoctor: [ 3, 3 ] + MedicalIntern: [ 2, 2 ] #intern, not counted + Paramedic: [ 1, 1 ] + #science (4) + Scientist: [ 4, 4 ] + ResearchAssistant: [ 2, 2 ] #intern, not counted + #security (6) + Warden: [ 1, 1 ] + SecurityOfficer: [ 3, 3 ] + Detective: [ 1, 1 ] + SecurityCadet: [ 2, 2 ] #intern, not counted + Lawyer: [ 1, 1 ] + #supply (4) + SalvageSpecialist: [ 2, 2 ] + CargoTechnician: [ 2, 2 ] + #civilian (3+) + Passenger: [ -1, -1 ] #infinite, not counted + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] + #silicon (3) + StationAi: [ 1, 1 ] + Borg: [ 2, 2 ] diff --git a/Resources/Prototypes/Maps/relic.yml b/Resources/Prototypes/Maps/relic.yml index 1cfa5c66ec..74476455d1 100644 --- a/Resources/Prototypes/Maps/relic.yml +++ b/Resources/Prototypes/Maps/relic.yml @@ -2,14 +2,16 @@ id: Relic mapName: 'Relic' mapPath: /Maps/relic.yml - minPlayers: 10 - maxPlayers: 50 + maxRandomOffset: 0 + randomRotation: false + minPlayers: 15 + maxPlayers: 35 stations: Relic: stationProto: StandardNanotrasenStation components: - type: StationNameSetup - mapNameTemplate: '{0} Relic Station {1}' + mapNameTemplate: '{0} Relic Station SS13' nameGenerator: !type:NanotrasenNameGenerator prefixCreator: 'OG' @@ -19,23 +21,24 @@ shuttlePath: /Maps/Shuttles/arrivals_relic.yml - type: StationCargoShuttle path: /Maps/Shuttles/cargo_relic.yml + - type: GridSpawn + groups: + trade: !type:GridSpawnGroup + minCount: 0 + maxCount: 0 + paths: + - /Maps/Shuttles/trading_outpost.yml - type: StationJobs availableJobs: - #command (7) + #command (6) Captain: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] HeadOfSecurity: [ 1, 1 ] ChiefMedicalOfficer: [ 1, 1 ] ChiefEngineer: [ 1, 1 ] ResearchDirector: [ 1, 1 ] - Quartermaster: [ 1, 1 ] - #service (6 - 7) - Bartender: [ 1, 1 ] - Botanist: [ 1, 2 ] - Chef: [ 1, 1 ] - Janitor: [ 1, 1 ] + #service (1) Chaplain: [ 1, 1 ] - Librarian: [ 1, 1 ] #engineering (4) AtmosphericTechnician: [ 2, 2 ] StationEngineer: [ 2, 2 ] @@ -45,8 +48,8 @@ MedicalDoctor: [ 2, 2 ] Paramedic: [ 1, 1 ] MedicalIntern: [ 2, 2 ] #intern, not counted - #science (1 - 3) - Scientist: [ 1, 3 ] + #science (1 - 2) + Scientist: [ 1, 2 ] ResearchAssistant: [ 2, 2 ] #intern, not counted #security (4 - 5) Warden: [ 1, 1 ] @@ -54,10 +57,8 @@ Detective: [ 1, 1 ] SecurityCadet: [ 2, 2 ] #intern, not counted Lawyer: [ 1, 1 ] - #supply (2) - CargoTechnician: [ 2, 2 ] + #supply (0) #civilian (1+) Passenger: [ -1, -1 ] #infinite, not counted - #silicon (3) + #silicon (1) StationAi: [ 1, 1 ] - Borg: [ 2, 2 ] diff --git a/Resources/Prototypes/Objectives/changeling.yml b/Resources/Prototypes/Objectives/changeling.yml new file mode 100644 index 0000000000..a1a4612217 --- /dev/null +++ b/Resources/Prototypes/Objectives/changeling.yml @@ -0,0 +1,23 @@ +- type: entity + abstract: true + parent: BaseObjective + id: BaseChangelingObjective + components: + - type: Objective + issuer: objective-issuer-changeling + difficulty: 1 + - type: RoleRequirement + roles: + - ChangelingRole + +- type: entity + parent: [BaseChangelingObjective, BaseSurviveObjective] + id: ChangelingSurviveObjective + name: Survive. + description: We must stay alive at all cost. + components: + - type: Objective + difficulty: 1 + icon: + sprite: Mobs/Species/Human/organs.rsi + state: heart-on diff --git a/Resources/Prototypes/Objectives/objectiveGroups.yml b/Resources/Prototypes/Objectives/objectiveGroups.yml index 50a1af174a..b3f4587ffa 100644 --- a/Resources/Prototypes/Objectives/objectiveGroups.yml +++ b/Resources/Prototypes/Objectives/objectiveGroups.yml @@ -18,6 +18,7 @@ MagbootsStealObjective: 1 CorgiMeatStealObjective: 1 ClipboardStealObjective: 1 + KnuckleDustersStealObjective: 1 CaptainGunStealObjective: 0.5 CaptainJetpackStealObjective: 0.5 HandTeleporterStealObjective: 0.5 diff --git a/Resources/Prototypes/Objectives/traitor.yml b/Resources/Prototypes/Objectives/traitor.yml index 411a457961..5f3b22c30d 100644 --- a/Resources/Prototypes/Objectives/traitor.yml +++ b/Resources/Prototypes/Objectives/traitor.yml @@ -17,7 +17,7 @@ - type: Objective icon: sprite: Objects/Misc/folders.rsi - state: folder-white + state: folder-colormap - type: MultipleTraitorsRequirement - type: entity @@ -150,8 +150,8 @@ - !type:TargetObjectiveMindFilter blacklist: components: - - RandomTraitorAlive - - RandomTraitorProgress + - HelpProgressCondition + - KeepAliveCondition - type: entity parent: [BaseTraitorSocialObjective, BaseHelpProgressObjective] @@ -179,8 +179,8 @@ - !type:TargetObjectiveMindFilter blacklist: components: - - RandomTraitorAlive - - RandomTraitorProgress + - HelpProgressCondition + - KeepAliveCondition # steal diff --git a/Resources/Prototypes/Parallaxes/relic.yml b/Resources/Prototypes/Parallaxes/relic.yml new file mode 100644 index 0000000000..ba72af7ace --- /dev/null +++ b/Resources/Prototypes/Parallaxes/relic.yml @@ -0,0 +1,9 @@ +- type: parallax + id: RelicStation + layers: + - texture: + !type:ImageParallaxTextureSource + path: "/Textures/Parallaxes/oldspace.png" + slowness: 0.0 + scrolling: "-0.25, 0" + scale: "1, 1" diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml b/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml index 2d8351c97f..68448bc0c9 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml @@ -161,6 +161,9 @@ effects: - !type:SatiateThirst factor: 2 + - !type:AdjustReagent + reagent: Theobromine + amount: 0.05 - !type:ModifyStatusEffect effectProto: StatusEffectDrowsiness time: 2 diff --git a/Resources/Prototypes/Reagents/biological.yml b/Resources/Prototypes/Reagents/biological.yml index 1a4fc93426..d6063cd9a7 100644 --- a/Resources/Prototypes/Reagents/biological.yml +++ b/Resources/Prototypes/Reagents/biological.yml @@ -12,6 +12,7 @@ metamorphicFillBaseName: fill- metamorphicChangeColor: false recognizable: true + standsout: true physicalDesc: reagent-physical-desc-ferrous metabolisms: Drink: @@ -64,6 +65,7 @@ flavor: slimy color: "#2cf274" recognizable: true + standsout: true physicalDesc: reagent-physical-desc-viscous viscosity: 0.25 tileReactions: diff --git a/Resources/Prototypes/Reagents/chemicals.yml b/Resources/Prototypes/Reagents/chemicals.yml index 45c55ce4dd..11945d1dc9 100644 --- a/Resources/Prototypes/Reagents/chemicals.yml +++ b/Resources/Prototypes/Reagents/chemicals.yml @@ -51,6 +51,21 @@ physicalDesc: reagent-physical-desc-powdery color: white +- type: reagent + id: Lye + name: reagent-name-lye + desc: reagent-desc-lye + flavor: alkaline + physicalDesc: reagent-physical-desc-alkaline + color: "#e5420b" + metabolisms: + Poison: + effects: + - !type:HealthChange + damage: + types: + Caustic: 1 + - type: reagent id: SodiumCarbonate name: reagent-name-sodium-carbonate diff --git a/Resources/Prototypes/Reagents/medicine.yml b/Resources/Prototypes/Reagents/medicine.yml index f0ea5581ae..f0a11706b0 100644 --- a/Resources/Prototypes/Reagents/medicine.yml +++ b/Resources/Prototypes/Reagents/medicine.yml @@ -12,9 +12,9 @@ - !type:GenericStatusEffect key: Stutter component: ScrambledAccent - - !type:Drunk - slurSpeech: false - boozePower: 20 + - !type:ModifyStatusEffect + effectProto: StatusEffectSlurred + time: 20.0 - type: reagent id: Dylovene @@ -104,8 +104,8 @@ metabolisms: Medicine: effects: - - !type:GenericStatusEffect - key: Drunk + - !type:ModifyStatusEffect + effectProto: StatusEffectDrunk time: 6.0 type: Remove - !type:HealthChange @@ -844,25 +844,35 @@ color: "#520e30" metabolisms: Medicine: - metabolismRate: 0.25 effects: + - !type:EvenHealthChange + conditions: + - !type:ReagentThreshold + min: 0 + max: 20 + damage: + Toxin: -6 - !type:HealthChange conditions: - !type:ReagentThreshold min: 0 - max: 30 + max: 20 damage: groups: - Toxin: -1.5 - Brute: 0.25 + Brute: 1.5 + - !type:EvenHealthChange + conditions: + - !type:ReagentThreshold + min: 20 + damage: + Toxin: -2 - !type:HealthChange conditions: - !type:ReagentThreshold - min: 30 + min: 20 damage: groups: - Toxin: -0.5 - Brute: 3 + Brute: 6 - !type:AdjustReagent conditions: - !type:ReagentThreshold @@ -971,19 +981,19 @@ color: "#e0a5b9" metabolisms: Medicine: - metabolismRate: 0.1 + metabolismRate: 0.25 effects: - !type:HealthChange damage: types: - Caustic: -0.6 # 6 per u + Caustic: -1.25 # 5 per u - !type:HealthChange conditions: - !type:ReagentThreshold - min: 21 + min: 16 damage: types: - Heat: 0.2 + Heat: 1 # 4 per u - !type:Jitter conditions: - !type:ReagentThreshold @@ -1027,19 +1037,20 @@ color: "#283332" metabolisms: Medicine: - metabolismRate: 0.1 + metabolismRate: 0.25 effects: - !type:HealthChange damage: types: - Slash: -0.6 # 6 Per u + Slash: -2 # 8 per u + Heat: 0.2 # 0.8 per u - !type:HealthChange conditions: - !type:ReagentThreshold - min: 21 + min: 12 damage: types: - Cold: 1.5 #15 per u + Cold: 1.5 # 6 per u - type: reagent id: Puncturase @@ -1051,20 +1062,20 @@ color: "#b9bf93" metabolisms: Medicine: - metabolismRate: 0.1 + metabolismRate: 0.25 effects: - !type:HealthChange damage: types: - Piercing: -0.6 # 6 per u - Blunt: 0.05 # 0.5 per u + Piercing: -2.5 # 10 per u + Radiation: 0.05 # 0.2 per u, 3 for 15u - !type:HealthChange conditions: - !type:ReagentThreshold - min: 21 + min: 12 damage: types: - Blunt: 1 # 10 per u plus base effect + Blunt: 3 # 12 per u - type: reagent id: Bruizine @@ -1076,19 +1087,21 @@ color: "#ff3636" metabolisms: Medicine: - metabolismRate: 0.1 + metabolismRate: 0.25 effects: - !type:HealthChange damage: types: - Blunt: -0.6 # 6 per u + Blunt: -2.25 # 9 per u + - !type:SatiateHunger + factor: -1 - !type:HealthChange conditions: - !type:ReagentThreshold - min: 19 + min: 10.5 damage: types: - Poison: 1.5 # 15 per u + Poison: 2.5 # 10 per u - type: reagent id: Holywater @@ -1183,34 +1196,34 @@ color: "#8147ff" metabolisms: Medicine: - metabolismRate: 0.1 + metabolismRate: 0.25 effects: # heals shocks and removes shock chems - !type:HealthChange damage: types: - Shock: -0.5 # 5 per u + Shock: -1.5 # 6 per u - !type:AdjustReagent reagent: Licoxide - amount: -4 + amount: -2 - !type:AdjustReagent reagent: Tazinide - amount: -4 + amount: -2 # makes you a little chilly when not oding - !type:AdjustTemperature - amount: -5000 + amount: -2500 # od makes you freeze to death - !type:HealthChange conditions: - !type:ReagentThreshold - min: 15.5 + min: 12 damage: types: - Cold: 0.2 # 2 per u but lethal with cooling OD effect below + Cold: 1 # 4 per u - !type:AdjustTemperature conditions: - !type:ReagentThreshold - min: 15.5 + min: 12 amount: -30000 - !type:Jitter conditions: @@ -1340,8 +1353,8 @@ key: Jitter time: 2.0 type: Remove - - !type:GenericStatusEffect - key: Drunk + - !type:ModifyStatusEffect + effectProto: StatusEffectDrunk time: 6.0 type: Remove - !type:PopupMessage # we dont have sanity/mood so this will have to do diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/mechs/hamtr_construction.yml b/Resources/Prototypes/Recipes/Construction/Graphs/mechs/hamtr_construction.yml index 687d72f390..a71846755f 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/mechs/hamtr_construction.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/mechs/hamtr_construction.yml @@ -6,6 +6,9 @@ edges: - to: hamtr steps: + - assemblyId: Hamtr + guideString: mech-construction-guide-string + - tool: Anchoring doAfter: 1 completed: diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/mechs/honker_construction.yml b/Resources/Prototypes/Recipes/Construction/Graphs/mechs/honker_construction.yml index 8274c4c0d1..a821cf18a2 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/mechs/honker_construction.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/mechs/honker_construction.yml @@ -6,6 +6,9 @@ edges: - to: honker steps: + - assemblyId: Honker + guideString: mech-construction-guide-string + - tool: Honking doAfter: 1 completed: diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/mechs/ripley_construction.yml b/Resources/Prototypes/Recipes/Construction/Graphs/mechs/ripley_construction.yml index db45cbc4f1..f9e5451849 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/mechs/ripley_construction.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/mechs/ripley_construction.yml @@ -6,6 +6,9 @@ edges: - to: ripley steps: + - assemblyId: Ripley + guideString: mech-construction-guide-string + - tool: Anchoring doAfter: 1 completed: diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/mechs/vim_construction.yml b/Resources/Prototypes/Recipes/Construction/Graphs/mechs/vim_construction.yml index 7feed88cc5..5a1c614550 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/mechs/vim_construction.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/mechs/vim_construction.yml @@ -6,6 +6,9 @@ edges: - to: vim steps: + - assemblyId: Vim + guideString: mech-construction-guide-string + - tag: VoiceTrigger name: construction-graph-tag-voice-trigger icon: diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/turret_controls.yml b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/turret_controls.yml new file mode 100644 index 0000000000..ae48638d92 --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/turret_controls.yml @@ -0,0 +1,85 @@ +- type: constructionGraph + id: WeaponEnergyTurretControlPanel + start: start + graph: + - node: start + edges: + - to: frame + steps: + - material: Steel + amount: 3 + doAfter: 2 + + - node: frame + entity: WeaponEnergyTurretControlPanelFrame + edges: + - to: board + steps: + - tag: TurretControlElectronics + name: construction-graph-tag-turret-control-electronics + icon: + sprite: Objects/Misc/module.rsi + state: command + store: board + + - to: start + completed: + - !type:GivePrototype + prototype: SheetSteel1 + amount: 3 + - !type:DeleteEntity {} + steps: + - tool: Screwing + doAfter: 4 + + - node: board + entity: WeaponEnergyTurretControlPanelFrame + edges: + - to: glass + steps: + - material: Glass + amount: 1 + doAfter: 1 + + - to: frame + completed: + - !type:EmptyContainer + container: board + pickup: true + steps: + - tool: Prying + doAfter: 4 + + - node: glass + edges: + - to: finish + steps: + - tool: Screwing + doAfter: 2 + + - to: board + completed: + - !type:GivePrototype + prototype: SheetGlass1 + amount: 1 + steps: + - tool: Prying + doAfter: 2 + + - node: finish + entity: !type:BoardNodeEntity { container: board } + actions: + - !type:AddContainer + container: board + edges: + - to: board + conditions: + - !type:AllWiresCut {} + - !type:WirePanel {} + completed: + - !type:GivePrototype + prototype: SheetGlass1 + amount: 1 + steps: + - tool: Prying + doAfter: 4 diff --git a/Resources/Prototypes/Recipes/Construction/utilities.yml b/Resources/Prototypes/Recipes/Construction/utilities.yml index eac72ef657..e863689677 100644 --- a/Resources/Prototypes/Recipes/Construction/utilities.yml +++ b/Resources/Prototypes/Recipes/Construction/utilities.yml @@ -1006,3 +1006,17 @@ canBuildInImpassable: true conditions: - !type:WallmountCondition + +# DEFENSES +- type: construction + id: WeaponEnergyTurretControlPanel + graph: WeaponEnergyTurretControlPanel + startNode: start + targetNode: finish + category: construction-category-utilities + objectType: Structure + canRotate: true + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition diff --git a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml index 7e3cca3fa4..53577fd999 100644 --- a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml @@ -1707,8 +1707,8 @@ time: 5 group: Cake solids: - FoodCakePlain: 1 - FoodBerries: 5 + FoodCakeBlueberry: 1 + FoodBerries: 2 reagents: Milk: 10 diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/robotics.yml b/Resources/Prototypes/Recipes/Lathes/Packs/robotics.yml index f22cde9c52..2db59977be 100644 --- a/Resources/Prototypes/Recipes/Lathes/Packs/robotics.yml +++ b/Resources/Prototypes/Recipes/Lathes/Packs/robotics.yml @@ -14,6 +14,7 @@ - BorgModuleTool - BorgModuleCable - BorgModuleFireExtinguisher + - BorgModuleInflatable - type: latheRecipePack id: BorgLimbsStatic diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/shared.yml b/Resources/Prototypes/Recipes/Lathes/Packs/shared.yml index 7a6dc32519..34a5fcbe6e 100644 --- a/Resources/Prototypes/Recipes/Lathes/Packs/shared.yml +++ b/Resources/Prototypes/Recipes/Lathes/Packs/shared.yml @@ -38,6 +38,12 @@ - CableMVStack - CableHVStack +- type: latheRecipePack + id: PaperworkStatic + recipes: + - BoxFolderClipboardEmpty + - BoxFolderPlasticClipboardEmpty + ## Dynamic # Things you'd expect sci salv and engi to make use of diff --git a/Resources/Prototypes/Recipes/Lathes/misc.yml b/Resources/Prototypes/Recipes/Lathes/misc.yml index 40d155b1fd..53b5f4a4e7 100644 --- a/Resources/Prototypes/Recipes/Lathes/misc.yml +++ b/Resources/Prototypes/Recipes/Lathes/misc.yml @@ -276,4 +276,19 @@ completetime: 1 materials: Steel: 30 - + +- type: latheRecipe + id: BoxFolderClipboardEmpty + result: BoxFolderClipboardEmpty + completetime: 2 + materials: + Wood: 100 + Steel: 25 + +- type: latheRecipe + id: BoxFolderPlasticClipboardEmpty + result: BoxFolderPlasticClipboardEmpty + completetime: 2 + materials: + Plastic: 100 + Steel: 25 diff --git a/Resources/Prototypes/Recipes/Lathes/robot_modules.yml b/Resources/Prototypes/Recipes/Lathes/robot_modules.yml index 9210529a1d..9465d7b87a 100644 --- a/Resources/Prototypes/Recipes/Lathes/robot_modules.yml +++ b/Resources/Prototypes/Recipes/Lathes/robot_modules.yml @@ -37,6 +37,11 @@ id: BorgModuleFireExtinguisher result: BorgModuleFireExtinguisher +- type: latheRecipe + parent: BaseBorgModuleRecipe + id: BorgModuleInflatable + result: BorgModuleInflatable + # Cargo Modules - type: latheRecipe diff --git a/Resources/Prototypes/Recipes/Reactions/chemicals.yml b/Resources/Prototypes/Recipes/Reactions/chemicals.yml index 959488376c..fef96df5cf 100644 --- a/Resources/Prototypes/Recipes/Reactions/chemicals.yml +++ b/Resources/Prototypes/Recipes/Reactions/chemicals.yml @@ -532,3 +532,13 @@ amount: 1 products: ArtifactGlue: 2 + +- type: reaction + id: Lye + reactants: + Water: + amount: 1 + Ash: + amount: 1 + products: + Lye: 2 diff --git a/Resources/Prototypes/Recipes/Reactions/fun.yml b/Resources/Prototypes/Recipes/Reactions/fun.yml index 87a9682102..35987b6be5 100644 --- a/Resources/Prototypes/Recipes/Reactions/fun.yml +++ b/Resources/Prototypes/Recipes/Reactions/fun.yml @@ -24,34 +24,6 @@ products: BuzzochloricBees: 3 -- type: reaction - id: CreateSoap - impact: Low - quantized: true - reactants: - Fat: - amount: 15 - Saline: - amount: 25 - effects: - - !type:CreateEntityReactionEffect - entity: Soap - -- type: reaction - id: CreateSoapHomemade - impact: Low - quantized: true - reactants: - Fat: - amount: 15 - TableSalt: - amount: 10 - Blood: - amount: 10 - effects: - - !type:CreateEntityReactionEffect - entity: SoapHomemade - - type: reaction id: Meatification impact: Low diff --git a/Resources/Prototypes/Recipes/Reactions/medicine.yml b/Resources/Prototypes/Recipes/Reactions/medicine.yml index 10508fc48b..f710f5c471 100644 --- a/Resources/Prototypes/Recipes/Reactions/medicine.yml +++ b/Resources/Prototypes/Recipes/Reactions/medicine.yml @@ -445,6 +445,39 @@ products: Bruizine: 2 +- type: reaction + id: BicarLacerinol # mixing any two brute medications will make Razorium + impact: Medium + reactants: + Lacerinol: + amount: 1 + Bicaridine: + amount: 1 + products: + Razorium: 1 + +- type: reaction + id: BicarPuncturase # mixing any two brute medications will make Razorium + impact: Medium + reactants: + Puncturase: + amount: 1 + Bicaridine: + amount: 1 + products: + Razorium: 1 + +- type: reaction + id: BicarBruizine # mixing any two brute medications will make Razorium + impact: Medium + reactants: + Bruizine: + amount: 1 + Bicaridine: + amount: 1 + products: + Razorium: 1 + - type: reaction id: BruizineLacerinol # mixing any two brute medications will make Razorium impact: Medium diff --git a/Resources/Prototypes/Recipes/Reactions/soap.yml b/Resources/Prototypes/Recipes/Reactions/soap.yml new file mode 100644 index 0000000000..d07c582f8b --- /dev/null +++ b/Resources/Prototypes/Recipes/Reactions/soap.yml @@ -0,0 +1,119 @@ +- type: reaction + id: CreateSoapRegular + impact: Low + quantized: true + minTemp: 383 # Water boiling point + 10 Kelvin. We are boiling it + reactants: + Oil: + amount: 10 + Lye: + amount: 15 + TableSalt: + amount: 5 + effects: + - !type:CreateEntityReactionEffect + entity: Soap + +- type: reaction + id: CreateSoapNT + impact: Low + quantized: true + minTemp: 373 # Water boiling point. We are boiling it too, but with higher priority! + reactants: + Oil: + amount: 15 + Lye: + amount: 20 + TableSalt: + amount: 5 + Plasma: + amount: 5 + effects: + - !type:CreateEntityReactionEffect + entity: SoapNT + +- type: reaction + id: CreateSoapDeluxe + impact: Low + quantized: true + minTemp: 373 + reactants: + Oil: + amount: 15 + Lye: + amount: 20 + TableSalt: + amount: 5 + JuiceBerry: + amount: 5 + effects: + - !type:CreateEntityReactionEffect + entity: SoapDeluxe + +- type: reaction + id: CreateSoapBlood + impact: Low + quantized: true + minTemp: 373 + reactants: + Fat: + amount: 10 + Lye: + amount: 20 + TableSalt: + amount: 5 + Blood: + amount: 10 + effects: + - !type:CreateEntityReactionEffect + entity: SoapHomemade + +- type: reaction + id: CreateSoapSyndie + impact: Medium + quantized: true + minTemp: 373 + reactants: + Oil: + amount: 15 + Lye: + amount: 20 + TableSalt: + amount: 5 + Stimulants: + amount: 5 + effects: + - !type:CreateEntityReactionEffect + entity: SoapSyndie + +- type: reaction + id: CreateSoapOmega + impact: Medium + quantized: true + minTemp: 373 + reactants: + Oil: + amount: 5 + Fat: + amount: 5 + Lye: + amount: 10 + TableSalt: + amount: 5 + Honk: + amount: 10 + SpaceLube: + amount: 5 + SpaceDrugs: + amount: 3 + THC: + amount: 2 + Bananadine: + amount: 2 + Omnizine: + amount: 2 + Amatoxin: + amount: 1 + effects: + - !type:CreateEntityReactionEffect + entity: SoapOmega diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml b/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml index ae64cb438a..dcf7add35e 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/cargo_technician.yml @@ -19,7 +19,6 @@ - type: startingGear id: CargoTechGear equipment: - id: CargoPDA ears: ClothingHeadsetCargo pocket1: AppraisalTool #storage: diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml index f2e7a2fb93..5a62c1dc8e 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml @@ -39,7 +39,7 @@ equipment: id: QuartermasterPDA ears: ClothingHeadsetQM - belt: BoxFolderClipboard + belt: BoxFolderClipboardThreePapers pocket1: AppraisalTool storage: back: diff --git a/Resources/Prototypes/Roles/Jobs/CentComm/official.yml b/Resources/Prototypes/Roles/Jobs/CentComm/official.yml index 9c28c56002..86cf79d207 100644 --- a/Resources/Prototypes/Roles/Jobs/CentComm/official.yml +++ b/Resources/Prototypes/Roles/Jobs/CentComm/official.yml @@ -28,7 +28,7 @@ id: CentcomPDA ears: ClothingHeadsetAltCentCom belt: WeaponPistolN1984 - pocket1: BoxFolderBlack + pocket1: BoxFolderCentComClipboardThreePapers pocket2: PenCentcom diff --git a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml index 7bd1ff5c52..ac052e5cdf 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml @@ -65,7 +65,7 @@ id: HoPPDA gloves: ClothingHandsGlovesHop ears: ClothingHeadsetAltCommand - belt: BoxFolderClipboard + belt: BoxFolderClipboardThreePapers eyes: ClothingEyesHudCommand storage: back: diff --git a/Resources/Prototypes/Roles/Jobs/Fun/visitors_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/visitors_startinggear.yml index b7db27a972..8e129e01ed 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/visitors_startinggear.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/visitors_startinggear.yml @@ -738,7 +738,7 @@ - type: startingGear id: VisitorParamedic equipment: - jumpsuit: ClothingUniformJumpsuitParamedicNT + jumpsuit: ClothingUniformJumpsuitParamedic shoes: ClothingShoesSwat gloves: ClothingHandsGlovesLatex head: ClothingHeadHatParamedicsoft @@ -1239,7 +1239,7 @@ pocket1: BookSun pocket2: BookRandomStory inhand: - - BoxFolderClipboard + - BoxFolderClipboardThreePapers - type: startingGear id: VisitorMusicianFancyAltA @@ -1509,7 +1509,7 @@ back: ClothingBackpackSatchel ears: ClothingHeadsetService pocket1: MicrophoneInstrument - pocket2: BoxFolderClipboard + pocket2: BoxFolderClipboardThreePapers - type: startingGear id: VisitorReporterAlt @@ -1520,7 +1520,7 @@ back: ClothingBackpackSatchel ears: ClothingHeadsetService pocket1: MicrophoneInstrument - pocket2: BoxFolderClipboard + pocket2: BoxFolderClipboardThreePapers - type: startingGear id: VisitorServiceWorker diff --git a/Resources/Prototypes/Roles/MindRoles/mind_roles.yml b/Resources/Prototypes/Roles/MindRoles/mind_roles.yml index 95d49c1b83..d56e798fda 100644 --- a/Resources/Prototypes/Roles/MindRoles/mind_roles.yml +++ b/Resources/Prototypes/Roles/MindRoles/mind_roles.yml @@ -197,6 +197,14 @@ - type: MindRole antagPrototype: NukeopsCommander +- type: entity + parent: MindRoleNukeops + id: MindRoleLoneops + name: Loneops Operative Role + components: + - type: MindRole + roleType: SoloAntagonist + # Revolutionaries - type: entity parent: BaseMindRoleAntag @@ -320,3 +328,5 @@ roleType: SoloAntagonist subtype: role-subtype-changeling - type: ChangelingRole + - type: RoleBriefing + briefing: changeling-briefing diff --git a/Resources/Prototypes/Shaders/shaders.yml b/Resources/Prototypes/Shaders/shaders.yml index 057abf0ac2..f7c704909e 100644 --- a/Resources/Prototypes/Shaders/shaders.yml +++ b/Resources/Prototypes/Shaders/shaders.yml @@ -115,3 +115,13 @@ id: Hologram kind: source path: "/Textures/Shaders/hologram.swsl" + +- type: shader + id: Heat + kind: source + path: "/Textures/Shaders/heat.swsl" + params: + spatial_scale: 1.0 + strength_scale: 1.0 + speed_scale: 1.0 + grid_ent_from_viewport_local: 1,0,0,1,0,1 diff --git a/Resources/Prototypes/SoundCollections/kitchenspike.yml b/Resources/Prototypes/SoundCollections/kitchenspike.yml new file mode 100644 index 0000000000..e8d8dc79a6 --- /dev/null +++ b/Resources/Prototypes/SoundCollections/kitchenspike.yml @@ -0,0 +1,9 @@ +- type: soundCollection + id: Spike + files: + - /Audio/Effects/Fluids/splat.ogg + +- type: soundCollection + id: SpikeButcher + files: + - /Audio/Weapons/bladeslice.ogg diff --git a/Resources/Prototypes/SoundCollections/screams.yml b/Resources/Prototypes/SoundCollections/screams.yml index 34cdeaf374..8339678d8d 100644 --- a/Resources/Prototypes/SoundCollections/screams.yml +++ b/Resources/Prototypes/SoundCollections/screams.yml @@ -61,3 +61,11 @@ - /Audio/Machines/robotscream_7.ogg - /Audio/Machines/robotscream_8.ogg - /Audio/Machines/robotscream_9.ogg + +- type: soundCollection + id: VulpkaninScreams + files: + - /Audio/Voice/Vulpkanin/vulp_scream1.ogg + - /Audio/Voice/Vulpkanin/vulp_scream2.ogg + - /Audio/Voice/Vulpkanin/vulp_scream3.ogg + - /Audio/Voice/Vulpkanin/vulp_scream4.ogg diff --git a/Resources/Prototypes/SoundCollections/vulpkanin.yml b/Resources/Prototypes/SoundCollections/vulpkanin.yml new file mode 100644 index 0000000000..89ce641f39 --- /dev/null +++ b/Resources/Prototypes/SoundCollections/vulpkanin.yml @@ -0,0 +1,33 @@ +- type: soundCollection + id: VulpkaninBarks + files: + - /Audio/Voice/Vulpkanin/dog_bark1.ogg + - /Audio/Voice/Vulpkanin/dog_bark2.ogg + - /Audio/Voice/Vulpkanin/dog_bark3.ogg + +- type: soundCollection + id: VulpkaninGrowls + files: + - /Audio/Voice/Vulpkanin/dog_growl1.ogg + - /Audio/Voice/Vulpkanin/dog_growl2.ogg + - /Audio/Voice/Vulpkanin/dog_growl3.ogg + - /Audio/Voice/Vulpkanin/dog_growl4.ogg + - /Audio/Voice/Vulpkanin/dog_growl5.ogg + - /Audio/Voice/Vulpkanin/dog_growl6.ogg + +- type: soundCollection + id: VulpkaninSnarls + files: + - /Audio/Voice/Vulpkanin/dog_snarl1.ogg + - /Audio/Voice/Vulpkanin/dog_snarl2.ogg + - /Audio/Voice/Vulpkanin/dog_snarl3.ogg + +- type: soundCollection + id: VulpkaninWhines + files: + - /Audio/Voice/Vulpkanin/dog_whine.ogg + +- type: soundCollection + id: VulpkaninHowls + files: + - /Audio/Voice/Vulpkanin/howl.ogg diff --git a/Resources/Prototypes/Species/species_weights.yml b/Resources/Prototypes/Species/species_weights.yml index 63c196b95d..e226d2064a 100644 --- a/Resources/Prototypes/Species/species_weights.yml +++ b/Resources/Prototypes/Species/species_weights.yml @@ -6,3 +6,4 @@ Reptilian: 4 SlimePerson: 4 Diona: 2 + Vulpkanin: 4 diff --git a/Resources/Prototypes/Species/vulpkanin.yml b/Resources/Prototypes/Species/vulpkanin.yml new file mode 100644 index 0000000000..5d2b4418c8 --- /dev/null +++ b/Resources/Prototypes/Species/vulpkanin.yml @@ -0,0 +1,168 @@ +- type: species + id: Vulpkanin + name: species-name-vulpkanin + roundStart: true + prototype: MobVulpkanin + sprites: MobVulpkaninSprites + defaultSkinTone: "#5a3f2d" + markingLimits: MobVulpkaninMarkingLimits + dollPrototype: MobVulpkaninDummy + skinColoration: Hues # TODO: Introduce clamping once #39175 or a similiar PR is merged. Ideally lower max saturation to around 80% and some minimum brightness. Same for markings. + maleFirstNames: names_vulpkanin_male + femaleFirstNames: names_vulpkanin_female + lastNames: names_vulpkanin_last + +- type: speciesBaseSprites + id: MobVulpkaninSprites + sprites: + Head: MobVulpkaninHead + Hair: MobHumanoidAnyMarking + FacialHair: MobHumanoidAnyMarking + Snout: MobHumanoidAnyMarking + SnoutCover: MobHumanoidAnyMarking + UndergarmentTop: MobHumanoidAnyMarking + UndergarmentBottom: MobHumanoidAnyMarking + Chest: MobVulpkaninTorso + HeadTop: MobHumanoidAnyMarking + HeadSide: MobHumanoidAnyMarking + Tail: MobHumanoidAnyMarking + Eyes: MobVulpkaninEyes + LArm: MobVulpkaninLArm + RArm: MobVulpkaninRArm + LHand: MobVulpkaninLHand + RHand: MobVulpkaninRHand + LLeg: MobVulpkaninLLeg + RLeg: MobVulpkaninRLeg + LFoot: MobVulpkaninLFoot + RFoot: MobVulpkaninRFoot + +- type: markingPoints # 6 points on arms and legs due to the "expected" marking usage. Two for hands, two for arms and 2 for claws. Can be lower once we have a distinction between LeftArm and RightArm instead of just Arms. + id: MobVulpkaninMarkingLimits + points: + Hair: + points: 1 + required: false + FacialHair: + points: 1 + onlyWhitelisted: true # Beards lack displacement maps and are impossible to displace onto a snout. + required: false + Snout: + points: 1 + required: true + defaultMarkings: [ VulpSnout ] + SnoutCover: + points: 3 + required: false + Tail: + points: 1 + required: true + defaultMarkings: [ VulpTailVulp ] + Head: + points: 3 + required: false + HeadTop: + points: 1 + required: true + defaultMarkings: [ VulpEar ] + UndergarmentTop: + points: 1 + required: false + UndergarmentBottom: + points: 1 + required: false + Arms: + points: 6 + required: false + Legs: + points: 6 + required: false + +- type: humanoidBaseSprite + id: MobVulpkaninEyes + baseSprite: + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: eyes + +- type: humanoidBaseSprite + id: MobVulpkaninHead + baseSprite: + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobVulpkaninHeadMale + baseSprite: + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobVulpkaninHeadFemale + baseSprite: + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: head_f + +- type: humanoidBaseSprite + id: MobVulpkaninTorso + baseSprite: + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobVulpkaninTorsoMale + baseSprite: + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobVulpkaninTorsoFemale + baseSprite: + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: torso_f + +- type: humanoidBaseSprite + id: MobVulpkaninLLeg + baseSprite: + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: l_leg + +- type: humanoidBaseSprite + id: MobVulpkaninLHand + baseSprite: + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: l_hand + +- type: humanoidBaseSprite + id: MobVulpkaninLArm + baseSprite: + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: l_arm + +- type: humanoidBaseSprite + id: MobVulpkaninLFoot + baseSprite: + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: l_foot + +- type: humanoidBaseSprite + id: MobVulpkaninRLeg + baseSprite: + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: r_leg + +- type: humanoidBaseSprite + id: MobVulpkaninRHand + baseSprite: + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: r_hand + +- type: humanoidBaseSprite + id: MobVulpkaninRArm + baseSprite: + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: r_arm + +- type: humanoidBaseSprite + id: MobVulpkaninRFoot + baseSprite: + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: r_foot diff --git a/Resources/Prototypes/Stacks/floor_tile_stacks.yml b/Resources/Prototypes/Stacks/floor_tile_stacks.yml index dab0faded2..6e1ccd45bc 100644 --- a/Resources/Prototypes/Stacks/floor_tile_stacks.yml +++ b/Resources/Prototypes/Stacks/floor_tile_stacks.yml @@ -665,6 +665,12 @@ spawn: FloorTileItemXenoSteelCorner maxCount: 30 +- type: stack + id: FloorTileXenoborg + name: stack-xenoborg + spawn: FloorTileItemXenoborg + maxCount: 30 + - type: stack id: FloorTileDarkSquiggly name: stack-dark-squiggly diff --git a/Resources/Prototypes/StatusIcon/job.yml b/Resources/Prototypes/StatusIcon/job.yml index 99857a3f47..9c09198a94 100644 --- a/Resources/Prototypes/StatusIcon/job.yml +++ b/Resources/Prototypes/StatusIcon/job.yml @@ -1,10 +1,206 @@ - type: jobIcon - id: JobIcon abstract: true + id: JobIcon priority: 1 locationPreference: Right isShaded: true +# Cargo + +- type: jobIcon + parent: JobIcon + id: JobIconCargoTechnician + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: CargoTechnician + jobName: job-name-cargotech + +- type: jobIcon + parent: JobIcon + id: JobIconShaftMiner + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: ShaftMiner + jobName: job-name-salvagespec + +# Command + +- type: jobIcon + parent: JobIcon + id: JobIconCaptain + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: Captain + jobName: job-name-captain + +- type: jobIcon + parent: JobIcon + id: JobIconChiefEngineer + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: ChiefEngineer + jobName: job-name-ce + +- type: jobIcon + parent: JobIcon + id: JobIconChiefMedicalOfficer + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: ChiefMedicalOfficer + jobName: job-name-cmo + +- type: jobIcon + parent: JobIcon + id: JobIconHeadOfPersonnel + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: HeadOfPersonnel + jobName: job-name-hop + +- type: jobIcon + parent: JobIcon + id: JobIconHeadOfSecurity + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: HeadOfSecurity + jobName: job-name-hos + +- type: jobIcon + parent: JobIcon + id: JobIconResearchDirector + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: ResearchDirector + jobName: job-name-rd + +- type: jobIcon + parent: JobIcon + id: JobIconQuarterMaster + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: QuarterMaster + jobName: job-name-qm + +# Engineering + +- type: jobIcon + parent: JobIcon + id: JobIconAtmosphericTechnician + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: AtmosphericTechnician + jobName: job-name-atmostech + +- type: jobIcon + parent: JobIcon + id: JobIconStationEngineer + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: StationEngineer + jobName: job-name-engineer + +- type: jobIcon + parent: JobIcon + id: JobIconTechnicalAssistant + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: TechnicalAssistant + jobName: job-name-technical-assistant + +# Medical + +- type: jobIcon + parent: JobIcon + id: JobIconChemist + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: Chemist + jobName: job-name-chemist + +- type: jobIcon + parent: JobIcon + id: JobIconGeneticist + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: Geneticist + jobName: job-name-geneticist + +- type: jobIcon + parent: JobIcon + id: JobIconMedicalDoctor + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: MedicalDoctor + jobName: job-name-doctor + +- type: jobIcon + parent: JobIcon + id: JobIconMedicalIntern + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: MedicalIntern + jobName: job-name-intern + +- type: jobIcon + parent: JobIcon + id: JobIconParamedic + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: Paramedic + jobName: job-name-paramedic + +- type: jobIcon + parent: JobIcon + id: JobIconPsychologist + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: Psychologist + jobName: job-name-psychologist + +- type: jobIcon + parent: JobIcon + id: JobIconVirologist + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: Virologist + jobName: job-name-virologist + +# Research + +- type: jobIcon + parent: JobIcon + id: JobIconResearchAssistant + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: ResearchAssistant + jobName: job-name-research-assistant + +- type: jobIcon + parent: JobIcon + id: JobIconRoboticist + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: Roboticist + jobName: job-name-roboticist + +- type: jobIcon + parent: JobIcon + id: JobIconScientist + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: Scientist + jobName: job-name-scientist + +# Security + +- type: jobIcon + parent: JobIcon + id: JobIconBrigmedic + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: Brigmedic + jobName: job-name-brigmedic + - type: jobIcon parent: JobIcon id: JobIconDetective @@ -15,27 +211,37 @@ - type: jobIcon parent: JobIcon - id: JobIconQuarterMaster + id: JobIconSecurityCadet icon: sprite: /Textures/Interface/Misc/job_icons.rsi - state: QuarterMaster - jobName: job-name-qm + state: SecurityCadet + jobName: job-name-cadet - type: jobIcon parent: JobIcon - id: JobIconBorg + id: JobIconSecurityOfficer icon: sprite: /Textures/Interface/Misc/job_icons.rsi - state: Borg - jobName: job-name-borg + state: SecurityOfficer + jobName: job-name-security - type: jobIcon parent: JobIcon - id: JobIconStationAi + id: JobIconWarden icon: sprite: /Textures/Interface/Misc/job_icons.rsi - state: StationAi - jobName: job-name-station-ai + state: Warden + jobName: job-name-warden + +# Service + +- type: jobIcon + parent: JobIcon + id: JobIconBartender + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: Bartender + jobName: job-name-bartender - type: jobIcon parent: JobIcon @@ -53,86 +259,6 @@ state: Boxer jobName: job-name-boxer -- type: jobIcon - parent: JobIcon - id: JobIconAtmosphericTechnician - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: AtmosphericTechnician - jobName: job-name-atmostech - -- type: jobIcon - parent: JobIcon - id: JobIconNanotrasen - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: Nanotrasen - jobName: job-name-centcomoff - -- type: jobIcon - parent: JobIcon - id: JobIconPrisoner - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: Prisoner - jobName: job-name-prisoner - -- type: jobIcon - parent: JobIcon - id: JobIconJanitor - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: Janitor - jobName: job-name-janitor - -- type: jobIcon - parent: JobIcon - id: JobIconChemist - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: Chemist - jobName: job-name-chemist - -- type: jobIcon - parent: JobIcon - id: JobIconStationEngineer - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: StationEngineer - jobName: job-name-engineer - -- type: jobIcon - parent: JobIcon - id: JobIconSecurityOfficer - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: SecurityOfficer - jobName: job-name-security - -- type: jobIcon - parent: JobIcon - id: JobIconNoId - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: NoId - jobName: job-name-no-id - -- type: jobIcon - parent: JobIcon - id: JobIconChiefMedicalOfficer - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: ChiefMedicalOfficer - jobName: job-name-cmo - -- type: jobIcon - parent: JobIcon - id: JobIconRoboticist - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: Roboticist - jobName: job-name-roboticist - - type: jobIcon parent: JobIcon id: JobIconChaplain @@ -141,166 +267,6 @@ state: Chaplain jobName: job-name-chaplain -- type: jobIcon - parent: JobIcon - id: JobIconLawyer - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: Lawyer - jobName: job-name-lawyer - -- type: jobIcon - parent: JobIcon - id: JobIconUnknown - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: Unknown - jobName: job-name-unknown - -- type: jobIcon - parent: JobIcon - id: JobIconLibrarian - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: Librarian - jobName: job-name-librarian - -- type: jobIcon - parent: JobIcon - id: JobIconCargoTechnician - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: CargoTechnician - jobName: job-name-cargotech - -- type: jobIcon - parent: JobIcon - id: JobIconScientist - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: Scientist - jobName: job-name-scientist - -- type: jobIcon - parent: JobIcon - id: JobIconResearchAssistant - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: ResearchAssistant - jobName: job-name-research-assistant - -- type: jobIcon - parent: JobIcon - id: JobIconGeneticist - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: Geneticist - jobName: job-name-geneticist - -- type: jobIcon - parent: JobIcon - id: JobIconClown - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: Clown - jobName: job-name-clown - -- type: jobIcon - parent: JobIcon - id: JobIconCluwne - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: Cluwne - jobName: job-name-cluwne - -- type: jobIcon - parent: JobIcon - id: JobIconCaptain - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: Captain - jobName: job-name-captain - -- type: jobIcon - parent: JobIcon - id: JobIconHeadOfPersonnel - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: HeadOfPersonnel - jobName: job-name-hop - -- type: jobIcon - parent: JobIcon - id: JobIconVirologist - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: Virologist - jobName: job-name-virologist - -- type: jobIcon - parent: JobIcon - id: JobIconShaftMiner - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: ShaftMiner - jobName: job-name-salvagespec - -- type: jobIcon - parent: JobIcon - id: JobIconPassenger - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: Passenger - jobName: job-name-passenger - -- type: jobIcon - parent: JobIcon - id: JobIconChiefEngineer - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: ChiefEngineer - jobName: job-name-ce - -- type: jobIcon - parent: JobIcon - id: JobIconBartender - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: Bartender - jobName: job-name-bartender - -- type: jobIcon - parent: JobIcon - id: JobIconHeadOfSecurity - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: HeadOfSecurity - jobName: job-name-hos - -- type: jobIcon - parent: JobIcon - id: JobIconBrigmedic - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: Brigmedic - jobName: job-name-brigmedic - -- type: jobIcon - parent: JobIcon - id: JobIconMedicalDoctor - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: MedicalDoctor - jobName: job-name-doctor - -- type: jobIcon - parent: JobIcon - id: JobIconParamedic - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: Paramedic - jobName: job-name-paramedic - - type: jobIcon parent: JobIcon id: JobIconChef @@ -311,19 +277,61 @@ - type: jobIcon parent: JobIcon - id: JobIconWarden + id: JobIconJanitor icon: sprite: /Textures/Interface/Misc/job_icons.rsi - state: Warden - jobName: job-name-warden + state: Janitor + jobName: job-name-janitor - type: jobIcon parent: JobIcon - id: JobIconResearchDirector + id: JobIconLawyer icon: sprite: /Textures/Interface/Misc/job_icons.rsi - state: ResearchDirector - jobName: job-name-rd + state: Lawyer + jobName: job-name-lawyer + +- type: jobIcon + parent: JobIcon + id: JobIconLibrarian + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: Librarian + jobName: job-name-librarian + +- type: jobIcon + parent: JobIcon + id: JobIconReporter + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: Reporter + jobName: job-name-reporter + +- type: jobIcon + parent: JobIcon + id: JobIconServiceWorker + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: ServiceWorker + jobName: job-name-serviceworker + +- type: jobIcon + parent: JobIcon + id: JobIconZookeeper + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: Zookeeper + jobName: job-name-zookeeper + +# Entertainer (like service, but not actually service) + +- type: jobIcon + parent: JobIcon + id: JobIconClown # :o) + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: Clown + jobName: job-name-clown - type: jobIcon parent: JobIcon @@ -341,61 +349,59 @@ state: Musician jobName: job-name-musician -- type: jobIcon - parent: JobIcon - id: JobIconReporter - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: Reporter - jobName: job-name-reporter +# Passenger - type: jobIcon parent: JobIcon - id: JobIconPsychologist + id: JobIconPassenger icon: sprite: /Textures/Interface/Misc/job_icons.rsi - state: Psychologist - jobName: job-name-psychologist + state: Passenger + jobName: job-name-passenger - type: jobIcon parent: JobIcon - id: JobIconMedicalIntern + id: JobIconVisitor icon: sprite: /Textures/Interface/Misc/job_icons.rsi - state: MedicalIntern - jobName: job-name-intern + state: Visitor + jobName: job-name-visitor + +# Silicon - type: jobIcon parent: JobIcon - id: JobIconTechnicalAssistant + id: JobIconBorg icon: sprite: /Textures/Interface/Misc/job_icons.rsi - state: TechnicalAssistant - jobName: job-name-technical-assistant + state: Borg + jobName: job-name-borg - type: jobIcon parent: JobIcon - id: JobIconServiceWorker + id: JobIconStationAi icon: sprite: /Textures/Interface/Misc/job_icons.rsi - state: ServiceWorker - jobName: job-name-serviceworker + state: StationAi + jobName: job-name-station-ai + +# Bad guys - type: jobIcon parent: JobIcon - id: JobIconSecurityCadet + id: JobIconCluwne # >:o( icon: sprite: /Textures/Interface/Misc/job_icons.rsi - state: SecurityCadet - jobName: job-name-cadet + state: Cluwne + jobName: job-name-cluwne - type: jobIcon parent: JobIcon - id: JobIconZombie # This is a perfectly legitimate profession to pursue + id: JobIconPrisoner icon: sprite: /Textures/Interface/Misc/job_icons.rsi - state: Zombie - jobName: job-name-zombie + state: Prisoner + jobName: job-name-prisoner - type: jobIcon parent: JobIcon @@ -407,11 +413,29 @@ - type: jobIcon parent: JobIcon - id: JobIconZookeeper + id: JobIconZombie # This is a perfectly legitimate profession to pursue icon: sprite: /Textures/Interface/Misc/job_icons.rsi - state: Zookeeper - jobName: job-name-zookeeper + state: Zombie + jobName: job-name-zombie + +# Admin + +- type: jobIcon + parent: JobIcon + id: JobIconNanotrasen + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: Nanotrasen + jobName: job-name-centcomoff + +- type: jobIcon + parent: JobIcon + id: JobIconAdmin + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: Admin + allowSelection: false - type: jobIcon parent: JobIcon @@ -445,18 +469,20 @@ state: SeniorResearcher allowSelection: false -- type: jobIcon - parent: JobIcon - id: JobIconVisitor - icon: - sprite: /Textures/Interface/Misc/job_icons.rsi - state: Visitor - jobName: job-name-visitor +# Other - type: jobIcon parent: JobIcon - id: JobIconAdmin + id: JobIconNoId icon: sprite: /Textures/Interface/Misc/job_icons.rsi - state: Admin - allowSelection: false + state: NoId + jobName: job-name-no-id + +- type: jobIcon + parent: JobIcon + id: JobIconUnknown + icon: + sprite: /Textures/Interface/Misc/job_icons.rsi + state: Unknown + jobName: job-name-unknown diff --git a/Resources/Prototypes/Tiles/floors.yml b/Resources/Prototypes/Tiles/floors.yml index 6e3a588ab4..7c1f39aa54 100644 --- a/Resources/Prototypes/Tiles/floors.yml +++ b/Resources/Prototypes/Tiles/floors.yml @@ -2063,6 +2063,18 @@ itemDrop: FloorTileItemWoodLarge heatCapacity: 10000 +- type: tile + id: FloorXenoborg + name: tiles-xenoborg-floor + sprite: /Textures/Tiles/exoborg.png + baseTurf: Plating + isSubfloor: false + deconstructTools: [ Prying ] + footstepSounds: + collection: FootstepHull + itemDrop: FloorTileItemXenoborg + heatCapacity: 10000 + - type: tile id: FloorXeno name: tiles-xeno-floor diff --git a/Resources/Prototypes/Traits/disabilities.yml b/Resources/Prototypes/Traits/disabilities.yml index a5c1f54d6b..c5356149f2 100644 --- a/Resources/Prototypes/Traits/disabilities.yml +++ b/Resources/Prototypes/Traits/disabilities.yml @@ -83,3 +83,20 @@ category: Disabilities components: - type: PainNumbness + +- type: trait + id: Hemophilia + name: trait-hemophilia-name + description: trait-hemophilia-desc + category: Disabilities + components: + - type: Hemophilia + +- type: trait + id: ImpairedMobility + name: trait-impaired-mobility-name + description: trait-impaired-mobility-desc + traitGear: OffsetCane + category: Disabilities + components: + - type: ImpairedMobility diff --git a/Resources/Prototypes/Voice/speech_emote_sounds.yml b/Resources/Prototypes/Voice/speech_emote_sounds.yml index ee2b1e0d5f..c21091051c 100644 --- a/Resources/Prototypes/Voice/speech_emote_sounds.yml +++ b/Resources/Prototypes/Voice/speech_emote_sounds.yml @@ -458,6 +458,63 @@ Ping: collection: XenoborgPing +# Vulp Sounds +- type: emoteSounds + id: MaleVulpkanin + params: + variation: 0.125 + sounds: + Laugh: + collection: MaleLaugh + Sneeze: + collection: MaleSneezes + Cough: + collection: MaleCoughs + Whistle: + collection: Whistles + Sigh: + collection: MaleSigh + Scream: + collection: VulpkaninScreams + Growl: + collection: VulpkaninGrowls + Snarl: + collection: VulpkaninSnarls + Bark: + collection: VulpkaninBarks + Whine: + collection: VulpkaninWhines + Howl: + collection: VulpkaninHowls + +- type: emoteSounds + id: FemaleVulpkanin + params: + variation: 0.125 + sounds: + Laugh: + collection: FemaleLaugh + Sneeze: + collection: FemaleSneezes + Cough: + collection: FemaleCoughs + Whistle: + collection: Whistles + Sigh: + collection: FemaleSigh + Scream: + collection: VulpkaninScreams + Growl: + collection: VulpkaninGrowls + Snarl: + collection: VulpkaninSnarls + Bark: + collection: VulpkaninBarks + Whine: + collection: VulpkaninWhines + Howl: + collection: VulpkaninHowls + # body emotes - type: emoteSounds id: GeneralBodyEmotes diff --git a/Resources/Prototypes/Voice/speech_emotes.yml b/Resources/Prototypes/Voice/speech_emotes.yml index 64f39fe8a3..b5e546480d 100644 --- a/Resources/Prototypes/Voice/speech_emotes.yml +++ b/Resources/Prototypes/Voice/speech_emotes.yml @@ -198,6 +198,97 @@ - click - clicks +# Vulpkanin +- type: emote + id: Bark + name: chat-emote-name-bark + category: Vocal + available: false + whitelist: + components: + - Vocal + blacklist: + components: + - BorgChassis + chatMessages: [barks.] + chatTriggers: + - bark + - barks + - barked + - barking + +- type: emote + id: Snarl + name: chat-emote-name-snarl + category: Vocal + available: false + whitelist: + components: + - Vocal + blacklist: + components: + - BorgChassis + chatMessages: [snarls.] + chatTriggers: + - snarl + - snarls + - snarled + - snarling + +- type: emote + id: Whine + name: chat-emote-name-whine + category: Vocal + available: false + whitelist: + components: + - Vocal + blacklist: + components: + - BorgChassis + chatMessages: [whines.] + chatTriggers: + - whine + - whines + - whined + - whining + +- type: emote + id: Howl + name: chat-emote-name-howl + category: Vocal + available: false + whitelist: + components: + - Vocal + blacklist: + components: + - BorgChassis + chatMessages: [howls.] + chatTriggers: + - howl + - howls + - howling + - howled + +- type: emote + id: Growl + name: chat-emote-name-growl + category: Vocal + available: false + whitelist: + components: + - Vocal + blacklist: + components: + - BorgChassis + chatMessages: [growls.] + chatTriggers: + - growl + - growls + - growled + - growling + # hand emotes - type: emote id: Clap diff --git a/Resources/Prototypes/Voice/speech_sounds.yml b/Resources/Prototypes/Voice/speech_sounds.yml index 5f48013e87..d11e32d5d6 100644 --- a/Resources/Prototypes/Voice/speech_sounds.yml +++ b/Resources/Prototypes/Voice/speech_sounds.yml @@ -178,6 +178,15 @@ exclaimSound: path: /Audio/Animals/goat_bah.ogg +- type: speechSounds + id: Vulpkanin + saySound: + path: /Audio/Voice/Talk/vulp.ogg + askSound: + path: /Audio/Voice/Talk/vulp_ask.ogg + exclaimSound: + path: /Audio/Voice/Talk/vulp_exclaim.ogg + - type: speechSounds id: Wawa saySound: diff --git a/Resources/Prototypes/Voice/speech_verbs.yml b/Resources/Prototypes/Voice/speech_verbs.yml index 39f304018b..1b8d6a0ac5 100644 --- a/Resources/Prototypes/Voice/speech_verbs.yml +++ b/Resources/Prototypes/Voice/speech_verbs.yml @@ -173,6 +173,15 @@ - chat-speech-verb-electricity-2 - chat-speech-verb-electricity-3 +- type: speechVerb + id: Vulpkanin + name: chat-speech-verb-vulpkanin + speechVerbStrings: + - chat-speech-verb-vulpkanin-1 + - chat-speech-verb-vulpkanin-2 + - chat-speech-verb-vulpkanin-3 + - chat-speech-verb-vulpkanin-4 + - type: speechVerb id: Wawa name: chat-speech-verb-name-wawa diff --git a/Resources/Prototypes/borg_types.yml b/Resources/Prototypes/borg_types.yml index 1c49713e26..1d88af8455 100644 --- a/Resources/Prototypes/borg_types.yml +++ b/Resources/Prototypes/borg_types.yml @@ -14,6 +14,7 @@ defaultModules: - BorgModuleTool + - BorgModuleInflatable - BorgModuleArtifact - BorgModuleAnomaly radioChannels: diff --git a/Resources/Prototypes/chameleon.yml b/Resources/Prototypes/chameleon.yml new file mode 100644 index 0000000000..ed08c979b5 --- /dev/null +++ b/Resources/Prototypes/chameleon.yml @@ -0,0 +1,15 @@ +# for clothing that can be toggled, like magboots +- type: entity + parent: SelectableLock + abstract: true + id: BaseChameleon + components: + - type: UIRequiresLock + userInterfaceKeys: + - enum.ChameleonUiKey.Key + accessDeniedSound: null + popup: null + - type: UserInterface + interfaces: + enum.ChameleonUiKey.Key: + type: ChameleonBoundUserInterface diff --git a/Resources/Prototypes/contraband_severities.yml b/Resources/Prototypes/contraband_severities.yml index 38349d9497..191185177c 100644 --- a/Resources/Prototypes/contraband_severities.yml +++ b/Resources/Prototypes/contraband_severities.yml @@ -21,6 +21,11 @@ id: GrandTheft examineText: contraband-examine-text-GrandTheft +# This is highly illegal contraband and is illegal to own IC. +- type: contrabandSeverity + id: HighlyIllegal + examineText: contraband-examine-text-Highly-Illegal + # This is clear syndicate contraband and is illegal to own IC. - type: contrabandSeverity id: Syndicate diff --git a/Resources/Prototypes/game_presets.yml b/Resources/Prototypes/game_presets.yml index 160bb5e4a0..ff6450d7cb 100644 --- a/Resources/Prototypes/game_presets.yml +++ b/Resources/Prototypes/game_presets.yml @@ -96,6 +96,23 @@ - SpaceTrafficControlFriendlyEventScheduler - BasicRoundstartVariation +- type: gamePreset + id: Dynamic + alias: + - dynamic + - multiantag + - director + name: dynamic-title + showInVote: false # admin-only for now until we fix some bugs + description: dynamic-description + rules: + - DynamicRule + - DummyNonAntag + - DynamicStationEventScheduler + - MeteorSwarmScheduler + - SpaceTrafficControlEventScheduler + - BasicRoundstartVariation + - type: gamePreset id: Secret alias: @@ -107,30 +124,6 @@ rules: - Secret -- type: gamePreset - id: SecretExtended #For Admin Use: Runs Extended but shows "Secret" in lobby. - alias: - - secretextended - name: secret-title - showInVote: false #Admin Use - description: secret-description - rules: - - BasicStationEventScheduler - - MeteorSwarmScheduler - - SpaceTrafficControlEventScheduler - - BasicRoundstartVariation - -- type: gamePreset - id: SecretGreenshift #For Admin Use: Runs Greenshift but shows "Secret" in lobby. - alias: - - secretgreenshift - name: secret-title - showInVote: false #Admin Use - description: secret-description - rules: - - SpaceTrafficControlFriendlyEventScheduler - - BasicRoundstartVariation - - type: gamePreset id: Sandbox alias: diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 5d34f0f30c..174374beb8 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -347,6 +347,9 @@ - type: Tag id: ComputerTelevisionCircuitboard +- type: Tag + id: ConstructionMaterial + - type: Tag id: ConveyorAssembly @@ -630,6 +633,9 @@ - type: Tag id: GhostOnlyWarp +- type: Tag + id: GenderPin + - type: Tag id: GlassAirlock @@ -798,6 +804,9 @@ - type: Tag id: Ingot +- type: Tag + id: Inflatable + - type: Tag id: InstantDoAfters @@ -925,6 +934,9 @@ - type: Tag id: Medkit +- type: Tag + id: MessyDrinkerImmune + - type: Tag id: Metal diff --git a/Resources/ServerInfo/Guidebook/Mobs/Species.xml b/Resources/ServerInfo/Guidebook/Mobs/Species.xml index f1b36f9d73..fc9c5db710 100644 --- a/Resources/ServerInfo/Guidebook/Mobs/Species.xml +++ b/Resources/ServerInfo/Guidebook/Mobs/Species.xml @@ -15,5 +15,8 @@ <GuideEntityEmbed Entity="MobSlimePerson" Caption="Slime Person"/> <GuideEntityEmbed Entity="MobVox" Caption="Vox"/> </Box> + <Box> + <GuideEntityEmbed Entity="MobVulpkanin" Caption="Vulpkanin"/> + </Box> </Document> diff --git a/Resources/ServerInfo/Guidebook/Mobs/Vulpkanin.xml b/Resources/ServerInfo/Guidebook/Mobs/Vulpkanin.xml new file mode 100644 index 0000000000..8ee0b17727 --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Mobs/Vulpkanin.xml @@ -0,0 +1,16 @@ +<Document> + # Vulpkanin + + <Box> + <GuideEntityEmbed Entity="MobVulpkanin" Caption=""/> + </Box> + + Vulpkanin, due to their dense fur, [color=#1e90ff]prefer colder temperatures[/color] and [color=#ffa500]heat up faster.[/color] + Their agile (but clumsy) legs allow them to leap short distances, be careful not to bump into anything! + + Their diet allows them to safely eat raw meat but they get poisoned by theobromine. + + Their weirdly shaped muzzle leads to difficulties drinking, making them sometimes spill small amounts of whatever they drank onto the ground. + + They take [color=#1e90ff]15% less Cold damage[/color] but [color=#ffa500]15% more Heat damage.[/color]. +</Document> diff --git a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLCrimeList.xml b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLCrimeList.xml index 2ea20b5a0c..70b845ccd4 100644 --- a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLCrimeList.xml +++ b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLCrimeList.xml @@ -76,7 +76,7 @@ </ColorBox> <ColorBox Color="#2f3832"> <Box HorizontalAlignment="Left" VerticalAlignment="Stretch" Margin="2"> - Possession: Syndicate (P) + Possession: Highly Illegal (P) </Box> </ColorBox> <ColorBox> @@ -571,17 +571,17 @@ </ColorBox> <ColorBox> <Box HorizontalAlignment="Left" VerticalAlignment="Stretch" Margin="2"> - Possession/Use of Syndicate Contraband + Possession/Use of Highly Illegal Contraband </Box> </ColorBox> <ColorBox> <Box HorizontalAlignment="Left" VerticalAlignment="Stretch" Margin="2"> - To make, hold, or use Syndicate contraband. + To make, hold, or use highly illegal contraband. </Box> </ColorBox> <ColorBox> <Box HorizontalAlignment="Left" VerticalAlignment="Stretch" Margin="2"> - Syndicate contraband may only be used in emergencies, and only to prevent death or gross bodily harm. + Highly illegal contraband includes Syndicate contraband and magical contraband. Without explicit authorization from Central Command, highly illegal contraband may only be used in emergencies, and only to prevent death or gross bodily harm. </Box> </ColorBox> <ColorBox> diff --git a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SpaceLaw.xml b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SpaceLaw.xml index 5e07f3cd3a..25ccac38f6 100644 --- a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SpaceLaw.xml +++ b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SpaceLaw.xml @@ -41,7 +41,7 @@ [color=#a4885c]Stackable Crimes:[/color] Crimes are to be considered 'stackable' in the sense that if you charge someone with two or more different crimes, you should combine the times you would give them for each crime. Linked crimes, shown in matching colors and suffixes on the Quick Crime Guide, can not be stacked and instead override each other, you should pick the highest crime that matches the case. - - Example: A suspect has committed a 2-01 (possession: major) and a 3-01 (possession: syndicate). The maximum sentence here would be 10 minutes due to them being linked crimes, and 3-01 is the greater crime. + - Example: A suspect has committed a 2-01 (possession: major) and a 3-01 (possession: highly illegal). The maximum sentence here would be 10 minutes due to them being linked crimes, and 3-01 is the greater crime. - Example 2: A suspect commits a 3-04 (Secure trespassing) and a 3-06 (manslaughter). Those crimes stack since they are not linked crimes. You could sentence for a maximum of 20 minutes, but context matters heavily, and maximum sentences should only be used for the worst offenders. [color=#a4885c]Repeater Offenders:[/color] Repeated crimes are when someone is released for a crime and then goes to commit the same crime within the same shift. Repeated crimes can be charged with tacked-on time; first repeat: 3:00, second repeat: 6:00, third repeat: permanent confinement. It should be noted each tacked-on time is directly linked to one type of crime, so for example, if someone does their first repeat of trespass and petty theft, you can charge them with an extra 6 minutes. diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/meta.json index 85732b2735..8d193c197d 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/f09526480788c2e18fff8c16c4318fd6b4272c10. Vox states by Flareguy for Space Station 14", + "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/f09526480788c2e18fff8c16c4318fd6b4272c10. Vox states by Flareguy for Space Station 14. Vulpkanin and Reptilian states by TiniestShark (Github).", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ "name": "off-equipped-HELMET-vox", "directions": 4 }, + { + "name": "off-equipped-HELMET-reptilian", + "directions": 4 + }, { "name": "on-equipped-HELMET", "directions": 4 @@ -28,6 +32,18 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "on-equipped-HELMET-reptilian", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/off-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/off-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..4f7708dbb0 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/off-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..b2d0af2958 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/on-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/on-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..073817340b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/on-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..bdfaafecb8 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/meta.json index 85732b2735..8d193c197d 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/f09526480788c2e18fff8c16c4318fd6b4272c10. Vox states by Flareguy for Space Station 14", + "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/f09526480788c2e18fff8c16c4318fd6b4272c10. Vox states by Flareguy for Space Station 14. Vulpkanin and Reptilian states by TiniestShark (Github).", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ "name": "off-equipped-HELMET-vox", "directions": 4 }, + { + "name": "off-equipped-HELMET-reptilian", + "directions": 4 + }, { "name": "on-equipped-HELMET", "directions": 4 @@ -28,6 +32,18 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "on-equipped-HELMET-reptilian", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/off-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/off-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..2e8269ebfa Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/off-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..c3c622c191 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/on-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/on-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..67942c5e46 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/on-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..7d90c69661 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/meta.json index 85732b2735..699cfa711e 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/f09526480788c2e18fff8c16c4318fd6b4272c10. Vox states by Flareguy for Space Station 14", + "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/f09526480788c2e18fff8c16c4318fd6b4272c10. Vox states by Flareguy for Space Station 14. Vulpkanin and Reptilian states by TiniestShark (Github)", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ "name": "off-equipped-HELMET-vox", "directions": 4 }, + { + "name": "off-equipped-HELMET-reptilian", + "directions": 4 + }, { "name": "on-equipped-HELMET", "directions": 4 @@ -28,6 +32,18 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "on-equipped-HELMET-reptilian", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/off-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/off-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..3f00fa7c74 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/off-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..37fa840749 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/on-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/on-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..a997702e63 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/on-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..ff127877ed Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/meta.json index 85732b2735..8d193c197d 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/f09526480788c2e18fff8c16c4318fd6b4272c10. Vox states by Flareguy for Space Station 14", + "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/f09526480788c2e18fff8c16c4318fd6b4272c10. Vox states by Flareguy for Space Station 14. Vulpkanin and Reptilian states by TiniestShark (Github).", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ "name": "off-equipped-HELMET-vox", "directions": 4 }, + { + "name": "off-equipped-HELMET-reptilian", + "directions": 4 + }, { "name": "on-equipped-HELMET", "directions": 4 @@ -28,6 +32,18 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "on-equipped-HELMET-reptilian", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/off-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/off-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..d401dc1a1a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/off-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..5e1ce0f264 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/on-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/on-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..e6675123f5 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/on-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..e906af3b09 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/meta.json index 85732b2735..8d193c197d 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/f09526480788c2e18fff8c16c4318fd6b4272c10. Vox states by Flareguy for Space Station 14", + "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/f09526480788c2e18fff8c16c4318fd6b4272c10. Vox states by Flareguy for Space Station 14. Vulpkanin and Reptilian states by TiniestShark (Github).", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ "name": "off-equipped-HELMET-vox", "directions": 4 }, + { + "name": "off-equipped-HELMET-reptilian", + "directions": 4 + }, { "name": "on-equipped-HELMET", "directions": 4 @@ -28,6 +32,18 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "on-equipped-HELMET-reptilian", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/off-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/off-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..d718baa268 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/off-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..936a565b1d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/on-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/on-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..7d98a90e36 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/on-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..e997e77261 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-light-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-light-reptilian.png new file mode 100644 index 0000000000..b12cc92d2f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-light-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-light-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-light-vulpkanin.png new file mode 100644 index 0000000000..1583682958 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-light-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-reptilian.png new file mode 100644 index 0000000000..c22d201e93 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-unshaded-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-unshaded-reptilian.png new file mode 100644 index 0000000000..b82f0400c0 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-unshaded-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-unshaded-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-unshaded-vulpkanin.png new file mode 100644 index 0000000000..a5888c1525 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-unshaded-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-vulpkanin.png new file mode 100644 index 0000000000..d8ec3fcf24 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/meta.json index 57723737b6..b836ddf24d 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states made by Flareguy for SS14. equipped-head-dog modified from equipped-head by Sparlight (GitHub). equipped-head-light-dog modified from equipped-head-light by Sparlight (GitHub). equipped-head-unshaded-dog modified from equipped-head-unshaded by Sparlight (GitHub).", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states made by Flareguy for SS14. equipped-head-dog modified from equipped-head by Sparlight (GitHub). equipped-head-light-dog modified from equipped-head-light by Sparlight (GitHub). equipped-head-unshaded-dog modified from equipped-head-unshaded by Sparlight (GitHub). Vulpkanin and Reptilian states by TiniestShark (Github).", "size": { "x": 32, "y": 32 @@ -43,6 +43,30 @@ "name": "equipped-head-unshaded-vox", "directions": 4 }, + { + "name": "equipped-head-vulpkanin", + "directions": 4 + }, + { + "name": "equipped-head-light-vulpkanin", + "directions": 4 + }, + { + "name": "equipped-head-unshaded-vulpkanin", + "directions": 4 + }, + { + "name": "equipped-head-reptilian", + "directions": 4 + }, + { + "name": "equipped-head-light-reptilian", + "directions": 4 + }, + { + "name": "equipped-head-unshaded-reptilian", + "directions": 4 + }, { "name": "equipped-head-dog", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..a00e2ce75f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/meta.json index 1ed746dd7e..bc5b39e8b1 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/basic.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/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a. equipped-HELMET-dog modified from equipped-HELMET by Sparlight (GitHub).", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a. equipped-HELMET-dog modified from equipped-HELMET by Sparlight (GitHub), vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-HELMET-dog", "directions": 4 }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/meta.json index 0d7372e1ed..94ee712358 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, modified by Emisse for SS14. Vox states by Flareguy for SS14. Dog states modified from base states in a collaborative shared effort by casiliuscestus (GitHub), Sparlight (GitHub), and Raccoononi (GitHub) for SS14.", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, modified by Emisse for SS14. Vox states by Flareguy for SS14. Dog states modified from base states in a collaborative shared effort by casiliuscestus (GitHub), Sparlight (GitHub), and Raccoononi (GitHub) for SS14. Vulpkanin and Reptilian states by TiniestShark (Github).", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ "name": "off-equipped-HELMET-vox", "directions": 4 }, + { + "name": "off-equipped-HELMET-reptilian", + "directions": 4 + }, { "name": "off-equipped-HELMET-dog", "directions": 4 @@ -33,6 +37,18 @@ "name": "on-equipped-HELMET-vox", "directions": 4 }, + { + "name": "on-equipped-HELMET-reptilian", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, { "name": "on-equipped-HELMET-dog", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..9e8ff79065 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..594f893277 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..0c599db1b4 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..eb426189b1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/equipped-head-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/equipped-head-reptilian.png new file mode 100644 index 0000000000..8c64dd1f70 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/equipped-head-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/equipped-head-unshaded-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/equipped-head-unshaded-reptilian.png new file mode 100644 index 0000000000..88822d73e6 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/equipped-head-unshaded-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/meta.json index 1df9c2ddbf..549fb3e019 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/cburn.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by EmoGarbage404. Vox states by Flareguy for SS14", + "copyright": "Made by EmoGarbage404. Vox states by Flareguy for SS14. Reptilian states by TiniestShark (Github)", "size": { "x": 32, "y": 32 @@ -34,6 +34,14 @@ { "name": "equipped-head-unshaded-vox", "directions": 4 + }, + { + "name": "equipped-head-reptilian", + "directions": 4 + }, + { + "name": "equipped-head-unshaded-reptilian", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/meta.json index 5956a9b0f4..91cbad243b 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, modified by brainfood1183 (github). Vox state by Flareguy for SS14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, modified by brainfood1183 (github). Vox state by Flareguy for SS14. Reptilian states by TiniestShark (Github)", "size": { "x": 32, "y": 32 @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "off-equipped-HELMET-reptilian", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-reptilian", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/off-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/off-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..f8356f0925 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/off-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/on-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/on-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..c06f25ec6a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/clown.rsi/on-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/cybersun.rsi/equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/cybersun.rsi/equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..d10ee22c7a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/cybersun.rsi/equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/cybersun.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/cybersun.rsi/meta.json index 2dc8b5f33e..a51bf6774f 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/cybersun.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/cybersun.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from Paradise SS13 at commit https://github.com/ParadiseSS13/Paradise/commit/a67c929b7394f78e7787114457ba42f4df6cc3a1. Vox state by Flareguy for SS14. monkey state made by MercerBray for Ss14. equipped-HELMET-dog modified from equipped-HELMET by casiliuscestus (GitHub) for SS14.", + "copyright": "Taken from Paradise SS13 at commit https://github.com/ParadiseSS13/Paradise/commit/a67c929b7394f78e7787114457ba42f4df6cc3a1. Vox state by Flareguy for SS14. monkey state made by MercerBray for Ss14. equipped-HELMET-dog modified from equipped-HELMET by casiliuscestus (GitHub) for SS14. Reptilian state by TiniestShark (Github)", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-HELMET-vox", "directions": 4 }, + { + "name": "equipped-HELMET-reptilian", + "directions": 4 + }, { "name": "equipped-HELMET-monkey", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..f665139df6 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/meta.json index f0207bb688..26ddd960ef 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, edited by Emisse for SS14. Vox state by Flareguy for SS14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, edited by Emisse for SS14. Vox state by Flareguy for SS14. Vulpkanin states by TiniestShark (Github)", "size": { "x": 32, "y": 32 @@ -17,6 +17,10 @@ { "name": "equipped-HELMET-vox", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/equipped-head-light-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/equipped-head-light-reptilian.png new file mode 100644 index 0000000000..90bf268a7a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/equipped-head-light-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/equipped-head-light-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/equipped-head-light-vulpkanin.png new file mode 100644 index 0000000000..52261ea29b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/equipped-head-light-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/equipped-head-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/equipped-head-reptilian.png new file mode 100644 index 0000000000..8c36084852 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/equipped-head-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/equipped-head-unshaded-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/equipped-head-unshaded-reptilian.png new file mode 100644 index 0000000000..75c76e313a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/equipped-head-unshaded-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/equipped-head-unshaded-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/equipped-head-unshaded-vulpkanin.png new file mode 100644 index 0000000000..2da6040ec6 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/equipped-head-unshaded-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/equipped-head-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/equipped-head-vulpkanin.png new file mode 100644 index 0000000000..457f45b46f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/equipped-head-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/meta.json index 4cdc059df8..677dcde457 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14. Dog states modified from base states by Sparlight (GitHub).", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14. Dog states modified from base states by Sparlight (GitHub). Vulpkanin and Reptilian states by TiniestShark (Github).", "size": { "x": 32, "y": 32 @@ -43,6 +43,18 @@ "name": "equipped-head-unshaded-vox", "directions": 4 }, + { + "name": "equipped-head-reptilian", + "directions": 4 + }, + { + "name": "equipped-head-light-reptilian", + "directions": 4 + }, + { + "name": "equipped-head-unshaded-reptilian", + "directions": 4 + }, { "name": "equipped-head-dog", "directions": 4 @@ -54,6 +66,18 @@ { "name": "equipped-head-unshaded-dog", "directions": 4 + }, + { + "name": "equipped-head-vulpkanin", + "directions": 4 + }, + { + "name": "equipped-head-light-vulpkanin", + "directions": 4 + }, + { + "name": "equipped-head-unshaded-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/equipped-head-light-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/equipped-head-light-reptilian.png new file mode 100644 index 0000000000..ebf8f2c19f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/equipped-head-light-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/equipped-head-light-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/equipped-head-light-vulpkanin.png new file mode 100644 index 0000000000..52261ea29b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/equipped-head-light-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/equipped-head-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/equipped-head-reptilian.png new file mode 100644 index 0000000000..8d81dcf711 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/equipped-head-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/equipped-head-unshaded-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/equipped-head-unshaded-reptilian.png new file mode 100644 index 0000000000..4067327ff3 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/equipped-head-unshaded-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/equipped-head-unshaded-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/equipped-head-unshaded-vulpkanin.png new file mode 100644 index 0000000000..2da6040ec6 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/equipped-head-unshaded-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/equipped-head-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/equipped-head-vulpkanin.png new file mode 100644 index 0000000000..9a25a7caf4 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/equipped-head-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/meta.json index 4cdc059df8..5a3a068eac 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14. Dog states modified from base states by Sparlight (GitHub).", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14. Dog states modified from base states by Sparlight (GitHub). Vulpkanin and Reptilian states by TiniestShark (github).", "size": { "x": 32, "y": 32 @@ -43,6 +43,18 @@ "name": "equipped-head-unshaded-vox", "directions": 4 }, + { + "name": "equipped-head-reptilian", + "directions": 4 + }, + { + "name": "equipped-head-light-reptilian", + "directions": 4 + }, + { + "name": "equipped-head-unshaded-reptilian", + "directions": 4 + }, { "name": "equipped-head-dog", "directions": 4 @@ -54,6 +66,18 @@ { "name": "equipped-head-unshaded-dog", "directions": 4 + }, + { + "name": "equipped-head-light-vulpkanin", + "directions": 4 + }, + { + "name": "equipped-head-unshaded-vulpkanin", + "directions": 4 + }, + { + "name": "equipped-head-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-light-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-light-reptilian.png new file mode 100644 index 0000000000..321f0cbe12 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-light-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-reptilian.png new file mode 100644 index 0000000000..9d220584d3 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-unshaded-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-unshaded-reptilian.png new file mode 100644 index 0000000000..a7729f5296 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-unshaded-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/meta.json index a591ed0c5b..5d63229cb7 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/meta.json @@ -1,8 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Normal and vox sprites created by https://github.com/Pronana / princesscheeseballs (Discord). Dog states modified from base states by Sparlight (GitHub).", - + "copyright": "Normal and vox sprites created by https://github.com/Pronana / princesscheeseballs (Discord). Dog states modified from base states by Sparlight (GitHub). Reptilian states by TiniestShark (Github)", "size": { "x": 32, "y": 32 @@ -44,6 +43,18 @@ "name": "equipped-head-unshaded-vox", "directions": 4 }, + { + "name": "equipped-head-reptilian", + "directions": 4 + }, + { + "name": "equipped-head-light-reptilian", + "directions": 4 + }, + { + "name": "equipped-head-unshaded-reptilian", + "directions": 4 + }, { "name": "equipped-head-dog", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/meta.json index d80c50a1c4..9094ad9c12 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Texture edit from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14", + "copyright": "Texture edit from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14. Vulpkanin and Reptilian states by TiniestShark (Github).", "size": { "x": 32, "y": 32 @@ -28,6 +28,22 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-reptilian", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-reptilian", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..5ef62bcbd1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..1b4dbe743b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..fd3f87ce41 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..c0522fd8d2 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/maxim.rsi/equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/maxim.rsi/equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..4390a47939 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/maxim.rsi/equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/maxim.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/maxim.rsi/meta.json index 2a085063a4..8b6da663c0 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/maxim.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/maxim.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/6b3f58d7de4d4e374282819a7001eaa9bde1676d. Vox state by Flareguy for Space Station 14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/6b3f58d7de4d4e374282819a7001eaa9bde1676d. Vox state by Flareguy for Space Station 14. Reptilian state by TiniestShark (Github)", "size": { "x": 32, "y": 32 @@ -17,6 +17,10 @@ { "name": "equipped-HELMET-vox", "directions": 4 + }, + { + "name": "equipped-HELMET-reptilian", + "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/meta.json index 88dabe491a..9c72a18f05 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14. Dog states modified from base states by Sparlight (GitHub).", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14. Dog states modified from base states by Sparlight (GitHub), vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -21,6 +21,14 @@ "name": "on-equipped-HELMET", "directions": 4 }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, { "name": "off-equipped-HELMET-vox", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..471bdb6e3a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..f7edf7fc2e Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/piratecaptainhelm.rsi/equipped-HELMET-light-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/piratecaptainhelm.rsi/equipped-HELMET-light-reptilian.png new file mode 100644 index 0000000000..d9f2a8fb63 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/piratecaptainhelm.rsi/equipped-HELMET-light-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/piratecaptainhelm.rsi/equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/piratecaptainhelm.rsi/equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..ba8c747207 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/piratecaptainhelm.rsi/equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/piratecaptainhelm.rsi/equipped-HELMET-unshaded-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/piratecaptainhelm.rsi/equipped-HELMET-unshaded-reptilian.png new file mode 100644 index 0000000000..6205a0ec91 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/piratecaptainhelm.rsi/equipped-HELMET-unshaded-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/piratecaptainhelm.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/piratecaptainhelm.rsi/meta.json index 5aa77bb0d5..6fb124f6d7 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/piratecaptainhelm.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/piratecaptainhelm.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (github) for ss14. Vox states by Flareguy for Space Station 14. Flashlight state sprites by TiniestShark (github).", + "copyright": "Made by brainfood1183 (github) for ss14. Vox states by Flareguy for Space Station 14. Flashlight and Reptilian state sprites by TiniestShark (github).", "size": { "x": 32, "y": 32 @@ -36,6 +36,18 @@ { "name": "equipped-HELMET-unshaded-vox", "directions": 4 + }, + { + "name": "equipped-HELMET-reptilian", + "directions": 4 + }, + { + "name": "equipped-HELMET-light-reptilian", + "directions": 4 + }, + { + "name": "equipped-HELMET-unshaded-reptilian", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/meta.json index 9cf4dde18c..b77964a470 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states made by Flareguy for SS14. Dog states modified from base states by Sparlight (GitHub).", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states made by Flareguy for SS14. Dog states modified from base states by Sparlight (GitHub). Vulpkanin and Reptilian states by TiniestShark (Github).", "size": { "x": 32, "y": 32 @@ -29,6 +29,22 @@ "name": "on-equipped-HELMET-vox", "directions": 4 }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-reptilian", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-reptilian", + "directions": 4 + }, { "name": "off-equipped-HELMET-dog", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..d86769ce5f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..88c5c2081b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..c24c0e621a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..11179b057a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/meta.json index 88dabe491a..2503479959 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14. Dog states modified from base states by Sparlight (GitHub).", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14. Dog states modified from base states by Sparlight (GitHub). Vulpkanin and Reptilian states by TiniestShark (Github).", "size": { "x": 32, "y": 32 @@ -29,6 +29,22 @@ "name": "on-equipped-HELMET-vox", "directions": 4 }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-reptilian", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-reptilian", + "directions": 4 + }, { "name": "off-equipped-HELMET-dog", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..f16751549a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..7990e7c91e Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..0c273b2649 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..d7a68bd7e2 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/meta.json index 6eb2417810..abf9f5df9c 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14. Vulpkanin and Reptilian states by TiniestShark (Github).", "size": { "x": 32, "y": 32 @@ -28,6 +28,22 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-reptilian", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-reptilian", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..73c0c1a240 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..5a75da60ee Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..4b35c278d3 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..9bbd474272 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/meta.json index 00d69acbf7..d5939650ab 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "sprite made by Gtheglorious based on the sprite made by Alekshhh for SS14. Vox states by Flareguy for Space Station 14", + "copyright": "sprite made by Gtheglorious based on the sprite made by Alekshhh for SS14. Vox states by Flareguy for Space Station 14. Vulpkanin and Reptilian states by TiniestShark (Github).", "size": { "x": 32, "y": 32 @@ -21,6 +21,14 @@ "name": "on-equipped-HELMET", "directions": 4 }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, { "name": "off-equipped-HELMET-vox", "directions": 4 @@ -28,6 +36,14 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "off-equipped-HELMET-reptilian", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-reptilian", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..af3ff06eaa Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..a9838f4da4 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..ab2e85352c Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..a423b15d38 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/meta.json index e53f56f770..ae8704a6a2 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprite made by Gtheglorious based on the sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14. Dog states modified from base states by Sparlight (GitHub).", + "copyright": "Sprite made by Gtheglorious based on the sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14. Dog states modified from base states by Sparlight (GitHub). Vulpkanin and Reptilian states by TiniestShark (Github).", "size": { "x": 32, "y": 32 @@ -29,6 +29,22 @@ "name": "on-equipped-HELMET-vox", "directions": 4 }, + { + "name": "off-equipped-HELMET-reptilian", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-reptilian", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, { "name": "on-equipped-HELMET-dog", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..3dd36e2f9f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..b15aac2c6b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..aa2c9de6b3 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..13dfd5b4d4 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-light-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-light-reptilian.png new file mode 100644 index 0000000000..4c55465a7b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-light-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-light-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-light-vulpkanin.png new file mode 100644 index 0000000000..ecedc601f0 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-light-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-reptilian.png new file mode 100644 index 0000000000..c458ba5d56 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-unshaded-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-unshaded-reptilian.png new file mode 100644 index 0000000000..4d689243b8 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-unshaded-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-unshaded-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-unshaded-vulpkanin.png new file mode 100644 index 0000000000..54b275df68 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-unshaded-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-vulpkanin.png new file mode 100644 index 0000000000..ec214c187a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/meta.json index 909f130ad0..14733a86f4 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Original by Emisse, modified by EmoGarbage404. Vox states by Flareguy for SS14. Dog states modified from base states by Sparlight (GitHub).", + "copyright": "Original by Emisse, modified by EmoGarbage404. Vox states by Flareguy for SS14. Dog states modified from base states by Sparlight (GitHub). Vulpkanin and Reptilian states by TiniestShark (Github).", "size": { "x": 32, @@ -44,6 +44,30 @@ "name": "equipped-head-unshaded-vox", "directions": 4 }, + { + "name": "equipped-head-vulpkanin", + "directions": 4 + }, + { + "name": "equipped-head-light-vulpkanin", + "directions": 4 + }, + { + "name": "equipped-head-unshaded-vulpkanin", + "directions": 4 + }, + { + "name": "equipped-head-reptilian", + "directions": 4 + }, + { + "name": "equipped-head-light-reptilian", + "directions": 4 + }, + { + "name": "equipped-head-unshaded-reptilian", + "directions": 4 + }, { "name": "equipped-head-dog", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/combat-equipped-HELMET-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/combat-equipped-HELMET-dog.png deleted file mode 100644 index a4962912d0..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/combat-equipped-HELMET-dog.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/combat-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/combat-equipped-HELMET.png deleted file mode 100644 index 2f587c5797..0000000000 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/combat-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/meta.json index b1d9f7ad81..a5e1c85e00 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14, dog states modified from base states by casiliuscestus (GitHub) for Space Station 14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14, dog states modified from base states by casiliuscestus (GitHub) for Space Station 14. Vulpkanin and Reptilian states by TiniestShark (Github).", "size": { "x": 32, "y": 32 @@ -13,10 +13,6 @@ { "name": "icon-flash" }, - { - "name": "combat-equipped-HELMET", - "directions": 4 - }, { "name": "off-equipped-HELMET", "directions": 4 @@ -34,7 +30,19 @@ "directions": 4 }, { - "name": "combat-equipped-HELMET-dog", + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-reptilian", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-reptilian", "directions": 4 }, { diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..845fdc9413 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..3dfeab3a5b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..365d41db24 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..79efdf9f48 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/meta.json index 75deae3653..5797ccbd36 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd. Vox states by Flareguy for Space Station 14. Dog states modified from base states by Scrubdelub (GitHub) for Space Station 14.", + "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd. Vox states by Flareguy for Space Station 14. Dog states modified from base states by Scrubdelub (GitHub) for Space Station 14. Vulpkanin and Reptilian states by TiniestShark (Github).", "size": { "x": 32, @@ -30,6 +30,22 @@ "name": "on-equipped-HELMET-vox", "directions": 4 }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-reptilian", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-reptilian", + "directions": 4 + }, { "name": "off-equipped-HELMET-dog", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..f9d88a7b9b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..1b8c1c45c5 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..8e97a3b813 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..fcc47feff1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/meta.json index 9862750fbf..22db9c8df3 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd. Vox states by Flareguy for Space Station 14. Dog states modified from base states by casiliuscestus for Space Station 14.", + "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd. Vox states by Flareguy for Space Station 14. Dog states modified from base states by casiliuscestus for Space Station 14. Vulpkanin and Reptilian states by TiniestShark (Github).", "size": { "x": 32, @@ -22,6 +22,14 @@ "name": "on-equipped-HELMET", "directions": 4 }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, { "name": "off-equipped-HELMET-vox", "directions": 4 @@ -30,6 +38,14 @@ "name": "on-equipped-HELMET-vox", "directions": 4 }, + { + "name": "off-equipped-HELMET-reptilian", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-reptilian", + "directions": 4 + }, { "name": "off-equipped-HELMET-dog", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..c48f74bf84 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..51fc59ad19 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..808d0ee8cb Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..308fd60ff9 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/meta.json index 9adc3b7cef..f6502df22b 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Based on tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, modified by EmoGarbage404 (github). Vox states by Flareguy for Space Station 14", + "copyright": "Based on tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, modified by EmoGarbage404 (github). Vox states by Flareguy for Space Station 14. Vulpkanin and Reptilian states by TiniestShark (Github).", "size": { "x": 32, "y": 32 @@ -28,6 +28,22 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-reptilian", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-reptilian", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/off-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/off-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..9172005ba1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/off-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..1b920b43ea Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/on-equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/on-equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..36f4298292 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/on-equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..cc47c5b779 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/meta.json index a12c9e18b6..d97a50b933 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14. Dog states modified from base states by Sparlight (GitHub).", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14. Dog states modified from base states by Sparlight (GitHub). Vulpkanin states by TiniestShark (Github)", "size": { "x": 32, "y": 32 @@ -21,6 +21,14 @@ "name": "on-equipped-HELMET", "directions": 4 }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, { "name": "off-equipped-HELMET-vox", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..73c3eb8c37 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..7967c2b98e Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..ed48915609 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..a53e225cf1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/meta.json index d5d99ee1ec..12f9dcfd9a 100644 --- a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprite edited by Flareguy for SS14, original unedited sprite can be found in https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a. equipped-HELMET-dog modified from equipped-HELMET in parts and collaboration by Sparlight (GitHub) and Raccoononi (GitHub).", + "copyright": "Sprite edited by Flareguy for SS14, original unedited sprite can be found in https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a. equipped-HELMET-dog modified from equipped-HELMET in parts and collaboration by Sparlight (GitHub) and Raccoononi (GitHub). Vulpkanin and Reptilian state by TiniestShark (Github).", "size": { "x": 32, "y": 32 @@ -18,10 +18,18 @@ "name": "equipped-HELMET-vox", "directions": 4 }, + { + "name": "equipped-HELMET-reptilian", + "directions": 4 + }, { "name": "equipped-HELMET-dog", "directions": 4 }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..86cf6f8c13 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..007e1da74d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/meta.json index d5d99ee1ec..0212f8f482 100644 --- a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprite edited by Flareguy for SS14, original unedited sprite can be found in https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a. equipped-HELMET-dog modified from equipped-HELMET in parts and collaboration by Sparlight (GitHub) and Raccoononi (GitHub).", + "copyright": "Sprite edited by Flareguy for SS14, original unedited sprite can be found in https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a. equipped-HELMET-dog modified from equipped-HELMET in parts and collaboration by Sparlight (GitHub) and Raccoononi (GitHub). Vulpkanin and Reptilian states by TiniestShark (Github).", "size": { "x": 32, "y": 32 @@ -18,10 +18,18 @@ "name": "equipped-HELMET-vox", "directions": 4 }, + { + "name": "equipped-HELMET-reptilian", + "directions": 4 + }, { "name": "equipped-HELMET-dog", "directions": 4 }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..30e3886077 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..ea18bd353f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/meta.json index dd53b26fa7..f90b1ca0dc 100644 --- a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprite edited by Flareguy for SS14, modified from space suit sprites taken from tgstation at commit https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a. Vox state based off of biosuit, taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "copyright": "Sprite edited by Flareguy for SS14, modified from space suit sprites taken from tgstation at commit https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a. Vox state based off of biosuit, taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79. Vulpkanin and Reptilian states by TiniestShark (Github).", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-HELMET-vox", "directions": 4 }, + { + "name": "equipped-HELMET-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 @@ -25,6 +29,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/equipped-HELMET-reptilian.png b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/equipped-HELMET-reptilian.png new file mode 100644 index 0000000000..ee05fdc9a0 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..f10c9173ff Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/meta.json index 9a6c9935ec..8aa54f6a8a 100644 --- a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradise https://github.com/ParadiseSS13/Paradise/tree/master/icons (unknown commit). Vox state by Flareguy for SS14", + "copyright": "Taken from paradise https://github.com/ParadiseSS13/Paradise/tree/master/icons (unknown commit). Vox state by Flareguy for SS14. Vulpkanin version made by Floofers. Reptilian state by TiniestShark (Github).", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-HELMET-vox", "directions": 4 }, + { + "name": "equipped-HELMET-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 @@ -25,6 +29,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/meta.json index 5e5c1cf2e0..057d0b0ab2 100644 --- a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Head/Hoods/rad.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hoods/rad.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..93b33ef9b9 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/rad.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/rad.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/rad.rsi/meta.json index 04f0d87cf2..2dd3c5010c 100644 --- a/Resources/Textures/Clothing/Head/Hoods/rad.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hoods/rad.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/6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae. vox state by Flareguy", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae. vox state by Flareguy | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157dm, resprited for SS14 by MilonPL", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-HELMET", "directions": 4 }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, { "name": "equipped-HELMET-vox", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Misc/performer-wig.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Misc/performer-wig.rsi/equipped-HELMET.png index 4d5e75107d..0f243264bd 100644 Binary files a/Resources/Textures/Clothing/Head/Misc/performer-wig.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Misc/performer-wig.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..4c6ce58ca3 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/meta.json b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/meta.json index e9b30b5437..5d0093fe7e 100644 --- a/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, icon by lzk228(discord 455630609641897984). equipped-HELMET-vox state modified by Flareguy from vox welding helmet state", + "copyright": "Taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, icon by lzk228(discord 455630609641897984). equipped-HELMET-vox state modified by Flareguy from vox welding helmet state | ulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -44,6 +44,14 @@ { "name": "up-inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "up-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/up-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/up-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..d6c8799127 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/up-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..cab90cf170 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/meta.json b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/meta.json index b486fbbc86..68ca6518bc 100644 --- a/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 and up-equipped-HELMET modified by Flareguy, icon by lzk228(discord 455630609641897984). equipped-HELMET-vox state modified by Flareguy from vox welding helmet state", + "copyright": "Taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 and up-equipped-HELMET modified by Flareguy, icon by lzk228(discord 455630609641897984). equipped-HELMET-vox state modified by Flareguy from vox welding helmet state | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -44,6 +44,14 @@ { "name": "up-inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "up-equipped-HELMET-vulpkanin", + "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/up-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/up-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..b6749f9860 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/up-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..46e451b3c9 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/meta.json b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/meta.json index 2a9b8dfba7..f46ecd5beb 100644 --- a/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Welding/paintedwelding.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/blob/2a0d963d5bf68bd8ddf6fba6f60479bec172b51d/icons/inventory/head/mob.dmi, icon by lzk228(discord 455630609641897984). equipped-HELMET-vox state modified by Flareguy from 'welding' state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "copyright": "Taken from CEV-Eris at https://github.com/discordia-space/CEV-Eris/blob/2a0d963d5bf68bd8ddf6fba6f60479bec172b51d/icons/inventory/head/mob.dmi, icon by lzk228(discord 455630609641897984). equipped-HELMET-vox state modified by Flareguy from 'welding' state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 | ulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -44,6 +44,14 @@ { "name": "up-inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "up-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/up-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/up-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..34296974d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/up-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/welding.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/welding.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..701775a222 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/welding.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/welding.rsi/meta.json b/Resources/Textures/Clothing/Head/Welding/welding.rsi/meta.json index 10c0a80701..569555b869 100644 --- a/Resources/Textures/Clothing/Head/Welding/welding.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Welding/welding.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "copyright": "Taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -52,6 +52,14 @@ { "name": "up-inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "up-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Welding/welding.rsi/up-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/welding.rsi/up-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..39c534f564 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/welding.rsi/up-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/blushingclown.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/blushingclown.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..a326b5db4a Binary files /dev/null and b/Resources/Textures/Clothing/Mask/blushingclown.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/blushingclown.rsi/meta.json b/Resources/Textures/Clothing/Mask/blushingclown.rsi/meta.json index 1fcceb3516..104886feb8 100644 --- a/Resources/Textures/Clothing/Mask/blushingclown.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/blushingclown.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/blob/ed466a4c67828b44ddb9d9550366be5c2d745955/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/blob/ed466a4c67828b44ddb9d9550366be5c2d745955/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-reptilian", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/blushingmime.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/blushingmime.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..54828c8bd6 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/blushingmime.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/blushingmime.rsi/meta.json b/Resources/Textures/Clothing/Mask/blushingmime.rsi/meta.json index 88aad8fdc9..8db7368657 100644 --- a/Resources/Textures/Clothing/Mask/blushingmime.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/blushingmime.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-reptilian", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/breath.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/breath.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..d317cba50e Binary files /dev/null and b/Resources/Textures/Clothing/Mask/breath.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/breath.rsi/meta.json b/Resources/Textures/Clothing/Mask/breath.rsi/meta.json index 654b8824dc..c37ca01b35 100644 --- a/Resources/Textures/Clothing/Mask/breath.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/breath.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox & up-equipped-MASK-vox state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox & up-equipped-MASK-vox state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e | https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -73,6 +73,14 @@ { "name": "equipped-MASK-reptilian", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "up-equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/breath.rsi/up-equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/breath.rsi/up-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..d8ae1134fb Binary files /dev/null and b/Resources/Textures/Clothing/Mask/breath.rsi/up-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/clown.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/clown.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..38ea9a62c8 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/clown.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/clown.rsi/meta.json b/Resources/Textures/Clothing/Mask/clown.rsi/meta.json index de1f50a21b..c465987d07 100644 --- a/Resources/Textures/Clothing/Mask/clown.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/clown.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and slightly modified by Flareguy", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and slightly modified by Flareguy | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -26,6 +26,10 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-reptilian", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/cluwne.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/cluwne.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..070974034f Binary files /dev/null and b/Resources/Textures/Clothing/Mask/cluwne.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/cluwne.rsi/meta.json b/Resources/Textures/Clothing/Mask/cluwne.rsi/meta.json index bd410c6de9..dad21e1844 100644 --- a/Resources/Textures/Clothing/Mask/cluwne.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/cluwne.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (github) for ss14. Reptilian edit by Nairod(Github), vox edit by Flareguy", + "copyright": "Made by brainfood1183 (github) for ss14. Reptilian edit by Nairod(Github), vox edit by Flareguy | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-reptilian", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/ert.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/ert.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..488c0387a7 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/ert.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/ert.rsi/meta.json b/Resources/Textures/Clothing/Mask/ert.rsi/meta.json index b8ea712aff..c4c8ecef98 100644 --- a/Resources/Textures/Clothing/Mask/ert.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/ert.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by Nimfar11 (GitHub) for Space Station 14. Reptilian edit by Nairod(Github), vox edit by Flareguy", + "copyright": "Made by Nimfar11 (GitHub) for Space Station 14. Reptilian edit by Nairod(Github), vox edit by Flareguy | vulpkanin version made by Floofers", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/gas.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/gas.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..fba0ec9b2b Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gas.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/gas.rsi/meta.json b/Resources/Textures/Clothing/Mask/gas.rsi/meta.json index ae1156c2f3..e851f85ea4 100644 --- a/Resources/Textures/Clothing/Mask/gas.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gas.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and modified by Flareguy", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and modified by Flareguy | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -26,6 +26,10 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-reptilian", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/gasatmos.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/gasatmos.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..141a7cc981 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gasatmos.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/gasatmos.rsi/meta.json b/Resources/Textures/Clothing/Mask/gasatmos.rsi/meta.json index f0d269dcd4..10425dd461 100644 --- a/Resources/Textures/Clothing/Mask/gasatmos.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gasatmos.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state modified by Flareguy from 'gas-alt' state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state modified by Flareguy from 'gas-alt' state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -22,6 +22,10 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-reptilian", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/gascaptain.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/gascaptain.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..d13d3212c0 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gascaptain.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/gascaptain.rsi/meta.json b/Resources/Textures/Clothing/Mask/gascaptain.rsi/meta.json index d54a0aedee..8bb6909e45 100644 --- a/Resources/Textures/Clothing/Mask/gascaptain.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gascaptain.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, edited by Emisse for ss14. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from 'gas-alt' state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e, and modified by Flareguy", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, edited by Emisse for ss14. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from 'gas-alt' state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e, and modified by Flareguy | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -22,6 +22,10 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-reptilian", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/gascentcom.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/gascentcom.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..9d85ba2f06 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gascentcom.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/gascentcom.rsi/meta.json b/Resources/Textures/Clothing/Mask/gascentcom.rsi/meta.json index dc99f7504b..d4879abf8a 100644 --- a/Resources/Textures/Clothing/Mask/gascentcom.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gascentcom.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and modified by Flareguy", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and modified by Flareguy | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/gasexplorer.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/gasexplorer.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..91da2da7c7 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gasexplorer.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/gasexplorer.rsi/meta.json b/Resources/Textures/Clothing/Mask/gasexplorer.rsi/meta.json index 021dcf76b7..a83de36ef9 100644 --- a/Resources/Textures/Clothing/Mask/gasexplorer.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gasexplorer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). Vox state by Flareguy for SS14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). Vox state by Flareguy for SS14 | vulpkanin version edited by Floofers", "size": { "x": 32, "y": 32 @@ -30,6 +30,10 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-reptilian", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/gassecurity.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/gassecurity.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..b9395a9026 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gassecurity.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/gassecurity.rsi/meta.json b/Resources/Textures/Clothing/Mask/gassecurity.rsi/meta.json index 9c1b597c1d..576b3d129f 100644 --- a/Resources/Textures/Clothing/Mask/gassecurity.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gassecurity.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox & up-equipped-MASK-vox states taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox & up-equipped-MASK-vox states taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -37,6 +37,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/gassyndicate.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/gassyndicate.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..a7c913dc1e Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gassyndicate.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/gassyndicate.rsi/meta.json b/Resources/Textures/Clothing/Mask/gassyndicate.rsi/meta.json index 22e5230685..9db104ae10 100644 --- a/Resources/Textures/Clothing/Mask/gassyndicate.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gassyndicate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and slightly modified to fix an error", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and slightly modified to fix an error | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -28,6 +28,16 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4, + "delays": [ + [ 0.5, 0.5, 0.5 ], + [ 0.5, 0.5, 0.5 ], + [ 0.5, 0.5, 0.5 ], + [ 0.5, 0.5, 0.5 ] + ] + }, { "name": "equipped-MASK-reptilian", "directions": 4, diff --git a/Resources/Textures/Clothing/Mask/goldenmask.rsi/equipped-MASK-reptilian.png b/Resources/Textures/Clothing/Mask/goldenmask.rsi/equipped-MASK-reptilian.png new file mode 100644 index 0000000000..8ec891b20f Binary files /dev/null and b/Resources/Textures/Clothing/Mask/goldenmask.rsi/equipped-MASK-reptilian.png differ diff --git a/Resources/Textures/Clothing/Mask/goldenmask.rsi/meta.json b/Resources/Textures/Clothing/Mask/goldenmask.rsi/meta.json index 62072e7107..20038defc4 100644 --- a/Resources/Textures/Clothing/Mask/goldenmask.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/goldenmask.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/vgstation-coders/vgstation13/blob/HEAD/icons/obj/clothing/masks.dmi. Vox and Reptilian edits by EmoGarbage404 (Github)", + "copyright": "Taken from tgstation at commit https://github.com/vgstation-coders/vgstation13/blob/HEAD/icons/obj/clothing/masks.dmi. Vox edits by EmoGarbage404 (Github), Reptilian edits by TiniestShark (Github)", "size": { "x": 32, "y": 32 @@ -27,6 +27,10 @@ "name": "equipped-MASK-vox", "directions": 4 }, + { + "name": "equipped-MASK-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/italian_moustache.rsi/equipped-MASK-reptilian.png b/Resources/Textures/Clothing/Mask/italian_moustache.rsi/equipped-MASK-reptilian.png new file mode 100644 index 0000000000..af3e4d9dc0 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/italian_moustache.rsi/equipped-MASK-reptilian.png differ diff --git a/Resources/Textures/Clothing/Mask/italian_moustache.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/italian_moustache.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..9bde35f041 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/italian_moustache.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/italian_moustache.rsi/meta.json b/Resources/Textures/Clothing/Mask/italian_moustache.rsi/meta.json index d47388b076..71ce7feeec 100644 --- a/Resources/Textures/Clothing/Mask/italian_moustache.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/italian_moustache.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/6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae. equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae. equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-MASK-vox", "directions": 4 }, + { + "name": "equipped-MASK-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 @@ -25,6 +29,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/medical.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/medical.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..687ac3aed3 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/medical.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/medical.rsi/meta.json b/Resources/Textures/Clothing/Mask/medical.rsi/meta.json index 6d0cf06eee..ed5341f1b6 100644 --- a/Resources/Textures/Clothing/Mask/medical.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/medical.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox & up-equipped-MASK-vox states taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox & up-equipped-MASK-vox states taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -64,6 +64,14 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "up-equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-reptilian", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/medical.rsi/up-equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/medical.rsi/up-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..99c3205640 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/medical.rsi/up-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..d317cba50e Binary files /dev/null and b/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/meta.json b/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/meta.json index 9f566f23b9..99c06491bb 100644 --- a/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprited by LinkUyx#6557. Reptilian edit by Nairod(Github)", + "copyright": "Sprited by LinkUyx#6557. Reptilian edit by Nairod(Github) | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -54,6 +54,14 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "up-equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-reptilian", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/up-equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/up-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..d8ae1134fb Binary files /dev/null and b/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/up-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/merc.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/merc.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..cdcebb8231 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/merc.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/merc.rsi/meta.json b/Resources/Textures/Clothing/Mask/merc.rsi/meta.json index 5b745bcfd0..b7708a22e3 100644 --- a/Resources/Textures/Clothing/Mask/merc.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/merc.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "modified sprite from Jackal298 based on the sprite from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github), equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and modified to look like mercenary gas mask by Flareguy", + "copyright": "modified sprite from Jackal298 based on the sprite from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github), equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and modified to look like mercenary gas mask by Flareguy | vulpkanin version edited by Floofers", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/mime.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/mime.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..cf3d8629a3 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/mime.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/mime.rsi/meta.json b/Resources/Textures/Clothing/Mask/mime.rsi/meta.json index 41f28d6b51..b938e221c2 100644 --- a/Resources/Textures/Clothing/Mask/mime.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/mime.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d and edited by Floofers", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-MASK-hamster", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-reptilian", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/muzzle.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/muzzle.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..8de17b9d3a Binary files /dev/null and b/Resources/Textures/Clothing/Mask/muzzle.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/muzzle.rsi/meta.json b/Resources/Textures/Clothing/Mask/muzzle.rsi/meta.json index 19aa5ab859..969938d847 100644 --- a/Resources/Textures/Clothing/Mask/muzzle.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/muzzle.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e | vulpkanin version taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13/commit/091d9ec00f186052b87bd65125e896f78faefe38", "size": { "x": 32, "y": 32 @@ -22,6 +22,10 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-reptilian", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/neckgaiter.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/neckgaiter.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..886ea7a9b1 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/neckgaiter.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/neckgaiter.rsi/meta.json b/Resources/Textures/Clothing/Mask/neckgaiter.rsi/meta.json index 4da74959dd..6845040bf6 100644 --- a/Resources/Textures/Clothing/Mask/neckgaiter.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/neckgaiter.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprited by belay5 (Discord) | equipped-MASK-vox sprited by PuroSlavKing (Github)", + "copyright": "Sprited by belay5 (Discord) | equipped-MASK-vox sprited by PuroSlavKing (Github) | equipped-MASK-vulpkanin sprited by TJohnson (Delta-V)", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/neckgaiterred.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/neckgaiterred.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..80efc668dd Binary files /dev/null and b/Resources/Textures/Clothing/Mask/neckgaiterred.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/neckgaiterred.rsi/meta.json b/Resources/Textures/Clothing/Mask/neckgaiterred.rsi/meta.json index d5005eec9f..21cd28bf15 100644 --- a/Resources/Textures/Clothing/Mask/neckgaiterred.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/neckgaiterred.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Originally sprited by belay5 (Discord) then recolored by Nairod (Github). equipped-MASK-vox sprited by PuroSlavKing (Github) and recolored by Flareguy", + "copyright": "Originally sprited by belay5 (Discord) then recolored by Nairod (Github). equipped-MASK-vox sprited by PuroSlavKing (Github) and recolored by Flareguy | equipped-MASK-vulpkanin sprited by TJohnson (Delta-V)", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/ninja.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/ninja.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..95d236c98b Binary files /dev/null and b/Resources/Textures/Clothing/Mask/ninja.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json b/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json index a8d15a80ad..27858f0e76 100644 --- a/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradise at commit https://github.com/ParadiseSS13/Paradise/commit/33f7c1ef477fa67db5dda48078b469ab59aa7997. equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "copyright": "Taken from paradise at commit https://github.com/ParadiseSS13/Paradise/commit/33f7c1ef477fa67db5dda48078b469ab59aa7997. equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -25,6 +25,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..528fa82fc8 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/meta.json b/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/meta.json index 028c4bcc29..2469f1db45 100644 --- a/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from TGstation github https://github.com/tgstation/tgstation/commit/e89db4dd4f42377b0adafb06806a763314a89034 , edited by Alekshhh. equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "copyright": "Taken from TGstation github https://github.com/tgstation/tgstation/commit/e89db4dd4f42377b0adafb06806a763314a89034 , edited by Alekshhh. equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e | vulpkanin version taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13/commit/091d9ec00f186052b87bd65125e896f78faefe38", "size": { "x": 32, "y": 32 @@ -22,6 +22,10 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-vox", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/sadmime.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/sadmime.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..da36b18523 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/sadmime.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/sadmime.rsi/meta.json b/Resources/Textures/Clothing/Mask/sadmime.rsi/meta.json index c43909e6a9..572b364904 100644 --- a/Resources/Textures/Clothing/Mask/sadmime.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/sadmime.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/harmonyn/-tg-station/blob/11043a07f6136d3d196b0378c31deb3dc1a9532f/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github).Vox edit by foboscheshir (github)", + "copyright": "Taken from tgstation at commit https://github.com/harmonyn/-tg-station/blob/11043a07f6136d3d196b0378c31deb3dc1a9532f/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github).Vox edit by foboscheshir (github) | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-reptilian", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/scaredmime.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/scaredmime.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..c0dda91a72 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/scaredmime.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/scaredmime.rsi/meta.json b/Resources/Textures/Clothing/Mask/scaredmime.rsi/meta.json index 413a718154..a21dbca961 100644 --- a/Resources/Textures/Clothing/Mask/scaredmime.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/scaredmime.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/harmonyn/-tg-station/blob/11043a07f6136d3d196b0378c31deb3dc1a9532f/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github). . Vox edit by foboscheshir (github)", + "copyright": "Taken from tgstation at commit https://github.com/harmonyn/-tg-station/blob/11043a07f6136d3d196b0378c31deb3dc1a9532f/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github). . Vox edit by foboscheshir (github) | vulpkanin version taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13/commit/091d9ec00f186052b87bd65125e896f78faefe38 edited by Floofers", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-reptilian", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/sterile.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/sterile.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..71f2c83018 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/sterile.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/sterile.rsi/meta.json b/Resources/Textures/Clothing/Mask/sterile.rsi/meta.json index 7af2fde86e..6e4782881a 100644 --- a/Resources/Textures/Clothing/Mask/sterile.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/sterile.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/blob/ed466a4c67828b44ddb9d9550366be5c2d745955/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/blob/ed466a4c67828b44ddb9d9550366be5c2d745955/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -37,6 +37,14 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "up-equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/sterile.rsi/up-equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/sterile.rsi/up-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..4e0309f011 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/sterile.rsi/up-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/swat.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/swat.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..23cfef31d1 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/swat.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/swat.rsi/meta.json b/Resources/Textures/Clothing/Mask/swat.rsi/meta.json index 2d5073b988..b767cf5ffb 100644 --- a/Resources/Textures/Clothing/Mask/swat.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/swat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/RemieRichards/-tg-station/blob/f8c05e21694cd3cb703e40edc5cfc375017944b1/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi", + "copyright": "Taken from tgstation at commit https://github.com/RemieRichards/-tg-station/blob/f8c05e21694cd3cb703e40edc5cfc375017944b1/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..de8c7b8cc5 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/meta.json index ca1146d007..c4d51bd629 100644 --- a/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79. Tail sprite by Tiniest Shark (github)", "size": { "x": 32, "y": 32 @@ -25,6 +25,10 @@ { "name": "equipped-OUTERCLOTHING-vox", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..da0e03b846 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/meta.json index 232bec9c0a..367f0c77ef 100644 --- a/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79. Tail sprite by Tiniest Shark (github)", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..e3986b5d5b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/meta.json index ca1146d007..c4d51bd629 100644 --- a/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79. Tail sprite by Tiniest Shark (github)", "size": { "x": 32, "y": 32 @@ -25,6 +25,10 @@ { "name": "equipped-OUTERCLOTHING-vox", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..a108ba484f Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/meta.json index ca1146d007..c4d51bd629 100644 --- a/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79. Tail sprite by Tiniest Shark (github)", "size": { "x": 32, "y": 32 @@ -25,6 +25,10 @@ { "name": "equipped-OUTERCLOTHING-vox", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..a1633b27c9 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json index dd06151574..06ab25233a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/blob/061f78db763863e1a3db13cbf2fd9be4cce75939/icons/mob/suit.dmi. inhands by Flareguy, modified from bio_suit in vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/30f9caeb59b0dd9da1dbcd4c69307ae182033a74", + "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/blob/061f78db763863e1a3db13cbf2fd9be4cce75939/icons/mob/suit.dmi. inhands by Flareguy, modified from bio_suit in vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/30f9caeb59b0dd9da1dbcd4c69307ae182033a74. Tail sprite by Tiniest Shark (github)", "size": { "x": 32, "y": 32 @@ -25,6 +25,10 @@ { "name": "equipped-OUTERCLOTHING-vox", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..cb6a54358e Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/meta.json index ca1146d007..c4d51bd629 100644 --- a/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79. Tail sprite by Tiniest Shark (github)", "size": { "x": 32, "y": 32 @@ -25,6 +25,10 @@ { "name": "equipped-OUTERCLOTHING-vox", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertchaplain.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertchaplain.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..9eb48df1e0 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertchaplain.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertchaplain.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertchaplain.rsi/meta.json index dac47ccdf5..62e645e3c9 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertchaplain.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertchaplain.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Created by IProduceWidgets", + "copyright": "Created by IProduceWidgets. Tail sprites by Tiniest Shark (github)", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertengineer.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertengineer.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..6464d1547a Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertengineer.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertengineer.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertengineer.rsi/meta.json index b7b0719efa..2a7f2cc5c2 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertengineer.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertengineer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6. Vox state by Flareguy for Space Station 14", + "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6. Vox state by Flareguy for Space Station 14. Tail sprites by Tiniest Shark (github)", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertjanitor.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertjanitor.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..7c1d3341e1 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertjanitor.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertjanitor.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertjanitor.rsi/meta.json index 6de2d485b8..6c8d2f4f55 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertjanitor.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertjanitor.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6. Vox sprite by Flareguy for Space Station 14", + "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6. Vox sprite by Flareguy for Space Station 14. Tail sprites by Tiniest Shark (github)", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertleader.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertleader.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..af7ffe939c Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertleader.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertleader.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertleader.rsi/meta.json index 6de2d485b8..6c8d2f4f55 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertleader.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertleader.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6. Vox sprite by Flareguy for Space Station 14", + "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6. Vox sprite by Flareguy for Space Station 14. Tail sprites by Tiniest Shark (github)", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertmedical.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertmedical.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..814ebf3b7d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertmedical.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertmedical.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertmedical.rsi/meta.json index daa64b2f5c..6a769f00f1 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertmedical.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertmedical.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6. Vox sprite made by Flareguy", + "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6. Vox sprite made by Flareguy. Tail sprites by Tiniest Shark (github)", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertsecurity.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertsecurity.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..c82760fedd Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertsecurity.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertsecurity.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertsecurity.rsi/meta.json index 6de2d485b8..6c8d2f4f55 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertsecurity.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/ERTSuits/ertsecurity.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6. Vox sprite by Flareguy for Space Station 14", + "copyright": "Taken from paradisestation at commit https://github.com/ParadiseSS13/Paradise/commit/12c21ced8432015485484b17e311dcceb7c458f6. Vox sprite by Flareguy for Space Station 14. Tail sprites by Tiniest Shark (github)", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..a6f7aea8de Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/meta.json index ece31dcb61..1df7b5a4ed 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by Sparlight (GitHub).", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by Sparlight (GitHub). Tail sprites by Tiniest Shark (github).", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "equipped-OUTERCLOTHING-dog", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/brigmedic.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/brigmedic.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..c588142fa6 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/brigmedic.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/brigmedic.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/brigmedic.rsi/meta.json index 9ecf4115a9..a36a0f61e6 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/brigmedic.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/brigmedic.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by PuroSlavKing (github) for SS14", + "copyright": "Made by PuroSlavKing (github) for SS14. Tail sprites by Tiniest Shark (github).", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..bf7cc45b7a Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json index d0fd25d757..f014cb5425 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by Emisse for SS14. Vox state made by Flareguy for SS14. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING in parts and collaboration by both casiliuscestus (GitHub) and Raccoononi (GitHub) for SS14.", + "copyright": "Made by Emisse for SS14. Vox state made by Flareguy for SS14. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING in parts and collaboration by both casiliuscestus (GitHub) and Raccoononi (GitHub) for SS14. Tail sprites by Tiniest Shark (github).", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "equipped-OUTERCLOTHING-dog", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cburn.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cburn.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..4cdecefc87 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cburn.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cburn.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cburn.rsi/meta.json index c62258c9ea..8de1765eb1 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cburn.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cburn.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by EmoGarbage404. Vox state made by Flareguy for SS14", + "copyright": "Made by EmoGarbage404. Vox state made by Flareguy for SS14. Tail sprites by Tiniest Shark (github)", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..a3677bd2f6 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/meta.json index d14adbda1c..c3658e6469 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/clown.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, modified by brainfood1183 (github). Vox state made by Flareguy for SS14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, modified by brainfood1183 (github). Vox state made by Flareguy for SS14. Tail sprites by Tiniest Shark (github)", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..6d7018a31b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/meta.json index b19f353b40..37703014f2 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/cybersun.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprite made by Gtheglorious based on the sprite made by emisse for ss14, vox state made by Flareguy for SS14, monkey state made by MercerBray for Ss14, equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by casiliuscestus for SS14.", + "copyright": "Sprite made by Gtheglorious based on the sprite made by emisse for ss14, vox state made by Flareguy for SS14, monkey state made by MercerBray for Ss14, equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by casiliuscestus for SS14. Tail sprites by Tiniest Shark (github).", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "equipped-OUTERCLOTHING-monkey", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..f136c88e54 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/meta.json index 4a1b60796c..e29ac35e44 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/deathsquad.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, edited by Emisse for SS14. Vox state made by Flareguy for SS14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, edited by Emisse for SS14. Vox state made by Flareguy for SS14. Tail sprites by Tiniest Shark (github)", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..1139eb4642 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/meta.json index ece31dcb61..1df7b5a4ed 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by Sparlight (GitHub).", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by Sparlight (GitHub). Tail sprites by Tiniest Shark (github).", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "equipped-OUTERCLOTHING-dog", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..d15cc7c2a3 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/meta.json index ece31dcb61..1df7b5a4ed 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by Sparlight (GitHub).", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by Sparlight (GitHub). Tail sprites by Tiniest Shark (github).", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "equipped-OUTERCLOTHING-dog", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..b5ea38e407 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/meta.json index 16eb661339..907f8a042a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Normal and vox sprites created by https://github.com/Pronana / princesscheeseballs (Discord). equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by Sparlight (GitHub).", + "copyright": "Normal and vox sprites created by https://github.com/Pronana / princesscheeseballs (Discord). equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by Sparlight (GitHub). Tail sprites by Tiniest Shark (github).", "size": { "x": 32, @@ -19,6 +19,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "equipped-OUTERCLOTHING-dog", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/lingspacesuit.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/lingspacesuit.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..8b05a79570 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/lingspacesuit.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/lingspacesuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/lingspacesuit.rsi/meta.json index 1ab7cd87fc..f4ffa7336e 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/lingspacesuit.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/lingspacesuit.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/blob/master/icons/mob/clothing/suit.dmi", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/master/icons/mob/clothing/suit.dmi. Tail sprites by Tiniest Shark (github).", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 @@ -23,4 +27,4 @@ "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..7d490960f3 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/meta.json index b1c9a09ed0..96d8ddf307 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/luxury.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Texture edit from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14", + "copyright": "Texture edit from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14. Tail sprites by Tiniest Shark (github).", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/maxim.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/maxim.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..f61c3fdc68 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/maxim.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/maxim.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/maxim.rsi/meta.json index 9acde9a4de..bf3d3786bb 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/maxim.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/maxim.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/6b3f58d7de4d4e374282819a7001eaa9bde1676d. Vox state made by Flareguy for SS14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/6b3f58d7de4d4e374282819a7001eaa9bde1676d. Vox state made by Flareguy for SS14. Tail sprites by Tiniest Shark (github).", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 @@ -27,4 +31,4 @@ "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..de305d4f5f Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/meta.json index ece31dcb61..1df7b5a4ed 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by Sparlight (GitHub).", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by Sparlight (GitHub). Tail sprites by Tiniest Shark (github).", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "equipped-OUTERCLOTHING-dog", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/mime.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/mime.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..28cf08f7b8 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/mime.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/mime.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/mime.rsi/meta.json index a5f992108c..be0c7ce94b 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/mime.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/mime.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, modified by brainfood1183 (github), sprited(resprited) by Fazansen(https://github.com/Fazansen)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, modified by brainfood1183 (github), sprited(resprited) by Fazansen(https://github.com/Fazansen). Tail sprites by Tiniest Shark (github)", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..a659ba1acd Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/meta.json index 52c860c30a..a6459e759c 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. Siren Icon made by Velen based of the helmet's colours. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by Sparlight (GitHub).", + "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. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by Sparlight (GitHub). Tail sprites by Tiniest Shark (github).", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "equipped-OUTERCLOTHING-dog", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..37e746f196 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/meta.json index 8663673f5c..0b2981a508 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (Github) for ss14. Vox state made by Flareguy for SS14", + "copyright": "Made by brainfood1183 (Github) for ss14. Vox state made by Flareguy for SS14. Tail sprites by Tiniest Shark (github).", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..8f47d41569 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/meta.json index 8663673f5c..0b2981a508 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (Github) for ss14. Vox state made by Flareguy for SS14", + "copyright": "Made by brainfood1183 (Github) for ss14. Vox state made by Flareguy for SS14. Tail sprites by Tiniest Shark (github).", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..b25a1a19c4 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/meta.json index ece31dcb61..a7ce8f2e3e 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/rd.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by Sparlight (GitHub).", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by Sparlight (GitHub). Tail sprites by Tiniest Shark (github).", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "equipped-OUTERCLOTHING-dog", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..059138deea Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/meta.json index ece31dcb61..a7ce8f2e3e 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by Sparlight (GitHub).", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by Sparlight (GitHub). Tail sprites by Tiniest Shark (github).", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "equipped-OUTERCLOTHING-dog", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/santahardsuit.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/santahardsuit.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..45095d708d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/santahardsuit.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/santahardsuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/santahardsuit.rsi/meta.json index eb28d4c8a1..8a3a5ad5e2 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/santahardsuit.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/santahardsuit.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Edited by StanTheCarpenter. Originally taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14", + "copyright": "Edited by StanTheCarpenter. Originally taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14. Tail sprites by Tiniest Shark (github)", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..d6b54fcc3e Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/meta.json index 15aef26a56..6326fc4fd4 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14. Tail sprites by Tiniest Shark (github).", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..d6b54fcc3e Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/meta.json index 180439fbcc..b60056a0b0 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprite made by Gtheglorious based on the sprite made by Alekshhh for SS14. Vox state made by Flareguy for SS14", + "copyright": "Sprite made by Gtheglorious based on the sprite made by Alekshhh for SS14. Vox state made by Flareguy for SS14. Tail sprites by Tiniest Shark (github).", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..bcf04f8c81 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/meta.json index 124a8a0b8d..f9febfd47b 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprite made by Gtheglorious based on the sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by Sparlight (GitHub).", + "copyright": "Sprite made by Gtheglorious based on the sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by Sparlight (GitHub). Tail sprites by Tiniest Shark (github).", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "equipped-OUTERCLOTHING-dog", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..d2481e9e8e Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/meta.json index c001611aee..9ae5b64188 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Original by Emisse, modified by EmoGarbage404. Vox state made by Flareguy for SS14. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by Sparlight (GitHub).", + "copyright": "Original by Emisse, modified by EmoGarbage404. Vox state made by Flareguy for SS14. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by Sparlight (GitHub). Tail sprites by Tiniest Shark (github).", "size": { "x": 32, @@ -19,6 +19,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "equipped-OUTERCLOTHING-dog", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..43bb71af87 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/meta.json index 78875bc273..13dac087a5 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.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/fb2d71495bfe81446159ef528534193d09dd8d34, equipped-OUTERCLOTHING-monkey made by Dutch-VanDerLinde, vox state made by Flareguy for SS14, equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by casiliuscestus (GitHub), equipped-OUTERCLOTHING-scurret modified from equipped-OUTERCLOTHING by FairlySadPanda (Github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34, equipped-OUTERCLOTHING-monkey made by Dutch-VanDerLinde, vox state made by Flareguy for SS14, equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by casiliuscestus (GitHub), equipped-OUTERCLOTHING-scurret modified from equipped-OUTERCLOTHING by FairlySadPanda (Github), Tail sprites by Tiniest Shark (github)", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "equipped-OUTERCLOTHING-monkey", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..9d26f6f887 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/meta.json index 1de60b08c0..b805d1c6fa 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiecommander.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd. Vox state made by Flareguy for SS14. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by Scrubdelub (GitHub) for SS14.", + "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd. Vox state made by Flareguy for SS14. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by Scrubdelub (GitHub) for SS14. Tail sprites by Tiniest Shark (github).", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "equipped-OUTERCLOTHING-dog", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..984907df26 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/meta.json index 1d50a81060..7b8a4b3ff5 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd. Vox state made by Flareguy for SS14. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by casiliuscestus (GitHub) for SS14.", + "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd. Vox state made by Flareguy for SS14. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by casiliuscestus (GitHub) for SS14. Tail sprites by Tiniest Shark (github).", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "equipped-OUTERCLOTHING-dog", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiemedic.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiemedic.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..0b1f56222d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiemedic.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiemedic.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiemedic.rsi/meta.json index 7a1d624eb1..fd80a428ef 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiemedic.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndiemedic.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Based on tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, modified by EmoGarbage404 (github). Vox state made by Flareguy for SS14", + "copyright": "Based on tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, modified by EmoGarbage404 (github). Vox state made by Flareguy for SS14. Tail sprites by Tiniest Shark (github).", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..c6acc8aebb Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/meta.json index ece31dcb61..1df7b5a4ed 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by Sparlight (GitHub).", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by Sparlight (GitHub). Tail sprites by Tiniest Shark (github).", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "equipped-OUTERCLOTHING-dog", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/ancient_voidsuit.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Suits/ancient_voidsuit.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..b653b91f8b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/ancient_voidsuit.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/ancient_voidsuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/ancient_voidsuit.rsi/meta.json index 3a71879aff..6e6923dd1d 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/ancient_voidsuit.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/ancient_voidsuit.rsi/meta.json @@ -1,52 +1,82 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/tree/fb2d71495bfe81446159ef528534193d09dd8d34", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/tree/fb2d71495bfe81446159ef528534193d09dd8d34. Tail sprites by Tiniest Shark (github)", + "size": { + "x": 32, + "y": 32 }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4, - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2 - ], - [ - 0.2, - 0.2, - 0.2, - 0.2 - ], - [ - 0.2, - 0.2, - 0.2, - 0.2 - ], - [ - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..050b20cde5 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..c093278ad3 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/meta.json index cdebd4fdca..9b5580d80e 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/blob/master/icons/mob/clothing/suit.dmi. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by @Aisfae(facebook).", + "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/blob/master/icons/mob/clothing/suit.dmi. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by @Aisfae(facebook). Vox Sprite taken from https://github.com/ParadiseSS13/Paradise/blob/980bbb489d27baa168d30d044d573d017845015b/icons/mob/clothing/species/vox/suit.dmi modified by @areyouconfused(github). Tail sprites by Tiniest Shark (github)", "size": { "x": 32, "y": 32 @@ -14,6 +14,14 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "equipped-OUTERCLOTHING-dog", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/bombsuit.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Suits/bombsuit.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..0cfbe899ba Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/bombsuit.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/bombsuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/bombsuit.rsi/meta.json index 256947e75f..7ae7628875 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/bombsuit.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/bombsuit.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/760f0be7af33a31f5a08a3291864e91539d0ebb7. Vox state made by Flareguy for Space Station 14", + "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/760f0be7af33a31f5a08a3291864e91539d0ebb7. Vox state made by Flareguy for Space Station 14. Tail sprites by Tiniest Shark (github)", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..3a18895217 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/meta.json index 542edf0002..be1eb99fb2 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/carpsuit.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Modified by deltanedas (github).", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Modified by deltanedas (github). Tail sprite by Tiniest Shark (github)", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..8d2a814a34 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/meta.json index ebb5241b06..0138bd8996 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprites by Flareguy & cboyjet, modified from space suit sprites taken from tgstation at commit https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34. Vox state based off of biosuit, taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by Sparlight (GitHub).", + "copyright": "Sprites by Flareguy & cboyjet, modified from space suit sprites taken from tgstation at commit https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34. Vox state based off of biosuit, taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by Sparlight (GitHub). Tail sprites by Tiniest Shark (github)", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "equipped-OUTERCLOTHING-monkey", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..9ce69e86db Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/meta.json index 0762521a01..da335d89e0 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprites by Flareguy, cboyjet, & monkey-suit sprite by Kittygyat, modified from space suit sprites taken from tgstation at commit https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34. Vox state based off of biosuit, taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by Sparlight (GitHub). equipped-OUTERCLOTHING-scurret modified from equipped-OUTERCLOTHING by FairlySadPanda (GitHub)", + "copyright": "Sprites by Flareguy, cboyjet, & monkey-suit sprite by Kittygyat, modified from space suit sprites taken from tgstation at commit https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34. Vox state based off of biosuit, taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by Sparlight (GitHub). equipped-OUTERCLOTHING-scurret modified from equipped-OUTERCLOTHING by FairlySadPanda (GitHub), Tail sprites by Tiniest Shark (github)", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "equipped-OUTERCLOTHING-monkey", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..b34c003058 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/meta.json index 83045bbf06..6368b4aa35 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/eva_prisoner.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprites by Flareguy & cboyjet, modified from space suit sprites taken from tgstation at commit https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34, monkey derivative made by brainfood1183 (github) for ss14. Vox state based off of biosuit, taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "copyright": "Sprites by Flareguy & cboyjet, modified from space suit sprites taken from tgstation at commit https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34, monkey derivative made by brainfood1183 (github) for ss14. Vox state based off of biosuit, taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, Tail sprites by Tiniest Shark (github).", "size": { "x": 32, "y": 32 @@ -22,6 +22,10 @@ "name": "equipped-OUTERCLOTHING-monkey", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..8051ce90f2 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/meta.json index d535031b2e..eedd4f070c 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/eva_syndicate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprites by Flareguy & cboyjet, heavily edited from space suit sprites found in https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34, monkey derivative made by brainfood1183 (github) for ss14", + "copyright": "Sprites by Flareguy & cboyjet, heavily edited from space suit sprites found in https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34, monkey derivative made by brainfood1183 (github) for ss14. Tail sprites by Tiniest Shark (github)", "size": { "x": 32, "y": 32 @@ -22,6 +22,10 @@ "name": "equipped-OUTERCLOTHING-monkey", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..4e007f8710 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/meta.json index 232bec9c0a..367f0c77ef 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79. Tail sprite by Tiniest Shark (github)", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..841fdbe2ce Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/meta.json index 920eab5520..1c1867d8c8 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/rad.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for Space Station 14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for Space Station 14. Tail sprites by Tiniest Shark (github)", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/equipped-OUTERCLOTHING-reptilian.png new file mode 100644 index 0000000000..e22fdf3b17 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/equipped-OUTERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/meta.json index 0174b889d2..13d31084f3 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradise https://github.com/ParadiseSS13/Paradise/tree/master/icons (unknown commit)", + "copyright": "Taken from paradise https://github.com/ParadiseSS13/Paradise/tree/master/icons (unknown commit). Tail sprites by Tiniest Shark (github)", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Boots/performer.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/performer.rsi/equipped-FEET.png index 81bf8df7ab..dcd087b4c7 100644 Binary files a/Resources/Textures/Clothing/Shoes/Boots/performer.rsi/equipped-FEET.png and b/Resources/Textures/Clothing/Shoes/Boots/performer.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/performer.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Boots/performer.rsi/icon.png index 7619c7fd2e..dddc656387 100644 Binary files a/Resources/Textures/Clothing/Shoes/Boots/performer.rsi/icon.png and b/Resources/Textures/Clothing/Shoes/Boots/performer.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index c450e31b38..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/icon.png deleted file mode 100644 index 6fe32e0e74..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/inhand-left.png deleted file mode 100644 index ae15d262d7..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/inhand-right.png deleted file mode 100644 index 60bea1b51a..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/meta.json deleted file mode 100644 index 8b0bae84ea..0000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Made by Flareguy for Space Station 14, base sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 3ef348699a..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/icon.png deleted file mode 100644 index 6bffc57eaa..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/inhand-left.png deleted file mode 100644 index ae15d262d7..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/inhand-right.png deleted file mode 100644 index 60bea1b51a..0000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/meta.json deleted file mode 100644 index 8b0bae84ea..0000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Made by Flareguy for Space Station 14, base sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Decals/stencil.rsi/meta.json b/Resources/Textures/Decals/stencil.rsi/meta.json new file mode 100644 index 0000000000..69cebf29d0 --- /dev/null +++ b/Resources/Textures/Decals/stencil.rsi/meta.json @@ -0,0 +1,149 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "made by Alkheemist (GitHub/Discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "stencil0" + }, + { + "name": "stencil1" + }, + { + "name": "stencil2" + }, + { + "name": "stencil3" + }, + { + "name": "stencil4" + }, + { + "name": "stencil5" + }, + { + "name": "stencil6" + }, + { + "name": "stencil7" + }, + { + "name": "stencil8" + }, + { + "name": "stencil9" + }, + { + "name": "stencilA" + }, + { + "name": "stencilB" + }, + { + "name": "stencilC" + }, + { + "name": "stencilD" + }, + { + "name": "stencilE" + }, + { + "name": "stencilF" + }, + { + "name": "stencilG" + }, + { + "name": "stencilH" + }, + { + "name": "stencilI" + }, + { + "name": "stencilJ" + }, + { + "name": "stencilK" + }, + { + "name": "stencilL" + }, + { + "name": "stencilM" + }, + { + "name": "stencilN" + }, + { + "name": "stencilO" + }, + { + "name": "stencilP" + }, + { + "name": "stencilQ" + }, + { + "name": "stencilR" + }, + { + "name": "stencilS" + }, + { + "name": "stencilT" + }, + { + "name": "stencilU" + }, + { + "name": "stencilV" + }, + { + "name": "stencilW" + }, + { + "name": "stencilX" + }, + { + "name": "stencilY" + }, + { + "name": "stencilZ" + }, + { + "name": "stencil_Ampersand" + }, + { + "name": "stencil_Asterix" + }, + { + "name": "stencil_Dash" + }, + { + "name": "stencil_Equals" + }, + { + "name": "stencil_Exclaim" + }, + { + "name": "stencil_Hash" + }, + { + "name": "stencil_Speso" + }, + { + "name": "stencil_Multiocular" + }, + { + "name": "stencil_Plus" + }, + { + "name": "stencil_Question" + } + ] +} diff --git a/Resources/Textures/Decals/stencil.rsi/stencil0.png b/Resources/Textures/Decals/stencil.rsi/stencil0.png new file mode 100644 index 0000000000..5c31392746 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil0.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil1.png b/Resources/Textures/Decals/stencil.rsi/stencil1.png new file mode 100644 index 0000000000..aaf94006b4 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil1.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil2.png b/Resources/Textures/Decals/stencil.rsi/stencil2.png new file mode 100644 index 0000000000..4c2b20879b Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil2.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil3.png b/Resources/Textures/Decals/stencil.rsi/stencil3.png new file mode 100644 index 0000000000..2e32055f76 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil3.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil4.png b/Resources/Textures/Decals/stencil.rsi/stencil4.png new file mode 100644 index 0000000000..041dbb45c2 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil4.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil5.png b/Resources/Textures/Decals/stencil.rsi/stencil5.png new file mode 100644 index 0000000000..0fac5c690b Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil5.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil6.png b/Resources/Textures/Decals/stencil.rsi/stencil6.png new file mode 100644 index 0000000000..46ceaf0d56 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil6.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil7.png b/Resources/Textures/Decals/stencil.rsi/stencil7.png new file mode 100644 index 0000000000..54826779ce Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil7.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil8.png b/Resources/Textures/Decals/stencil.rsi/stencil8.png new file mode 100644 index 0000000000..7c97b60c89 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil8.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil9.png b/Resources/Textures/Decals/stencil.rsi/stencil9.png new file mode 100644 index 0000000000..d0c4a680d2 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil9.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilA.png b/Resources/Textures/Decals/stencil.rsi/stencilA.png new file mode 100644 index 0000000000..c3a9254826 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilA.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilB.png b/Resources/Textures/Decals/stencil.rsi/stencilB.png new file mode 100644 index 0000000000..fc62e40c95 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilB.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilC.png b/Resources/Textures/Decals/stencil.rsi/stencilC.png new file mode 100644 index 0000000000..e79cf206cc Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilC.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilD.png b/Resources/Textures/Decals/stencil.rsi/stencilD.png new file mode 100644 index 0000000000..649f4043a5 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilD.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilE.png b/Resources/Textures/Decals/stencil.rsi/stencilE.png new file mode 100644 index 0000000000..a387756bbc Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilE.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilF.png b/Resources/Textures/Decals/stencil.rsi/stencilF.png new file mode 100644 index 0000000000..e50436bd47 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilF.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilG.png b/Resources/Textures/Decals/stencil.rsi/stencilG.png new file mode 100644 index 0000000000..3e1fd2acab Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilG.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilH.png b/Resources/Textures/Decals/stencil.rsi/stencilH.png new file mode 100644 index 0000000000..26e8f89348 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilH.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilI.png b/Resources/Textures/Decals/stencil.rsi/stencilI.png new file mode 100644 index 0000000000..3c8bc08bc7 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilI.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilJ.png b/Resources/Textures/Decals/stencil.rsi/stencilJ.png new file mode 100644 index 0000000000..360ffb4fab Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilJ.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilK.png b/Resources/Textures/Decals/stencil.rsi/stencilK.png new file mode 100644 index 0000000000..7c5dcd10a3 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilK.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilL.png b/Resources/Textures/Decals/stencil.rsi/stencilL.png new file mode 100644 index 0000000000..cc578c18b5 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilL.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilM.png b/Resources/Textures/Decals/stencil.rsi/stencilM.png new file mode 100644 index 0000000000..f69505f58b Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilM.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilN.png b/Resources/Textures/Decals/stencil.rsi/stencilN.png new file mode 100644 index 0000000000..0052eeba7c Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilN.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilO.png b/Resources/Textures/Decals/stencil.rsi/stencilO.png new file mode 100644 index 0000000000..d8b11a7d9c Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilO.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilP.png b/Resources/Textures/Decals/stencil.rsi/stencilP.png new file mode 100644 index 0000000000..dd7ef90427 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilP.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilQ.png b/Resources/Textures/Decals/stencil.rsi/stencilQ.png new file mode 100644 index 0000000000..b4af848417 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilQ.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilR.png b/Resources/Textures/Decals/stencil.rsi/stencilR.png new file mode 100644 index 0000000000..bb4f0a2d04 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilR.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilS.png b/Resources/Textures/Decals/stencil.rsi/stencilS.png new file mode 100644 index 0000000000..4a1a69e1b0 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilS.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilT.png b/Resources/Textures/Decals/stencil.rsi/stencilT.png new file mode 100644 index 0000000000..f895a92edd Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilT.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilU.png b/Resources/Textures/Decals/stencil.rsi/stencilU.png new file mode 100644 index 0000000000..2e09e218b9 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilU.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilV.png b/Resources/Textures/Decals/stencil.rsi/stencilV.png new file mode 100644 index 0000000000..572e40bf95 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilV.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilW.png b/Resources/Textures/Decals/stencil.rsi/stencilW.png new file mode 100644 index 0000000000..29cb98300e Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilW.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilX.png b/Resources/Textures/Decals/stencil.rsi/stencilX.png new file mode 100644 index 0000000000..d76ab6de06 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilX.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilY.png b/Resources/Textures/Decals/stencil.rsi/stencilY.png new file mode 100644 index 0000000000..9f5f0ed52f Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilY.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencilZ.png b/Resources/Textures/Decals/stencil.rsi/stencilZ.png new file mode 100644 index 0000000000..7c40d838a3 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencilZ.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil_Ampersand.png b/Resources/Textures/Decals/stencil.rsi/stencil_Ampersand.png new file mode 100644 index 0000000000..ac7583bf5f Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil_Ampersand.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil_Asterix.png b/Resources/Textures/Decals/stencil.rsi/stencil_Asterix.png new file mode 100644 index 0000000000..37ca93425f Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil_Asterix.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil_Dash.png b/Resources/Textures/Decals/stencil.rsi/stencil_Dash.png new file mode 100644 index 0000000000..c77f630a77 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil_Dash.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil_Equals.png b/Resources/Textures/Decals/stencil.rsi/stencil_Equals.png new file mode 100644 index 0000000000..caefdf0994 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil_Equals.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil_Exclaim.png b/Resources/Textures/Decals/stencil.rsi/stencil_Exclaim.png new file mode 100644 index 0000000000..9b7024bc53 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil_Exclaim.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil_Hash.png b/Resources/Textures/Decals/stencil.rsi/stencil_Hash.png new file mode 100644 index 0000000000..1e22e4b779 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil_Hash.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil_Multiocular.png b/Resources/Textures/Decals/stencil.rsi/stencil_Multiocular.png new file mode 100644 index 0000000000..284401a188 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil_Multiocular.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil_Plus.png b/Resources/Textures/Decals/stencil.rsi/stencil_Plus.png new file mode 100644 index 0000000000..e50358d284 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil_Plus.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil_Question.png b/Resources/Textures/Decals/stencil.rsi/stencil_Question.png new file mode 100644 index 0000000000..63fd0ad8f2 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil_Question.png differ diff --git a/Resources/Textures/Decals/stencil.rsi/stencil_Speso.png b/Resources/Textures/Decals/stencil.rsi/stencil_Speso.png new file mode 100644 index 0000000000..a6c97f7859 Binary files /dev/null and b/Resources/Textures/Decals/stencil.rsi/stencil_Speso.png differ diff --git a/Resources/Textures/Effects/creampie.rsi/creampie_vulpkanin.png b/Resources/Textures/Effects/creampie.rsi/creampie_vulpkanin.png new file mode 100644 index 0000000000..53369c158d Binary files /dev/null and b/Resources/Textures/Effects/creampie.rsi/creampie_vulpkanin.png differ diff --git a/Resources/Textures/Effects/creampie.rsi/meta.json b/Resources/Textures/Effects/creampie.rsi/meta.json index 8db8a77945..67b4981767 100644 --- a/Resources/Textures/Effects/creampie.rsi/meta.json +++ b/Resources/Textures/Effects/creampie.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. creampie_moth by MilenVolf, creampie_arachnid by PixelTheKermit (Github), creampie_vox by Errant", + "copyright": "Taken from https://github.com/tgstation/tgstation at 0d9c9a8233dfc3fc55edc538955a761a6328bee0. creampie_moth by MilenVolf, creampie_arachnid by PixelTheKermit (Github), creampie_vox by Errant, creampie_vulpkanin by Floofers", "size": { "x": 32, "y": 32 @@ -83,6 +83,10 @@ { "name": "creampie_xenomorph", "directions": 4 - } + }, + { + "name": "creampie_vulpkanin", + "directions": 4 + } ] } diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/inflatable-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/inflatable-module.png new file mode 100644 index 0000000000..15e1c86629 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/inflatable-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/meta.json b/Resources/Textures/Interface/Actions/actions_borg.rsi/meta.json index ac631e0294..1766f0a7de 100644 --- a/Resources/Textures/Interface/Actions/actions_borg.rsi/meta.json +++ b/Resources/Textures/Interface/Actions/actions_borg.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/cdbcb1e858b11f083994a7a269ed67ef5b452ce9, Module actions by Scarky0. chem, adv-chem, and adv-mining by mubururu_, xenoborg actions by Samuka-C (github), advclown by ThatGuyUSA", + "copyright": "Taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/cdbcb1e858b11f083994a7a269ed67ef5b452ce9, inflatable module by FungiFellow (GitHub), Module actions by Scarky0. chem, adv-chem, and adv-mining by mubururu_, xenoborg actions by Samuka-C (github), advclown by ThatGuyUSA. c20r and esword by RedBookcase on Github.", "size": { "x": 32, "y": 32 @@ -28,6 +28,9 @@ { "name":"geiger-module" }, + { + "name":"inflatable-module" + }, { "name":"rcd-module" }, @@ -106,12 +109,18 @@ { "name":"syndicate-operative-module" }, + { + "name":"syndicate-desword-module" + }, { "name":"syndicate-esword-module" }, { "name":"syndicate-l6c-module" }, + { + "name":"syndicate-c20r-module" + }, { "name":"syndicate-martyr-module" }, diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-c20r-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-c20r-module.png new file mode 100644 index 0000000000..52c14b2651 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-c20r-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-desword-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-desword-module.png new file mode 100644 index 0000000000..201149cf18 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-desword-module.png differ diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-esword-module.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-esword-module.png index 201149cf18..944c4ee918 100644 Binary files a/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-esword-module.png and b/Resources/Textures/Interface/Actions/actions_borg.rsi/syndicate-esword-module.png differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/Mime.png b/Resources/Textures/Interface/Misc/job_icons.rsi/Mime.png index 8f3cf00b81..d896b011f7 100644 Binary files a/Resources/Textures/Interface/Misc/job_icons.rsi/Mime.png and b/Resources/Textures/Interface/Misc/job_icons.rsi/Mime.png differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/Musician.png b/Resources/Textures/Interface/Misc/job_icons.rsi/Musician.png index 072348f050..402ea0ce52 100644 Binary files a/Resources/Textures/Interface/Misc/job_icons.rsi/Musician.png and b/Resources/Textures/Interface/Misc/job_icons.rsi/Musician.png differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json b/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json index 2578a6c254..521ae60659 100644 --- a/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json +++ b/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/blob/e71d6c4fba5a51f99b81c295dcaec4fc2f58fb19/icons/mob/screen1.dmi | Brigmedic icon made by PuroSlavKing (Github) | Zombie icon made by RamZ | Zookeper by netwy (discort) | Rev and Head Rev icon taken from https://tgstation13.org/wiki/HUD and edited by coolmankid12345 (Discord) | Mindshield icon taken from https://github.com/tgstation/tgstation/blob/ce6beb8a4d61235d9a597a7126c407160ed674ea/icons/mob/huds/hud.dmi | Admin recolored from MedicalIntern by TsjipTsjip | StationAi resprite to 8x8 size by lunarcomets | Service Worker resprite by anno_midi (Discord) and spanky-spanky (Github) | service icons darkened by frobnic8 (Discord and Github) | paradoxClone taken from tg station at commit https://github.com/tgstation/tgstation/commit/d0db1ff267557017ae7bde68e6490e70cbb6e42f and modifed by slarticodefast (Github) | Boxer, Chaplain, Janitor, Lawyer, Librarian recoloured by K-Dynamic (github) | Cluwne icon by Professor Renderer (Discord) | QuarterMaster modified by K-Dynamic (github)", + "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/blob/e71d6c4fba5a51f99b81c295dcaec4fc2f58fb19/icons/mob/screen1.dmi | Brigmedic icon made by PuroSlavKing (Github) | Zombie icon made by RamZ | Zookeper by netwy (discort) | Rev and Head Rev icon taken from https://tgstation13.org/wiki/HUD and edited by coolmankid12345 (Discord) | Mindshield icon taken from https://github.com/tgstation/tgstation/blob/ce6beb8a4d61235d9a597a7126c407160ed674ea/icons/mob/huds/hud.dmi | Admin recolored from MedicalIntern by TsjipTsjip | StationAi resprite to 8x8 size by lunarcomets | Service Worker resprite by anno_midi (Discord) and spanky-spanky (Github) | service icons darkened by frobnic8 (Discord and Github) | paradoxClone taken from tg station at commit https://github.com/tgstation/tgstation/commit/d0db1ff267557017ae7bde68e6490e70cbb6e42f and modifed by slarticodefast (Github) | Boxer, Chaplain, Janitor, Lawyer, Librarian recoloured by K-Dynamic (github) | Cluwne icon by Professor Renderer (Discord) | QuarterMaster modified by K-Dynamic (github) | Mime and Musician recolor by DinnerCalzone (github) at https://github.com/impstation/imp-station-14/commit/233161f02bab7f9f9c03f09f39638ea7c200ee24", "size": { "x": 8, "y": 8 diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/belly_crest.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/belly_crest.png new file mode 100644 index 0000000000..61a0b9b49b Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/belly_crest.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/belly_fox.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/belly_fox.png new file mode 100644 index 0000000000..41d2abe2ad Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/belly_fox.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/belly_full.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/belly_full.png new file mode 100644 index 0000000000..4100cd7036 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/belly_full.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/claws_l_foot.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/claws_l_foot.png new file mode 100644 index 0000000000..4cb29842b8 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/claws_l_foot.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/claws_l_hand.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/claws_l_hand.png new file mode 100644 index 0000000000..4a99e5b793 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/claws_l_hand.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/claws_r_foot.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/claws_r_foot.png new file mode 100644 index 0000000000..2f24c99f41 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/claws_r_foot.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/claws_r_hand.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/claws_r_hand.png new file mode 100644 index 0000000000..c6ab5e2d5e Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/claws_r_hand.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-arm-l.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-arm-l.png new file mode 100644 index 0000000000..54f05c2a29 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-arm-l.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-arm-r.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-arm-r.png new file mode 100644 index 0000000000..693d06f0df Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-arm-r.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-arms.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-arms.png new file mode 100644 index 0000000000..ad61bb8b5b Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-arms.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-foot-l.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-foot-l.png new file mode 100644 index 0000000000..ffda357aa6 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-foot-l.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-foot-r.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-foot-r.png new file mode 100644 index 0000000000..75c6c62d0e Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-foot-r.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-hand-l.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-hand-l.png new file mode 100644 index 0000000000..7ad80d0a92 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-hand-l.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-hand-r.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-hand-r.png new file mode 100644 index 0000000000..e5059c73cd Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-hand-r.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-leg-l.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-leg-l.png new file mode 100644 index 0000000000..a4c9449bc3 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-leg-l.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-leg-r.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-leg-r.png new file mode 100644 index 0000000000..4c218c8c07 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-leg-r.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-legs.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-legs.png new file mode 100644 index 0000000000..2997a0f844 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crest-legs.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crests.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crests.png new file mode 100644 index 0000000000..8d2dbc9cf8 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/crests.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/meta.json b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/meta.json new file mode 100644 index 0000000000..94ea970a61 --- /dev/null +++ b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/meta.json @@ -0,0 +1,183 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by FairlySadPanda (GitHub/Discord), based off of sprites taken from https://github.com/DeltaV-Station/Delta-v/commit/65d35d0b3c20aa4e8a0e749a4de8392e53051e86", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "belly_crest", + "directions": 4 + }, + { + "name": "belly_fox", + "directions": 4 + }, + { + "name": "belly_full", + "directions": 4 + }, + { + "name": "claws_l_hand", + "directions": 4 + }, + { + "name": "claws_r_hand", + "directions": 4 + }, + { + "name": "claws_l_foot", + "directions": 4 + }, + { + "name": "claws_r_foot", + "directions": 4 + }, + { + "name": "crests", + "directions": 4 + }, + { + "name": "crest-legs", + "directions": 4 + }, + { + "name": "crest-leg-l", + "directions": 4 + }, + { + "name": "crest-leg-r", + "directions": 4 + }, + { + "name": "crest-foot-l", + "directions": 4 + }, + { + "name": "crest-foot-r", + "directions": 4 + }, + { + "name": "crest-arms", + "directions": 4 + }, + { + "name": "crest-arm-l", + "directions": 4 + }, + { + "name": "crest-arm-r", + "directions": 4 + }, + { + "name": "crest-hand-l", + "directions": 4 + }, + { + "name": "crest-hand-r", + "directions": 4 + }, + { + "name": "points_fade", + "directions": 4 + }, + { + "name": "points_fade-arms", + "directions": 4 + }, + { + "name": "points_fade-arm-l", + "directions": 4 + }, + { + "name": "points_fade-arm-r", + "directions": 4 + }, + { + "name": "points_fade-hand-l", + "directions": 4 + }, + { + "name": "points_fade-hand-r", + "directions": 4 + }, + { + "name": "points_fade-legs", + "directions": 4 + }, + { + "name": "points_fade-leg-l", + "directions": 4 + }, + { + "name": "points_fade-leg-r", + "directions": 4 + }, + { + "name": "points_fade-foot-l", + "directions": 4 + }, + { + "name": "points_fade-foot-r", + "directions": 4 + }, + { + "name": "points_sharp", + "directions": 4 + }, + { + "name": "points_sharp-arms", + "directions": 4 + }, + { + "name": "points_sharp-arm-l", + "directions": 4 + }, + { + "name": "points_sharp-arm-r", + "directions": 4 + }, + { + "name": "points_sharp-arms-long", + "directions": 4 + }, + { + "name": "points_sharp-arm-long-l", + "directions": 4 + }, + { + "name": "points_sharp-arm-long-r", + "directions": 4 + }, + { + "name": "points_sharp-hand-l", + "directions": 4 + }, + { + "name": "points_sharp-hand-r", + "directions": 4 + }, + { + "name": "points_sharp-legs", + "directions": 4 + }, + { + "name": "points_sharp-leg-l", + "directions": 4 + }, + { + "name": "points_sharp-leg-r", + "directions": 4 + }, + { + "name": "points_sharp-foot-l", + "directions": 4 + }, + { + "name": "points_sharp-foot-r", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-arm-l.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-arm-l.png new file mode 100644 index 0000000000..2b150f5c8c Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-arm-l.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-arm-r.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-arm-r.png new file mode 100644 index 0000000000..e19c21fa92 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-arm-r.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-arms.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-arms.png new file mode 100644 index 0000000000..d2a3c45a91 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-arms.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-foot-l.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-foot-l.png new file mode 100644 index 0000000000..8753c24db3 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-foot-l.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-foot-r.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-foot-r.png new file mode 100644 index 0000000000..a62cf642d8 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-foot-r.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-hand-l.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-hand-l.png new file mode 100644 index 0000000000..b6d08a5d30 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-hand-l.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-hand-r.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-hand-r.png new file mode 100644 index 0000000000..1f636c60da Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-hand-r.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-leg-l.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-leg-l.png new file mode 100644 index 0000000000..0fbf3a76b6 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-leg-l.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-leg-r.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-leg-r.png new file mode 100644 index 0000000000..0301b7870c Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-leg-r.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-legs.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-legs.png new file mode 100644 index 0000000000..c56de65c54 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-legs.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade.png new file mode 100644 index 0000000000..827335ffdb Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-arm-l.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-arm-l.png new file mode 100644 index 0000000000..62dfacdd8b Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-arm-l.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-arm-long-l.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-arm-long-l.png new file mode 100644 index 0000000000..dbe094916c Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-arm-long-l.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-arm-long-r.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-arm-long-r.png new file mode 100644 index 0000000000..45158524e4 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-arm-long-r.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-arm-r.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-arm-r.png new file mode 100644 index 0000000000..9d99f2c3a8 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-arm-r.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-arms-long.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-arms-long.png new file mode 100644 index 0000000000..01e389cf26 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-arms-long.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-arms.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-arms.png new file mode 100644 index 0000000000..e0d3d4a185 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-arms.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-foot-l.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-foot-l.png new file mode 100644 index 0000000000..35158209f6 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-foot-l.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-foot-r.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-foot-r.png new file mode 100644 index 0000000000..a62cf642d8 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-foot-r.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-hand-l.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-hand-l.png new file mode 100644 index 0000000000..806b8ed9a9 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-hand-l.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-hand-r.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-hand-r.png new file mode 100644 index 0000000000..e058e35de3 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-hand-r.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-leg-l.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-leg-l.png new file mode 100644 index 0000000000..761f51a966 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-leg-l.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-leg-r.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-leg-r.png new file mode 100644 index 0000000000..cc598df4db Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-leg-r.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-legs.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-legs.png new file mode 100644 index 0000000000..aa9af05944 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-legs.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp.png new file mode 100644 index 0000000000..cae0e16e83 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/coyote-inner.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/coyote-inner.png new file mode 100644 index 0000000000..84f7795ffb Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/coyote-inner.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/coyote.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/coyote.png new file mode 100644 index 0000000000..0c8c557b74 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/coyote.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/fennec-inner.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/fennec-inner.png new file mode 100644 index 0000000000..8cad855b08 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/fennec-inner.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/fennec.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/fennec.png new file mode 100644 index 0000000000..5efd39b045 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/fennec.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/fox-inner.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/fox-inner.png new file mode 100644 index 0000000000..60f004b929 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/fox-inner.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/fox.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/fox.png new file mode 100644 index 0000000000..6eef15c7a6 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/fox.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/jackal-inner.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/jackal-inner.png new file mode 100644 index 0000000000..bb98f3c41c Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/jackal-inner.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/jackal.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/jackal.png new file mode 100644 index 0000000000..9dd74cb31f Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/jackal.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/meta.json b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/meta.json new file mode 100644 index 0000000000..d736b67282 --- /dev/null +++ b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/meta.json @@ -0,0 +1,83 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/DeltaV-Station/Delta-v/commit/e5426c4e3b160472b7d2913e1f89897bf72d957, some modification by FairlySadPanda (Github/Discord), ScarKy0 (Github/Discord) and TiniestShark (Github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "fennec", + "directions": 4 + }, + { + "name": "fennec-inner", + "directions": 4 + }, + { + "name": "fox", + "directions": 4 + }, + { + "name": "fox-inner", + "directions": 4 + }, + { + "name": "jackal", + "directions": 4 + }, + { + "name": "jackal-inner", + "directions": 4 + }, + { + "name": "otie", + "directions": 4 + }, + { + "name": "otie-inner", + "directions": 4 + }, + { + "name": "shock", + "directions": 4 + }, + { + "name": "shock-inner", + "directions": 4 + }, + { + "name": "terrier", + "directions": 4 + }, + { + "name": "terrier-inner", + "directions": 4 + }, + { + "name": "vulp", + "directions": 4 + }, + { + "name": "vulp-inner", + "directions": 4 + }, + { + "name": "vulp-sharp", + "directions": 4 + }, + { + "name": "vulp-fade", + "directions": 4 + }, + { + "name": "coyote", + "directions": 4 + }, + { + "name": "coyote-inner", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/otie-inner.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/otie-inner.png new file mode 100644 index 0000000000..a48a0dd661 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/otie-inner.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/otie.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/otie.png new file mode 100644 index 0000000000..842a4a398d Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/otie.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/shock-inner.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/shock-inner.png new file mode 100644 index 0000000000..0fea035575 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/shock-inner.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/shock.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/shock.png new file mode 100644 index 0000000000..0fbc809ba9 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/shock.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/terrier-inner.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/terrier-inner.png new file mode 100644 index 0000000000..1f6e3cc3f0 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/terrier-inner.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/terrier.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/terrier.png new file mode 100644 index 0000000000..967e5e5f54 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/terrier.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp-fade.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp-fade.png new file mode 100644 index 0000000000..e4c45a23cf Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp-fade.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp-inner.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp-inner.png new file mode 100644 index 0000000000..8362fe7782 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp-inner.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp-sharp.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp-sharp.png new file mode 100644 index 0000000000..a79ec4e175 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp-sharp.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp.png new file mode 100644 index 0000000000..25b7680097 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/elder.png b/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/elder.png new file mode 100644 index 0000000000..85240e6f65 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/elder.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/elder_chin.png b/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/elder_chin.png new file mode 100644 index 0000000000..cbbef4ebce Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/elder_chin.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/goatee.png b/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/goatee.png new file mode 100644 index 0000000000..4ffcaa9467 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/goatee.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/kita.png b/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/kita.png new file mode 100644 index 0000000000..3333e031c8 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/kita.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/meta.json b/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/meta.json new file mode 100644 index 0000000000..df8042cb9c --- /dev/null +++ b/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/meta.json @@ -0,0 +1,28 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/DeltaV-Station/Delta-v/commit/65d35d0b3c20aa4e8a0e749a4de8392e53051e86, modified by FairlySadPanda (Github/Discord)", + "size": {"x": 32, "y": 32}, + "states": [ + { + "name": "ruff", + "directions": 4 + }, + { + "name": "elder", + "directions": 4 + }, + { + "name": "elder_chin", + "directions": 4 + }, + { + "name": "kita", + "directions": 4 + }, + { + "name": "goatee", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/ruff.png b/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/ruff.png new file mode 100644 index 0000000000..6f1dc3a4d9 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/ruff.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/adhara.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/adhara.png new file mode 100644 index 0000000000..98749a8d33 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/adhara.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/anita.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/anita.png new file mode 100644 index 0000000000..fe9949a981 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/anita.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/apollo.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/apollo.png new file mode 100644 index 0000000000..3514ebee8a Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/apollo.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/belle.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/belle.png new file mode 100644 index 0000000000..0b052e6a58 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/belle.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/braided.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/braided.png new file mode 100644 index 0000000000..0c3cc0990c Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/braided.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/bun.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/bun.png new file mode 100644 index 0000000000..42b84b5dc7 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/bun.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/clean_cut.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/clean_cut.png new file mode 100644 index 0000000000..61adec36fb Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/clean_cut.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/curl.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/curl.png new file mode 100644 index 0000000000..3f9cf9465d Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/curl.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/hawk.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/hawk.png new file mode 100644 index 0000000000..c062252a96 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/hawk.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/jagged.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/jagged.png new file mode 100644 index 0000000000..a1dd3858bf Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/jagged.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/jeremy.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/jeremy.png new file mode 100644 index 0000000000..b0a09298c6 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/jeremy.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/kajam.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/kajam.png new file mode 100644 index 0000000000..2201c8eafb Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/kajam.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/keid.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/keid.png new file mode 100644 index 0000000000..1cee898dcd Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/keid.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/kleeia.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/kleeia.png new file mode 100644 index 0000000000..04319210c8 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/kleeia.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/meta.json b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/meta.json new file mode 100644 index 0000000000..952d14af05 --- /dev/null +++ b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/meta.json @@ -0,0 +1,92 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/DeltaV-Station/Delta-v/commit/65d35d0b3c20aa4e8a0e749a4de8392e53051e86, modified by FairlySadPanda (Github/Discord)", + "size": {"x": 32, "y": 32}, + "states": [ + { + "name": "adhara", + "directions": 4 + }, + { + "name": "anita", + "directions": 4 + }, + { + "name": "apollo", + "directions": 4 + }, + { + "name": "belle", + "directions": 4 + }, + { + "name": "braided", + "directions": 4 + }, + { + "name": "bun", + "directions": 4 + }, + { + "name": "clean_cut", + "directions": 4 + }, + { + "name": "curl", + "directions": 4 + }, + { + "name": "hawk", + "directions": 4 + }, + { + "name": "jagged", + "directions": 4 + }, + { + "name": "jeremy", + "directions": 4 + }, + { + "name": "kajam", + "directions": 4 + }, + { + "name": "keid", + "directions": 4 + }, + { + "name": "kleeia", + "directions": 4 + }, + { + "name": "mizar", + "directions": 4 + }, + { + "name": "punkbraided", + "directions": 4 + }, + { + "name": "raine", + "directions": 4 + }, + { + "name": "rough", + "directions": 4 + }, + { + "name": "short", + "directions": 4 + }, + { + "name": "short2", + "directions": 4 + }, + { + "name": "spike", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/mizar.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/mizar.png new file mode 100644 index 0000000000..ba2f513f38 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/mizar.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/punkbraided.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/punkbraided.png new file mode 100644 index 0000000000..1847a901da Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/punkbraided.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/raine.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/raine.png new file mode 100644 index 0000000000..b1512ae219 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/raine.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/rough.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/rough.png new file mode 100644 index 0000000000..b75c310aaf Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/rough.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/short.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/short.png new file mode 100644 index 0000000000..fefa54ad82 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/short.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/short2.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/short2.png new file mode 100644 index 0000000000..2c90ff5e8c Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/short2.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/spike.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/spike.png new file mode 100644 index 0000000000..04c037bef5 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/spike.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/blaze.png b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/blaze.png new file mode 100644 index 0000000000..045eabb9ae Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/blaze.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/mask.png b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/mask.png new file mode 100644 index 0000000000..b285a227c6 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/mask.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/meta.json b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/meta.json new file mode 100644 index 0000000000..858db18b26 --- /dev/null +++ b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/meta.json @@ -0,0 +1,36 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/DeltaV-Station/Delta-v/commit/65d35d0b3c20aa4e8a0e749a4de8392e53051e86, edited by ScarKy0 (Github/Discord)", + "size": {"x": 32, "y": 32}, + "states": [ + { + "name": "blaze", + "directions": 4 + }, + { + "name": "mask", + "directions": 4 + }, + { + "name": "patch", + "directions": 4 + }, + { + "name": "slash", + "directions": 4 + }, + { + "name": "stripes_1", + "directions": 4 + }, + { + "name": "stripes_2", + "directions": 4 + }, + { + "name": "vulpine", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/patch.png b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/patch.png new file mode 100644 index 0000000000..a0565703f6 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/patch.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/slash.png b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/slash.png new file mode 100644 index 0000000000..bd88946490 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/slash.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/stripes_1.png b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/stripes_1.png new file mode 100644 index 0000000000..12a6fe3ceb Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/stripes_1.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/stripes_2.png b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/stripes_2.png new file mode 100644 index 0000000000..e62ce7a7a1 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/stripes_2.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/vulpine.png b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/vulpine.png new file mode 100644 index 0000000000..a0d480f1ba Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/vulpine.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/female_full.png b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/female_full.png new file mode 100644 index 0000000000..ed04708fd8 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/female_full.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/female_none.png b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/female_none.png new file mode 100644 index 0000000000..8a925761fb Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/female_none.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/female_top.png b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/female_top.png new file mode 100644 index 0000000000..7f924cd879 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/female_top.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/full.png b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/full.png new file mode 100644 index 0000000000..f78008f58a Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/full.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/male_full.png b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/male_full.png new file mode 100644 index 0000000000..f78008f58a Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/male_full.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/male_none.png b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/male_none.png new file mode 100644 index 0000000000..44e0c1358d Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/male_none.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/male_top.png b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/male_top.png new file mode 100644 index 0000000000..a96eb3c294 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/male_top.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/meta.json b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/meta.json new file mode 100644 index 0000000000..1fced5e275 --- /dev/null +++ b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/meta.json @@ -0,0 +1,100 @@ +{ + "copyright": "Discord PJB#3005 Altered By Floofers in: Taken from https://github.com/DeltaV-Station/Delta-v/commit/65d35d0b3c20aa4e8a0e749a4de8392e53051e86", + "license": "CC-BY-SA-3.0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "delays": [ + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ] + ], + "directions": 4, + "name": "female_none" + }, + { + "delays": [ + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ] + ], + "directions": 4, + "name": "female_full" + }, + { + "delays": [ + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ] + ], + "directions": 4, + "name": "female_top" + }, + { + "name": "none" + }, + { + "name": "male_full", + "directions": 4 + }, + { + "name": "male_none", + "directions": 1 + }, + { + "name": "male_top", + "directions": 4 + }, + { + "name": "unisex_full", + "directions": 4 + }, + { + "name": "unisex_none", + "directions": 1 + }, + { + "name": "unisex_top", + "directions": 4 + }, + { + "name": "full", + "directions": 4 + }, + { + "name": "top", + "directions": 4 + } + ], + "version": 1 +} diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/none.png b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/none.png new file mode 100644 index 0000000000..6e3cb09bcf Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/none.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/top.png b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/top.png new file mode 100644 index 0000000000..f78008f58a Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/top.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/unisex_full.png b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/unisex_full.png new file mode 100644 index 0000000000..1b69c04a7a Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/unisex_full.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/unisex_none.png b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/unisex_none.png new file mode 100644 index 0000000000..44e0c1358d Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/unisex_none.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/unisex_top.png b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/unisex_top.png new file mode 100644 index 0000000000..44e0c1358d Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/unisex_top.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/snout_markings.rsi/blaze.png b/Resources/Textures/Mobs/Customization/Vulpkanin/snout_markings.rsi/blaze.png new file mode 100644 index 0000000000..a1f6f44860 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/snout_markings.rsi/blaze.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/snout_markings.rsi/mask.png b/Resources/Textures/Mobs/Customization/Vulpkanin/snout_markings.rsi/mask.png new file mode 100644 index 0000000000..6d05cf62f5 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/snout_markings.rsi/mask.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/snout_markings.rsi/meta.json b/Resources/Textures/Mobs/Customization/Vulpkanin/snout_markings.rsi/meta.json new file mode 100644 index 0000000000..ed5188934f --- /dev/null +++ b/Resources/Textures/Mobs/Customization/Vulpkanin/snout_markings.rsi/meta.json @@ -0,0 +1,40 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/DeltaV-Station/Delta-v/commit/65d35d0b3c20aa4e8a0e749a4de8392e53051e86, edited by ScarKy0 (Github/Discord)", + "size": {"x": 32, "y": 32}, + "states": [ + { + "name": "blaze", + "directions": 4 + }, + { + "name": "mask", + "directions": 4 + }, + { + "name": "snout-top", + "directions": 4 + }, + { + "name": "patch", + "directions": 4 + }, + { + "name": "snout", + "directions": 4 + }, + { + "name": "snout-nose", + "directions": 4 + }, + { + "name": "vulpine", + "directions": 4 + }, + { + "name": "vulpine-lines", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/snout_markings.rsi/patch.png b/Resources/Textures/Mobs/Customization/Vulpkanin/snout_markings.rsi/patch.png new file mode 100644 index 0000000000..deb5dcc615 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/snout_markings.rsi/patch.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/snout_markings.rsi/snout-nose.png b/Resources/Textures/Mobs/Customization/Vulpkanin/snout_markings.rsi/snout-nose.png new file mode 100644 index 0000000000..dedcd65878 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/snout_markings.rsi/snout-nose.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/snout_markings.rsi/snout-top.png b/Resources/Textures/Mobs/Customization/Vulpkanin/snout_markings.rsi/snout-top.png new file mode 100644 index 0000000000..1bbc8c62d1 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/snout_markings.rsi/snout-top.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/snout_markings.rsi/snout.png b/Resources/Textures/Mobs/Customization/Vulpkanin/snout_markings.rsi/snout.png new file mode 100644 index 0000000000..ee5f51489d Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/snout_markings.rsi/snout.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/snout_markings.rsi/vulpine-lines.png b/Resources/Textures/Mobs/Customization/Vulpkanin/snout_markings.rsi/vulpine-lines.png new file mode 100644 index 0000000000..ba5cac9a06 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/snout_markings.rsi/vulpine-lines.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/snout_markings.rsi/vulpine.png b/Resources/Textures/Mobs/Customization/Vulpkanin/snout_markings.rsi/vulpine.png new file mode 100644 index 0000000000..a69e8e6417 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/snout_markings.rsi/vulpine.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/coyote.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/coyote.png new file mode 100644 index 0000000000..63e5ddba19 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/coyote.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fennec-tip.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fennec-tip.png new file mode 100644 index 0000000000..fba6426e08 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fennec-tip.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fennec.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fennec.png new file mode 100644 index 0000000000..df930645da Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fennec.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fluffy-tip.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fluffy-tip.png new file mode 100644 index 0000000000..39784b103b Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fluffy-tip.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fluffy.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fluffy.png new file mode 100644 index 0000000000..933a41d91f Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fluffy.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/husky-inner.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/husky-inner.png new file mode 100644 index 0000000000..eb1b58c7e9 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/husky-inner.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/husky-outer.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/husky-outer.png new file mode 100644 index 0000000000..be1edfca02 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/husky-outer.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/husky.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/husky.png new file mode 100644 index 0000000000..d096ef5d9b Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/husky.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/long-tip.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/long-tip.png new file mode 100644 index 0000000000..3fafab6fac Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/long-tip.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/long.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/long.png new file mode 100644 index 0000000000..0e6d0cf807 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/long.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/meta.json b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/meta.json new file mode 100644 index 0000000000..04503abb6c --- /dev/null +++ b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/meta.json @@ -0,0 +1,63 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/DeltaV-Station/Delta-v/commit/65d35d0b3c20aa4e8a0e749a4de8392e53051e86. Fluffy created by Skarletto (Github). Modified by FairlySadPanda (Github/Discord)", + "size": {"x": 32, "y": 32}, + "states": [ + { + "name": "tail-wag-icon" + }, + { + "name": "fennec", + "directions": 4 + }, + { + "name": "fennec-tip", + "directions": 4 + }, + { + "name": "fluffy", + "directions": 4 + }, + { + "name": "fluffy-tip", + "directions": 4 + }, + { + "name": "husky", + "directions": 4 + }, + { + "name": "husky-inner", + "directions": 4 + }, + { + "name": "husky-outer", + "directions": 4 + }, + { + "name": "long", + "directions": 4 + }, + { + "name": "long-tip", + "directions": 4 + }, + { + "name": "vulp", + "directions": 4 + }, + { + "name": "vulp-fade", + "directions": 4 + }, + { + "name": "vulp-tip", + "directions": 4 + }, + { + "name": "coyote", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/tail-wag-icon.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/tail-wag-icon.png new file mode 100644 index 0000000000..c7e544012d Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/tail-wag-icon.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp-fade.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp-fade.png new file mode 100644 index 0000000000..17bcc67712 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp-fade.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp-tip.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp-tip.png new file mode 100644 index 0000000000..1203cc4bb4 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp-tip.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp.png new file mode 100644 index 0000000000..dca86f6422 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/baby.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/baby.png new file mode 100644 index 0000000000..9829225fac Binary files /dev/null and b/Resources/Textures/Mobs/Customization/human_hair.rsi/baby.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/cube.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/cube.png new file mode 100644 index 0000000000..eabf49acad Binary files /dev/null and b/Resources/Textures/Mobs/Customization/human_hair.rsi/cube.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json b/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json index 454b6870eb..dcacd1d743 100644 --- a/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json @@ -4,7 +4,7 @@ "x": 32, "y": 32 }, - "copyright": "Taken from https://github.com/tgstation/tgstation/blob/05ec94e46349c35e29ca91e5e97d0c88ae26ad44/icons/mob/species/human/human_face.dmi ,resprited by Alekshhh, a modified by potato1234x, uneven and tailed is drawn by Ubaser, doublebun_long by Emisse, longbundled and bob5 sprited by github:DreamlyJack(624946166152298517), pulato.png made by DreamlyJack, b.png and b_alt.png modified and sprited by KingFroozy (github), long_with_bangs shaped and longbow by Futuristic (and Pyvik) for SS14", + "copyright": "Taken from https://github.com/tgstation/tgstation/blob/05ec94e46349c35e29ca91e5e97d0c88ae26ad44/icons/mob/species/human/human_face.dmi ,resprited by Alekshhh, a modified by potato1234x, uneven and tailed is drawn by Ubaser, doublebun_long by Emisse, longbundled and bob5 sprited by github:DreamlyJack(624946166152298517), pulato.png made by DreamlyJack, b.png and b_alt.png modified and sprited by KingFroozy (github), long_with_bangs shaped and longbow by Futuristic (and Pyvik) for SS14, cube and baby by CoolioDudio", "license": "CC-BY-SA-3.0", "states": [ { @@ -35,6 +35,10 @@ "name": "b_alt", "directions": 4 }, + { + "name": "baby", + "directions": 4 + }, { "name": "baldfade", "directions": 4 @@ -243,6 +247,10 @@ "name": "crewcut2", "directions": 4 }, + { + "name": "cube", + "directions": 4 + }, { "name": "curls", "directions": 4 diff --git a/Resources/Textures/Mobs/Customization/vox_parts.rsi/meta.json b/Resources/Textures/Mobs/Customization/vox_parts.rsi/meta.json index 183e3c0338..143710ad9f 100644 --- a/Resources/Textures/Mobs/Customization/vox_parts.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/vox_parts.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 02ff588d59b3c560c685d9ca75e882d32a72d8cb, modified by Bhijn, Errant and Flareguy. tail_big and tail_short modified from tail by Flareguy", + "copyright": "Taken from https://github.com/vgstation-coders/vgstation13 at 02ff588d59b3c560c685d9ca75e882d32a72d8cb, modified by Bhijn, Errant and Flareguy. tail_big tail_short and tail_docked modified from tail by Flareguy, tail_spiked modified from tail by TrixxedHeart", "size": { "x": 32, "y": 32 @@ -58,6 +58,18 @@ { "name": "tail_big", "directions": 4 + }, + { + "name": "tail_spikes", + "directions": 4 + }, + { + "name": "tail_docked", + "directions": 4 + }, + { + "name": "tail_split", + "directions": 4 } ] } diff --git a/Resources/Textures/Mobs/Customization/vox_parts.rsi/tail_docked.png b/Resources/Textures/Mobs/Customization/vox_parts.rsi/tail_docked.png new file mode 100644 index 0000000000..9850750ff5 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_parts.rsi/tail_docked.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_parts.rsi/tail_spikes.png b/Resources/Textures/Mobs/Customization/vox_parts.rsi/tail_spikes.png new file mode 100644 index 0000000000..c5af683909 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_parts.rsi/tail_spikes.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_parts.rsi/tail_split.png b/Resources/Textures/Mobs/Customization/vox_parts.rsi/tail_split.png new file mode 100644 index 0000000000..e00c19f145 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_parts.rsi/tail_split.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/meta.json b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/meta.json index e1d263c9ac..92dbbff751 100644 --- a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/ef7a4d962915cb36b138eeb59663f0053d4906fe/icons/mob/sprite_accessories/vox/vox_body_markings.dmi and modified by Flareguy. eyeshadow & tail_ring states by Flareguy", + "copyright": "Taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/ef7a4d962915cb36b138eeb59663f0053d4906fe/icons/mob/sprite_accessories/vox/vox_body_markings.dmi and modified by Flareguy. eyeshadow & tail_ring states by Flareguy, tail_talisman by TrixxedHeart", "size": { "x": 32, "y": 32 @@ -23,6 +23,10 @@ "name": "nightling_s", "directions": 4 }, + { + "name": "tail_talisman", + "directions": 4 + }, { "name": "tattoo_eye_vox_r", "directions": 4 diff --git a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/tail_talisman.png b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/tail_talisman.png new file mode 100644 index 0000000000..80fade39b9 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/tail_talisman.png differ diff --git a/Resources/Textures/Mobs/Pets/Smile/smile_displacement.rsi/head.png b/Resources/Textures/Mobs/Pets/Smile/smile_displacement.rsi/head.png index a579919824..5cc098d50f 100644 Binary files a/Resources/Textures/Mobs/Pets/Smile/smile_displacement.rsi/head.png and b/Resources/Textures/Mobs/Pets/Smile/smile_displacement.rsi/head.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/engineer_derelict.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/engineer_derelict.png new file mode 100644 index 0000000000..7eb8b01ad0 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/engineer_derelict.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/engineer_derelict_crystal.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/engineer_derelict_crystal.png new file mode 100644 index 0000000000..38bae65c83 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/engineer_derelict_crystal.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/janitor_derelict.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/janitor_derelict.png new file mode 100644 index 0000000000..34ae031b79 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/janitor_derelict.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/janitor_moving_derelict.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/janitor_moving_derelict.png new file mode 100644 index 0000000000..ce6b1bc61e Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/janitor_moving_derelict.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/medical_derelict.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/medical_derelict.png new file mode 100644 index 0000000000..8fd1dba350 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/medical_derelict.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/medical_moving_derelict.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/medical_moving_derelict.png new file mode 100644 index 0000000000..4054df6184 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/medical_moving_derelict.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/meta.json b/Resources/Textures/Mobs/Silicon/chassis.rsi/meta.json index 4e56b98d3e..45aa679ee2 100644 --- a/Resources/Textures/Mobs/Silicon/chassis.rsi/meta.json +++ b/Resources/Textures/Mobs/Silicon/chassis.rsi/meta.json @@ -1,659 +1,791 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/faf6db214927874c19b8fa8585d26b5d40de1acc, derelict sprites modified by GoldenCan(GitHub), xenoborg sprites, created and modified by Samuka-C (github).", - "states": [ - { - "name": "clown", - "directions": 4 + "version": 1, + "size": { + "x": 32, + "y": 32 }, - { - "name": "clown_e", - "directions": 4 - }, - { - "name": "clown_e_r", - "directions": 4 - }, - { - "name": "clown_l", - "directions": 4 - }, - { - "name": "derelict", - "directions": 4 - }, - { - "name": "derelict_e", - "directions": 4 - }, - { - "name": "derelict_e_r", - "directions": 4 - }, - { - "name": "derelict_icon", - "directions": 1 - }, - { - "name": "derelict_l", - "directions": 4 - }, - { - "name": "engineer", - "directions": 4 - }, - { - "name": "engineer_e", - "directions": 4 - }, - { - "name": "engineer_e_r", - "directions": 4 - }, - { - "name": "engineer_l", - "directions": 4 - }, - { - "name": "janitor", - "directions": 4 - }, - { - "name": "janitor_moving", - "directions": 4, - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "janitor_e", - "directions": 4 - }, - { - "name": "janitor_e_r", - "directions": 4 - }, - { - "name": "janitor_l", - "directions": 4 - }, - { - "name": "medical", - "directions": 4, - "delays": [ - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ] - ] - }, - { - "name": "medical_moving", - "directions": 4, - "delays": [ - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ] - ] - }, - { - "name": "medical_e", - "directions": 4 - }, - { - "name": "medical_e_r", - "directions": 4 - }, - { - "name": "medical_l", - "directions": 4 - }, - { - "name": "miner", - "directions": 4 - }, - { - "name": "miner_moving", - "directions": 4, - "delays": [ - [ - 0.1, - 0.1 - ], - [ - 0.1, - 0.1 - ], - [ - 0.1, - 0.1 - ], - [ - 0.1, - 0.1 - ] - ] - }, - { - "name": "miner_e", - "directions": 4 - }, - { - "name": "miner_e_r", - "directions": 4 - }, - { - "name": "miner_l", - "directions": 4 - }, - { - "name": "robot", - "directions": 4 - }, - { - "name": "robot_e", - "directions": 4 - }, - { - "name": "robot_e_r", - "directions": 4 - }, - { - "name": "robot_l", - "directions": 4 - }, - { - "name": "peace", - "directions": 4 - }, - { - "name": "peace_e", - "directions": 4 - }, - { - "name": "peace_e_r", - "directions": 4 - }, - { - "name": "peace_l", - "directions": 4 - }, - { - "name": "service", - "directions": 4 - }, - { - "name": "service_e", - "directions": 4 - }, - { - "name": "service_e_r", - "directions": 4 - }, - { - "name": "service_l", - "directions": 4 - }, - { - "name": "synd_sec", - "directions": 4 - }, - { - "name": "synd_sec_e", - "directions": 4 - }, - { - "name": "synd_sec_l", - "directions": 4 - }, - { - "name": "synd_medical", - "directions": 4 - }, - { - "name": "synd_medical_l", - "directions": 4, - "delays": [ - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ] - ] - }, - { - "name": "synd_medical_e", - "directions": 4, - "delays": [ - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ] - ] - }, - { - "name": "synd_engi", - "directions": 4 - }, - { - "name": "synd_engi_e", - "directions": 4 - }, - { - "name": "synd_engi_l", - "directions": 4 - }, - { - "name": "xenoborg_heavy", - "directions": 4 - }, - { - "name": "xenoborg_heavy_e", - "directions": 4 - }, - { - "name": "xenoborg_heavy_e_r", - "directions": 4, - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "xenoborg_heavy_l", - "directions": 4 - }, - { - "name": "xenoborg_scout", - "directions": 4 - }, - { - "name": "xenoborg_scout_l", - "directions": 4, - "delays": [ - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ] - ] - }, - { - "name": "xenoborg_scout_e", - "directions": 4, - "delays": [ - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ] - ] - }, - { - "name": "xenoborg_scout_e_r", - "directions": 4, - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "xenoborg_engi", - "directions": 4 - }, - { - "name": "xenoborg_engi_e", - "directions": 4 - }, - { - "name": "xenoborg_engi_e_r", - "directions": 4, - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "xenoborg_engi_l", - "directions": 4 - }, - { - "name": "xenoborg_stealth", - "directions": 4 - }, - { - "name": "xenoborg_stealth_e", - "directions": 4, - "delays": [ - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ] - ] - }, - { - "name": "xenoborg_stealth_e_r", - "directions": 4, - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ], - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "xenoborg_stealth_l", - "directions": 4, - "delays": [ - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ], - [ - 0.1, - 0.2, - 0.1 - ] - ] - } - ] + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/faf6db214927874c19b8fa8585d26b5d40de1acc, derelict generic sprites modified by GoldenCan(GitHub), xenoborg sprites, created and modified by Samuka-C (github). Derelict Engineer, Janitor, Miner, Medical, and Assault Borg sprites by _miket on Discord.", + "states": [ + { + "name": "clown", + "directions": 4 + }, + { + "name": "clown_e", + "directions": 4 + }, + { + "name": "clown_e_r", + "directions": 4 + }, + { + "name": "clown_l", + "directions": 4 + }, + { + "name": "derelict", + "directions": 4 + }, + { + "name": "derelict_e", + "directions": 4 + }, + { + "name": "derelict_e_r", + "directions": 4 + }, + { + "name": "derelict_icon", + "directions": 1 + }, + { + "name": "derelict_l", + "directions": 4 + }, + { + "name": "engineer", + "directions": 4 + }, + { + "name": "engineer_e", + "directions": 4 + }, + { + "name": "engineer_e_r", + "directions": 4 + }, + { + "name": "engineer_l", + "directions": 4 + }, + { + "name": "engineer_derelict", + "directions": 4 + }, + { + "name": "engineer_derelict_crystal", + "directions": 4 + }, + { + "name": "janitor", + "directions": 4 + }, + { + "name": "janitor_moving", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "janitor_e", + "directions": 4 + }, + { + "name": "janitor_e_r", + "directions": 4 + }, + { + "name": "janitor_l", + "directions": 4 + }, + { + "name": "janitor_derelict", + "directions": 4 + }, + { + "name": "janitor_moving_derelict", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "medical", + "directions": 4, + "delays": [ + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ] + ] + }, + { + "name": "medical_moving", + "directions": 4, + "delays": [ + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ] + ] + }, + { + "name": "medical_e", + "directions": 4 + }, + { + "name": "medical_e_r", + "directions": 4 + }, + { + "name": "medical_l", + "directions": 4 + }, + { + "name": "medical_derelict", + "directions": 4, + "delays": [ + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ] + ] + }, + { + "name": "medical_moving_derelict", + "directions": 4, + "delays": [ + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ] + ] + }, + { + "name": "miner", + "directions": 4 + }, + { + "name": "miner_moving", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "miner_e", + "directions": 4 + }, + { + "name": "miner_e_r", + "directions": 4 + }, + { + "name": "miner_l", + "directions": 4 + }, + { + "name": "miner_derelict", + "directions": 4 + }, + { + "name": "miner_moving_derelict", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "robot", + "directions": 4 + }, + { + "name": "robot_e", + "directions": 4 + }, + { + "name": "robot_e_r", + "directions": 4 + }, + { + "name": "robot_l", + "directions": 4 + }, + { + "name": "peace", + "directions": 4 + }, + { + "name": "peace_e", + "directions": 4 + }, + { + "name": "peace_e_r", + "directions": 4 + }, + { + "name": "peace_l", + "directions": 4 + }, + { + "name": "service", + "directions": 4 + }, + { + "name": "service_e", + "directions": 4 + }, + { + "name": "service_e_r", + "directions": 4 + }, + { + "name": "service_l", + "directions": 4 + }, + { + "name": "synd_sec", + "directions": 4 + }, + { + "name": "synd_sec_e", + "directions": 4 + }, + { + "name": "synd_sec_l", + "directions": 4 + }, + { + "name": "synd_sec_derelict", + "directions": 4 + }, + { + "name": "synd_sec_derelict_e", + "directions": 4 + }, + { + "name": "synd_sec_derelict_l", + "directions": 4 + }, + { + "name": "synd_medical", + "directions": 4 + }, + { + "name": "synd_medical_l", + "directions": 4, + "delays": [ + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ] + ] + }, + { + "name": "synd_medical_e", + "directions": 4, + "delays": [ + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ] + ] + }, + { + "name": "synd_engi", + "directions": 4 + }, + { + "name": "synd_engi_e", + "directions": 4 + }, + { + "name": "synd_engi_l", + "directions": 4 + }, + { + "name": "xenoborg_heavy", + "directions": 4 + }, + { + "name": "xenoborg_heavy_e", + "directions": 4 + }, + { + "name": "xenoborg_heavy_e_r", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "xenoborg_heavy_l", + "directions": 4 + }, + { + "name": "xenoborg_scout", + "directions": 4 + }, + { + "name": "xenoborg_scout_l", + "directions": 4, + "delays": [ + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ] + ] + }, + { + "name": "xenoborg_scout_e", + "directions": 4, + "delays": [ + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ] + ] + }, + { + "name": "xenoborg_scout_e_r", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "xenoborg_engi", + "directions": 4 + }, + { + "name": "xenoborg_engi_e", + "directions": 4 + }, + { + "name": "xenoborg_engi_e_r", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "xenoborg_engi_l", + "directions": 4 + }, + { + "name": "xenoborg_stealth", + "directions": 4 + }, + { + "name": "xenoborg_stealth_e", + "directions": 4, + "delays": [ + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ] + ] + }, + { + "name": "xenoborg_stealth_e_r", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "xenoborg_stealth_l", + "directions": 4, + "delays": [ + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ], + [ + 0.1, + 0.2, + 0.1 + ] + ] + } + ] } diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/miner_derelict.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/miner_derelict.png new file mode 100644 index 0000000000..d9d812c761 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/miner_derelict.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/miner_moving_derelict.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/miner_moving_derelict.png new file mode 100644 index 0000000000..05cd74494b Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/miner_moving_derelict.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/synd_sec_derelict.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/synd_sec_derelict.png new file mode 100644 index 0000000000..9b42b90f6e Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/synd_sec_derelict.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/synd_sec_derelict_e.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/synd_sec_derelict_e.png new file mode 100644 index 0000000000..a846febc06 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/synd_sec_derelict_e.png differ diff --git a/Resources/Textures/Mobs/Silicon/chassis.rsi/synd_sec_derelict_l.png b/Resources/Textures/Mobs/Silicon/chassis.rsi/synd_sec_derelict_l.png new file mode 100644 index 0000000000..b479c411a7 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/chassis.rsi/synd_sec_derelict_l.png differ diff --git a/Resources/Textures/Mobs/Species/Moth/displacement.rsi/hand.png b/Resources/Textures/Mobs/Species/Moth/displacement.rsi/hand.png index f632f80d19..5443655da6 100644 Binary files a/Resources/Textures/Mobs/Species/Moth/displacement.rsi/hand.png and b/Resources/Textures/Mobs/Species/Moth/displacement.rsi/hand.png differ diff --git a/Resources/Textures/Mobs/Species/Moth/displacement.rsi/jumpsuit-female.png b/Resources/Textures/Mobs/Species/Moth/displacement.rsi/jumpsuit-female.png index f4cf6def03..93dada15f7 100644 Binary files a/Resources/Textures/Mobs/Species/Moth/displacement.rsi/jumpsuit-female.png and b/Resources/Textures/Mobs/Species/Moth/displacement.rsi/jumpsuit-female.png differ diff --git a/Resources/Textures/Mobs/Species/Moth/displacement.rsi/jumpsuit-male.png b/Resources/Textures/Mobs/Species/Moth/displacement.rsi/jumpsuit-male.png index c3be6e6d9d..b78c10e0c1 100644 Binary files a/Resources/Textures/Mobs/Species/Moth/displacement.rsi/jumpsuit-male.png and b/Resources/Textures/Mobs/Species/Moth/displacement.rsi/jumpsuit-male.png differ diff --git a/Resources/Textures/Mobs/Species/Moth/displacement.rsi/outerclothing.png b/Resources/Textures/Mobs/Species/Moth/displacement.rsi/outerclothing.png index e4939fdb79..db14be441c 100644 Binary files a/Resources/Textures/Mobs/Species/Moth/displacement.rsi/outerclothing.png and b/Resources/Textures/Mobs/Species/Moth/displacement.rsi/outerclothing.png differ diff --git a/Resources/Textures/Mobs/Species/Moth/displacement.rsi/shoes.png b/Resources/Textures/Mobs/Species/Moth/displacement.rsi/shoes.png index eb92ec29e3..2e576b604f 100644 Binary files a/Resources/Textures/Mobs/Species/Moth/displacement.rsi/shoes.png and b/Resources/Textures/Mobs/Species/Moth/displacement.rsi/shoes.png differ diff --git a/Resources/Textures/Mobs/Species/Reptilian/displacement.rsi/head.png b/Resources/Textures/Mobs/Species/Reptilian/displacement.rsi/head.png new file mode 100644 index 0000000000..72384eedcd Binary files /dev/null and b/Resources/Textures/Mobs/Species/Reptilian/displacement.rsi/head.png differ diff --git a/Resources/Textures/Mobs/Species/Reptilian/displacement.rsi/jumpsuit-female.png b/Resources/Textures/Mobs/Species/Reptilian/displacement.rsi/jumpsuit-female.png new file mode 100644 index 0000000000..be9c1064fb Binary files /dev/null and b/Resources/Textures/Mobs/Species/Reptilian/displacement.rsi/jumpsuit-female.png differ diff --git a/Resources/Textures/Mobs/Species/Reptilian/displacement.rsi/mask.png b/Resources/Textures/Mobs/Species/Reptilian/displacement.rsi/mask.png new file mode 100644 index 0000000000..e90745dcc4 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Reptilian/displacement.rsi/mask.png differ diff --git a/Resources/Textures/Mobs/Species/Reptilian/displacement.rsi/meta.json b/Resources/Textures/Mobs/Species/Reptilian/displacement.rsi/meta.json new file mode 100644 index 0000000000..38fa5db229 --- /dev/null +++ b/Resources/Textures/Mobs/Species/Reptilian/displacement.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Jumpsuit-female made by TheShuEd, head and mask made by TiniestShark", + "size": { + "x": 32, + "y": 32 + }, + "load": { + "srgb": false + }, + "states": [ + { + "name": "jumpsuit-female", + "directions": 4 + }, + { + "name": "head", + "directions": 4 + }, + { + "name": "mask", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/back.png b/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/back.png new file mode 100644 index 0000000000..973267afb7 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/back.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/belt.png b/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/belt.png new file mode 100644 index 0000000000..4d818b67b5 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/belt.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/ears.png b/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/ears.png new file mode 100644 index 0000000000..7b09f26b62 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/ears.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/eyes.png b/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/eyes.png new file mode 100644 index 0000000000..468fbe56c6 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/eyes.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/hair.png b/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/hair.png new file mode 100644 index 0000000000..add37c8207 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/hair.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/hand.png b/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/hand.png new file mode 100644 index 0000000000..8b3a1a2a07 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/hand.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/head.png b/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/head.png new file mode 100644 index 0000000000..1af97efb34 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/head.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/jumpsuit.png b/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/jumpsuit.png new file mode 100644 index 0000000000..13b284c971 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/jumpsuit.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/meta.json b/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/meta.json new file mode 100644 index 0000000000..dda72541d1 --- /dev/null +++ b/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/meta.json @@ -0,0 +1,58 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "FairlySadPanda (Discord/Github)", + "size": { + "x": 32, + "y": 32 + }, + "load": { + "srgb": false + }, + "states": [ + { + "name": "jumpsuit", + "directions": 4 + }, + { + "name": "back", + "directions": 4 + }, + { + "name": "hand", + "directions": 4 + }, + { + "name": "head", + "directions": 4 + }, + { + "name": "neck", + "directions": 4 + }, + { + "name": "eyes", + "directions": 4 + }, + { + "name": "shoes", + "directions": 4 + }, + { + "name": "belt", + "directions": 4 + }, + { + "name": "outerwear", + "directions": 4 + }, + { + "name": "hair", + "directions": 4 + }, + { + "name": "ears", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/neck.png b/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/neck.png new file mode 100644 index 0000000000..b886c01310 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/neck.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/outerwear.png b/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/outerwear.png new file mode 100644 index 0000000000..febed60a63 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/outerwear.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/shoes.png b/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/shoes.png new file mode 100644 index 0000000000..e5f899c356 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/displacement.rsi/shoes.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/eyes.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/eyes.png new file mode 100644 index 0000000000..a4f647ba15 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/eyes.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/full.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/full.png new file mode 100644 index 0000000000..54ea598a5e Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/full.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/head_f.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/head_f.png new file mode 100644 index 0000000000..dae646062b Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/head_f.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/head_m.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/head_m.png new file mode 100644 index 0000000000..dae646062b Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/head_m.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/icon.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/icon.png new file mode 100644 index 0000000000..016d8ba5a7 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/icon.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/l_arm.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/l_arm.png new file mode 100644 index 0000000000..f7cbaf13be Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/l_arm.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/l_foot.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/l_foot.png new file mode 100644 index 0000000000..c2fe095d56 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/l_foot.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/l_hand.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/l_hand.png new file mode 100644 index 0000000000..0caddb8b96 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/l_hand.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/l_leg.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/l_leg.png new file mode 100644 index 0000000000..4b33469ab4 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/l_leg.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/meta.json b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/meta.json new file mode 100644 index 0000000000..fb445e85a1 --- /dev/null +++ b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/meta.json @@ -0,0 +1,73 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by FairlySadPanda (Github/Discord); with help from ScarKy0 (Github/Discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "full" + }, + { + "name": "icon" + }, + { + "name": "head_f", + "directions": 4 + }, + { + "name": "head_m", + "directions": 4 + }, + { + "name": "l_arm", + "directions": 4 + }, + { + "name": "l_foot", + "directions": 4 + }, + { + "name": "l_hand", + "directions": 4 + }, + { + "name": "l_leg", + "directions": 4 + }, + { + "name": "r_arm", + "directions": 4 + }, + { + "name": "r_foot", + "directions": 4 + }, + { + "name": "r_hand", + "directions": 4 + }, + { + "name": "r_leg", + "directions": 4 + }, + { + "name": "torso_f", + "directions": 4 + }, + { + "name": "torso_m", + "directions": 4 + }, + { + "name": "eyes", + "directions": 4 + }, + { + "name": "overlay_husk", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/overlay_husk.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/overlay_husk.png new file mode 100644 index 0000000000..9570139afc Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/overlay_husk.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/r_arm.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/r_arm.png new file mode 100644 index 0000000000..a3d7fa7c5c Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/r_arm.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/r_foot.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/r_foot.png new file mode 100644 index 0000000000..69ebcf2137 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/r_foot.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/r_hand.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/r_hand.png new file mode 100644 index 0000000000..c8b521fa93 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/r_hand.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/r_leg.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/r_leg.png new file mode 100644 index 0000000000..c389957645 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/r_leg.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/torso_f.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/torso_f.png new file mode 100644 index 0000000000..8ddbb03b9d Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/torso_f.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/torso_m.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/torso_m.png new file mode 100644 index 0000000000..8866db031e Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/torso_m.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/beer_can.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/beer_can.rsi/inhand-left.png new file mode 100644 index 0000000000..8bf6755c94 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/beer_can.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/beer_can.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/beer_can.rsi/inhand-right.png new file mode 100644 index 0000000000..49af4002dc Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/beer_can.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/beer_can.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/beer_can.rsi/meta.json index b712e503a1..5a1b399e50 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/beer_can.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/beer_can.rsi/meta.json @@ -5,13 +5,21 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Github #DrMelon", + "copyright": "Github #DrMelon. Inhands by Tiniest Shark (Github)", "states": [ { "name": "icon" }, { "name": "icon_open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/cafe_latte.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/cafe_latte.rsi/inhand-left.png new file mode 100644 index 0000000000..50314fb33b Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/cafe_latte.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/cafe_latte.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/cafe_latte.rsi/inhand-right.png new file mode 100644 index 0000000000..4a462785f3 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/cafe_latte.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/cafe_latte.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/cafe_latte.rsi/meta.json index c92d6f1b0e..c3942590a6 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/cafe_latte.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/cafe_latte.rsi/meta.json @@ -6,7 +6,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi. Fill levels by Tayrtahn on GitHub.", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi. Fill levels by Tayrtahn on GitHub. Inhands by Tiniest Shark (Github)", "states": [ { @@ -17,6 +17,14 @@ }, { "name": "fill-1" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/changelingsting.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/changelingsting.rsi/icon.png index ea7735183e..9ef4af5e60 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/changelingsting.rsi/icon.png and b/Resources/Textures/Objects/Consumable/Drinks/changelingsting.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/changelingsting.rsi/icon_open.png b/Resources/Textures/Objects/Consumable/Drinks/changelingsting.rsi/icon_open.png index 04cfae2fc3..a09984dbd3 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/changelingsting.rsi/icon_open.png and b/Resources/Textures/Objects/Consumable/Drinks/changelingsting.rsi/icon_open.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/changelingsting.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/changelingsting.rsi/inhand-left.png new file mode 100644 index 0000000000..80d124e334 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/changelingsting.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/changelingsting.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/changelingsting.rsi/inhand-right.png new file mode 100644 index 0000000000..fcf9eb3943 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/changelingsting.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/changelingsting.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/changelingsting.rsi/meta.json index 681df63262..ce1ecaa5ab 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/changelingsting.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/changelingsting.rsi/meta.json @@ -5,17 +5,22 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi. Inhands by Tiniest Shark (Github)", "states": [ { "name": "icon", "delays": [ [ 10.0, + 0.1, 10.0, + 0.1, 10.0, + 0.1, 10.0, - 10.0 + 0.1, + 10.0, + 0.1 ] ] }, @@ -24,12 +29,125 @@ "delays": [ [ 10.0, + 0.1, 10.0, + 0.1, 10.0, + 0.1, 10.0, - 10.0 + 0.1, + 10.0, + 0.1 ] ] - } - ] -} \ No newline at end of file + }, + { + "name": "inhand-right", + "directions": 4, + "delays": [ + [ + 5.0, + 0.1, + 5.0, + 0.1, + 5.0, + 0.1, + 5.0, + 0.1, + 5.0, + 0.1 + ], + [ + 5.0, + 0.1, + 5.0, + 0.1, + 5.0, + 0.1, + 5.0, + 0.1, + 5.0, + 0.1 + ], + [ + 5.0, + 0.1, + 5.0, + 0.1, + 5.0, + 0.1, + 5.0, + 0.1, + 5.0, + 0.1 + ], + [ + 5.0, + 0.1, + 5.0, + 0.1, + 5.0, + 0.1, + 5.0, + 0.1, + 5.0, + 0.1 + ] + ] + }, + { + "name": "inhand-left", + "directions": 4, + "delays": [ + [ + 5.0, + 0.1, + 5.0, + 0.1, + 5.0, + 0.1, + 5.0, + 0.1, + 5.0, + 0.1 + ], + [ + 5.0, + 0.1, + 5.0, + 0.1, + 5.0, + 0.1, + 5.0, + 0.1, + 5.0, + 0.1 + ], + [ + 5.0, + 0.1, + 5.0, + 0.1, + 5.0, + 0.1, + 5.0, + 0.1, + 5.0, + 0.1 + ], + [ + 5.0, + 0.1, + 5.0, + 0.1, + 5.0, + 0.1, + 5.0, + 0.1, + 5.0, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/coconutwater.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/coconutwater.rsi/inhand-left.png new file mode 100644 index 0000000000..609b685ec1 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/coconutwater.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/coconutwater.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/coconutwater.rsi/inhand-right.png new file mode 100644 index 0000000000..24d928ea2a Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/coconutwater.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/coconutwater.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/coconutwater.rsi/meta.json index d7f3d6da42..c336b26583 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/coconutwater.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/coconutwater.rsi/meta.json @@ -5,13 +5,21 @@ "y": 32 }, "license": "CC0-1.0", - "copyright": "Original work by noctis on Discord", + "copyright": "Original work by noctis on Discord. Inhands by Tiniest Shark (Github)", "states": [ { "name": "icon" }, { "name": "icon_open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/cola.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/cola.rsi/inhand-left.png index 477a29c3e2..6fc55016b0 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/cola.rsi/inhand-left.png and b/Resources/Textures/Objects/Consumable/Drinks/cola.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/cola.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/cola.rsi/inhand-right.png index 23a82d03f8..b4a47272c5 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/cola.rsi/inhand-right.png and b/Resources/Textures/Objects/Consumable/Drinks/cola.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/cola.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/cola.rsi/meta.json index 1bebea0aa9..181ce00e88 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/cola.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/cola.rsi/meta.json @@ -1,53 +1,25 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", - "states": [ - { - "name": "icon" + "version": 1, + "size": { + "x": 32, + "y": 32 }, - { - "name": "icon_open" - }, - { - "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi, inhands by Tiniest Shark (Github)", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/cream.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/cream.rsi/inhand-left.png new file mode 100644 index 0000000000..81e381ec4a Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/cream.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/cream.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/cream.rsi/inhand-right.png new file mode 100644 index 0000000000..9a6a6e17b2 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/cream.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/cream.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/cream.rsi/meta.json index 9e1d9a9075..e65d47fd41 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/cream.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/cream.rsi/meta.json @@ -5,13 +5,21 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi. Inhands by Tiniest Shark (Github)", "states": [ { "name": "icon" }, { "name": "icon_open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/dr_gibb.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/dr_gibb.rsi/inhand-left.png index b831c1087e..d5ff9cf124 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/dr_gibb.rsi/inhand-left.png and b/Resources/Textures/Objects/Consumable/Drinks/dr_gibb.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/dr_gibb.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/dr_gibb.rsi/inhand-right.png index 4767d514b1..adac96faed 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/dr_gibb.rsi/inhand-right.png and b/Resources/Textures/Objects/Consumable/Drinks/dr_gibb.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/dr_gibb.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/dr_gibb.rsi/meta.json index 1bebea0aa9..087c100ebf 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/dr_gibb.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/dr_gibb.rsi/meta.json @@ -1,53 +1,25 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", - "states": [ - { - "name": "icon" + "version": 1, + "size": { + "x": 32, + "y": 32 }, - { - "name": "icon_open" - }, - { - "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi. Inhands by Tiniest Shark (Github)", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/energy_drink.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/energy_drink.rsi/inhand-left.png index 365b3aa812..89cb06a092 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/energy_drink.rsi/inhand-left.png and b/Resources/Textures/Objects/Consumable/Drinks/energy_drink.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/energy_drink.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/energy_drink.rsi/inhand-right.png index c929a445b1..d1794343ec 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/energy_drink.rsi/inhand-right.png and b/Resources/Textures/Objects/Consumable/Drinks/energy_drink.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/energy_drink.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/energy_drink.rsi/meta.json index 1bebea0aa9..087c100ebf 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/energy_drink.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/energy_drink.rsi/meta.json @@ -1,53 +1,25 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", - "states": [ - { - "name": "icon" + "version": 1, + "size": { + "x": 32, + "y": 32 }, - { - "name": "icon_open" - }, - { - "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi. Inhands by Tiniest Shark (Github)", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/fourteen_loko.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/fourteen_loko.rsi/inhand-left.png index 642fade8f8..b3e7179aa2 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/fourteen_loko.rsi/inhand-left.png and b/Resources/Textures/Objects/Consumable/Drinks/fourteen_loko.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/fourteen_loko.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/fourteen_loko.rsi/inhand-right.png index 6c8548832a..b4d925a2ff 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/fourteen_loko.rsi/inhand-right.png and b/Resources/Textures/Objects/Consumable/Drinks/fourteen_loko.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/fourteen_loko.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/fourteen_loko.rsi/meta.json index 1bebea0aa9..087c100ebf 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/fourteen_loko.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/fourteen_loko.rsi/meta.json @@ -1,53 +1,25 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", - "states": [ - { - "name": "icon" + "version": 1, + "size": { + "x": 32, + "y": 32 }, - { - "name": "icon_open" - }, - { - "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi. Inhands by Tiniest Shark (Github)", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/inhand-left-fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/inhand-left-fill-1.png new file mode 100644 index 0000000000..fa5d91c412 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/inhand-left-fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/inhand-left-fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/inhand-left-fill-2.png new file mode 100644 index 0000000000..9cec22fdc8 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/inhand-left-fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/inhand-left-fill-3.png b/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/inhand-left-fill-3.png new file mode 100644 index 0000000000..5abe7972d8 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/inhand-left-fill-3.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/inhand-left.png new file mode 100644 index 0000000000..5048bdd8ad Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/inhand-right-fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/inhand-right-fill-1.png new file mode 100644 index 0000000000..c0f87542b2 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/inhand-right-fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/inhand-right-fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/inhand-right-fill-2.png new file mode 100644 index 0000000000..c4640503fd Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/inhand-right-fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/inhand-right-fill-3.png b/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/inhand-right-fill-3.png new file mode 100644 index 0000000000..9a69f1acd7 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/inhand-right-fill-3.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/inhand-right.png new file mode 100644 index 0000000000..db9b96c99b Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/meta.json index 7319ee8837..afc42a380e 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-NC-SA-4.0", - "copyright": "Created by discord: brainfood#7460 / github: brainfood1183.", + "copyright": "Created by discord: brainfood#7460 / github: brainfood1183. Inhands by Tiniest Shark (Github)", "states": [ { "name": "icon" @@ -33,6 +33,38 @@ }, { "name": "fill6" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-left-fill-1", + "directions": 4 + }, + { + "name": "inhand-left-fill-2", + "directions": 4 + }, + { + "name": "inhand-left-fill-3", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-right-fill-1", + "directions": 4 + }, + { + "name": "inhand-right-fill-2", + "directions": 4 + }, + { + "name": "inhand-right-fill-3", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/golden_cup.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/golden_cup.rsi/inhand-left.png new file mode 100644 index 0000000000..7e9f418a50 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/golden_cup.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/golden_cup.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/golden_cup.rsi/inhand-right.png new file mode 100644 index 0000000000..8fe23e3dcf Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/golden_cup.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/golden_cup.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/golden_cup.rsi/meta.json index db0ac608ed..36a09f430a 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/golden_cup.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/golden_cup.rsi/meta.json @@ -1 +1,23 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon"}]} \ No newline at end of file +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi. Inhands by Tiniest Shark (Github)", + "states": + [ + { + "name": "icon" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/ice_tea_can.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/ice_tea_can.rsi/inhand-left.png new file mode 100644 index 0000000000..6df640a3e4 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/ice_tea_can.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/ice_tea_can.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/ice_tea_can.rsi/inhand-right.png new file mode 100644 index 0000000000..8ce05ea8ea Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/ice_tea_can.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/ice_tea_can.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/ice_tea_can.rsi/meta.json index 1b1b3aa259..f5b50d94b3 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/ice_tea_can.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/ice_tea_can.rsi/meta.json @@ -5,13 +5,21 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi. Inhands by Tiniest Shark (Github)", "states": [ { "name": "icon" }, { "name": "icon_open" - } + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/lean.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/lean.rsi/inhand-left.png index c86f6c325f..21785456ca 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/lean.rsi/inhand-left.png and b/Resources/Textures/Objects/Consumable/Drinks/lean.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/lean.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/lean.rsi/inhand-right.png index b175cde91b..226a769bb9 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/lean.rsi/inhand-right.png and b/Resources/Textures/Objects/Consumable/Drinks/lean.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/lean.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/lean.rsi/meta.json index 666ec30732..e7c10c09ef 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/lean.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/lean.rsi/meta.json @@ -1,50 +1,22 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/tgstation/tgstation/blob/master/icons/obj/drinks.dmi", - "states": [ - { - "name": "icon" + "version": 1, + "size": { + "x": 32, + "y": 32 }, - { - "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/tgstation/tgstation/blob/master/icons/obj/drinks.dmi. Inhands by Tiniest Shark (Github)", + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/lemon-lime-cranberry.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/lemon-lime-cranberry.rsi/inhand-left.png index aa14f15e1a..17975bea03 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/lemon-lime-cranberry.rsi/inhand-left.png and b/Resources/Textures/Objects/Consumable/Drinks/lemon-lime-cranberry.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/lemon-lime-cranberry.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/lemon-lime-cranberry.rsi/inhand-right.png index 7e1507f80a..dfc03d9786 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/lemon-lime-cranberry.rsi/inhand-right.png and b/Resources/Textures/Objects/Consumable/Drinks/lemon-lime-cranberry.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/lemon-lime-cranberry.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/lemon-lime-cranberry.rsi/meta.json index 2151beeb21..c0d3bd982f 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/lemon-lime-cranberry.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/lemon-lime-cranberry.rsi/meta.json @@ -1,25 +1,25 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi; modified by AugustSun", - "states": [ - { - "name": "icon" + "version": 1, + "size": { + "x": 32, + "y": 32 }, - { - "name": "icon_open" - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - } - ] + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi; modified by AugustSun. Inhands by Tiniest Shark (Github)", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/lemon-lime.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/lemon-lime.rsi/inhand-left.png index de164f3b8c..af00bf36e2 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/lemon-lime.rsi/inhand-left.png and b/Resources/Textures/Objects/Consumable/Drinks/lemon-lime.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/lemon-lime.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/lemon-lime.rsi/inhand-right.png index a2382a5b61..7fd5dce65b 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/lemon-lime.rsi/inhand-right.png and b/Resources/Textures/Objects/Consumable/Drinks/lemon-lime.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/lemon-lime.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/lemon-lime.rsi/meta.json index 1bebea0aa9..087c100ebf 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/lemon-lime.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/lemon-lime.rsi/meta.json @@ -1,53 +1,25 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", - "states": [ - { - "name": "icon" + "version": 1, + "size": { + "x": 32, + "y": 32 }, - { - "name": "icon_open" - }, - { - "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi. Inhands by Tiniest Shark (Github)", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/inhand-left-fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/inhand-left-fill-1.png new file mode 100644 index 0000000000..caca4a1e7c Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/inhand-left-fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/inhand-left-fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/inhand-left-fill-2.png new file mode 100644 index 0000000000..9cec22fdc8 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/inhand-left-fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/inhand-left-fill-3.png b/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/inhand-left-fill-3.png new file mode 100644 index 0000000000..5abe7972d8 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/inhand-left-fill-3.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/inhand-left.png new file mode 100644 index 0000000000..1d7ebe45fb Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/inhand-right-fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/inhand-right-fill-1.png new file mode 100644 index 0000000000..c0f87542b2 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/inhand-right-fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/inhand-right-fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/inhand-right-fill-2.png new file mode 100644 index 0000000000..c4640503fd Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/inhand-right-fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/inhand-right-fill-3.png b/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/inhand-right-fill-3.png new file mode 100644 index 0000000000..9a69f1acd7 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/inhand-right-fill-3.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/inhand-right.png new file mode 100644 index 0000000000..8d8933316f Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/meta.json index 7319ee8837..afc42a380e 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-NC-SA-4.0", - "copyright": "Created by discord: brainfood#7460 / github: brainfood1183.", + "copyright": "Created by discord: brainfood#7460 / github: brainfood1183. Inhands by Tiniest Shark (Github)", "states": [ { "name": "icon" @@ -33,6 +33,38 @@ }, { "name": "fill6" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-left-fill-1", + "directions": 4 + }, + { + "name": "inhand-left-fill-2", + "directions": 4 + }, + { + "name": "inhand-left-fill-3", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-right-fill-1", + "directions": 4 + }, + { + "name": "inhand-right-fill-2", + "directions": 4 + }, + { + "name": "inhand-right-fill-3", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/milk.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/milk.rsi/inhand-left.png new file mode 100644 index 0000000000..8e84a8b2cf Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/milk.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/milk.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/milk.rsi/inhand-right.png new file mode 100644 index 0000000000..6dc179cb73 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/milk.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/milk.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/milk.rsi/meta.json index 9e1d9a9075..e65d47fd41 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/milk.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/milk.rsi/meta.json @@ -5,13 +5,21 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi. Inhands by Tiniest Shark (Github)", "states": [ { "name": "icon" }, { "name": "icon_open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/oatmilk.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/oatmilk.rsi/inhand-left.png new file mode 100644 index 0000000000..23694788ca Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/oatmilk.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/oatmilk.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/oatmilk.rsi/inhand-right.png new file mode 100644 index 0000000000..a2ffe45a21 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/oatmilk.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/oatmilk.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/oatmilk.rsi/meta.json index 9e1d9a9075..e65d47fd41 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/oatmilk.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/oatmilk.rsi/meta.json @@ -5,13 +5,21 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi. Inhands by Tiniest Shark (Github)", "states": [ { "name": "icon" }, { "name": "icon_open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/orangejuice.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/orangejuice.rsi/inhand-left.png new file mode 100644 index 0000000000..8da8888884 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/orangejuice.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/orangejuice.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/orangejuice.rsi/inhand-right.png new file mode 100644 index 0000000000..dd65d0066d Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/orangejuice.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/orangejuice.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/orangejuice.rsi/meta.json index 9e1d9a9075..e65d47fd41 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/orangejuice.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/orangejuice.rsi/meta.json @@ -5,13 +5,21 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi. Inhands by Tiniest Shark (Github)", "states": [ { "name": "icon" }, { "name": "icon_open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/pineapplejuice.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/pineapplejuice.rsi/inhand-left.png new file mode 100644 index 0000000000..0c19129bba Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/pineapplejuice.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/pineapplejuice.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/pineapplejuice.rsi/inhand-right.png new file mode 100644 index 0000000000..60d661984a Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/pineapplejuice.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/pineapplejuice.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/pineapplejuice.rsi/meta.json index 31a3eae2e6..998efd88d2 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/pineapplejuice.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/pineapplejuice.rsi/meta.json @@ -5,13 +5,21 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "GrownSamoyedDog on Github. A variant of orangejuice carton from: https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "copyright": "GrownSamoyedDog on Github. A variant of orangejuice carton from: https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi. Inhands by Tiniest Shark (Github)", "states": [ { "name": "icon" }, { "name": "icon_open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/purple_can.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/purple_can.rsi/inhand-left.png index 69b2348005..079908d808 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/purple_can.rsi/inhand-left.png and b/Resources/Textures/Objects/Consumable/Drinks/purple_can.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/purple_can.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/purple_can.rsi/inhand-right.png index 71a60e7b0c..3e5edd720f 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/purple_can.rsi/inhand-right.png and b/Resources/Textures/Objects/Consumable/Drinks/purple_can.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/purple_can.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/purple_can.rsi/meta.json index 1bebea0aa9..087c100ebf 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/purple_can.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/purple_can.rsi/meta.json @@ -1,53 +1,25 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", - "states": [ - { - "name": "icon" + "version": 1, + "size": { + "x": 32, + "y": 32 }, - { - "name": "icon_open" - }, - { - "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi. Inhands by Tiniest Shark (Github)", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/pwrgame.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/pwrgame.rsi/inhand-left.png index 2ed4941501..eb1fade9ba 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/pwrgame.rsi/inhand-left.png and b/Resources/Textures/Objects/Consumable/Drinks/pwrgame.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/pwrgame.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/pwrgame.rsi/inhand-right.png index cb29098114..52b666dad1 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/pwrgame.rsi/inhand-right.png and b/Resources/Textures/Objects/Consumable/Drinks/pwrgame.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/pwrgame.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/pwrgame.rsi/meta.json index d269458e27..db298f17e6 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/pwrgame.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/pwrgame.rsi/meta.json @@ -1,53 +1,25 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/70ccd0f2305286a1312425a85365881fac16fcac. Modified by potato1234x (github) for SS14", - "states": [ - { - "name": "icon" + "version": 1, + "size": { + "x": 32, + "y": 32 }, - { - "name": "icon_open" - }, - { - "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/70ccd0f2305286a1312425a85365881fac16fcac. Modified by potato1234x (github) for SS14. Inhands by Tiniest Shark (Github)", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/robustnukie.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/robustnukie.rsi/inhand-left.png index 59e3843dc2..a2dc592f4a 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/robustnukie.rsi/inhand-left.png and b/Resources/Textures/Objects/Consumable/Drinks/robustnukie.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/robustnukie.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/robustnukie.rsi/inhand-right.png index 39481d24ee..6d651c750d 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/robustnukie.rsi/inhand-right.png and b/Resources/Textures/Objects/Consumable/Drinks/robustnukie.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/robustnukie.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/robustnukie.rsi/meta.json index 7ded114b0f..94755597f1 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/robustnukie.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/robustnukie.rsi/meta.json @@ -1,25 +1,25 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Made by Potato1234x (github) for SS14", - "states": [ - { - "name": "icon" + "version": 1, + "size": { + "x": 32, + "y": 32 }, - { - "name": "icon_open" - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - } - ] + "license": "CC-BY-SA-3.0", + "copyright": "Made by Potato1234x (github) for SS14. Inhands by Tiniest Shark (Github)", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/rootbeer.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/rootbeer.rsi/inhand-left.png index 60f5f88404..dc70a8897b 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/rootbeer.rsi/inhand-left.png and b/Resources/Textures/Objects/Consumable/Drinks/rootbeer.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/rootbeer.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/rootbeer.rsi/inhand-right.png index 8f299e007d..458185df30 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/rootbeer.rsi/inhand-right.png and b/Resources/Textures/Objects/Consumable/Drinks/rootbeer.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/rootbeer.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/rootbeer.rsi/meta.json index 68b9e804a5..37f3b82065 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/rootbeer.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/rootbeer.rsi/meta.json @@ -1,25 +1,25 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi (EDITED BY Plasmaguy#6148 [Discord, liable to change] / jrjr3000 [Steam])", - "states": [ - { - "name": "icon" + "version": 1, + "size": { + "x": 32, + "y": 32 }, - { - "name": "icon_open" - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - } - ] + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi (EDITED BY Plasmaguy#6148 [Discord, liable to change] / jrjr3000 [Steam]). Inhands by Tiniest Shark (Github)", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/shamblersjuice.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/shamblersjuice.rsi/inhand-left.png index 6b182db296..3759f5cee9 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/shamblersjuice.rsi/inhand-left.png and b/Resources/Textures/Objects/Consumable/Drinks/shamblersjuice.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/shamblersjuice.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/shamblersjuice.rsi/inhand-right.png index ace1850674..b144fcf523 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/shamblersjuice.rsi/inhand-right.png and b/Resources/Textures/Objects/Consumable/Drinks/shamblersjuice.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/shamblersjuice.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/shamblersjuice.rsi/meta.json index d269458e27..db298f17e6 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/shamblersjuice.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/shamblersjuice.rsi/meta.json @@ -1,53 +1,25 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/70ccd0f2305286a1312425a85365881fac16fcac. Modified by potato1234x (github) for SS14", - "states": [ - { - "name": "icon" + "version": 1, + "size": { + "x": 32, + "y": 32 }, - { - "name": "icon_open" - }, - { - "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/70ccd0f2305286a1312425a85365881fac16fcac. Modified by potato1234x (github) for SS14. Inhands by Tiniest Shark (Github)", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/sodawater.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/sodawater.rsi/inhand-left.png index 2e1c5e06a0..3ccb23f298 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/sodawater.rsi/inhand-left.png and b/Resources/Textures/Objects/Consumable/Drinks/sodawater.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/sodawater.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/sodawater.rsi/inhand-right.png index 4f2a04fd09..4473d9bfd6 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/sodawater.rsi/inhand-right.png and b/Resources/Textures/Objects/Consumable/Drinks/sodawater.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/sodawater.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/sodawater.rsi/meta.json index 1bebea0aa9..087c100ebf 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/sodawater.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/sodawater.rsi/meta.json @@ -1,53 +1,25 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", - "states": [ - { - "name": "icon" + "version": 1, + "size": { + "x": 32, + "y": 32 }, - { - "name": "icon_open" - }, - { - "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi. Inhands by Tiniest Shark (Github)", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/sol_dry.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/sol_dry.rsi/inhand-left.png index 3c03c07742..a47e0c1649 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/sol_dry.rsi/inhand-left.png and b/Resources/Textures/Objects/Consumable/Drinks/sol_dry.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/sol_dry.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/sol_dry.rsi/inhand-right.png index 2f68635d90..c47e1dee20 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/sol_dry.rsi/inhand-right.png and b/Resources/Textures/Objects/Consumable/Drinks/sol_dry.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/sol_dry.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/sol_dry.rsi/meta.json index 8bc80009c5..8c03f72257 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/sol_dry.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/sol_dry.rsi/meta.json @@ -1,53 +1,25 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Modified from https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi, Sol Dry from /tg/.", - "states": [ - { - "name": "icon" + "version": 1, + "size": { + "x": 32, + "y": 32 }, - { - "name": "icon_open" - }, - { - "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] + "license": "CC-BY-SA-3.0", + "copyright": "Modified from https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi, Sol Dry from /tg/. Inhands by Tiniest Shark (Github)", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/soymilk.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/soymilk.rsi/inhand-left.png new file mode 100644 index 0000000000..16ddaabcea Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/soymilk.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/soymilk.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/soymilk.rsi/inhand-right.png new file mode 100644 index 0000000000..1e1c7d31b5 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/soymilk.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/soymilk.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/soymilk.rsi/meta.json index 9e1d9a9075..e65d47fd41 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/soymilk.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/soymilk.rsi/meta.json @@ -5,13 +5,21 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi. Inhands by Tiniest Shark (Github)", "states": [ { "name": "icon" }, { "name": "icon_open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/space-up.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/space-up.rsi/inhand-left.png index 1d68344ef4..f863fa43d0 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/space-up.rsi/inhand-left.png and b/Resources/Textures/Objects/Consumable/Drinks/space-up.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/space-up.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/space-up.rsi/inhand-right.png index 88e420e703..f8daea6182 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/space-up.rsi/inhand-right.png and b/Resources/Textures/Objects/Consumable/Drinks/space-up.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/space-up.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/space-up.rsi/meta.json index 1bebea0aa9..087c100ebf 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/space-up.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/space-up.rsi/meta.json @@ -1,53 +1,25 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", - "states": [ - { - "name": "icon" + "version": 1, + "size": { + "x": 32, + "y": 32 }, - { - "name": "icon_open" - }, - { - "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi. Inhands by Tiniest Shark (Github)", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind.rsi/inhand-left.png index d1cd7229ee..e42490a3dd 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind.rsi/inhand-left.png and b/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind.rsi/inhand-right.png index 5843404b9d..a777932f4c 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind.rsi/inhand-right.png and b/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind.rsi/meta.json index 1bebea0aa9..087c100ebf 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/space_mountain_wind.rsi/meta.json @@ -1,53 +1,25 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", - "states": [ - { - "name": "icon" + "version": 1, + "size": { + "x": 32, + "y": 32 }, - { - "name": "icon_open" - }, - { - "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi. Inhands by Tiniest Shark (Github)", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/starkist.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/starkist.rsi/inhand-left.png index 2c4de36e61..9aa2e421ac 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/starkist.rsi/inhand-left.png and b/Resources/Textures/Objects/Consumable/Drinks/starkist.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/starkist.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/starkist.rsi/inhand-right.png index be9651c155..5aaa431dad 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/starkist.rsi/inhand-right.png and b/Resources/Textures/Objects/Consumable/Drinks/starkist.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/starkist.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/starkist.rsi/meta.json index 1bebea0aa9..087c100ebf 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/starkist.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/starkist.rsi/meta.json @@ -1,53 +1,25 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", - "states": [ - { - "name": "icon" + "version": 1, + "size": { + "x": 32, + "y": 32 }, - { - "name": "icon_open" - }, - { - "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi. Inhands by Tiniest Shark (Github)", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/inhand-left.png new file mode 100644 index 0000000000..61f2fc9590 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/inhand-right.png new file mode 100644 index 0000000000..910124fefa Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/meta.json index 2666be145a..8f340a2eab 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi. Inhands by Tiniest Shark (Github)", "states": [ { "name": "icon-0" @@ -27,6 +27,14 @@ }, { "name": "icon-vend-green-tea" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/tomatojuice.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/tomatojuice.rsi/inhand-left.png new file mode 100644 index 0000000000..d391f854e7 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/tomatojuice.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/tomatojuice.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/tomatojuice.rsi/inhand-right.png new file mode 100644 index 0000000000..cec7beb423 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/tomatojuice.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/tomatojuice.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/tomatojuice.rsi/meta.json index 9e1d9a9075..e65d47fd41 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/tomatojuice.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/tomatojuice.rsi/meta.json @@ -5,13 +5,21 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi. Inhands by Tiniest Shark (Github)", "states": [ { "name": "icon" }, { "name": "icon_open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/tonic.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/tonic.rsi/inhand-left.png index 0a48331ebf..ed354cf3fb 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/tonic.rsi/inhand-left.png and b/Resources/Textures/Objects/Consumable/Drinks/tonic.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/tonic.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/tonic.rsi/inhand-right.png index cb145ca151..2f2ad70514 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/tonic.rsi/inhand-right.png and b/Resources/Textures/Objects/Consumable/Drinks/tonic.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/tonic.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/tonic.rsi/meta.json index d2cf48f286..087c100ebf 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/tonic.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/tonic.rsi/meta.json @@ -1,53 +1,25 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", - "states": [ - { - "name": "icon" + "version": 1, + "size": { + "x": 32, + "y": 32 }, - { - "name": "icon_open" - }, - { - "name": "inhand-right", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - } - ] + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi. Inhands by Tiniest Shark (Github)", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/water_cup.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/water_cup.rsi/inhand-left.png new file mode 100644 index 0000000000..8b7b77afa2 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/water_cup.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/water_cup.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/water_cup.rsi/inhand-right.png new file mode 100644 index 0000000000..ba7c125b36 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/water_cup.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/water_cup.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/water_cup.rsi/meta.json index 7c719f160d..6301d09d7d 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/water_cup.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/water_cup.rsi/meta.json @@ -5,13 +5,21 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi. Inhands by Tiniest Shark (Github)", "states": [ { "name": "icon-0" }, { "name": "icon-1" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/wine_can.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/wine_can.rsi/inhand-left.png new file mode 100644 index 0000000000..a66de5a6aa Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/wine_can.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/wine_can.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/wine_can.rsi/inhand-right.png new file mode 100644 index 0000000000..3b745d9c8b Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/wine_can.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/wine_can.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/wine_can.rsi/meta.json index b712e503a1..5a1b399e50 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/wine_can.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/wine_can.rsi/meta.json @@ -5,13 +5,21 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Github #DrMelon", + "copyright": "Github #DrMelon. Inhands by Tiniest Shark (Github)", "states": [ { "name": "icon" }, { "name": "icon_open" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/alpha-bun-inhand-left.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/alpha-bun-inhand-left.png new file mode 100644 index 0000000000..e949a52f5a Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/alpha-bun-inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/alpha-bun-inhand-right.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/alpha-bun-inhand-right.png new file mode 100644 index 0000000000..49e197e1ed Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/alpha-bun-inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/alpha-filling-inhand-left.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/alpha-filling-inhand-left.png new file mode 100644 index 0000000000..23e3dd2248 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/alpha-filling-inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/alpha-filling-inhand-right.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/alpha-filling-inhand-right.png new file mode 100644 index 0000000000..2846e579bc Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/alpha-filling-inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/alpha-patty-inhand-left.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/alpha-patty-inhand-left.png new file mode 100644 index 0000000000..3b457fff3d Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/alpha-patty-inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/alpha-patty-inhand-right.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/alpha-patty-inhand-right.png new file mode 100644 index 0000000000..07e19d217f Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/alpha-patty-inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/bear-inhand-left.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/bear-inhand-left.png new file mode 100644 index 0000000000..9c9a3e20c5 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/bear-inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/bear-inhand-right.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/bear-inhand-right.png new file mode 100644 index 0000000000..873ad1bb63 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/bear-inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/brain-inhand-left.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/brain-inhand-left.png new file mode 100644 index 0000000000..0d721f98e4 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/brain-inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/brain-inhand-right.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/brain-inhand-right.png new file mode 100644 index 0000000000..16124ddf58 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/brain-inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/bun-inhand-left.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/bun-inhand-left.png new file mode 100644 index 0000000000..bdea18041b Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/bun-inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/bun-inhand-right.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/bun-inhand-right.png new file mode 100644 index 0000000000..9327840b23 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/bun-inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/burger-big-inhand-left.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/burger-big-inhand-left.png new file mode 100644 index 0000000000..21a9f8d60f Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/burger-big-inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/burger-big-inhand-right.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/burger-big-inhand-right.png new file mode 100644 index 0000000000..c4e1c91656 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/burger-big-inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/burger-inhand-left.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/burger-inhand-left.png new file mode 100644 index 0000000000..552b8d461c Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/burger-inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/burger-inhand-right.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/burger-inhand-right.png new file mode 100644 index 0000000000..1c260fdb1b Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/burger-inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/burger-super-inhand-left.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/burger-super-inhand-left.png new file mode 100644 index 0000000000..7b2863d8ce Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/burger-super-inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/burger-super-inhand-right.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/burger-super-inhand-right.png new file mode 100644 index 0000000000..1eb3e9cdcc Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/burger-super-inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/cat-inhand-left.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/cat-inhand-left.png new file mode 100644 index 0000000000..e6eacf6bb9 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/cat-inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/cat-inhand-right.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/cat-inhand-right.png new file mode 100644 index 0000000000..5b68464531 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/cat-inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/clown-inhand-left.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/clown-inhand-left.png new file mode 100644 index 0000000000..3831dda7a4 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/clown-inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/clown-inhand-right.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/clown-inhand-right.png new file mode 100644 index 0000000000..18380c4e51 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/clown-inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/crazy-inhand-left.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/crazy-inhand-left.png new file mode 100644 index 0000000000..c017fc9d61 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/crazy-inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/crazy-inhand-right.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/crazy-inhand-right.png new file mode 100644 index 0000000000..b1664e77d5 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/crazy-inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/dog-inhand-left.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/dog-inhand-left.png new file mode 100644 index 0000000000..5a43f7598a Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/dog-inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/dog-inhand-right.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/dog-inhand-right.png new file mode 100644 index 0000000000..f822085e65 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/dog-inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/inhand-left.png deleted file mode 100644 index f5ed6b39cd..0000000000 Binary files a/Resources/Textures/Objects/Consumable/Food/burger.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/inhand-right.png deleted file mode 100644 index 9e9290dd8c..0000000000 Binary files a/Resources/Textures/Objects/Consumable/Food/burger.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/burger.rsi/meta.json index 42c8c461e9..2b1a9f66df 100644 --- a/Resources/Textures/Objects/Consumable/Food/burger.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Food/burger.rsi/meta.json @@ -1,191 +1,387 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation and modified by Swept and potato1234x at https://github.com/tgstation/tgstation/commit/40d75cc340c63582fb66ce15bf75a36115f6bdaa, ian.png created by EmoGarbage, mothroach.png created by TurboTracker, screwed by TheShuEd", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "appendix" + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation and modified by Swept and potato1234x at https://github.com/tgstation/tgstation/commit/40d75cc340c63582fb66ce15bf75a36115f6bdaa, ian.png created by EmoGarbage, mothroach.png created by TurboTracker, screwed by TheShuEd. Inhands by Tiniest Shark (Github)", + "size": { + "x": 32, + "y": 32 }, - { - "name": "bacon" - }, - { - "name": "baseball" - }, - { - "name": "bearger" - }, - { - "name": "bigbite" - }, - { - "name": "brain" - }, - { - "name": "bun" - }, - { - "name": "c" - }, - { - "name": "cat" - }, - { - "name": "cheese" - }, - { - "name": "cheesealt" - }, - { - "name": "chicken" - }, - { - "name": "clown" - }, - { - "name": "crab" - }, - { - "name": "crazy", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "custburg-bottom" - }, - { - "name": "custburg-filling" - }, - { - "name": "custburg-top" - }, - { - "name": "empowered", - "delays": [ - [ - 1.5, - 0.1 - ] - ] - }, - { - "name": "fish" - }, - { - "name": "fivealarm" - }, - { - "name": "ghost", - "delays": [ - [ - 0.11, - 0.08, - 0.06, - 0.05, - 0.04, - 0.04, - 0.07, - 0.1, - 0.13, - 0.11, - 0.09, - 0.07, - 0.05, - 0.06, - 0.07, - 0.08, - 0.1, - 0.12 - ] - ] - }, - { - "name": "human" - }, - { - "name": "ian" - }, - { - "name": "plain" - }, - { - "name": "mcguffin" - }, - { - "name": "mcrib" - }, - { - "name": "mime" - }, - { - "name": "rat" - }, - { - "name": "ro", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.4, - 0.3, - 0.1, - 0.3, - 0.1, - 0.3, - 0.4, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.1 - ] - ] - }, - { - "name": "screwed" - }, - { - "name": "spell" - }, - { - "name": "superbite" - }, - { - "name": "plate" - }, - { - "name": "tofu" - }, - { - "name": "soylent" - }, - { - "name": "x" - }, - { - "name": "mothroach" - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - } - ] + "states": [ + { + "name": "appendix" + }, + { + "name": "alpha-bun-inhand-left", + "directions": 4 + }, + { + "name": "alpha-bun-inhand-right", + "directions": 4 + }, + { + "name": "alpha-filling-inhand-left", + "directions": 4 + }, + { + "name": "alpha-filling-inhand-right", + "directions": 4 + }, + { + "name": "alpha-patty-inhand-left", + "directions": 4 + }, + { + "name": "alpha-patty-inhand-right", + "directions": 4 + }, + { + "name": "bacon" + }, + { + "name": "baseball" + }, + { + "name": "bearger" + }, + { + "name": "bear-inhand-left", + "directions": 4 + }, + { + "name": "bear-inhand-right", + "directions": 4 + }, + { + "name": "bigbite" + }, + { + "name": "burger-big-inhand-left", + "directions": 4 + }, + { + "name": "burger-big-inhand-right", + "directions": 4 + }, + { + "name": "brain" + }, + { + "name": "brain-inhand-left", + "directions": 4 + }, + { + "name": "brain-inhand-right", + "directions": 4 + }, + { + "name": "bun" + }, + { + "name": "bun-inhand-left", + "directions": 4 + }, + { + "name": "bun-inhand-right", + "directions": 4 + }, + { + "name": "burger-inhand-left", + "directions": 4 + }, + { + "name": "burger-inhand-right", + "directions": 4 + }, + { + "name": "c" + }, + { + "name": "cat" + }, + { + "name": "cat-inhand-left", + "directions": 4 + }, + { + "name": "cat-inhand-right", + "directions": 4 + }, + { + "name": "cheese" + }, + { + "name": "cheesealt" + }, + { + "name": "chicken" + }, + { + "name": "clown" + }, + { + "name": "clown-inhand-left", + "directions": 4 + }, + { + "name": "clown-inhand-right", + "directions": 4 + }, + { + "name": "crab" + }, + { + "name": "crazy", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "crazy-inhand-left", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "crazy-inhand-right", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "custburg-bottom" + }, + { + "name": "custburg-filling" + }, + { + "name": "custburg-top" + }, + { + "name": "empowered", + "delays": [ + [ + 1.5, + 0.1 + ] + ] + }, + { + "name": "plasma-inhand-left", + "directions": 4 + }, + { + "name": "plasma-inhand-right", + "directions": 4 + }, + { + "name": "fish" + }, + { + "name": "fivealarm" + }, + { + "name": "ghost", + "delays": [ + [ + 0.11, + 0.08, + 0.06, + 0.05, + 0.04, + 0.04, + 0.07, + 0.1, + 0.13, + 0.11, + 0.09, + 0.07, + 0.05, + 0.06, + 0.07, + 0.08, + 0.1, + 0.12 + ] + ] + }, + { + "name": "human" + }, + { + "name": "ian" + }, + { + "name": "dog-inhand-left", + "directions": 4 + }, + { + "name": "dog-inhand-right", + "directions": 4 + }, + { + "name": "plain" + }, + { + "name": "plain-inhand-left", + "directions": 4 + }, + { + "name": "plain-inhand-right", + "directions": 4 + }, + { + "name": "mcguffin" + }, + { + "name": "mcrib" + }, + { + "name": "mime" + }, + { + "name": "mime-inhand-left", + "directions": 4 + }, + { + "name": "mime-inhand-right", + "directions": 4 + }, + { + "name": "rat" + }, + { + "name": "rat-inhand-left", + "directions": 4 + }, + { + "name": "rat-inhand-right", + "directions": 4 + }, + { + "name": "ro", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.4, + 0.3, + 0.1, + 0.3, + 0.1, + 0.3, + 0.4, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.1 + ] + ] + }, + { + "name": "screwed" + }, + { + "name": "spell" + }, + { + "name": "spell-inhand-left", + "directions": 4 + }, + { + "name": "spell-inhand-right", + "directions": 4 + }, + { + "name": "superbite" + }, + { + "name": "burger-super-inhand-left", + "directions": 4 + }, + { + "name": "burger-super-inhand-right", + "directions": 4 + }, + { + "name": "plate" + }, + { + "name": "tofu" + }, + { + "name": "soylent" + }, + { + "name": "x" + }, + { + "name": "mothroach" + }, + { + "name": "mothroach-inhand-left", + "directions": 4 + }, + { + "name": "mothroach-inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/mime-inhand-left.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/mime-inhand-left.png new file mode 100644 index 0000000000..340816d971 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/mime-inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/mime-inhand-right.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/mime-inhand-right.png new file mode 100644 index 0000000000..fe545efd69 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/mime-inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/mothroach-inhand-left.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/mothroach-inhand-left.png new file mode 100644 index 0000000000..fa471eb667 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/mothroach-inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/mothroach-inhand-right.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/mothroach-inhand-right.png new file mode 100644 index 0000000000..fad5a8aea7 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/mothroach-inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/plain-inhand-left.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/plain-inhand-left.png new file mode 100644 index 0000000000..ca84d1419c Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/plain-inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/plain-inhand-right.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/plain-inhand-right.png new file mode 100644 index 0000000000..4236e9ec81 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/plain-inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/plasma-inhand-left.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/plasma-inhand-left.png new file mode 100644 index 0000000000..199689aada Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/plasma-inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/plasma-inhand-right.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/plasma-inhand-right.png new file mode 100644 index 0000000000..c74d662301 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/plasma-inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/rat-inhand-left.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/rat-inhand-left.png new file mode 100644 index 0000000000..83ff6f5e78 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/rat-inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/rat-inhand-right.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/rat-inhand-right.png new file mode 100644 index 0000000000..723e57cac4 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/rat-inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/spell-inhand-left.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/spell-inhand-left.png new file mode 100644 index 0000000000..059b57ea63 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/spell-inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/burger.rsi/spell-inhand-right.png b/Resources/Textures/Objects/Consumable/Food/burger.rsi/spell-inhand-right.png new file mode 100644 index 0000000000..0f9c5a4048 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/burger.rsi/spell-inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/lit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/lit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..ceea1e2e99 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/lit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/meta.json index 21312feb7b..8d6da16f6f 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Adapted from tgstation at commit https://github.com/tgstation/tgstation/commit/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8", + "copyright": "Adapted from tgstation at commit https://github.com/tgstation/tgstation/commit/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -177,6 +177,56 @@ 0.1 ] ] + }, + { + "name": "unlit-equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "lit-equipped-MASK-vulpkanin", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] } ] } diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/unlit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/unlit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..fc81b838cb Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/unlit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.rsi/lit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.rsi/lit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..f4e2671805 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.rsi/lit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.rsi/meta.json index 435e9748b1..cd4355ac14 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.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/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -177,6 +177,56 @@ 0.1 ] ] + }, + { + "name": "unlit-equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "lit-equipped-MASK-vulpkanin", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] } ] } diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.rsi/unlit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.rsi/unlit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..bd01ccf61f Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.rsi/unlit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/lit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/lit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..60c0c634f6 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/lit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/meta.json index 00fcb768fb..0d4fd176a0 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.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/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -177,6 +177,56 @@ 0.1 ] ] + }, + { + "name": "unlit-equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "lit-equipped-MASK-vulpkanin", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] } ] } diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/unlit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/unlit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..9e6a86b142 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/unlit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/lit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/lit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..4a3544c8fa Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/lit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/meta.json index 5e4d9412b0..50aa75e5f8 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.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/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8. lit-equipped-MASK-vox & unlit-equipped-MASK-vox states taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8. lit-equipped-MASK-vox & unlit-equipped-MASK-vox states taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -215,6 +215,56 @@ 0.1 ] ] + }, + { + "name": "unlit-equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "lit-equipped-MASK-vulpkanin", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] } ] } diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/unlit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/unlit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..b9ab1e483f Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/unlit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/lit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/lit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..4a3544c8fa Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/lit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/meta.json index 5e4d9412b0..50aa75e5f8 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.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/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8. lit-equipped-MASK-vox & unlit-equipped-MASK-vox states taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8. lit-equipped-MASK-vox & unlit-equipped-MASK-vox states taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -215,6 +215,56 @@ 0.1 ] ] + }, + { + "name": "unlit-equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "lit-equipped-MASK-vulpkanin", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] } ] } diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/unlit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/unlit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..b9ab1e483f Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/unlit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.rsi/lit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.rsi/lit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..bc72d5c2e8 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.rsi/lit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.rsi/meta.json index 00fcb768fb..0d4fd176a0 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.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/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -177,6 +177,56 @@ 0.1 ] ] + }, + { + "name": "unlit-equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "lit-equipped-MASK-vulpkanin", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] } ] } diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.rsi/unlit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.rsi/unlit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..806e5c4160 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.rsi/unlit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Devices/pda.rsi/meta.json b/Resources/Textures/Objects/Devices/pda.rsi/meta.json index 8f987ac66e..9606232b68 100644 --- a/Resources/Textures/Objects/Devices/pda.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/pda.rsi/meta.json @@ -231,6 +231,9 @@ }, { "name": "pda-seniorofficer" + }, + { + "name": "pda-seniorcourier" }, { "name": "pda-wizard", diff --git a/Resources/Textures/Objects/Devices/pda.rsi/pda-seniorcourier.png b/Resources/Textures/Objects/Devices/pda.rsi/pda-seniorcourier.png new file mode 100644 index 0000000000..b1224dae9c Binary files /dev/null and b/Resources/Textures/Objects/Devices/pda.rsi/pda-seniorcourier.png differ diff --git a/Resources/Textures/Objects/Fun/Foam/foam_crossbow.rsi/meta.json b/Resources/Textures/Objects/Fun/Foam/foam_crossbow.rsi/meta.json index b245d7e77d..79a6ec3509 100644 --- a/Resources/Textures/Objects/Fun/Foam/foam_crossbow.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/Foam/foam_crossbow.rsi/meta.json @@ -10,9 +10,6 @@ { "name": "icon" }, - { - "name": "foamdart" - }, { "name": "foambox" }, diff --git a/Resources/Textures/Objects/Fun/Foam/foam_crossbow.rsi/foamdart.png b/Resources/Textures/Objects/Fun/Foam/foam_dart.rsi/foamdart.png similarity index 100% rename from Resources/Textures/Objects/Fun/Foam/foam_crossbow.rsi/foamdart.png rename to Resources/Textures/Objects/Fun/Foam/foam_dart.rsi/foamdart.png diff --git a/Resources/Textures/Objects/Fun/Foam/foam_dart.rsi/meta.json b/Resources/Textures/Objects/Fun/Foam/foam_dart.rsi/meta.json new file mode 100644 index 0000000000..a7e64d408b --- /dev/null +++ b/Resources/Textures/Objects/Fun/Foam/foam_dart.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "foamdart" + } + ] +} diff --git a/Resources/Textures/Objects/Misc/6pack.rsi/inhand-left.png b/Resources/Textures/Objects/Misc/6pack.rsi/inhand-left.png new file mode 100644 index 0000000000..5035ce2d81 Binary files /dev/null and b/Resources/Textures/Objects/Misc/6pack.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Misc/6pack.rsi/inhand-right.png b/Resources/Textures/Objects/Misc/6pack.rsi/inhand-right.png new file mode 100644 index 0000000000..ac4b9e1fc5 Binary files /dev/null and b/Resources/Textures/Objects/Misc/6pack.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Misc/6pack.rsi/meta.json b/Resources/Textures/Objects/Misc/6pack.rsi/meta.json index 76280403d4..4c7757a383 100644 --- a/Resources/Textures/Objects/Misc/6pack.rsi/meta.json +++ b/Resources/Textures/Objects/Misc/6pack.rsi/meta.json @@ -1,32 +1,40 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432 and modified by Swept", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "6pack1" + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432 and modified by Swept. Inhands by Tiniest Shark (Github)", + "size": { + "x": 32, + "y": 32 }, - { - "name": "6pack2" - }, - { - "name": "6pack3" - }, - { - "name": "6pack4" - }, - { - "name": "6pack5" - }, - { - "name": "6pack6" - }, - { - "name": "plastic-thingy" - } - ] + "states": [ + { + "name": "6pack1" + }, + { + "name": "6pack2" + }, + { + "name": "6pack3" + }, + { + "name": "6pack4" + }, + { + "name": "6pack5" + }, + { + "name": "6pack6" + }, + { + "name": "plastic-thingy" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/idmime.png b/Resources/Textures/Objects/Misc/id_cards.rsi/idmime.png index b917612dae..fee6d2b010 100644 Binary files a/Resources/Textures/Objects/Misc/id_cards.rsi/idmime.png and b/Resources/Textures/Objects/Misc/id_cards.rsi/idmime.png differ diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/idmusician.png b/Resources/Textures/Objects/Misc/id_cards.rsi/idmusician.png index b51dfaaab8..9a82d447da 100644 Binary files a/Resources/Textures/Objects/Misc/id_cards.rsi/idmusician.png and b/Resources/Textures/Objects/Misc/id_cards.rsi/idmusician.png differ diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/meta.json b/Resources/Textures/Objects/Misc/id_cards.rsi/meta.json index 2c402c0282..e33cd304e1 100644 --- a/Resources/Textures/Objects/Misc/id_cards.rsi/meta.json +++ b/Resources/Textures/Objects/Misc/id_cards.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/d917f4c2a088419d5c3aec7656b7ff8cebd1822e idcluwne made by brainfood1183 (github) for ss14, idbrigmedic made by PuroSlavKing (Github), pirate made by brainfood1183 (github), idadmin made by Arimah (github), idvisitor by IProduceWidgets (Github), idintern-service by spanky-spanky (Github) | service icons darkened by frobnic8 (Discord and Github), wizard and idwizard by ScarKy0 | idboxer and idlawyer recoloured by K-Dynamic (github) | idquartermaster modified by K-Dynamic (github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d917f4c2a088419d5c3aec7656b7ff8cebd1822e idcluwne made by brainfood1183 (github) for ss14, idbrigmedic made by PuroSlavKing (Github), pirate made by brainfood1183 (github), idadmin made by Arimah (github), idvisitor by IProduceWidgets (Github), idintern-service by spanky-spanky (Github) | service icons darkened by frobnic8 (Discord and Github), wizard and idwizard by ScarKy0 | idboxer and idlawyer recoloured by K-Dynamic (github) | idquartermaster modified by K-Dynamic (github) | idmime and idmusician recolor by DinnerCalzone (github) at https://github.com/impstation/imp-station-14/commit/233161f02bab7f9f9c03f09f39638ea7c200ee24", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard.png b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard.png new file mode 100644 index 0000000000..6267c74c6b Binary files /dev/null and b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard.png differ diff --git a/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard_over.png b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard_over.png new file mode 100644 index 0000000000..f5baed50ef Binary files /dev/null and b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard_over.png differ diff --git a/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard_paper.png b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard_paper.png new file mode 100644 index 0000000000..d58b42b709 Binary files /dev/null and b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard_paper.png differ diff --git a/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard_pen.png b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard_pen.png new file mode 100644 index 0000000000..e7b506c75e Binary files /dev/null and b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard_pen.png differ diff --git a/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/equipped-BELT.png b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/equipped-BELT.png new file mode 100644 index 0000000000..8eb5e0edf4 Binary files /dev/null and b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/inhand-left.png b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/inhand-left.png new file mode 100644 index 0000000000..2507245107 Binary files /dev/null and b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/inhand-right.png b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/inhand-right.png new file mode 100644 index 0000000000..e9e0078037 Binary files /dev/null and b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/meta.json b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/meta.json new file mode 100644 index 0000000000..117961963d --- /dev/null +++ b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Clipboard sprites are by WJohn (Github) for tgstation, taken from https://github.com/tgstation/tgstation/commit/3cc10b1785bff95e861d722b5164189951761921. Inhand sprites by nmajask (Github) for SS14. Aforementioned sprites modified again by Hitlinemoss. clipboard_paper is a modified version of paper from bureaucracy.rsi.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "clipboard" + }, + { + "name": "clipboard_over" + }, + { + "name": "clipboard_paper" + }, + { + "name": "clipboard_pen" + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Cargo/mail_bag.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Specific/Cargo/mail_bag.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000..cb922af5ed Binary files /dev/null and b/Resources/Textures/Objects/Specific/Cargo/mail_bag.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Specific/Cargo/mail_bag.rsi/meta.json b/Resources/Textures/Objects/Specific/Cargo/mail_bag.rsi/meta.json index 9e95fc65da..9aa1e7b1c7 100644 --- a/Resources/Textures/Objects/Specific/Cargo/mail_bag.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Cargo/mail_bag.rsi/meta.json @@ -1,26 +1,30 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Sprites by Velken, based on the Chem Bag sprites from ParadiseSS13/Paradise at https://github.com/ParadiseSS13/Paradise/blob/ebf9a7b5e89f5523c5e1c3d2692bf54dac322cae/icons/obj/chemical.dmi", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprites by Velken, based on the Chem Bag sprites from ParadiseSS13/Paradise at https://github.com/ParadiseSS13/Paradise/blob/ebf9a7b5e89f5523c5e1c3d2692bf54dac322cae/icons/obj/chemical.dmi. equipped-BACKPACK modified from equipped-BELT by FairlySadPanda (GitHub).", + "size": { + "x": 32, + "y": 32 }, - { - "name": "equipped-BELT", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/meta.json b/Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/meta.json index 9bc2def611..ed601a6e35 100644 --- a/Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/meta.json @@ -10,14 +10,6 @@ { "name": "dead" }, - { - "name": "equipped-HELMET", - "directions": 4 - }, - { - "name": "equipped-HELMET-hamster", - "directions": 4 - }, { "name": "harvest" }, @@ -33,6 +25,14 @@ { "name": "peel3" }, + { + "name": "peel-equipped-HELMET", + "directions": 4 + }, + { + "name": "peel-equipped-HELMET-hamster", + "directions": 4 + }, { "name": "peel-inhand-left", "directions": 4 diff --git a/Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/equipped-HELMET-hamster.png b/Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/peel-equipped-HELMET-hamster.png similarity index 100% rename from Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/equipped-HELMET-hamster.png rename to Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/peel-equipped-HELMET-hamster.png diff --git a/Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/equipped-HELMET.png b/Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/peel-equipped-HELMET.png similarity index 100% rename from Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/equipped-HELMET.png rename to Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/peel-equipped-HELMET.png diff --git a/Resources/Textures/Objects/Specific/Medical/medical.rsi/meta.json b/Resources/Textures/Objects/Specific/Medical/medical.rsi/meta.json index 5c32c08d7d..6fb3857023 100644 --- a/Resources/Textures/Objects/Specific/Medical/medical.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Medical/medical.rsi/meta.json @@ -1,9 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/740ff31a81313086cf16761f3677cf1e2ab46c93 and Taken from tgstation at https://github.com/tgstation/tgstation/blob/623290915c2292b56da11048deb62d758e1e3fb4/icons/obj/bloodpack.dmi, Blood pack redone by Ubaser", - "copyright": "Taken from https://github.com/tgstation/tgstation/blob/a3568da5634e756d0849480104afda402c6f1c3c/icons/obj/medical/stack_medical.dmi", - "copyright": "Tourniquet Sprite by PoorMansDreams, in-hand sprites of tourniquet, gauze, and bloodpack made by SeamLesss (github)", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/740ff31a81313086cf16761f3677cf1e2ab46c93 and Taken from tgstation at https://github.com/tgstation/tgstation/blob/623290915c2292b56da11048deb62d758e1e3fb4/icons/obj/bloodpack.dmi, Blood pack redone by Ubaser. Taken from https://github.com/tgstation/tgstation/blob/a3568da5634e756d0849480104afda402c6f1c3c/icons/obj/medical/stack_medical.dmi. Tourniquet Sprite by PoorMansDreams, in-hand sprites of tourniquet, gauze, and bloodpack made by SeamLesss (github).", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/decaying.png b/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/decaying.png new file mode 100644 index 0000000000..7335e13cb0 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/decaying.png differ diff --git a/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/growing.png b/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/growing.png new file mode 100644 index 0000000000..3c9eeba747 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/growing.png differ diff --git a/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/meta.json b/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/meta.json index 289c6bb269..f0a877bc87 100644 --- a/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/meta.json @@ -17,6 +17,45 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "growing", + "delays": [ + [ 0.2, 0.2, 0.2 ] + ] + }, + { + "name": "decaying", + "delays": [ + [ 0.2, 0.2, 0.2 ] + ] + }, + { + "name": "severity_mask", + "delays": [ + [ 0.25, 0.25, 0.25, 0.25 ] + ] + }, + { + "name": "timer_1" + }, + { + "name": "timer_2" + }, + { + "name": "timer_3" + }, + { + "name": "timer_4" + }, + { + "name": "timer_5" + }, + { + "name": "supercritical", + "delays": [ + [ 0.125, 0.125, 0.125, 0.125 ] + ] } ] } diff --git a/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/severity_mask.png b/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/severity_mask.png new file mode 100644 index 0000000000..4d0ae9a3ae Binary files /dev/null and b/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/severity_mask.png differ diff --git a/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/supercritical.png b/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/supercritical.png new file mode 100644 index 0000000000..fedb3ba03b Binary files /dev/null and b/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/supercritical.png differ diff --git a/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/timer_1.png b/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/timer_1.png new file mode 100644 index 0000000000..47b483bf5d Binary files /dev/null and b/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/timer_1.png differ diff --git a/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/timer_2.png b/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/timer_2.png new file mode 100644 index 0000000000..0a13874777 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/timer_2.png differ diff --git a/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/timer_3.png b/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/timer_3.png new file mode 100644 index 0000000000..fd1ebf7da4 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/timer_3.png differ diff --git a/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/timer_4.png b/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/timer_4.png new file mode 100644 index 0000000000..e3c79e9ab2 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/timer_4.png differ diff --git a/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/timer_5.png b/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/timer_5.png new file mode 100644 index 0000000000..943f391907 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Research/anomalyscanner.rsi/timer_5.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-inflatable.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-inflatable.png new file mode 100644 index 0000000000..8a6a2fa6ec Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-inflatable.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/meta.json b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/meta.json index ae64caaa15..9229815601 100644 --- a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC0-1.0", - "copyright": "Created by EmoGarbage404 (github) for Space Station 14. icon-construction.png created by deltanedas (github). syndicateborgbomb.png created by Mangohydra (github). layered inhands by mubururu_ (github), icon-chem.png & icon-mining-adv.png created by mubururu_ (github), Xenoborg modules sprites by Samuka-C (github)", + "copyright": "Created by EmoGarbage404 (github) for Space Station 14. icon-construction.png created by deltanedas (github). syndicateborgbomb.png created by Mangohydra (github). icon-chem.png & icon-mining-adv.png created by mubururu_ (github) icon-inflatable.png made by FungiFellow (GitHub), Xenoborg modules sprites by Samuka-C (github)", "size": { "x": 32, "y": 32 @@ -28,6 +28,9 @@ { "name": "icon-cables" }, + { + "name": "icon-inflatable" + }, { "name": "icon-chemist" }, @@ -226,4 +229,5 @@ "directions": 4 } ] + } diff --git a/Resources/Textures/Objects/Tanks/Jetpacks/security.rsi/equipped-SUITSTORAGE-dog.png b/Resources/Textures/Objects/Tanks/Jetpacks/security.rsi/equipped-SUITSTORAGE-dog.png new file mode 100644 index 0000000000..b430547573 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/Jetpacks/security.rsi/equipped-SUITSTORAGE-dog.png differ diff --git a/Resources/Textures/Objects/Tanks/Jetpacks/security.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Tanks/Jetpacks/security.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 0000000000..b8961eaa77 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/Jetpacks/security.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Tanks/Jetpacks/security.rsi/meta.json b/Resources/Textures/Objects/Tanks/Jetpacks/security.rsi/meta.json index 21aae85629..81d7f4d388 100644 --- a/Resources/Textures/Objects/Tanks/Jetpacks/security.rsi/meta.json +++ b/Resources/Textures/Objects/Tanks/Jetpacks/security.rsi/meta.json @@ -62,6 +62,40 @@ { "name": "on-equipped-BACKPACK-dog", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 + }, + { + "name": "on-equipped-SUITSTORAGE", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2 + ], + [ + 0.2, + 0.2 + ], + [ + 0.2, + 0.2 + ], + [ + 0.2, + 0.2 + ] + ] + }, + { + "name": "equipped-SUITSTORAGE-dog", + "directions": 4 + }, + { + "name": "on-equipped-SUITSTORAGE-dog", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Tanks/Jetpacks/security.rsi/on-equipped-SUITSTORAGE-dog.png b/Resources/Textures/Objects/Tanks/Jetpacks/security.rsi/on-equipped-SUITSTORAGE-dog.png new file mode 100644 index 0000000000..b430547573 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/Jetpacks/security.rsi/on-equipped-SUITSTORAGE-dog.png differ diff --git a/Resources/Textures/Objects/Tanks/Jetpacks/security.rsi/on-equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Tanks/Jetpacks/security.rsi/on-equipped-SUITSTORAGE.png new file mode 100644 index 0000000000..0ae456cf0d Binary files /dev/null and b/Resources/Textures/Objects/Tanks/Jetpacks/security.rsi/on-equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/meta.json b/Resources/Textures/Objects/Tiles/tile.rsi/meta.json index 749093b344..2b01db5ab5 100644 --- a/Resources/Textures/Objects/Tiles/tile.rsi/meta.json +++ b/Resources/Textures/Objects/Tiles/tile.rsi/meta.json @@ -579,6 +579,9 @@ { "name": "xeno-techmaint" }, + { + "name": "xenoborg-floor" + }, { "name": "dark-squiggly" }, diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/xenoborg-floor.png b/Resources/Textures/Objects/Tiles/tile.rsi/xenoborg-floor.png new file mode 100644 index 0000000000..65ef33aab3 Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/xenoborg-floor.png differ diff --git a/Resources/Textures/Parallaxes/oldspace.png b/Resources/Textures/Parallaxes/oldspace.png new file mode 100644 index 0000000000..7960ffaf44 Binary files /dev/null and b/Resources/Textures/Parallaxes/oldspace.png differ diff --git a/Resources/Textures/Parallaxes/oldspace.png.yml b/Resources/Textures/Parallaxes/oldspace.png.yml new file mode 100644 index 0000000000..a2cfb0a1fe --- /dev/null +++ b/Resources/Textures/Parallaxes/oldspace.png.yml @@ -0,0 +1 @@ +preload: false diff --git a/Resources/Textures/Shaders/heat.swsl b/Resources/Textures/Shaders/heat.swsl new file mode 100644 index 0000000000..8e478f471a --- /dev/null +++ b/Resources/Textures/Shaders/heat.swsl @@ -0,0 +1,90 @@ +uniform sampler2D SCREEN_TEXTURE; + +// Number of frequencies to combine, can't be a parameter/uniform else it causes problems in compatibility mode +// I have no idea why +const highp int N = 32; + +uniform highp float spatial_scale; // spatial scaling of modes, higher = fine turbulence, lower = coarse turbulence +uniform highp float strength_scale; // distortion strength +uniform highp float speed_scale; // scaling factor on the speed of the animation +// Matrix to convert screen coordinates into grid coordinates +// This is to "pin" the effect to the grid, so that it does not shimmer as you move +uniform highp mat3 grid_ent_from_viewport_local; + +const highp float TWO_PI = 6.28318530718; + // This is just the default target values so that the external parameters can be normalized to 1 +const highp float strength_factor = 0.0005; +const highp float spatial_factor = 22.0; + +// 1D pseudo-random function +highp float random_1d(highp float n) { + return fract(sin(n * 12.9898) * 43758.5453); +} + +// Kolmogorov amplitude, power spectrum goes as k^(–11/6) +highp float kolAmp(highp float k) { + return pow(k, -11.0 / 6.0); +} + +void fragment() { + + highp vec2 ps = vec2(1.0/SCREEN_PIXEL_SIZE.x, 1.0/SCREEN_PIXEL_SIZE.y); + highp float aspectratio = ps.x / ps.y; + + // scale the scale factor with the number of modes just cuz it works reasonably + highp float s_scale = spatial_scale * spatial_factor / sqrt(float(N)); + + // Coordinates to use to calculate the effects, convert to grid coordinates + highp vec2 uvW = (grid_ent_from_viewport_local * vec3(UV.x, UV.y, 1.0)).xy; + // Scale the coordinates + uvW *= s_scale; + + // accumulate phase gradienta + highp vec2 grad = vec2(0.0); + + for (lowp int i = 0; i < N; i++) { + // float cast of the index + highp float fi = float(i); + + // Pick a random direction + highp float ang = random_1d(fi + 1.0) * TWO_PI; + highp vec2 dir = vec2(cos(ang), sin(ang)); + + // Pick a random spatial frequency from 0.5 to 30 + highp float k = mix(0.5, 30.0, random_1d(fi + 17.0)); + + // Pick a random speed from 0.05 to 0.20 + highp float speed = mix(3., 8., random_1d(fi + 33.0)); + + // Pick a random phase offset + highp float phi_0 = random_1d(fi + 49.0) * TWO_PI; + + // phase argument + highp float t = dot(dir, uvW) * k + TIME * speed * speed_scale + phi_0; + + // analytical gradient: ∇[sin(t)] = cos(t) * ∇t + // ∇t = k * dir * scale (scale is factored out) + grad += kolAmp(k) * cos(t) * k * dir; + } + // Spatial scaling (coarse or fine turbulence) + grad *= s_scale; + + // The texture should have been blurred using a previous operation + // We use the alpha channel to cut off the blur that bleeds outside the tile, then we rescale + // the mask back up to 0.0 to 1.0 + highp float mask = clamp((zTexture(UV).a - 0.5)*2.0, 0.00, 1.0); + + // Calculate warped UV using the turbulence gradient + // The strength of the turbulence is encoded into the red channel of TEXTURE + // Give it a little polynomial boost: https://www.wolframalpha.com/input?i=-x%5E2+%2B2x+from+0+to+1 + highp float heatStrength = zTexture(UV).r*1.0; + heatStrength = clamp(-heatStrength*heatStrength + 2.0*heatStrength, 0.0, 1.0); + highp vec2 uvDist = UV + (strength_scale * strength_factor * heatStrength * mask) * grad; + + // Apply to the texture + COLOR = texture2D(SCREEN_TEXTURE, uvDist); + + // Uncomment the following two lines to view the strength buffer directly + // COLOR.rgb = vec3(heatStrength * mask); + // COLOR.a = mask; +} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/assembly.png new file mode 100644 index 0000000000..9629d9f2a9 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/assembly.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/bolted_unlit.png new file mode 100644 index 0000000000..844bd201f1 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closed.png new file mode 100644 index 0000000000..06c3cf5c6c Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closed_unlit.png new file mode 100644 index 0000000000..7c80bc210c Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closing.png new file mode 100644 index 0000000000..8c45050ba3 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closing_unlit.png new file mode 100644 index 0000000000..51ae8ad362 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/deny_unlit.png new file mode 100644 index 0000000000..dfe4d406ed Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/emergency_unlit.png new file mode 100644 index 0000000000..31f7a5f9f0 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/meta.json new file mode 100644 index 0000000000..5e40ab7363 --- /dev/null +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/meta.json @@ -0,0 +1,146 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from CEV-Eris at commit https://github.com/discordia-space/CEV-Eris/commit/14517938186858388656a6aee14bf47af9e9649f - then modified by Samuka-C (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit" + }, + { + "name": "closing", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "open" + }, + { + "name": "opening", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "panel_open" + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "welded" + }, + { + "name": "emergency_unlit", + "delays": [ + [ + 0.4, + 0.4 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/open.png new file mode 100644 index 0000000000..a47d6aa446 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/opening.png new file mode 100644 index 0000000000..a1584d3a28 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/opening_unlit.png new file mode 100644 index 0000000000..51ae8ad362 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/panel_closing.png new file mode 100644 index 0000000000..6afe206992 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/panel_closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/panel_open.png new file mode 100644 index 0000000000..d7d4122c08 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/panel_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/panel_opening.png new file mode 100644 index 0000000000..e6c87d740e Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/panel_opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/welded.png new file mode 100644 index 0000000000..eed2758c79 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/assembly.png new file mode 100644 index 0000000000..fd765e671e Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/assembly.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/bolted_unlit.png new file mode 100644 index 0000000000..afcc4809e5 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closed.png new file mode 100644 index 0000000000..38a47b34a1 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closed_unlit.png new file mode 100644 index 0000000000..7df73f082c Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closing.png new file mode 100644 index 0000000000..a41c0818b1 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closing_unlit.png new file mode 100644 index 0000000000..f7700a0618 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/deny_unlit.png new file mode 100644 index 0000000000..f43850467a Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/emergency_unlit.png new file mode 100644 index 0000000000..655a67a95c Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/meta.json new file mode 100644 index 0000000000..cd619f7948 --- /dev/null +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/meta.json @@ -0,0 +1,198 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by Samuka-C (github).", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit" + }, + { + "name": "closing", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "open", + "delays": [ + [ + 1 + ] + ] + }, + { + "name": "opening", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "panel_open", + "delays": [ + [ + 1 + ] + ] + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded" + }, + { + "name": "emergency_unlit", + "delays": [ + [ + 0.4, + 0.4 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/open.png new file mode 100644 index 0000000000..3f21f58c83 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/opening.png new file mode 100644 index 0000000000..07ae75706b Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/opening_unlit.png new file mode 100644 index 0000000000..1a3175e34d Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/panel_closing.png new file mode 100644 index 0000000000..10a8b14073 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/panel_closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/panel_open.png new file mode 100644 index 0000000000..3b98c91e74 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/panel_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/panel_opening.png new file mode 100644 index 0000000000..09382ff473 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/panel_opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks.png new file mode 100644 index 0000000000..dd67e88a31 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks_broken.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks_broken.png new file mode 100644 index 0000000000..c41fa18ca1 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks_broken.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks_damaged.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks_damaged.png new file mode 100644 index 0000000000..f16a028dee Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks_damaged.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks_open.png new file mode 100644 index 0000000000..40d559f7a3 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/welded.png new file mode 100644 index 0000000000..08a09d48e3 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/medical.rsi/meta.json b/Resources/Textures/Structures/Machines/VendingMachines/medical.rsi/meta.json index 3035a0a0c8..17fd7bcc2d 100644 --- a/Resources/Textures/Structures/Machines/VendingMachines/medical.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/VendingMachines/medical.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/1516a728931b4985c1e86f0c5995a5aa1554a1ad and modified by Swept", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/1516a728931b4985c1e86f0c5995a5aa1554a1ad and modified by Swept & IproduceWidgets (github)", "size": { "x": 32, "y": 32 @@ -31,6 +31,9 @@ { "name": "off" }, + { + "name": "off-civilian" + }, { "name": "panel" }, diff --git a/Resources/Textures/Structures/Machines/VendingMachines/medical.rsi/off-civilian.png b/Resources/Textures/Structures/Machines/VendingMachines/medical.rsi/off-civilian.png new file mode 100644 index 0000000000..edd82f6690 Binary files /dev/null and b/Resources/Textures/Structures/Machines/VendingMachines/medical.rsi/off-civilian.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/meta.json b/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/meta.json index b34b3c2a11..52f8ffb982 100644 --- a/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from /tg/station at commit 6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae, off.png taken from /tg/station commit ede31369cfa5ea1bed9262b5ef4bbef85f60fe26 and edited by @Flareguy", + "copyright": "Taken from /tg/station at commit 6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae, off.png taken from /tg/station commit ede31369cfa5ea1bed9262b5ef4bbef85f60fe26 and edited by @Flareguy & IProduceWidgets (github)", "size": { "x": 32, "y": 32 @@ -33,6 +33,9 @@ }, { "name": "off" + }, + { + "name": "off-civilian" } ] } diff --git a/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/off-civilian.png b/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/off-civilian.png new file mode 100644 index 0000000000..22c86d0823 Binary files /dev/null and b/Resources/Textures/Structures/Machines/VendingMachines/wallmed.rsi/off-civilian.png differ diff --git a/Resources/Textures/Structures/Machines/computers.rsi/meta.json b/Resources/Textures/Structures/Machines/computers.rsi/meta.json index 65cba1211e..28b6b7fb79 100644 --- a/Resources/Textures/Structures/Machines/computers.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/computers.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bd6873fd4dd6a61d7e46f1d75cd4d90f64c40894. comm_syndie made by Veritius, based on comm. generic_panel_open made by Errant, commit https://github.com/space-wizards/space-station-14/pull/32273, comms_wizard and wizard_key by ScarKy0, request- variants transfer made by EmoGarbage404 (github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bd6873fd4dd6a61d7e46f1d75cd4d90f64c40894. comm_syndie made by Veritius, based on comm. generic_panel_open made by Errant, commit https://github.com/space-wizards/space-station-14/pull/32273, comms_wizard and wizard_key by ScarKy0, request- variants transfer made by EmoGarbage404 (github), xenorobot by Samuka-C (github)", "size": { "x": 32, "y": 32 @@ -2027,6 +2027,10 @@ "name": "service_keys", "directions": 4 }, + { + "name": "xenorobot", + "directions": 4 + }, { "name": "wizard_key", "directions": 4 diff --git a/Resources/Textures/Structures/Machines/computers.rsi/xenorobot.png b/Resources/Textures/Structures/Machines/computers.rsi/xenorobot.png new file mode 100644 index 0000000000..15004ef024 Binary files /dev/null and b/Resources/Textures/Structures/Machines/computers.rsi/xenorobot.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/cage.rsi/base.png b/Resources/Textures/Structures/Storage/Crates/cage.rsi/base.png index 0abb868d11..70e12e5d30 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/cage.rsi/base.png and b/Resources/Textures/Structures/Storage/Crates/cage.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/cage.rsi/closed.png b/Resources/Textures/Structures/Storage/Crates/cage.rsi/closed.png index c2fd667d3e..bb0552b440 100644 Binary files a/Resources/Textures/Structures/Storage/Crates/cage.rsi/closed.png and b/Resources/Textures/Structures/Storage/Crates/cage.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Walls/xenoborg.rsi/full.png b/Resources/Textures/Structures/Walls/xenoborg.rsi/full.png new file mode 100644 index 0000000000..d85d8587c3 Binary files /dev/null and b/Resources/Textures/Structures/Walls/xenoborg.rsi/full.png differ diff --git a/Resources/Textures/Structures/Walls/xenoborg.rsi/meta.json b/Resources/Textures/Structures/Walls/xenoborg.rsi/meta.json new file mode 100644 index 0000000000..fdebe0d8d6 --- /dev/null +++ b/Resources/Textures/Structures/Walls/xenoborg.rsi/meta.json @@ -0,0 +1,46 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by Samuka-C (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "full" + }, + { + "name": "xenoborg0", + "directions": 4 + }, + { + "name": "xenoborg1", + "directions": 4 + }, + { + "name": "xenoborg2", + "directions": 4 + }, + { + "name": "xenoborg3", + "directions": 4 + }, + { + "name": "xenoborg4", + "directions": 4 + }, + { + "name": "xenoborg5", + "directions": 4 + }, + { + "name": "xenoborg6", + "directions": 4 + }, + { + "name": "xenoborg7", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg0.png b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg0.png new file mode 100644 index 0000000000..fd6951dda9 Binary files /dev/null and b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg0.png differ diff --git a/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg1.png b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg1.png new file mode 100644 index 0000000000..d5ecd6b84e Binary files /dev/null and b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg1.png differ diff --git a/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg2.png b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg2.png new file mode 100644 index 0000000000..fd6951dda9 Binary files /dev/null and b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg2.png differ diff --git a/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg3.png b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg3.png new file mode 100644 index 0000000000..d5ecd6b84e Binary files /dev/null and b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg3.png differ diff --git a/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg4.png b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg4.png new file mode 100644 index 0000000000..f4913af758 Binary files /dev/null and b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg4.png differ diff --git a/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg5.png b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg5.png new file mode 100644 index 0000000000..4e1df9aa57 Binary files /dev/null and b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg5.png differ diff --git a/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg6.png b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg6.png new file mode 100644 index 0000000000..f4913af758 Binary files /dev/null and b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg6.png differ diff --git a/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg7.png b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg7.png new file mode 100644 index 0000000000..231c5fda37 Binary files /dev/null and b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg7.png differ diff --git a/Resources/Textures/Structures/Walls/xenoborg_diagonal.rsi/meta.json b/Resources/Textures/Structures/Walls/xenoborg_diagonal.rsi/meta.json new file mode 100644 index 0000000000..f680988301 --- /dev/null +++ b/Resources/Textures/Structures/Walls/xenoborg_diagonal.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by Samuka-C (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "state0", + "directions": 4 + }, + { + "name": "state1", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Structures/Walls/xenoborg_diagonal.rsi/state0.png b/Resources/Textures/Structures/Walls/xenoborg_diagonal.rsi/state0.png new file mode 100644 index 0000000000..b83968aa6b Binary files /dev/null and b/Resources/Textures/Structures/Walls/xenoborg_diagonal.rsi/state0.png differ diff --git a/Resources/Textures/Structures/Walls/xenoborg_diagonal.rsi/state1.png b/Resources/Textures/Structures/Walls/xenoborg_diagonal.rsi/state1.png new file mode 100644 index 0000000000..60832b5cd0 Binary files /dev/null and b/Resources/Textures/Structures/Walls/xenoborg_diagonal.rsi/state1.png differ diff --git a/Resources/Textures/Structures/Windows/xenoborg.rsi/full.png b/Resources/Textures/Structures/Windows/xenoborg.rsi/full.png new file mode 100644 index 0000000000..d643cbe5a2 Binary files /dev/null and b/Resources/Textures/Structures/Windows/xenoborg.rsi/full.png differ diff --git a/Resources/Textures/Structures/Windows/xenoborg.rsi/meta.json b/Resources/Textures/Structures/Windows/xenoborg.rsi/meta.json new file mode 100644 index 0000000000..80f4c3f703 --- /dev/null +++ b/Resources/Textures/Structures/Windows/xenoborg.rsi/meta.json @@ -0,0 +1,46 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by Samuka-C (github).", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "full" + }, + { + "name": "xenoborg0", + "directions": 4 + }, + { + "name": "xenoborg1", + "directions": 4 + }, + { + "name": "xenoborg2", + "directions": 4 + }, + { + "name": "xenoborg3", + "directions": 4 + }, + { + "name": "xenoborg4", + "directions": 4 + }, + { + "name": "xenoborg5", + "directions": 4 + }, + { + "name": "xenoborg6", + "directions": 4 + }, + { + "name": "xenoborg7", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg0.png b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg0.png new file mode 100644 index 0000000000..7d733f13a4 Binary files /dev/null and b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg0.png differ diff --git a/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg1.png b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg1.png new file mode 100644 index 0000000000..2bab1d9405 Binary files /dev/null and b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg1.png differ diff --git a/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg2.png b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg2.png new file mode 100644 index 0000000000..7d733f13a4 Binary files /dev/null and b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg2.png differ diff --git a/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg3.png b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg3.png new file mode 100644 index 0000000000..2bab1d9405 Binary files /dev/null and b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg3.png differ diff --git a/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg4.png b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg4.png new file mode 100644 index 0000000000..96aa56b31b Binary files /dev/null and b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg4.png differ diff --git a/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg5.png b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg5.png new file mode 100644 index 0000000000..f0d2702c5a Binary files /dev/null and b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg5.png differ diff --git a/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg6.png b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg6.png new file mode 100644 index 0000000000..96aa56b31b Binary files /dev/null and b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg6.png differ diff --git a/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg7.png b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg7.png new file mode 100644 index 0000000000..b23b2ff64f Binary files /dev/null and b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg7.png differ diff --git a/Resources/Textures/Tiles/attributions.yml b/Resources/Textures/Tiles/attributions.yml index 4999508701..e1318a223e 100644 --- a/Resources/Textures/Tiles/attributions.yml +++ b/Resources/Textures/Tiles/attributions.yml @@ -155,3 +155,8 @@ license: "CC0-1.0" copyright: "Created by SeaWyrm" source: "https://github.com/space-wizards/space-station-14/pull/38007" + +- files: ["exoborg.png"] + license: "CC0-1.0" + copyright: "Created by Samuka-C (github) for space-station-14." + source: "https://github.com/space-wizards/space-station-14/pull/37068" diff --git a/Resources/Textures/Tiles/exoborg.png b/Resources/Textures/Tiles/exoborg.png new file mode 100644 index 0000000000..6f086e185c Binary files /dev/null and b/Resources/Textures/Tiles/exoborg.png differ diff --git a/Resources/migration.yml b/Resources/migration.yml index 5f1077da01..0292d68728 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -701,5 +701,18 @@ BarSignWhiskeyEchoesAlignTile: BarSignWhiskeyEchoes # 2025-06-21 ClothingNeckHeadphones: ClothingMultipleHeadphones +# 2025-07-17 +RipleyChassis: null +HonkerChassis: null +HamtrChassis: null +VimChassis: null + # 2025-08-01 FoodDonutJellySlugcat: FoodDonutJellyScurret + +# 2025-08-11 +ClothingUniformJumpsuitChiefEngineerNT: ClothingUniformJumpsuitChiefEngineer +ClothingUniformJumpsuitParamedicNT: ClothingUniformJumpsuitParamedic + +# 2025-08-29 +PrefilledSyringe: Syringe diff --git a/Tools/SS14 Aseprite Plugins/Displacement Map Flip.lua b/Tools/SS14 Aseprite Plugins/Displacement Map Flip.lua index 3291685071..05a0562b82 100644 --- a/Tools/SS14 Aseprite Plugins/Displacement Map Flip.lua +++ b/Tools/SS14 Aseprite Plugins/Displacement Map Flip.lua @@ -30,8 +30,8 @@ diag:button{ local selection = sprite.selection local image = cel.image:clone() - for x = 0, selection.bounds.width do - for y = 0, selection.bounds.height do + for x = 0, selection.bounds.width - 1 do + for y = 0, selection.bounds.height - 1 do local xSel = x + selection.origin.x local ySel = y + selection.origin.y diff --git a/Tools/SS14 Aseprite Plugins/Displacement Map Shift.lua b/Tools/SS14 Aseprite Plugins/Displacement Map Shift.lua new file mode 100644 index 0000000000..46320771a1 --- /dev/null +++ b/Tools/SS14 Aseprite Plugins/Displacement Map Shift.lua @@ -0,0 +1,63 @@ +local sprite = app.editor.sprite +local cel = app.cel + +function Shift(dx, dy) + if sprite.selection.isEmpty then + sprite.selection:selectAll() + end + + local selection = sprite.selection + local image = cel.image:clone() + + for it in image:pixels(selection) do + local color = Color(it()) + local position = Point(it.x, it.y) -- gets the position + + if not selection:contains(position.x + cel.position.x, position.y + cel.position.y) then + goto continue + end + + color.red = math.min(255, math.max(0, color.red + dx)) + color.green = math.min(255, math.max(0, color.green + dy)) + + it(color.rgbaPixel) + + ::continue:: + end + cel.image = image + app.refresh() +end + +local diag = Dialog{ + title = "Shift Displacement Map" +} + +diag + :button{ + text="↑", + onclick=function() + Shift(0,1) + end + } + :newrow() + :button{ + text="←", + onclick=function() + Shift(1,0) + end + } + :button{ + text="→", + onclick=function() + Shift(-1,0) + end + } + :newrow() + :button{ + text="↓", + onclick=function() + Shift(0,-1) + end + } + +diag:show{wait=false} diff --git a/Tools/SS14 Aseprite Plugins/Displacement Map Visualizer.lua b/Tools/SS14 Aseprite Plugins/Displacement Map Visualizer.lua index 49824acbed..efbf2e9a17 100644 --- a/Tools/SS14 Aseprite Plugins/Displacement Map Visualizer.lua +++ b/Tools/SS14 Aseprite Plugins/Displacement Map Visualizer.lua @@ -5,113 +5,133 @@ -- TODO: Handling of sizes != 127 doesn't work properly and rounds differently from the real shader. Ah well. local scale = 4 +local hasOobPixels = false -- This script requires UI if not app.isUIAvailable then return end -local getOffsetPixel = function(x, y, image, rect) - local posX = x - rect.x - local posY = y - rect.y +local sprite = app.editor.sprite - if posX < 0 or posX >= image.width or posY < 0 or posY >= image.height then - return image.spec.transparentColor +local spriteChanged = sprite.events:on("change", + function() + dialog:repaint() + end +) + +dialog = Dialog{ + title = "Displacement map preview", + onclose = function(ev) + sprite.events:off(spriteChanged) + end +} + +function isOutOfBounds(x,y, dx, dy) + local size = dialog.data["frame-size"] + -- I messed around in Desmos for 2 hours trying to find a function that could do all of this at once + -- but I am sadly not a math major + -- This works by checking to see if we've wrapped around from say 31 to 01 which indicates that we've gone over + -- the edges of a sprite's bounds. + if dx > 0 and math.fmod(x+dx, size) < math.fmod(x, size) then + return true + end + -- gotta add size here in case we go from 0 -> -1, since mod -1 is just -1 not 31 + if dx < 0 and math.fmod(x+size+dx, size) > math.fmod(x, size) then + return true + end + if dy > 0 and math.fmod(y+dy, size) < math.fmod(y, size) then + return true + end + if dy < 0 and math.fmod(y+size+dy, size) > math.fmod(y, size) then + return true end - return image:getPixel(posX, posY) + return false end -local pixelValueToColor = function(sprite, value) - return Color(value) +function getOobColor(x,y) + if dialog.data["mark-oob-checkerboard"] then -- requested by Emogarbage :3 + local size = dialog.data["frame-size"] + if (math.sin(math.pi*x*8.0/size) > 0) == (math.cos(math.pi*y*8.0/size) > 0) then + return Color{r=0, g=0, b=0, a=255} + end + end + return dialog.data["mark-oob-color"] end -local applyDisplacementMap = function(width, height, size, displacement, displacementRect, target, targetRect) - -- print(Color(displacement:getPixel(17, 15)).red) - local image = target:clone() +function getOffsetPixel(x, y, dx, dy, image, bounds) + if isOutOfBounds(x,y,dx,dy,image) then + hasOobPixels = true + if dialog.data["mark-oob"] then + return getOobColor(x,y) + end + end + local adj_x = x - bounds.x + local adj_y = y - bounds.y + + if (image.bounds:contains(Rectangle{adj_x+dx, adj_y+dy, 1, 1})) then + return image:getPixel(adj_x+dx, adj_y+dy) + end + + return image.spec.transparentColor +end + + + +function applyDisplacementMap(width, height, displacement, target) + local image = target.image:clone() image:resize(width, height) image:clear() + local displacement_size = dialog.data["displacement_size"] + for x = 0, width - 1 do for y = 0, height - 1 do - local value = getOffsetPixel(x, y, displacement, displacementRect) - local color = pixelValueToColor(sprite, value) - - if color.alpha ~= 0 then - local offset_x = (color.red - 128) / 127 * size - local offset_y = (color.green - 128) / 127 * size - - local colorValue = getOffsetPixel(x + offset_x, y + offset_y, target, targetRect) - image:drawPixel(x, y, colorValue) + if not displacement.bounds:contains(Rectangle{x,y,1,1}) then + goto continue end + + local color = Color(displacement.image:getPixel(x - displacement.bounds.x,y - displacement.bounds.y)) + + if color.alpha == 0 then + goto continue + end + + local dx = (color.red - 128) / 127 * displacement_size + local dy = (color.green - 128) / 127 * displacement_size + + local colorValue = getOffsetPixel(x, y, dx, dy, target.image, target.bounds) + image:drawPixel(x, y, colorValue) + + ::continue:: end end - return image end -local dialog = nil - -local sprite = app.editor.sprite -local spriteChanged = sprite.events:on("change", - function(ev) - dialog:repaint() - end) local layers = {} for i,layer in ipairs(sprite.layers) do table.insert(layers, 1, layer.name) end -local findLayer = function(sprite, name) - for i, layer in ipairs(sprite.layers) do +function findLayer(_sprite, name) + for i,layer in ipairs(_sprite.layers) do if layer.name == name then return layer end end - return nil end -local applyOffset = function(dx, dy) - local cel = app.cel - local image = cel.image:clone() - local sprite = app.editor.sprite - local selection = sprite.selection - - for x = selection.bounds.x, selection.bounds.x + selection.bounds.width - 1 do - for y = selection.bounds.y, selection.bounds.y + selection.bounds.height - 1 do - local xImg = x - cel.position.x - local yImg = y - cel.position.y - if xImg >= 0 and xImg < image.width and yImg >= 0 and yImg < image.height then - local pixelValue = image:getPixel(xImg, yImg) - local color = Color(pixelValue) - - -- Offset R and G channel - color.red = math.min(255, math.max(0, color.red + dx)) - color.green = math.min(255, math.max(0, color.green + dy)) - - image:drawPixel(xImg, yImg, app.pixelColor.rgba(color.red, color.green, color.blue, color.alpha)) - end - end - end - - cel.image = image - dialog:repaint() -end - -dialog = Dialog{ - title = "Displacement map preview", - onclose = function(ev) - sprite.events:off(spriteChanged) - end} - dialog:canvas{ id = "canvas", width = sprite.width * scale, height = sprite.height * scale, onpaint = function(ev) local context = ev.context + hasOobPixels = false local layerDisplacement = findLayer(sprite, dialog.data["displacement-select"]) local layerTarget = findLayer(sprite, dialog.data["reference-select"]) @@ -139,9 +159,8 @@ dialog:canvas{ -- Apply displacement map and draw local image = applyDisplacementMap( sprite.width, sprite.height, - dialog.data["size"], - celDisplacement.image, celDisplacement.bounds, - celTarget.image, celTarget.bounds) + celDisplacement, + celTarget) context:drawImage( -- srcImage @@ -154,6 +173,10 @@ dialog:canvas{ 0, 0, -- dstSize image.width * scale, image.height * scale) + dialog:modify{ + id = "oob-pixels-warn", + visible = hasOobPixels + } end } @@ -185,7 +208,7 @@ dialog:combobox{ } dialog:slider{ - id = "size", + id = "displacement_size", label = "displacement size", min = 127, --We dont support non 127 atm max = 127, @@ -195,35 +218,51 @@ dialog:slider{ end } -dialog:button{ - id = "moveDown", - text = "Down", +-- Out of Bounds marking +dialog:separator() + +dialog:label{ + id = "oob-pixels-warn", + text = "Warning: Out-of-bounds displacements detected!", + visible = false +} + +dialog:check{ + id = "mark-oob", + label = "Mark Out-of-Bounds Displacements", + selected = false, + hexpand = false, onclick = function(ev) - applyOffset(0, -1) + dialog:repaint() end } -dialog:button{ - id = "moveUp", - text = "Up", +dialog:check{ + id = "mark-oob-checkerboard", + label = "Checkerboard Pattern", + selected = false, + hexpand = false, onclick = function(ev) - applyOffset(0, 1) + dialog:repaint() end } -dialog:button{ - id = "moveLeft", - text = "Left", - onclick = function(ev) - applyOffset(1, 0) +dialog:number{ + id = "frame-size", + label = "Frame Size", + text = "32", + hexpand = false, + onchange = function(ev) + dialog:repaint() end } -dialog:button{ - id = "moveRight", - text = "Right", - onclick = function(ev) - applyOffset(-1, 0) +dialog:color{ + id = "mark-oob-color", + label = "Out-of-Bounds Pixels Color", + color = Color{r = 255, g = 0, b = 0}, + onchange = function(ev) + dialog:repaint() end }